ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/build_utils/find_libs.py
(Generate patch)

Comparing ray/build_utils/find_libs.py (file contents):
Revision 1.3 by schorsch, Thu Oct 21 15:47:12 2004 UTC vs.
Revision 1.8 by schorsch, Thu Mar 10 17:36:18 2016 UTC

# Line 1 | Line 1
1 + from __future__ import print_function
2 +
3   import os
4  
5   from SCons.SConf import SConf # aka Configure
6  
7 + def find_radlib(env):
8 +        v = env.FindFile('helvet.fnt', './lib')
9 +        if not v:
10 +                print('''
11 +        Radiance auxiliary support files not found.
12 +        -> Download from radiance-online.org and extract.
13 +        ''')
14 +                env.Exit()
15 +
16   def find_x11(env):
17          # Search for libX11, remember the X11 library and include dirs
18          for d in ('/usr/X11R6', '/usr/X11', '/usr/openwin'):
19                  if os.path.isdir (d):
20                          incdir = os.path.join(d, 'include')
21                          libdir = os.path.join(d, 'lib')
22 <                        env.Append(CPPPATH=[incdir]) # add temporarily
23 <                        env.Append(LIBPATH=[libdir])
22 >                        env.Prepend(CPPPATH=[incdir]) # add temporarily
23 >                        env.Prepend(LIBPATH=[libdir])
24                          conf = SConf(env)
25                          if conf.CheckLibWithHeader('X11', 'X11/X.h', 'C', autoadd=0):
26                                  env.Replace(X11INCLUDE=incdir)
# Line 31 | Line 42 | def find_gl(env):
42          dl = [(None,None)] # standard search path
43          if env.has_key('X11INCLUDE'): # sometimes found there (Darwin)
44                  dl.append((env['X11INCLUDE'], env['X11LIB']))
34        #if os.name == 'nt':
35        #       dl.append((some win specific dirs))
36        #if some other weirdness:
37        #       ...
45          for incdir, libdir in dl:
46 <                if incdir: env.Append(CPPPATH=[incdir]) # add temporarily
47 <                if libdir: env.Append(LIBPATH=[libdir])
46 >                if incdir: env.Prepend(CPPPATH=[incdir]) # add temporarily
47 >                if libdir: env.Prepend(LIBPATH=[libdir])
48                  conf = SConf(env)
49                  if conf.CheckLibWithHeader('GL', 'GL/gl.h', 'C', autoadd=0):
50                          env['OGL'] = 1
# Line 46 | Line 53 | def find_gl(env):
53                  if env.has_key('OGL'):
54                          if incdir: env.Replace(OGLINCLUDE=[incdir])
55                          #if libdir: env.Replace(OGLLIB=[libdir])
56 +                        conf.Finish()
57 +                        break
58 +                conf.Finish()
59 +
60 +
61 + def find_libtiff(env):
62 +        # Check for libtiff, set flag and include/lib directories
63 +        dl = [ (None,None), ] # standard search path
64 +        cfgi = env.get('TIFFINCLUDE')
65 +        cfgl = env.get('TIFFLIB')
66 +        if cfgi or cfgl:
67 +                dl.insert(0,(cfgi, cfgl))
68 +        for incdir, libdir in dl:
69 +                xenv = env.Clone()
70 +                if incdir: xenv.Prepend(CPPPATH=[incdir]) # add temporarily
71 +                if libdir:
72 +                        xenv.Prepend(LIBPATH=[libdir])
73 +                        xenv.Prepend(PATH=[libdir])
74 +                conf = SConf(xenv)
75 +                libname = 'tiff'
76 +                if os.name == 'nt':
77 +                        xenv['INCPREFIX'] = '/I ' # Bug in SCons (uses '/I')
78 +                        libname = 'libtiff'
79 +                if conf.CheckLib(libname, 'TIFFInitSGILog',
80 +                                header='''#include "tiff.h"''', autoadd=0):
81 +                        env['TIFFLIB_INSTALLED'] = 1
82 +                if env.has_key('TIFFLIB_INSTALLED'):
83 +                        env.Replace(RAD_LIBTIFF=libname)
84 +                        if incdir: env.Replace(RAD_TIFFINCLUDE=[incdir])
85 +                        if libdir: env.Replace(RAD_TIFFLIB=[libdir])
86                          conf.Finish()
87                          break
88                  conf.Finish()

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines