Changeset 824 for branches/samba-3.5.x
- Timestamp:
- Nov 6, 2013, 4:23:30 PM (12 years ago)
- 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 68 68 #endif 69 69 70 #if defined(REPLACE_GETPASS) && !defined(__OS2__)70 #if defined(REPLACE_GETPASS) 71 71 #if defined(REPLACE_GETPASS_BY_GETPASSPHRASE) 72 72 #define getpass(prompt) getpassphrase(prompt) -
branches/samba-3.5.x/source3/build.cmd
r821 r824 22 22 /* version 0.3.13 from 15.08.2013 Herwig (create build_anomalies.log, codepages 23 23 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 */ 25 26 26 27 /* load the sysfuncs if not already loaded */ … … 62 63 end 63 64 64 if value('MOZENV',,'OS2ENVIRONMENT') = '' then do65 say "Please set GCC environment properly!"66 exit 25467 end68 69 65 logFile = 'build.log' 70 66 options = 'build.options' … … 148 144 call lineout cacheFile, "ac_cv_path_CUPS_CONFIG='" || sEnvVar || "'"; 149 145 end 146 147 /* our libc provides a correct getpass(), so no need to replace */ 148 call lineout cacheFile, "libreplace_cv_REPLACE_GETPASS=no"; 150 149 151 150 /* is python env set */ … … 298 297 ok = stream(Version,'c','close') 299 298 ok = stream(NewVersion,'c','close') 300 address cmd " ksh ./script/mkversion.sh "NewVersion" >NUL"299 address cmd "sh ./script/mkversion.sh "NewVersion" >NUL" 301 300 ok = SysFileDelete(NewVersion) 302 301 verstring = suffix'-'Major'.'minor'.'release'.'revision'-'vendor'-'date('S') -
branches/samba-3.5.x/source3/configure
r773 r824 21394 21394 21395 21395 21396 ICONV_LOOK_DIRS="/ usr /usr/local /sw /opt"21396 ICONV_LOOK_DIRS="/@unixroot/usr /usr /usr/local /sw /opt" 21397 21397 21398 21398 # Check whether --with-libiconv was given. … … 21634 21634 # We found iconv in libc. 21635 21635 iconv_current_LIBS="" 21636 iconv_current_LDFLAGS="" 21637 iconv_current_CPPFLAGS="" 21636 21638 fi 21637 21639
Note:
See TracChangeset
for help on using the changeset viewer.