Commit d7b63256 authored by Jordi Mallach's avatar Jordi Mallach
Browse files

Don't use DEFS to define stuff. Use INCLUDES instead.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2108 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 5 additions and 3 deletions
+5 -3
......@@ -417,6 +417,8 @@ CVS code -
- New file imported from glib 2.4.7. This is needed to detect
glib 2.x on systems that may not have it installed. (DLR,
suggested by Jordi)
- src/Makefile.am:
- Don't use DEFS to define things. Use INCLUDES instead. (Jordi)
GNU nano 1.3.4 - 2004.08.17
- General:
......
......@@ -21,8 +21,9 @@
AC_INIT([GNU nano], [1.3.4-cvs], [nano-devel@gnu.org], [nano])
AC_CONFIG_SRCDIR([src/nano.c])
AC_CANONICAL_TARGET([])
AM_INIT_AUTOMAKE
AM_CONFIG_HEADER([config.h:config.h.in])
AC_CONFIG_HEADERS([config.h])
AC_PREREQ(2.54)
......
DEFS= -DSYSCONFDIR=\"$(sysconfdir)\"
localedir = $(datadir)/locale
INCLUDES = -Iintl -DLOCALEDIR=\"$(localedir)\"
INCLUDES = -Iintl -DLOCALEDIR=\"$(localedir)\" -DSYSCONFDIR=\"$(sysconfdir)\"
ACLOCAL_AMFLAGS = -I m4
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment