Clean up some configure cruft.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2557 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2000-07-10 07:45:00 +00:00
parent 8724fd8081
commit a1c0c95f9c
4 changed files with 168 additions and 207 deletions

View File

@ -29,21 +29,12 @@
#undef PACKAGE
#undef VERSION
/* Are we bigendian -- needed for reading binary file format */
#undef WORDS_BIGENDIAN
/* Are we compiling for GNOME? The answer right now is always yes... */
#undef GNOME
/* Do some memory debugging stuff */
#define DEBUG_MEMORY
/* Enable debugging stuff */
#define USE_DEBUG
/* Standard C headers present */
#undef STDC_HEADERS
/* limits.h header present */
#undef HAVE_LIMITS_H
@ -53,18 +44,15 @@
/* check for stpcpy for Solaris */
#undef HAVE_STPCPY
/* Enable quickfill in register window */
#define USE_QUICKFILL
/* Don't color the balance depending on whether positive
* or negative */
#define USE_NO_COLOR
/* If configure found libXpm, then use it */
#define HAVE_XPM
#undef HAVE_XPM
/* Use the new gtkhtml widget instead of the old xmhtml widget */
#define HAVE_LIBGTKHTML 1
#undef HAVE_LIBGTKHTML
/* use gnomeprint if it's available */
#undef HAVE_LIBGNOMEPRINT

View File

@ -50,36 +50,24 @@
/* Define if the X Window System is missing or not being used. */
#undef X_DISPLAY_MISSING
/* Are we bigendian -- needed for reading binary file format */
#undef WORDS_BIGENDIAN
/* Are we compiling for GNOME? The answer right now is always yes... */
#undef GNOME
/* Do some memory debugging stuff */
#define DEBUG_MEMORY
/* Enable debugging stuff */
#define USE_DEBUG
/* Standard C headers present */
#undef STDC_HEADERS
/* check for stpcpy for Solaris */
#undef HAVE_STPCPY
/* Enable quickfill in register window */
#define USE_QUICKFILL
/* Don't color the balance depending on whether positive
* or negative */
#define USE_NO_COLOR
/* If configure found libXpm, then use it */
#define HAVE_XPM
#undef HAVE_XPM
/* Use the new gtkhtml widget instead of the old xmhtml widget */
#define HAVE_LIBGTKHTML 1
#undef HAVE_LIBGTKHTML
/* use gnomeprint if it's available */
#undef HAVE_LIBGNOMEPRINT

328
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -50,9 +50,6 @@ AC_CHECK_FUNCS(stpcpy memcpy)
### Variables
### Set up all the initial variable values...
# USE_QUICKFILL:
AC_DEFINE(USE_QUICKFILL,1)
# Should we uses color (red/black) balances?
AC_ARG_ENABLE(color,
[ --disable-color don't use color (red/black) balances],
@ -97,8 +94,8 @@ AC_ARG_ENABLE( debug,
[ --enable-debug compile with debugging flags set],
CFLAGS="${CFLAGS} -g"
LDFLAGS="${LDFLAGS} -g"
AC_DEFINE(DEBUG_MEMORY,1) AC_DEFINE(USE_DEBUG,1),
AC_DEFINE(DEBUG_MEMORY,0) AC_DEFINE(USE_DEBUG,0) )
AC_DEFINE(DEBUG_MEMORY,1),
AC_DEFINE(DEBUG_MEMORY,0) )
AC_ARG_ENABLE( profile,
[ --enable-profile compile with profiling set],