Changeset 11745
- Timestamp:
- Feb 11, 2007, 12:05:06 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/configure.tcsh (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/configure.tcsh
r11285 r11745 118 118 119 119 set needlibs = "png z jpeg readline X11 pthread m" 120 set syslibpath = "/ usr/lib /usr/X11R6/lib /usr/openwin/lib"120 set syslibpath = "/lib /usr/lib /usr/X11R6/lib /usr/openwin/lib" 121 121 122 122 set needincs = "math.h fcntl.h malloc.h errno.h time.h memory.h stdlib.h string.h X11/X.h" … … 145 145 if ("$mach" == "x86_64") then 146 146 set arch="lin64"; 147 set syslibpath = "/lib64 /lib /usr/lib64 /usr/lib /usr/X11R6/lib64 /usr/X11R6/lib" 147 148 endif 148 149 breaksw; … … 178 179 set libflags = "" 179 180 set libdirs = "" 181 set nonomatch 180 182 foreach f ( $needlibs ) 181 183 foreach g ( $syslibpath $lib $libpath ) 182 set name = "$g/lib$f.a"183 if (-e $name ) goto got_lib;184 set name = "$g/lib$f.so"185 if (-e $name ) goto got_lib;184 set name = $g/lib$f.a 185 if (-e $name[1]) goto got_lib; 186 set name = $g/lib$f.so* 187 if (-e $name[1]) goto got_lib; 186 188 end 187 189 echo "missing lib$f"
Note:
See TracChangeset
for help on using the changeset viewer.
