From: Bruno Haible Date: Thu, 13 Mar 2003 10:30:19 +0000 (+0000) Subject: Add pathmax.h prerequisites. X-Git-Tag: v0.12~163 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a8677ddac3d50910914f1e0481db55be6a735d0;p=thirdparty%2Fgettext.git Add pathmax.h prerequisites. --- diff --git a/gettext-tools/ChangeLog b/gettext-tools/ChangeLog index 4976bdcbe..98f1cfb90 100644 --- a/gettext-tools/ChangeLog +++ b/gettext-tools/ChangeLog @@ -1,3 +1,7 @@ +2003-02-28 Bruno Haible + + * configure.ac: Invoke gl_PATHMAX. + 2003-02-22 Bruno Haible * Makefile.am (ps, pdf): Remove rules, redundant with automake 1.7.2. diff --git a/gettext-tools/configure.ac b/gettext-tools/configure.ac index f1346abbb..88fd70173 100644 --- a/gettext-tools/configure.ac +++ b/gettext-tools/configure.ac @@ -111,6 +111,7 @@ gt_SIGNALBLOCKING gt_SIGINFO gt_FUNC_SETENV gt_FUNC_ERROR_AT_LINE +gl_PATHMAX gt_SETLOCALE gt_PREREQ_HOSTNAME diff --git a/gettext-tools/m4/ChangeLog b/gettext-tools/m4/ChangeLog index d92ac16e5..dac5395a9 100644 --- a/gettext-tools/m4/ChangeLog +++ b/gettext-tools/m4/ChangeLog @@ -1,3 +1,8 @@ +2003-02-28 Bruno Haible + + * pathmax.m4: New file, from gnulib. + * Makefile.am (EXTRA_DIST): Add it. + 2003-02-22 Bruno Haible * flex.m4 (gt_PROG_LEX): Remove LEX_OUTPUT_ROOT setting, not needed diff --git a/gettext-tools/m4/Makefile.am b/gettext-tools/m4/Makefile.am index 57b65ad90..274f0b234 100644 --- a/gettext-tools/m4/Makefile.am +++ b/gettext-tools/m4/Makefile.am @@ -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 index 000000000..f2f54cc76 --- /dev/null +++ b/gettext-tools/m4/pathmax.m4 @@ -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) +])