mirror of
https://git.freebsd.org/ports.git
synced 2025-06-28 08:00:31 -04:00
22 lines
829 B
Text
22 lines
829 B
Text
--- SConstruct.orig Tue Dec 20 10:56:12 2005
|
|
+++ SConstruct Fri Dec 30 16:43:44 2005
|
|
@@ -735,7 +735,7 @@
|
|
openal_libpath = ['/usr/lib']
|
|
openal_include = ['/usr/include']
|
|
|
|
-elif sys.platform=='freebsd4' or sys.platform=='freebsd5':
|
|
+elif sys.platform=='freebsd4' or sys.platform=='freebsd5' or sys.platform=='freebsd6' or sys.platform=='freebsd7':
|
|
print "Building for FreeBSD"
|
|
use_international = 'false'
|
|
use_gameengine = 'false'
|
|
@@ -773,6 +773,10 @@
|
|
jpeg_lib = ['jpeg']
|
|
jpeg_libpath = ['/usr/local/lib']
|
|
jpeg_include = ['/usr/local/include']
|
|
+ # Tiff Library information
|
|
+ tiff_lib = ['libtiff']
|
|
+ tiff_libpath = ['#../lib/windows/tiff/lib']
|
|
+ tiff_include = ['#../lib/windows/tiff/include']
|
|
# OpenGL library information
|
|
opengl_lib = ['GL', 'GLU']
|
|
opengl_static = ['/usr/lib/libGL.a', '/usr/lib/libGLU.a']
|