diff options
author | Guido Falsi <madpilot@FreeBSD.org> | 2012-09-27 21:59:32 +0000 |
---|---|---|
committer | Guido Falsi <madpilot@FreeBSD.org> | 2012-09-27 21:59:32 +0000 |
commit | 36b26734d34f0466b658ffd2776c49321e9f058e (patch) | |
tree | 5382086e5fcb398ede5c1e1152938af01efff90f /www/squid31/files/patch-configure | |
parent | - Update rsyslog6 to 6.4.2 (diff) |
- Update to 3.1.21
PR: ports/172098
Submitted by: Thomas-Martin Seck <tmseck@web.de> (maintainer)
Approved by: crees, tabthorpe (mentors, implicit)
Notes
Notes:
svn path=/head/; revision=304977
Diffstat (limited to 'www/squid31/files/patch-configure')
-rw-r--r-- | www/squid31/files/patch-configure | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/www/squid31/files/patch-configure b/www/squid31/files/patch-configure deleted file mode 100644 index 2452bff4e81c..000000000000 --- a/www/squid31/files/patch-configure +++ /dev/null @@ -1,23 +0,0 @@ -Correct two configure tests that fail whenn g++ is used instead of gcc. ---- configure.orig 2010-05-30 16:00:03.000000000 +0200 -+++ configure 2010-05-30 16:00:33.000000000 +0200 -@@ -48547,7 +48547,10 @@ - cat >>conftest.$ac_ext <<_ACEOF - /* end confdefs.h. */ - -+#include <sys/types.h> /* for setresuid(2) on FreeBSD */ -+#include <stdio.h> /* for perror(3) on FreeBSD */ - #include <stdlib.h> -+#include <unistd.h> /* for setresuid(2) on FreeBSD */ - int main(int argc, char **argv) { - if(setresuid(-1,-1,-1)) { - perror("setresuid:"); -@@ -48632,7 +48635,7 @@ - int main(int argc, char **argv) - { - int size = 20; -- char *str = malloc(size); -+ char *str = (char *)malloc(size); - memset(str, 'x', size); - strnstr(str, "fubar", size); - return 0; |