* 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:
Derek Atkins 2003-05-09 02:48:54 +00:00
parent 942578370a
commit 5f35450e82
3 changed files with 5 additions and 50 deletions

View File

@ -6,7 +6,10 @@
* configure.in: fix some AC_DEFINE macros
* 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>
* macros/autogen.sh: require autoconf >= 2.53 and automake >= 1.5

View File

@ -25,32 +25,9 @@
#ifndef 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 */
#undef HAVE_IEEEFP_H
/* memcpy present */
#undef HAVE_MEMCPY
/* check for stpcpy for Solaris */
#undef HAVE_STPCPY
/* If configure found libXpm, then use it */
#undef HAVE_XPM
@ -65,23 +42,6 @@
/* New or old Guile Smob for G-wrap */
#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 */
#undef HAVE_ZLIB
#undef HAVE_PNG
@ -93,21 +53,12 @@
/*** Begin i18n ***/
/* internationalization with gettext */
#undef HAVE_GETTEXT
/* internationalization with catgets */
#undef HAVE_CATGETS
/* locale.h contains LC_MESSAGES */
#undef HAVE_LC_MESSAGES
/* specific locale directory */
#undef HAVE_LOCALE_DIR
/* defined if NLS is available */
#undef ENABLE_NLS
/*** End i18n ***/
#undef HAVE_XML_VERSION_HEADER

View File

@ -532,6 +532,7 @@ AC_ARG_ENABLE( hbci,
if test "x$enableval" != "xno" ; then
HBCI_DIR=hbci
fi)
AC_PROG_CXX
if test x${HBCI_DIR} = xhbci ;
then
AM_PATH_OPENHBCI(0.9.6)