diff options
author | JP Rosevear <jpr@novell.com> | 2004-09-17 06:44:22 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-09-17 06:44:22 +0800 |
commit | ae7375aa9ace7468fd95758507fbc90db50bc33c (patch) | |
tree | 90dbfa0ca479922545d1b06851427a886449a4fc | |
parent | 1be35325c9ffebfbf5f872b4c889b3513f072179 (diff) | |
download | gsoc2013-evolution-ae7375aa9ace7468fd95758507fbc90db50bc33c.tar.gz gsoc2013-evolution-ae7375aa9ace7468fd95758507fbc90db50bc33c.tar.zst gsoc2013-evolution-ae7375aa9ace7468fd95758507fbc90db50bc33c.zip |
use AC_DEFINE properly
2004-09-16 JP Rosevear <jpr@novell.com>
* configure.in: use AC_DEFINE properly
svn path=/trunk/; revision=27284
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 3 |
2 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,9 @@ 2004-09-16 JP Rosevear <jpr@novell.com> + * configure.in: use AC_DEFINE properly + +2004-09-16 JP Rosevear <jpr@novell.com> + * configure.in: bump EDS and gal requirements 2004-09-16 JP Rosevear <jpr@novell.com> diff --git a/configure.in b/configure.in index aa7e826c72..5fcc235292 100644 --- a/configure.in +++ b/configure.in @@ -45,9 +45,8 @@ dnl The controls whether things like the development warning in shell/main.c are dnl dnl This should be set to 0 for stable releases and 1 for unstable releases dnl ************************************************************************************************* -DEVELOPMENT=1 AC_SUBST(UPGRADE_REVISION) -AC_DEFINE(DEVELOPMENT, [If we are in development mode or not]) +AC_DEFINE(DEVELOPMENT, 1, [If we are in development mode or not]) AC_ISC_POSIX AC_PROG_CC |