summaryrefslogtreecommitdiff
path: root/homebrew/fcgi/patches.sh
blob: 4d90ce5dd0043f535d95ecff9d29e7c526c05624 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
echo 'Creating brew-patch.diff'
cat << EOF >> brew-patch.diff
--- a/libfcgi/fcgi_stdio.c
+++ b/libfcgi/fcgi_stdio.c
@@ -40,7 +40,12 @@

 #ifndef _WIN32

+#if defined(__APPLE__)
+#include <crt_externs.h>
+#define environ (*_NSGetEnviron())
+#else
 extern char **environ;
+#endif

 #ifdef HAVE_FILENO_PROTO
 #include <stdio.h>
EOF