blob: ff4a549de732e7715462517c05e07c2ca99e6d7a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- 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']
|