Changeset 824 for branches/samba-3.5.x


Ignore:
Timestamp:
Nov 6, 2013, 4:23:30 PM (12 years ago)
Author:
Silvan Scherrer
Message:

Samba 3.5: configure adjustment for iconv, don't replace getpas

Location:
branches/samba-3.5.x
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.5.x/lib/replace/system/passwd.h

    r456 r824  
    6868#endif
    6969
    70 #if defined(REPLACE_GETPASS) && !defined(__OS2__)
     70#if defined(REPLACE_GETPASS)
    7171#if defined(REPLACE_GETPASS_BY_GETPASSPHRASE)
    7272#define getpass(prompt) getpassphrase(prompt)
  • branches/samba-3.5.x/source3/build.cmd

    r821 r824  
    2222/* version 0.3.13 from 15.08.2013 Herwig (create build_anomalies.log, codepages
    2323                                          to ZIP, libc065 switching) */
    24 /* version 1.0.0 from 06.11.2013 Silvan (conf has to create version.h also) */
     24/* version 1.0.0 from 06.11.2013 Silvan (conf has to create version.h also,
     25                                         don't check for env anymore, use sh only */
    2526                                         
    2627/* load the sysfuncs if not already loaded */
     
    6263end
    6364
    64 if value('MOZENV',,'OS2ENVIRONMENT') = '' then do
    65    say "Please set GCC environment properly!"
    66    exit 254
    67 end
    68 
    6965logFile   = 'build.log'
    7066options   = 'build.options'
     
    148144        call lineout cacheFile, "ac_cv_path_CUPS_CONFIG='" || sEnvVar || "'";
    149145    end
     146
     147/* our libc provides a correct getpass(), so no need to replace */
     148    call lineout cacheFile, "libreplace_cv_REPLACE_GETPASS=no";
    150149
    151150/* is python env set */
     
    298297    ok = stream(Version,'c','close')
    299298    ok = stream(NewVersion,'c','close')
    300     address cmd "ksh ./script/mkversion.sh "NewVersion" >NUL"
     299    address cmd "sh ./script/mkversion.sh "NewVersion" >NUL"
    301300    ok = SysFileDelete(NewVersion)
    302301    verstring = suffix'-'Major'.'minor'.'release'.'revision'-'vendor'-'date('S')
  • branches/samba-3.5.x/source3/configure

    r773 r824  
    2139421394
    2139521395
    21396 ICONV_LOOK_DIRS="/usr /usr/local /sw /opt"
     21396ICONV_LOOK_DIRS="/@unixroot/usr /usr /usr/local /sw /opt"
    2139721397
    2139821398# Check whether --with-libiconv was given.
     
    2163421634            # We found iconv in libc.
    2163521635            iconv_current_LIBS=""
     21636            iconv_current_LDFLAGS=""
     21637            iconv_current_CPPFLAGS=""
    2163621638        fi
    2163721639
Note: See TracChangeset for help on using the changeset viewer.