From 1b6a83edfa3dafb4ae29d78b40782685cd5d1cea Mon Sep 17 00:00:00 2001 From: Tim Retout Date: Wed, 2 Jan 2008 23:48:12 +0000 Subject: [PATCH] Remove acconfig.h. Add descriptions to path separator definitions. --- ChangeLog | 4 ++++ acconfig.h | 41 ----------------------------------------- configure.ac | 6 ++++-- 3 files changed, 8 insertions(+), 43 deletions(-) delete mode 100644 acconfig.h diff --git a/ChangeLog b/ChangeLog index aab5692..6e19214 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2008-01-02 Tim Retout + * configure.ac: Add description to PATH_SEPARATOR and + PATH_SEPARATOR_STR definitions. + * acconfig.h: Remove. Silences autoheader warning. + * configure.ac (AC_INIT): Quote arguments. (AC_PREREQ): Bump required autoconf version to 2.61. (AM_CONFIG_HEADER): Change to AC_CONFIG_HEADERS, quote arguments. diff --git a/acconfig.h b/acconfig.h deleted file mode 100644 index 601a138..0000000 --- a/acconfig.h +++ /dev/null @@ -1,41 +0,0 @@ -/* Character which is used to separate path components. */ -#undef PATH_SEPARATOR -#undef PATH_SEPARATOR_STR - -/* Package name. */ -#undef PACKAGE - -/* Version number. */ -#undef VERSION - -/* Have strerror() function. */ -#undef HAVE_STRERROR - -/* Have memmove() function. */ -#undef HAVE_MEMMOVE - -/* Have memcpy() function. */ -#undef HAVE_MEMCPY - -/* Have strtoul() function. */ -#undef HAVE_STRTOUL - -/* How to retrieve the current working directory? */ -#undef HAVE_GETCWD -#undef HAVE_GETWD - -/* - * Internationalization stuffs. - */ - -#undef ENABLE_NLS - -#undef HAVE_CATGETS - -#undef HAVE_GETTEXT - -#undef HAVE_LC_MESSAGES - -#undef HAVE_STPCPY - -#undef PROTOTYPES diff --git a/configure.ac b/configure.ac index 3e05ec8..45a53f3 100644 --- a/configure.ac +++ b/configure.ac @@ -100,8 +100,10 @@ ALL_LINGUAS="de es fi fr nl ru sl" AM_GNU_GETTEXT dnl Path separator character. -AC_DEFINE_UNQUOTED(PATH_SEPARATOR, ':') -AC_DEFINE_UNQUOTED(PATH_SEPARATOR_STR, ":") +AC_DEFINE_UNQUOTED([PATH_SEPARATOR], [':'], + [Character used to separate path components.]) +AC_DEFINE_UNQUOTED([PATH_SEPARATOR_STR], [":"], + [Character used to separate path components, as string.]) dnl dnl Scripts -- 2.34.1