mirror of git://git.sv.gnu.org/nano.git
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
This commit is contained in:
parent
55381aa614
commit
d7b632560c
|
@ -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)
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
DEFS= -DSYSCONFDIR=\"$(sysconfdir)\"
|
||||
localedir = $(datadir)/locale
|
||||
INCLUDES = -Iintl -DLOCALEDIR=\"$(localedir)\"
|
||||
INCLUDES = -Iintl -DLOCALEDIR=\"$(localedir)\" -DSYSCONFDIR=\"$(sysconfdir)\"
|
||||
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
|
||||
|
|
Loading…
Reference in New Issue