Changeset 489


Ignore:
Timestamp:
Aug 20, 2010, 4:14:38 PM (15 years ago)
Author:
Herwig Bauernfeind
Message:

Samba Server 3.5: Enabled more modules

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/server/source3/build.cmd

    r486 r489  
    108108
    109109if conf = "YES" then do
    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' */
     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' */
    116116    /* disabled options:
    117         --enable-developer --enable-socket-wrapper
     117        --enable-developer --enable-socket-wrapper
    118118     */
    119119
    120120/* we need to delete the cache file and redo it afterwards */
    121         ok = SysFileDelete(cacheFile);
     121    ok = SysFileDelete(cacheFile);
    122122
    123123/* is cups env set */
    124         sEnvVar = EnvGet('CUPS');
    125         if sEnvVar <> '' then do
    126         call lineout cacheFile, "ac_cv_path_CUPS_CONFIG='" || sEnvVar || "'";
    127         end
     124        sEnvVar = EnvGet('CUPS');
     125    if sEnvVar <> '' then do
     126    call lineout cacheFile, "ac_cv_path_CUPS_CONFIG='" || sEnvVar || "'";
     127    end
    128128
    129129/* is python env set */
    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');
     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');
    140140
    141141/* run configure */
    142142    address cmd 'ksh ./configure --enable-pie=no --prefix=/samba --disable-shared --with-acl-support --cache-file=build.cache 2>&1 | tee configure.log'
    143         address cmd 'ENDLOCAL'
     143    address cmd 'ENDLOCAL'
    144144end
    145145
     
    147147    address cmd "make clean"
    148148end
    149            
     149       
    150150if brand = "YES" then do
    151151    svninfo = ".\svninfo"
     
    190190    ok = stream(VerFile, 'c', 'QUERY EXISTS')
    191191    if ok = "" then do
    192         say "Please create a " || VerFile || " based on VERSION.EC_"
    193         exit 0
     192        say "Please create a " || VerFile || " based on VERSION.EC_"
     193        exit 0
    194194    end
    195195
     
    204204        eCSVer.I = linein(VerFile)
    205205        if left(eCSVer.I,28) = "SAMBA_VERSION_VENDOR_SUFFIX=" then do
    206                     parse var eCSver.I . '='vendor_suffix
    207                     vendor_suffix = strip(vendor_suffix,,'"')
    208                     parse var vendor_suffix vendor suffix
     206            parse var eCSver.I . '='vendor_suffix
     207            vendor_suffix = strip(vendor_suffix,,'"')
     208            parse var vendor_suffix vendor suffix
    209209        end
    210210    end
     
    263263
    264264    ok = SysFileTree(pdir||"\python*.dll",pydll.,"FO")
    265 
     265    rc = -1
    266266    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
    280278    end
    281279    else do
    282280        say "no dll found!"
    283         return -1
    284         end
     281    end
     282return rc
Note: See TracChangeset for help on using the changeset viewer.