From 130c1dcb31e9e435b208a97cd6fc09500981dd34 Mon Sep 17 00:00:00 2001 From: Tom Musgrove Date: Sun, 29 Jan 2006 22:58:58 +0000 Subject: [PATCH] ==SConscript fix for cygwin== cygwin build environ was missing the path for libtiff --- SConstruct | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SConstruct b/SConstruct index f9fef1f1a49..6a9db9f68c5 100644 --- a/SConstruct +++ b/SConstruct @@ -334,6 +334,10 @@ elif sys.platform == 'cygwin': jpeg_lib = ['jpeg'] jpeg_libpath = ['#../lib/windows/jpeg/lib'] jpeg_include = ['#../lib/windows/jpeg/include'] + # Tiff Library information + tiff_lib = ['libtiff'] + tiff_libpath = ['#../lib/windows/tiff/lib'] + tiff_include = ['#../lib/windows/tiff/include'] # OpenGL library information opengl_lib = ['opengl32', 'glu32'] opengl_static = []