diff options
author | Bill Fenner <fenner@FreeBSD.org> | 2002-04-09 06:11:19 +0000 |
---|---|---|
committer | Bill Fenner <fenner@FreeBSD.org> | 2002-04-09 06:11:19 +0000 |
commit | b889b7313b9c62f84b4e8f040c9db27bf1932c8f (patch) | |
tree | d31528d34b6dcfad67a31502685e474b96827b40 /net/lambdamoo | |
parent | Don't redefine INT32_MAX (diff) |
Allow close-paren in a prototype [specifically for ioctl in configure]
Notes
Notes:
svn path=/head/; revision=57481
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 000000000000..79fcec9f06c2 --- /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 000000000000..fb633aad702b --- /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> |