From a21c4721ee5c288ee10609431267b6b6a5aa7010 Mon Sep 17 00:00:00 2001 From: David Hampton Date: Sat, 9 Aug 2003 02:34:18 +0000 Subject: [PATCH] Make autoheader stop complaining. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/branches/gnucash-gnome2-dev@9002 57a11ea4-9604-0410-9ed3-97b8803252fd --- acconfig.h | 61 ------------------------------------ macros/autogen.sh | 1 - macros/gnome-guile-checks.m4 | 2 +- 3 files changed, 1 insertion(+), 63 deletions(-) delete mode 100644 acconfig.h diff --git a/acconfig.h b/acconfig.h deleted file mode 100644 index 3e8bb34a8c..0000000000 --- a/acconfig.h +++ /dev/null @@ -1,61 +0,0 @@ -/********************************************************************\ - * acconfig.h -- configuration defines for gnucash * - * Copyright (C) 1997 Robin D. Clark (rclark@cs.hmc.edu) * - * * - * This program is free software; you can redistribute it and/or * - * modify it under the terms of the GNU General Public License as * - * published by the Free Software Foundation; either version 2 of * - * the License, or (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License* - * along with this program; if not, contact: * - * * - * Free Software Foundation Voice: +1-617-542-5942 * - * 59 Temple Place - Suite 330 Fax: +1-617-542-2652 * - * Boston, MA 02111-1307, USA gnu@gnu.org * - * * -\********************************************************************/ - - -#ifndef GNC_CONFIG_H -#define GNC_CONFIG_H - -/* ieeefp.h header present */ -#undef HAVE_IEEEFP_H - -/* If configure found libXpm, then use it */ -#undef HAVE_XPM - -/* is guile available */ -#undef HAVE_GUILE - -/* New or old Guile Smob for G-wrap */ -#undef GWRAP_OLD_GUILE_SMOB - -/* misc image and compression libs needed by html widget */ -#undef HAVE_ZLIB -#undef HAVE_PNG -#undef HAVE_JPEG - -/* Configure found the function malloc_usable_size */ -#undef HAVE_MALLOC_USABLE_SIZE - - -/*** Begin i18n ***/ - -/* internationalization with catgets */ -#undef HAVE_CATGETS - -/* specific locale directory */ -#undef HAVE_LOCALE_DIR - -/*** End i18n ***/ - -#undef HAVE_XML_VERSION_HEADER - -#endif diff --git a/macros/autogen.sh b/macros/autogen.sh index 92bd91a8b9..a7105f9135 100644 --- a/macros/autogen.sh +++ b/macros/autogen.sh @@ -264,7 +264,6 @@ do $ACLOCAL $aclocalinclude if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then echo "Running ${AUTOHEADER}..." - echo "Note: you can ignore messages about using deprecated aux files" ${AUTOHEADER} || { echo "**Error**: autoheader failed."; exit 1; } fi echo "Running $AUTOMAKE --gnu $am_opt ..." diff --git a/macros/gnome-guile-checks.m4 b/macros/gnome-guile-checks.m4 index 1086d30a4e..289997edf2 100644 --- a/macros/gnome-guile-checks.m4 +++ b/macros/gnome-guile-checks.m4 @@ -94,7 +94,7 @@ AC_DEFUN([GNOME_CHECK_GUILE], scm_boot_guile(0,NULL,NULL,NULL); ],[ ac_cv_guile_found=yes - AC_DEFINE(HAVE_GUILE) + AC_DEFINE(HAVE_GUILE,1,[Guile present]) ],[ ac_cv_guile_found=no ])