diff options
author | fenner <fenner@FreeBSD.org> | 2002-04-09 06:11:19 +0000 |
---|---|---|
committer | fenner <fenner@FreeBSD.org> | 2002-04-09 06:11:19 +0000 |
commit | 590212974b7402c00161832af50920588c9ab6af (patch) | |
tree | db40a8fcae75425d0ff443c3f7df342157d36109 /net/lambdamoo | |
parent | 14315f82da28ccb828fb8807d3f0c92ee67a81d7 (diff) | |
download | FreeBSD-ports-590212974b7402c00161832af50920588c9ab6af.zip FreeBSD-ports-590212974b7402c00161832af50920588c9ab6af.tar.gz |
Allow close-paren in a prototype [specifically for ioctl in configure]
Diffstat (limited to 'net/lambdamoo')
-rw-r--r-- | net/lambdamoo/files/patch-configure | 11 | ||||
-rw-r--r-- | net/lambdamoo/files/patch-configure.in | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/net/lambdamoo/files/patch-configure b/net/lambdamoo/files/patch-configure new file mode 100644 index 0000000..79fcec9 --- /dev/null +++ b/net/lambdamoo/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig Mon Apr 8 22:32:10 2002 ++++ configure Mon Apr 8 22:51:13 2002 +@@ -1618,7 +1618,7 @@ + do + echo "checking whether $func is declared in sys/ioctl.h" + +-pattern="[^_a-zA-Z0-9]$func *\(" ++pattern="[^_a-zA-Z0-9]$func\)? *\(" + cat > conftest.c <<EOF + #include "confdefs.h" + diff --git a/net/lambdamoo/files/patch-configure.in b/net/lambdamoo/files/patch-configure.in new file mode 100644 index 0000000..fb633aa --- /dev/null +++ b/net/lambdamoo/files/patch-configure.in @@ -0,0 +1,11 @@ +--- configure.in.orig Mon Apr 8 22:31:30 2002 ++++ configure.in Mon Apr 8 22:52:21 2002 +@@ -105,7 +105,7 @@ + dnl `header'. + define(MOO_FUNC_DECL_CHECK, [ + changequote(,)dnl +-pattern="[^_a-zA-Z0-9]$2 *\(" ++pattern="[^_a-zA-Z0-9]$2\)? *\(" + changequote([,])dnl + AC_PROGRAM_EGREP($pattern, [ + #include <$1> |