]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Add pathmax.h prerequisites.
authorBruno Haible <bruno@clisp.org>
Thu, 13 Mar 2003 10:30:19 +0000 (10:30 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:10:15 +0000 (12:10 +0200)
gettext-tools/ChangeLog
gettext-tools/configure.ac
gettext-tools/m4/ChangeLog
gettext-tools/m4/Makefile.am
gettext-tools/m4/pathmax.m4 [new file with mode: 0644]

index 4976bdcbefcdd88a8b91d4776eb0c587d6a4f7c6..98f1cfb906389fca2775e0a51ab66e805e741e53 100644 (file)
@@ -1,3 +1,7 @@
+2003-02-28  Bruno Haible  <bruno@clisp.org>
+
+       * configure.ac: Invoke gl_PATHMAX.
+
 2003-02-22  Bruno Haible  <bruno@clisp.org>
 
        * Makefile.am (ps, pdf): Remove rules, redundant with automake 1.7.2.
index f1346abbb5f7309a6a93210de96e4fcef6916679..88fd70173c5eaeb92e710f2dde445f17969e1fa7 100644 (file)
@@ -111,6 +111,7 @@ gt_SIGNALBLOCKING
 gt_SIGINFO
 gt_FUNC_SETENV
 gt_FUNC_ERROR_AT_LINE
+gl_PATHMAX
 gt_SETLOCALE
 
 gt_PREREQ_HOSTNAME
index d92ac16e5fe8e8d6968b639139919595720ed904..dac5395a93baca2511460d85dde8bc00c5df5db4 100644 (file)
@@ -1,3 +1,8 @@
+2003-02-28  Bruno Haible  <bruno@clisp.org>
+
+       * pathmax.m4: New file, from gnulib.
+       * Makefile.am (EXTRA_DIST): Add it.
+
 2003-02-22  Bruno Haible  <bruno@clisp.org>
 
        * flex.m4 (gt_PROG_LEX): Remove LEX_OUTPUT_ROOT setting, not needed
index 57b65ad90bdfbdbde112b7e5d8c814bfd9fdef0b..274f0b23472e7657a4c4ee141967bcd7bdb72c5b 100644 (file)
@@ -40,6 +40,7 @@ mbstate_t.m4 \
 mbswidth.m4 \
 mkdtemp.m4 \
 onceonly.m4 \
+pathmax.m4 \
 setenv.m4 \
 setlocale.m4 \
 siginfo.m4 \
diff --git a/gettext-tools/m4/pathmax.m4 b/gettext-tools/m4/pathmax.m4
new file mode 100644 (file)
index 0000000..f2f54cc
--- /dev/null
@@ -0,0 +1,13 @@
+# pathmax.m4 serial 1 (gettext-0.12)
+dnl Copyright (C) 2002 Free Software Foundation, Inc.
+dnl This file is free software, distributed under the terms of the GNU
+dnl General Public License.  As a special exception to the GNU General
+dnl Public License, this file may be distributed as part of a program
+dnl that contains a configuration script generated by Autoconf, under
+dnl the same distribution terms as the rest of that program.
+
+AC_DEFUN([gl_PATHMAX],
+[
+  dnl Prerequisites of lib/pathmax.h.
+  AC_CHECK_HEADERS_ONCE(limits.h sys/param.h unistd.h)
+])