diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2008-11-19 10:43:57 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2008-11-19 10:43:57 +0000 |
commit | f982be45e81588a27383cd1a3eb12789b8498904 (patch) | |
tree | 07be283d015b2c39f95e655cb7328ff355bc47fa /graphics/yafaray/files/patch-freebsd-settings.py | |
parent | 856c5bf9f133ae5d553d972d5a940586d3f56048 (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_6_4_0'.release/6.4.0
Notes
Notes:
svn path=/head/; revision=223035
svn path=/tags/RELEASE_6_4_0/; revision=223036; tag=release/6.4.0
Diffstat (limited to 'graphics/yafaray/files/patch-freebsd-settings.py')
-rw-r--r-- | graphics/yafaray/files/patch-freebsd-settings.py | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/graphics/yafaray/files/patch-freebsd-settings.py b/graphics/yafaray/files/patch-freebsd-settings.py deleted file mode 100644 index 454943db3bb7..000000000000 --- a/graphics/yafaray/files/patch-freebsd-settings.py +++ /dev/null @@ -1,32 +0,0 @@ ---- freebsd-settings.py.orig Sat Sep 23 00:21:17 2006 -+++ freebsd-settings.py Sat Sep 23 00:21:29 2006 -@@ -10,6 +10,7 @@ - global prefix - prefix = args.get('prefix','/usr/local') - -+def get_include(args): return prefix+"/usr/local/include" - def get_libpath(args): return prefix+"/lib" - def get_pluginpath(args): return prefix+"/lib/yafray" - def get_binpath(args): return prefix+"/bin" -@@ -46,9 +47,9 @@ - class jpeg(globalinfo.library): - C_ID = 'JPEG' - -- def present(args): return os.path.exists("/usr/include/jpeglib.h") -- def get_include(args): return [] -- def get_libpath(args): return [] -+ def present(args): return os.path.exists("/usr/local/include/jpeglib.h") -+ def get_include(args): return ['/usr/local/include'] -+ def get_libpath(args): return ['/usr/local/lib'] - def get_libs(args): return ['jpeg'] - - class pthread(globalinfo.library): -@@ -73,7 +74,7 @@ - def present(args): return True - def get_include(args): return [] - def get_libpath(args): return [] -- def get_libs(args): return ['dl'] -+ def get_libs(args): return [''] - - def derive_shared_env(common_env): - return common_env.Copy() |