changeset 4594:3d0ca08c37db

Part of 'argp' module.
author Bruno Haible <bruno@clisp.org>
date Mon, 18 Aug 2003 17:01:23 +0000
parents 4b4b9fe72212
children 4cc6ae8a82f6
files m4/ChangeLog m4/argp.m4
diffstat 2 files changed, 17 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/m4/ChangeLog
+++ b/m4/ChangeLog
@@ -1,3 +1,7 @@
+2003-08-17  Simon Josefsson  <jas@extundo.com>
+
+	* argp.m4: New file.
+
 2003-08-17  Simon Josefsson  <jas@extundo.com>
 
 	* xstrndup.m4: New file.
new file mode 100644
--- /dev/null
+++ b/m4/argp.m4
@@ -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)
+])