diff options
author | roger <roger@FreeBSD.org> | 2002-03-07 07:56:06 +0000 |
---|---|---|
committer | roger <roger@FreeBSD.org> | 2002-03-07 07:56:06 +0000 |
commit | 16d37c68f5004ed6aede3d04b2fcdcadb49743df (patch) | |
tree | 4047f63ede53dd54b299de6fb6be4316c8a7fcb8 /net/opal | |
parent | 2ed2739b3d9549a71a497322b9ac128c5539e895 (diff) | |
download | FreeBSD-ports-16d37c68f5004ed6aede3d04b2fcdcadb49743df.zip FreeBSD-ports-16d37c68f5004ed6aede3d04b2fcdcadb49743df.tar.gz |
Fix EOF error from new bison installations.
PR: ports/35144
Diffstat (limited to 'net/opal')
-rw-r--r-- | net/opal/files/patch-ac | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/net/opal/files/patch-ac b/net/opal/files/patch-ac new file mode 100644 index 0000000..52eba06 --- /dev/null +++ b/net/opal/files/patch-ac @@ -0,0 +1,14 @@ +*** ../pwlib/src/ptlib/common/getdate.y.orig Thu Mar 7 07:42:27 2002 +--- ../pwlib/src/ptlib/common/getdate.y Thu Mar 7 07:44:15 2002 +*************** +*** 23,28 **** +--- 23,31 ---- + #include <ctype.h> + #include <stdlib.h> + ++ #ifndef EOF ++ #include <stdio.h> ++ #endif + + #ifdef _MSC_VER + #pragma warning(disable:4131 4701) |