1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/lang/moscow_ml/files/patch-config::auto_aux::hasgot
Johan van Selst 044d86321d - Respect $CC
- Fix build with clang
2011-07-25 19:40:47 +00:00

14 lines
425 B
Plaintext

--- config/auto-aux/hasgot.orig 2011-07-25 21:36:30.000000000 +0200
+++ config/auto-aux/hasgot 2011-07-25 21:36:36.000000000 +0200
@@ -1,5 +1,7 @@
#!/bin/sh
-(echo "main() {"
+(
+ for f in $*; do echo "extern void $f(void);"; done
+ echo "int main() {"
for f in $*; do echo " $f();"; done
- echo "}") > hasgot.c
-exec $cc -o tst hasgot.c > /dev/null 2>/dev/null
+ echo "return 0; }") > hasgot.c
+exec $cc -o tst hasgot.c