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
master
Jordi Mallach 2004-11-18 00:05:14 +00:00
parent 55381aa614
commit d7b632560c
3 changed files with 5 additions and 3 deletions

View File

@ -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:

View File

@ -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)

View File

@ -1,6 +1,5 @@
DEFS= -DSYSCONFDIR=\"$(sysconfdir)\"
localedir = $(datadir)/locale
INCLUDES = -Iintl -DLOCALEDIR=\"$(localedir)\"
INCLUDES = -Iintl -DLOCALEDIR=\"$(localedir)\" -DSYSCONFDIR=\"$(sysconfdir)\"
ACLOCAL_AMFLAGS = -I m4