Remove acconfig.h. Add descriptions to path separator definitions. - enscript - GNU Enscript
(HTM) git clone git://thinkerwim.org/enscript.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 1b6a83edfa3dafb4ae29d78b40782685cd5d1cea
(DIR) parent 43de77995fca89b6da899d0779681a544d47a53d
(HTM) Author: Tim Retout <diocles@gnu.org>
Date: Wed, 2 Jan 2008 23:48:12 +0000
Remove acconfig.h. Add descriptions to path separator definitions.
Diffstat:
M ChangeLog | 4 ++++
D acconfig.h | 41 -------------------------------
M configure.ac | 6 ++++--
3 files changed, 8 insertions(+), 43 deletions(-)
---
(DIR) diff --git a/ChangeLog b/ChangeLog
@@ -1,5 +1,9 @@
2008-01-02 Tim Retout <diocles@gnu.org>
+ * 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.
(DIR) diff --git a/acconfig.h b/acconfig.h
@@ -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
(DIR) diff --git 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