diff options
author | Bruno Haible <bruno@clisp.org> | 2004-07-15 10:32:54 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:11:53 +0200 |
commit | 43571d9baf0f2f9f7dc49e798eabca6ddba7875e (patch) | |
tree | 74ce449580a81f185340ad57216c36647ef8a070 /autoconf-lib-link | |
parent | bdae60fdd59c3f326e1aae430170d864cef49a3c (diff) | |
download | external_gettext-43571d9baf0f2f9f7dc49e798eabca6ddba7875e.zip external_gettext-43571d9baf0f2f9f7dc49e798eabca6ddba7875e.tar.gz external_gettext-43571d9baf0f2f9f7dc49e798eabca6ddba7875e.tar.bz2 |
Same /usr/local/include handling on Hurd and on GNU/k*BSD as on Linux.
Diffstat (limited to 'autoconf-lib-link')
-rw-r--r-- | autoconf-lib-link/m4/ChangeLog | 6 | ||||
-rw-r--r-- | autoconf-lib-link/m4/lib-link.m4 | 8 | ||||
-rw-r--r-- | autoconf-lib-link/m4/lib-prefix.m4 | 4 |
3 files changed, 12 insertions, 6 deletions
diff --git a/autoconf-lib-link/m4/ChangeLog b/autoconf-lib-link/m4/ChangeLog index 2999843..de7cd4b 100644 --- a/autoconf-lib-link/m4/ChangeLog +++ b/autoconf-lib-link/m4/ChangeLog @@ -1,3 +1,9 @@ +2004-07-13 Robert Millan <robertmh@gnu.org> + + * lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Same /usr/local/include handling + on Hurd and on GNU/k*BSD as on Linux. + * lib-prefix.m4 (AC_LIB_PREFIX): Likewise. + 2004-01-29 Bruno Haible <bruno@clisp.org> * gettext-0.14.1 released. diff --git a/autoconf-lib-link/m4/lib-link.m4 b/autoconf-lib-link/m4/lib-link.m4 index eeb200d..20cc7fb 100644 --- a/autoconf-lib-link/m4/lib-link.m4 +++ b/autoconf-lib-link/m4/lib-link.m4 @@ -1,5 +1,5 @@ -# lib-link.m4 serial 4 (gettext-0.12) -dnl Copyright (C) 2001-2003 Free Software Foundation, Inc. +# lib-link.m4 serial 5 (gettext-0.15) +dnl Copyright (C) 2001-2004 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 @@ -350,7 +350,7 @@ AC_DEFUN([AC_LIB_LINKFLAGS_BODY], if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in - linux*) haveit=yes;; + linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi @@ -399,7 +399,7 @@ AC_DEFUN([AC_LIB_LINKFLAGS_BODY], if test "X$additional_libdir" = "X/usr/local/lib"; then if test -n "$GCC"; then case $host_os in - linux*) haveit=yes;; + linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi diff --git a/autoconf-lib-link/m4/lib-prefix.m4 b/autoconf-lib-link/m4/lib-prefix.m4 index 8aff5a9..acbd712 100644 --- a/autoconf-lib-link/m4/lib-prefix.m4 +++ b/autoconf-lib-link/m4/lib-prefix.m4 @@ -1,4 +1,4 @@ -# lib-prefix.m4 serial 3 (gettext-0.13) +# lib-prefix.m4 serial 4 (gettext-0.15) dnl Copyright (C) 2001-2003 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 @@ -71,7 +71,7 @@ AC_DEFUN([AC_LIB_PREFIX], if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in - linux*) haveit=yes;; + linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi |