diff options
author | Jeremy Messenger <mezz@FreeBSD.org> | 2007-03-25 03:28:37 +0000 |
---|---|---|
committer | Jeremy Messenger <mezz@FreeBSD.org> | 2007-03-25 03:28:37 +0000 |
commit | 23d76ca6e9041c313d0acd8f2f33a87e5de09c9f (patch) | |
tree | 17d13b3b3211184453d9cd2d2fe94dd069a060d6 /net-p2p/linuxdcpp/files/patch-SConstruct | |
parent | Update to OOF680_m14. This is 2.2RC4. (diff) |
Update it to the lastest version of CVS, at 2007-03-24 in changelog. See in
the changelog for details:
http://tinyurl.com/b3myl
Diffstat (limited to '')
-rw-r--r-- | net-p2p/linuxdcpp/files/patch-SConstruct | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/net-p2p/linuxdcpp/files/patch-SConstruct b/net-p2p/linuxdcpp/files/patch-SConstruct index de14e2e24f5f..8f37c538f235 100644 --- a/net-p2p/linuxdcpp/files/patch-SConstruct +++ b/net-p2p/linuxdcpp/files/patch-SConstruct @@ -1,6 +1,6 @@ ---- SConstruct.orig Tue Feb 6 21:27:05 2007 -+++ SConstruct Tue Feb 6 22:31:03 2007 -@@ -91,9 +91,15 @@ +--- SConstruct.orig Sat Mar 24 13:33:17 2007 ++++ SConstruct Sat Mar 24 18:13:16 2007 +@@ -74,12 +74,24 @@ conf_dir = 'build/sconf', log_file = 'build/sconf/config.log') @@ -16,10 +16,19 @@ if os.environ.has_key('CXXFLAGS'): env['CXXFLAGS'] = os.environ['CXXFLAGS'].split() -@@ -145,11 +151,6 @@ ++if os.environ.has_key('CPPPATH'): ++ env['CPPPATH'] = os.environ['CPPPATH'].split() ++ ++if os.environ.has_key('LIBPATH'): ++ env['LIBPATH'] = os.environ['LIBPATH'].split() ++ + env.SConsignFile('build/sconf/.sconsign') + opts.Save('build/sconf/scache.conf', env) + Help(opts.GenerateHelpText(env)) +@@ -125,11 +137,6 @@ + Exit(1) if not conf.CheckHeader('unistd.h'): - print '\tHeader file unistd.h not found' - Exit(1) - - if not conf.CheckLibWithHeader('pthread', 'pthread.h', 'c'): |