diff options
author | Chris Rees <crees@FreeBSD.org> | 2011-12-28 12:13:37 +0000 |
---|---|---|
committer | Chris Rees <crees@FreeBSD.org> | 2011-12-28 12:13:37 +0000 |
commit | 3156eabc2738cb782e674aea1fa784738d6ef832 (patch) | |
tree | ece94c3b8def87997a0c73c925c83e4896bc6cf7 /irc/unreal/files | |
parent | Deprecate fourth part of obsoleted zope-related ports. (diff) |
Update to 3.2.9
PR: ports/162928
Submitted by: Jr Aquino <tanawts@gmail.com> (maintainer)
Notes
Notes:
svn path=/head/; revision=288165
Diffstat (limited to 'irc/unreal/files')
-rw-r--r-- | irc/unreal/files/patch-Makefile.in | 10 | ||||
-rw-r--r-- | irc/unreal/files/patch-ircd.c | 18 | ||||
-rw-r--r-- | irc/unreal/files/patch-s_conf.c | 24 |
3 files changed, 31 insertions, 21 deletions
diff --git a/irc/unreal/files/patch-Makefile.in b/irc/unreal/files/patch-Makefile.in index 70d829d9f72b..deb4a9866507 100644 --- a/irc/unreal/files/patch-Makefile.in +++ b/irc/unreal/files/patch-Makefile.in @@ -1,11 +1,13 @@ ---- Makefile.in 2009-04-13 13:03:55.000000000 +0200 -+++ Makefile.in 2009-08-18 16:14:35.000000000 +0200 +$FreeBSD$ + +--- Makefile.in 2011-11-05 02:25:24.000000000 -0700 ++++ Makefile.in 2011-11-28 10:21:38.000000000 -0800 @@ -38,7 +38,7 @@ CRYPTOLIB=@CRYPTOLIB@ OPENSSLINCLUDES= --XCFLAGS=-I@TREINCDIR@ -I@CARESINCDIR@ @CARESLIBDIR@ @CFLAGS@ -+XCFLAGS=-I@TREINCDIR@ @CFLAGS@ +-XCFLAGS=@TRE_CFLAGS@ @CARES_CFLAGS@ @CFLAGS@ ++XCFLAGS=-I@TREINCDIR@ @TRE_CFLAGS@ @CFLAGS@ # # use the following on MIPS: #CFLAGS= -systype bsd43 -DSYSTYPE_BSD43 -I$(INCLUDEDIR) diff --git a/irc/unreal/files/patch-ircd.c b/irc/unreal/files/patch-ircd.c index 54e385e3b561..ddd388cb4068 100644 --- a/irc/unreal/files/patch-ircd.c +++ b/irc/unreal/files/patch-ircd.c @@ -1,14 +1,20 @@ ---- src/ircd.c 2009-03-01 19:37:58.000000000 +0100 -+++ src/ircd.c 2009-08-18 16:20:39.000000000 +0200 -@@ -1369,9 +1369,9 @@ +$FreeBSD$ + +--- src/ircd.c 2011-11-05 02:25:24.000000000 -0700 ++++ src/ircd.c 2011-11-28 10:21:38.000000000 -0800 +@@ -1407,12 +1407,12 @@ } #endif #ifndef _WIN32 - mkdir("tmp", S_IRUSR|S_IWUSR|S_IXUSR); /* Create the tmp dir, if it doesn't exist */ + mkdir("%%RUNDIR%%/tmp", S_IRUSR|S_IWUSR|S_IXUSR); /* Create the tmp dir, if it doesn't exist */ + #if defined(USE_LIBCURL) && defined(REMOTEINC_SPECIALCACHE) + mkdir("cache", S_IRUSR|S_IWUSR|S_IXUSR); /* Create the cache dir, if using curl and it doesn't exist */ + #endif #else - mkdir("tmp"); + mkdir("%%RUNDIR%%/tmp"); - #endif - #ifndef _WIN32 - /* + #if defined(USE_LIBCURL) && defined(REMOTEINC_SPECIALCACHE) + mkdir("cache"); + #endif + diff --git a/irc/unreal/files/patch-s_conf.c b/irc/unreal/files/patch-s_conf.c index 373b1dec30a1..ca09cc844035 100644 --- a/irc/unreal/files/patch-s_conf.c +++ b/irc/unreal/files/patch-s_conf.c @@ -1,11 +1,13 @@ ---- src/s_conf.c Mon Mar 21 09:10:42 2005 -+++ src/s_conf.c Mon Mar 21 09:15:09 2005 -@@ -8609,7 +8609,7 @@ - { - char *urlfile = url_getfilename(url); - char *file = unreal_getfilename(urlfile); -- char *tmp = unreal_mktemp("tmp", file); -+ char *tmp = unreal_mktemp("%%RUNDIR%%/tmp", file); - unreal_copyfileex(inc->file, tmp, 1); - add_remote_include(tmp, url, 0, NULL); - free(urlfile); +$FreeBSD$ + +--- src/s_conf.c 2011-11-05 02:25:24.000000000 -0700 ++++ src/s_conf.c 2011-11-28 10:21:38.000000000 -0800 +@@ -9652,7 +9652,7 @@ + { + char *urlfile = url_getfilename(url); + char *file_basename = unreal_getfilename(urlfile); +- char *tmp = unreal_mktemp("tmp", file_basename); ++ char *tmp = unreal_mktemp("%%RUNDIR%%/tmp", file); + free(urlfile); + + if (cached) |