mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
* acconfig.h: remove duplicate entries (for use with more recent autoheader)
* configure.in: supply AC_PROG_CXX to fix the automake-1.7 problem git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8283 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
942578370a
commit
5f35450e82
@ -7,6 +7,9 @@
|
|||||||
* configure.in: fix some AC_DEFINE macros
|
* configure.in: fix some AC_DEFINE macros
|
||||||
* macros/autogen.sh: a bit more work on the version searches.
|
* macros/autogen.sh: a bit more work on the version searches.
|
||||||
|
|
||||||
|
* acconfig.h: remove duplicate entries (for use with more recent autoheader)
|
||||||
|
* configure.in: supply AC_PROG_CXX to fix the automake-1.7 problem
|
||||||
|
|
||||||
2003-05-07 Derek Atkins <derek@ihtfp.com>
|
2003-05-07 Derek Atkins <derek@ihtfp.com>
|
||||||
|
|
||||||
* macros/autogen.sh: require autoconf >= 2.53 and automake >= 1.5
|
* macros/autogen.sh: require autoconf >= 2.53 and automake >= 1.5
|
||||||
|
49
acconfig.h
49
acconfig.h
@ -25,32 +25,9 @@
|
|||||||
#ifndef GNC_CONFIG_H
|
#ifndef GNC_CONFIG_H
|
||||||
#define GNC_CONFIG_H
|
#define GNC_CONFIG_H
|
||||||
|
|
||||||
/* Package name and version number */
|
|
||||||
#undef PACKAGE
|
|
||||||
#undef VERSION
|
|
||||||
|
|
||||||
#undef GNUCASH_MAJOR_VERSION
|
|
||||||
#undef GNUCASH_MINOR_VERSION
|
|
||||||
#undef GNUCASH_MICRO_VERSION
|
|
||||||
|
|
||||||
/* Are we compiling for GNOME? The answer right now is always yes... */
|
|
||||||
#undef GNOME
|
|
||||||
|
|
||||||
/* Do some memory debugging stuff */
|
|
||||||
#define DEBUG_MEMORY
|
|
||||||
|
|
||||||
/* limits.h header present */
|
|
||||||
#undef HAVE_LIMITS_H
|
|
||||||
|
|
||||||
/* ieeefp.h header present */
|
/* ieeefp.h header present */
|
||||||
#undef HAVE_IEEEFP_H
|
#undef HAVE_IEEEFP_H
|
||||||
|
|
||||||
/* memcpy present */
|
|
||||||
#undef HAVE_MEMCPY
|
|
||||||
|
|
||||||
/* check for stpcpy for Solaris */
|
|
||||||
#undef HAVE_STPCPY
|
|
||||||
|
|
||||||
/* If configure found libXpm, then use it */
|
/* If configure found libXpm, then use it */
|
||||||
#undef HAVE_XPM
|
#undef HAVE_XPM
|
||||||
|
|
||||||
@ -65,23 +42,6 @@
|
|||||||
/* New or old Guile Smob for G-wrap */
|
/* New or old Guile Smob for G-wrap */
|
||||||
#undef GWRAP_OLD_GUILE_SMOB
|
#undef GWRAP_OLD_GUILE_SMOB
|
||||||
|
|
||||||
/* The db1 database library */
|
|
||||||
#undef PREFER_DB1
|
|
||||||
|
|
||||||
/* Should we add guppi support? */
|
|
||||||
#undef USE_GUPPI
|
|
||||||
|
|
||||||
/* Should we have efence linked in */
|
|
||||||
#undef USE_EFENCE
|
|
||||||
|
|
||||||
/* Use the new gtkhtml widget instead of the old xmhtml widget */
|
|
||||||
#undef HAVE_LIBGTKHTML
|
|
||||||
|
|
||||||
/* SSL support for ghttp is still not in the main tree, so test for it
|
|
||||||
* separately */
|
|
||||||
#undef HAVE_LIBGHTTP
|
|
||||||
#undef HAVE_OPENSSL
|
|
||||||
|
|
||||||
/* misc image and compression libs needed by html widget */
|
/* misc image and compression libs needed by html widget */
|
||||||
#undef HAVE_ZLIB
|
#undef HAVE_ZLIB
|
||||||
#undef HAVE_PNG
|
#undef HAVE_PNG
|
||||||
@ -93,21 +53,12 @@
|
|||||||
|
|
||||||
/*** Begin i18n ***/
|
/*** Begin i18n ***/
|
||||||
|
|
||||||
/* internationalization with gettext */
|
|
||||||
#undef HAVE_GETTEXT
|
|
||||||
|
|
||||||
/* internationalization with catgets */
|
/* internationalization with catgets */
|
||||||
#undef HAVE_CATGETS
|
#undef HAVE_CATGETS
|
||||||
|
|
||||||
/* locale.h contains LC_MESSAGES */
|
|
||||||
#undef HAVE_LC_MESSAGES
|
|
||||||
|
|
||||||
/* specific locale directory */
|
/* specific locale directory */
|
||||||
#undef HAVE_LOCALE_DIR
|
#undef HAVE_LOCALE_DIR
|
||||||
|
|
||||||
/* defined if NLS is available */
|
|
||||||
#undef ENABLE_NLS
|
|
||||||
|
|
||||||
/*** End i18n ***/
|
/*** End i18n ***/
|
||||||
|
|
||||||
#undef HAVE_XML_VERSION_HEADER
|
#undef HAVE_XML_VERSION_HEADER
|
||||||
|
@ -532,6 +532,7 @@ AC_ARG_ENABLE( hbci,
|
|||||||
if test "x$enableval" != "xno" ; then
|
if test "x$enableval" != "xno" ; then
|
||||||
HBCI_DIR=hbci
|
HBCI_DIR=hbci
|
||||||
fi)
|
fi)
|
||||||
|
AC_PROG_CXX
|
||||||
if test x${HBCI_DIR} = xhbci ;
|
if test x${HBCI_DIR} = xhbci ;
|
||||||
then
|
then
|
||||||
AM_PATH_OPENHBCI(0.9.6)
|
AM_PATH_OPENHBCI(0.9.6)
|
||||||
|
Loading…
Reference in New Issue
Block a user