Changeset 901 for trunk/server/source3
- Timestamp:
- Apr 1, 2016, 5:22:52 PM (9 years ago)
- Location:
- trunk/server/source3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/build.cmd
r900 r901 79 79 * - added lxlite and emxomfstripe 80 80 * - rename some variables eCS vs OS/2 81 * 82 * version 1.1.1 from 01.04.2016 Silvan 83 * - remove -Zbin-files switch 81 84 */ 82 85 … … 89 92 90 93 /* init the version string (don't forget to change) */ 91 version = "1.1. 0"92 version_date = " 24.03.2016"94 version = "1.1.1" 95 version_date = "01.04.2016" 93 96 94 97 '@echo off' … … 281 284 parse var OS2Ver.I . '='vendor_suffix 282 285 vendor_suffix = strip(vendor_suffix,,'"') 283 parse var vendor_suffix vendor suffix284 286 end 285 287 if left(OS2Ver.I,14) = "MAINTAINED_BY=" then do 286 288 parse var OS2Ver.I . '='maintainedBy 287 289 maintainedBy = '"Maintained by: ' || strip(maintainedBy,,'"') || '"' 290 end 291 if left(OS2Ver.I,15) = "VENDOR_VERSION=" then do 292 parse var OS2Ver.I . '='vendorVersion 293 vendorVersion = strip(vendorVersion,,'"') 288 294 end 289 295 end … … 295 301 OS2Ver.0 = I 296 302 303 if vendorVersion <> "" then do 304 vendor_suffix = '"' || vendor_suffix || ' v' || vendorVersion || '"' 305 end 306 297 307 do until lines(VERSION) = 0 298 308 verline = linein(VERSION) … … 310 320 parse var OS2Ver.I tag'='strvalue 311 321 parse var verline stag'=' . 322 if tag = 'SAMBA_VERSION_VENDOR_SUFFIX' then do 323 strvalue = vendor_suffix 324 end 312 325 if stag = tag then do 313 326 verline = tag'='strvalue … … 321 334 ok = stream(newVersion,'c','close') 322 335 address cmd "sh ./script/mkversion.sh "newVersion" >NUL" 323 verstring = suffix'-'Major'.'minor'.'release'.'revision'-'vendor'-'date('S')336 verstring = vendorVersion'-'Major'.'minor'.'release'.'revision'-OS2-'date('S') 324 337 say 'Samba branded as: ' 325 338 say '"'verstring'"' … … 338 351 call lineout scriptfile, "CXXFLAGS='-O2 -g -march=pentium'"; 339 352 call lineout scriptfile, "export CXXFLAGS"; 340 call lineout scriptfile, "LDFLAGS=' -Zhigh-mem -Zomf -Zargs-wild -Zargs-resp -Zbin-files'";353 call lineout scriptfile, "LDFLAGS=' -Zhigh-mem -Zomf -Zargs-wild -Zargs-resp'"; 341 354 call lineout scriptfile, "export LDFLAGS"; 342 355 call lineout scriptfile, "LIBS='-lmmap -lintl'"; -
trunk/server/source3/version.os2_
r898 r901 1 SAMBA_VERSION_VENDOR_SUFFIX="OS/2 and OS/2-based systems v1.3.0" 1 SAMBA_VERSION_VENDOR_SUFFIX="OS/2 and OS/2-based systems" 2 VENDOR_VERSION="1.3.0" 2 3 MAINTAINED_BY="unknown"
Note:
See TracChangeset
for help on using the changeset viewer.