mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
044d86321d
- Fix build with clang
14 lines
425 B
Plaintext
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
|