mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-29 04:04:07 -06:00
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:
parent
8724fd8081
commit
a1c0c95f9c
20
acconfig.h
20
acconfig.h
@ -29,20 +29,11 @@
|
|||||||
#undef PACKAGE
|
#undef PACKAGE
|
||||||
#undef VERSION
|
#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... */
|
/* Are we compiling for GNOME? The answer right now is always yes... */
|
||||||
#undef GNOME
|
#undef GNOME
|
||||||
|
|
||||||
/* Do some memory debugging stuff */
|
/* Do some memory debugging stuff */
|
||||||
#define DEBUG_MEMORY
|
#define DEBUG_MEMORY
|
||||||
|
|
||||||
/* Enable debugging stuff */
|
|
||||||
#define USE_DEBUG
|
|
||||||
|
|
||||||
/* Standard C headers present */
|
|
||||||
#undef STDC_HEADERS
|
|
||||||
|
|
||||||
/* limits.h header present */
|
/* limits.h header present */
|
||||||
#undef HAVE_LIMITS_H
|
#undef HAVE_LIMITS_H
|
||||||
@ -53,18 +44,15 @@
|
|||||||
/* check for stpcpy for Solaris */
|
/* check for stpcpy for Solaris */
|
||||||
#undef HAVE_STPCPY
|
#undef HAVE_STPCPY
|
||||||
|
|
||||||
/* Enable quickfill in register window */
|
|
||||||
#define USE_QUICKFILL
|
|
||||||
|
|
||||||
/* Don't color the balance depending on whether positive
|
/* Don't color the balance depending on whether positive
|
||||||
* or negative */
|
* or negative */
|
||||||
#define USE_NO_COLOR
|
#define USE_NO_COLOR
|
||||||
|
|
||||||
/* If configure found libXpm, then use it */
|
/* If configure found libXpm, then use it */
|
||||||
#define HAVE_XPM
|
#undef HAVE_XPM
|
||||||
|
|
||||||
/* Use the new gtkhtml widget instead of the old xmhtml widget */
|
/* Use the new gtkhtml widget instead of the old xmhtml widget */
|
||||||
#define HAVE_LIBGTKHTML 1
|
#undef HAVE_LIBGTKHTML
|
||||||
|
|
||||||
/* use gnomeprint if it's available */
|
/* use gnomeprint if it's available */
|
||||||
#undef HAVE_LIBGNOMEPRINT
|
#undef HAVE_LIBGNOMEPRINT
|
||||||
|
20
config.h.in
20
config.h.in
@ -50,36 +50,24 @@
|
|||||||
/* Define if the X Window System is missing or not being used. */
|
/* Define if the X Window System is missing or not being used. */
|
||||||
#undef X_DISPLAY_MISSING
|
#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... */
|
/* Are we compiling for GNOME? The answer right now is always yes... */
|
||||||
#undef GNOME
|
#undef GNOME
|
||||||
|
|
||||||
/* Do some memory debugging stuff */
|
/* Do some memory debugging stuff */
|
||||||
#define DEBUG_MEMORY
|
#define DEBUG_MEMORY
|
||||||
|
|
||||||
/* Enable debugging stuff */
|
|
||||||
#define USE_DEBUG
|
|
||||||
|
|
||||||
/* Standard C headers present */
|
|
||||||
#undef STDC_HEADERS
|
|
||||||
|
|
||||||
/* check for stpcpy for Solaris */
|
/* check for stpcpy for Solaris */
|
||||||
#undef HAVE_STPCPY
|
#undef HAVE_STPCPY
|
||||||
|
|
||||||
/* Enable quickfill in register window */
|
|
||||||
#define USE_QUICKFILL
|
|
||||||
|
|
||||||
/* Don't color the balance depending on whether positive
|
/* Don't color the balance depending on whether positive
|
||||||
* or negative */
|
* or negative */
|
||||||
#define USE_NO_COLOR
|
#define USE_NO_COLOR
|
||||||
|
|
||||||
/* If configure found libXpm, then use it */
|
/* If configure found libXpm, then use it */
|
||||||
#define HAVE_XPM
|
#undef HAVE_XPM
|
||||||
|
|
||||||
/* Use the new gtkhtml widget instead of the old xmhtml widget */
|
/* Use the new gtkhtml widget instead of the old xmhtml widget */
|
||||||
#define HAVE_LIBGTKHTML 1
|
#undef HAVE_LIBGTKHTML
|
||||||
|
|
||||||
/* use gnomeprint if it's available */
|
/* use gnomeprint if it's available */
|
||||||
#undef HAVE_LIBGNOMEPRINT
|
#undef HAVE_LIBGNOMEPRINT
|
||||||
|
@ -50,9 +50,6 @@ AC_CHECK_FUNCS(stpcpy memcpy)
|
|||||||
### Variables
|
### Variables
|
||||||
### Set up all the initial variable values...
|
### Set up all the initial variable values...
|
||||||
|
|
||||||
# USE_QUICKFILL:
|
|
||||||
AC_DEFINE(USE_QUICKFILL,1)
|
|
||||||
|
|
||||||
# Should we uses color (red/black) balances?
|
# Should we uses color (red/black) balances?
|
||||||
AC_ARG_ENABLE(color,
|
AC_ARG_ENABLE(color,
|
||||||
[ --disable-color don't use color (red/black) balances],
|
[ --disable-color don't use color (red/black) balances],
|
||||||
@ -97,8 +94,8 @@ AC_ARG_ENABLE( debug,
|
|||||||
[ --enable-debug compile with debugging flags set],
|
[ --enable-debug compile with debugging flags set],
|
||||||
CFLAGS="${CFLAGS} -g"
|
CFLAGS="${CFLAGS} -g"
|
||||||
LDFLAGS="${LDFLAGS} -g"
|
LDFLAGS="${LDFLAGS} -g"
|
||||||
AC_DEFINE(DEBUG_MEMORY,1) AC_DEFINE(USE_DEBUG,1),
|
AC_DEFINE(DEBUG_MEMORY,1),
|
||||||
AC_DEFINE(DEBUG_MEMORY,0) AC_DEFINE(USE_DEBUG,0) )
|
AC_DEFINE(DEBUG_MEMORY,0) )
|
||||||
|
|
||||||
AC_ARG_ENABLE( profile,
|
AC_ARG_ENABLE( profile,
|
||||||
[ --enable-profile compile with profiling set],
|
[ --enable-profile compile with profiling set],
|
||||||
|
Loading…
Reference in New Issue
Block a user