Changeset 742


Ignore:
Timestamp:
Nov 15, 2012, 4:31:30 PM (13 years ago)
Author:
Herwig Bauernfeind
Message:

build 0.3.10: make libc switching really optional

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.5.x/source3/build.cmd

    r738 r742  
    1717/* version 0.3.8 from 09.11.2012 Silvan (eliminated the 2nd brand function) */
    1818/* version 0.3.9 from 12.11.2012 Silvan (never use ksh, now using sh) */
     19/* version 0.3.10 from 12.11.2012 Herwig (make libc switching really optional) */
    1920                                         
    2021/* load the sysfuncs if not already loaded */
     
    2627
    2728/* init the version string (don't forget to change) */
    28 version = "0.3.9"
    29 version_date = "12.11.2012"
     29version = "0.3.10"
     30version_date = "15.11.2012"
    3031
    3132/* number of make jobs to execute at the same time */
     
    8990/* delete the following 7 lines to remove libc switching capability */
    9091select
     92    when pos("064", cmdline) > 0 then  libc = "063"
    9193    when pos("064X", cmdline) > 0 then libc = "064X"
    9294    when pos("063", cmdline) > 0 then  libc = "063"
    93     otherwise libc = "064"
    94 end
    95 address cmd "call "libc".cmd"
     95    otherwise libc = ""
     96end
     97if libc <> "" then address cmd "call "libc".cmd"
    9698
    9799if pos("MAKE", cmdline) > 0 then do
Note: See TracChangeset for help on using the changeset viewer.