Changeset 489
- Timestamp:
- Aug 20, 2010, 4:14:38 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/server/source3/build.cmd ¶
r486 r489 108 108 109 109 if conf = "YES" then do 110 111 /* 112 113 114 115 110 address cmd 'SETLOCAL' 111 /* address cmd 'SET CFLAGS=-g -Zomf -O1 -march=pentium -mtune=pentium4' 112 address cmd 'SET CXXFLAGS=-g -Zomf -O1 -march=pentium -mtune=pentium4' 113 address cmd 'SET LDFLAGS=-s -Zsym -Zmap -Zbin-files -Zomf -Zexe -Zargs-wild -Zargs-resp' 114 address cmd 'SET AR=emxomfar' 115 address cmd 'SET LIBS=-lsocket -lsyslog' */ 116 116 /* disabled options: 117 117 --enable-developer --enable-socket-wrapper 118 118 */ 119 119 120 120 /* we need to delete the cache file and redo it afterwards */ 121 121 ok = SysFileDelete(cacheFile); 122 122 123 123 /* is cups env set */ 124 125 126 127 124 sEnvVar = EnvGet('CUPS'); 125 if sEnvVar <> '' then do 126 call lineout cacheFile, "ac_cv_path_CUPS_CONFIG='" || sEnvVar || "'"; 127 end 128 128 129 129 /* is python env set */ 130 131 132 133 134 135 136 137 138 139 130 sEnvVar = EnvGet('PYTHONHOME'); 131 if sEnvVar <> '' then do 132 sPythonVersion = PythonVersion(sEnvVar); 133 end 134 if sPythonVersion <> '-1' then do 135 call lineout cacheFile, "ac_cv_path_PYTHON_CONFIG='" || sEnvVar || "/config/" || sPythonVersion || "'"; 136 call lineout cacheFile, "ac_cv_path_PYTHON='" || sEnvVar || "'"; 137 end 138 139 ok = stream(cacheFile, 'c', 'close'); 140 140 141 141 /* run configure */ 142 142 address cmd 'ksh ./configure --enable-pie=no --prefix=/samba --disable-shared --with-acl-support --cache-file=build.cache 2>&1 | tee configure.log' 143 143 address cmd 'ENDLOCAL' 144 144 end 145 145 … … 147 147 address cmd "make clean" 148 148 end 149 149 150 150 if brand = "YES" then do 151 151 svninfo = ".\svninfo" … … 190 190 ok = stream(VerFile, 'c', 'QUERY EXISTS') 191 191 if ok = "" then do 192 193 192 say "Please create a " || VerFile || " based on VERSION.EC_" 193 exit 0 194 194 end 195 195 … … 204 204 eCSVer.I = linein(VerFile) 205 205 if left(eCSVer.I,28) = "SAMBA_VERSION_VENDOR_SUFFIX=" then do 206 207 208 206 parse var eCSver.I . '='vendor_suffix 207 vendor_suffix = strip(vendor_suffix,,'"') 208 parse var vendor_suffix vendor suffix 209 209 end 210 210 end … … 263 263 264 264 ok = SysFileTree(pdir||"\python*.dll",pydll.,"FO") 265 265 rc = -1 266 266 if pydll.0 = 1 then do 267 dllpur = filespec("N",pydll.1) 268 parse var dllpur 'python' ver '.dll' 269 if datatype(ver) <> "NUM" then do 270 say "no valid python dll found!" 271 return -1 272 end 273 else do 274 major = left(ver,1) 275 minor = substr(ver,2,) 276 verstring = "python"||major||"."||minor 277 return verstring 278 end 279 267 dllpur = filespec("N",pydll.1) 268 parse var dllpur 'python' ver '.dll' 269 if datatype(ver) <> "NUM" then do 270 say "no valid python dll found!" 271 end 272 else do 273 major = left(ver,1) 274 minor = substr(ver,2,) 275 verstring = "python"||major||"."||minor 276 rc = verstring 277 end 280 278 end 281 279 else do 282 280 say "no dll found!" 283 return -1284 end 281 end 282 return rc
Note:
See TracChangeset
for help on using the changeset viewer.