aboutsummaryrefslogtreecommitdiff
path: root/devel/mkmf
diff options
context:
space:
mode:
authorStefan Eßer <se@FreeBSD.org>2002-06-04 22:02:05 +0000
committerStefan Eßer <se@FreeBSD.org>2002-06-04 22:02:05 +0000
commitaca9508f6987c02821be09907fafa457434b5590 (patch)
tree7e82fc099175cf5a218debbe70e97f7a1999d4f5 /devel/mkmf
parent2ebf144a068dbff7e93da4da99500c2eea35ea87 (diff)
downloadports-aca9508f6987c02821be09907fafa457434b5590.tar.gz
ports-aca9508f6987c02821be09907fafa457434b5590.zip
Fix building on -current: Use string.h even if strings.h exists.
Notes
Notes: svn path=/head/; revision=60623
Diffstat (limited to 'devel/mkmf')
-rw-r--r--devel/mkmf/files/patch-ac13
1 files changed, 13 insertions, 0 deletions
diff --git a/devel/mkmf/files/patch-ac b/devel/mkmf/files/patch-ac
new file mode 100644
index 000000000000..2ac7192d5876
--- /dev/null
+++ b/devel/mkmf/files/patch-ac
@@ -0,0 +1,13 @@
+--- src/stringx.h~ Tue Jun 4 12:58:03 2002
++++ src/stringx.h Tue Jun 4 12:58:33 2002
+@@ -47,9 +47,8 @@
+
+ #ifdef _HasIncludeStrings
+ # include <strings.h>
+-#else
+-# include <string.h>
+ #endif
++# include <string.h>
+
+ #ifndef _HasStrDcl
+ int strcmp();