diff options
author | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2008-02-12 11:07:18 (GMT) |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2008-02-12 11:07:18 (GMT) |
commit | bd7029a99b0c2974265c6665638ef14a052f42ab (patch) | |
tree | f5661ba73366d81ef6e91f889ea7fec5ebe07b6b /gl/m4/strdup.m4 | |
parent | f99612320d6eda67644c07be04bb21aa4d7789db (diff) | |
download | monitoring-plugins-bd7029a99b0c2974265c6665638ef14a052f42ab.tar.gz |
Sync to latest Gnulib
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1925 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'gl/m4/strdup.m4')
-rw-r--r-- | gl/m4/strdup.m4 | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gl/m4/strdup.m4 b/gl/m4/strdup.m4 index f7786e9..8796e9e 100644 --- a/gl/m4/strdup.m4 +++ b/gl/m4/strdup.m4 | |||
@@ -1,13 +1,20 @@ | |||
1 | # strdup.m4 serial 7 | 1 | # strdup.m4 serial 9 |
2 | dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. | 2 | |
3 | dnl Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software | ||
4 | dnl Foundation, Inc. | ||
5 | |||
3 | dnl This file is free software; the Free Software Foundation | 6 | dnl This file is free software; the Free Software Foundation |
4 | dnl gives unlimited permission to copy and/or distribute it, | 7 | dnl gives unlimited permission to copy and/or distribute it, |
5 | dnl with or without modifications, as long as this notice is preserved. | 8 | dnl with or without modifications, as long as this notice is preserved. |
6 | 9 | ||
7 | AC_DEFUN([gl_FUNC_STRDUP], | 10 | AC_DEFUN([gl_FUNC_STRDUP], |
8 | [ | 11 | [ |
12 | AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS]) | ||
9 | AC_REPLACE_FUNCS(strdup) | 13 | AC_REPLACE_FUNCS(strdup) |
10 | AC_CHECK_DECLS_ONCE(strdup) | 14 | AC_CHECK_DECLS_ONCE(strdup) |
15 | if test $ac_cv_have_decl_strdup = no; then | ||
16 | HAVE_DECL_STRDUP=0 | ||
17 | fi | ||
11 | gl_PREREQ_STRDUP | 18 | gl_PREREQ_STRDUP |
12 | ]) | 19 | ]) |
13 | 20 | ||