Part of 'argp' module.
authorBruno Haible <bruno@clisp.org>
Mon, 18 Aug 2003 17:01:23 +0000 (17:01 +0000)
committerBruno Haible <bruno@clisp.org>
Mon, 18 Aug 2003 17:01:23 +0000 (17:01 +0000)
m4/ChangeLog
m4/argp.m4 [new file with mode: 0644]

index 7c56952..2fcbade 100644 (file)
@@ -1,5 +1,9 @@
 2003-08-17  Simon Josefsson  <jas@extundo.com>
 
+       * argp.m4: New file.
+
+2003-08-17  Simon Josefsson  <jas@extundo.com>
+
        * xstrndup.m4: New file.
 
 2003-08-16  Jim Meyering  <jim@meyering.net>
diff --git a/m4/argp.m4 b/m4/argp.m4
new file mode 100644 (file)
index 0000000..fc81004
--- /dev/null
@@ -0,0 +1,13 @@
+# argp.m4 serial 1
+dnl Copyright (C) 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
+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_ARGP],
+[
+  AC_CHECK_HEADERS([argp.h linewrap.h])
+  AC_CHECK_FUNCS(argp_parse)
+])