Changeset 778 for branches/samba-3.5.x/source3
- Timestamp:
- Jul 11, 2013, 6:25:21 PM (12 years ago)
- Location:
- branches/samba-3.5.x/source3
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.5.x/source3/build.cmd
r775 r778 18 18 /* version 0.3.9 from 12.11.2012 Silvan (never use ksh, now using sh) */ 19 19 /* version 0.3.10 from 12.11.2012 Herwig (make libc switching really optional) */ 20 /* version 0.3.11 from 15.11.2012 Silvan (python also in unixroot) */ 21 /* version 0.3.12 from 30.11.2012 Silvan (maintained by) */ 20 22 21 23 /* load the sysfuncs if not already loaded */ … … 27 29 28 30 /* init the version string (don't forget to change) */ 29 version = "0.3.1 0"30 version_date = " 15.11.2012"31 version = "0.3.12" 32 version_date = "30.11.2012" 31 33 32 34 /* number of make jobs to execute at the same time */ … … 153 155 end 154 156 end 157 else do 158 sEnvVar = EnvGet('UNIXROOT'); 159 if sEnvVar <> '' then do 160 sEnvVar = sEnvVar || '/usr' 161 sPythonVersion = PythonVersion(sEnvVar|| '/lib'); 162 if sPythonVersion <> '-1' then do 163 call lineout cacheFile, "ac_cv_path_PYTHON_CONFIG='" || sEnvVar || "/lib/" || sPythonVersion || "'"; 164 call lineout cacheFile, "ac_cv_path_PYTHON='" || sEnvVar || "/include'"; 165 end 166 end 167 end 155 168 156 169 ok = stream(cacheFile, 'c', 'close'); … … 197 210 /* eComStation Version file */ 198 211 VerFile = "VERSION.ECS" 212 maintainedBy = "unknown" 199 213 200 214 /* is the file available */ … … 219 233 parse var vendor_suffix vendor suffix 220 234 end 235 if left(eCSVer.I,14) = "MAINTAINED_BY=" then do 236 parse var eCSver.I . '='maintainedBy 237 maintainedBy = '"Maintained by: ' || strip(maintainedBy,,'"') || '"' 238 end 221 239 end 222 240 ok = stream(VerFile, 'c', 'close') … … 248 266 if Verline <> "=" then call lineout NewVersion, verline 249 267 end 268 if maintainedBy <> "" then call lineout NewVersion, "MAINTAINED_BY="maintainedBy 250 269 251 270 ok = stream(Version,'c','close') … … 255 274 verstring = suffix'-'Major'.'minor'.'release'.'revision'-'vendor'-'date('S') 256 275 say "Samba branded as: "verstring 276 say maintainedBy 257 277 say 258 278 return -
branches/samba-3.5.x/source3/lib/version.c
r414 r778 26 26 return SAMBA_VERSION_STRING; 27 27 } 28 #ifdef __OS2__ 29 const char *maintained_by_string(void) 30 { 31 return MAINTAINED_BY; 32 } 33 #endif -
branches/samba-3.5.x/source3/nmbd/nmbd.c
r736 r778 876 876 DEBUG(0,("nmbd version %s started.\n", samba_version_string())); 877 877 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE)); 878 #ifdef __OS2__ 879 DEBUGADD(0,("%s\n", maintained_by_string())); 880 #endif 878 881 879 882 if (!lp_load_initial_only(get_dyn_CONFIGFILE())) { -
branches/samba-3.5.x/source3/script/mkversion.sh
r414 r778 32 32 33 33 SAMBA_VERSION_VENDOR_FUNCTION=`sed -n 's/^SAMBA_VERSION_VENDOR_FUNCTION=//p' $SOURCE_DIR$VERSION_FILE` 34 MAINTAINED_BY=`sed -n 's/^MAINTAINED_BY=//p' $SOURCE_DIR$VERSION_FILE` 34 35 35 36 echo "/* Autogenerated by script/mkversion.sh */" > $OUTPUT_FILE … … 38 39 echo "#define SAMBA_VERSION_MINOR ${SAMBA_VERSION_MINOR}" >> $OUTPUT_FILE 39 40 echo "#define SAMBA_VERSION_RELEASE ${SAMBA_VERSION_RELEASE}" >> $OUTPUT_FILE 40 41 echo "#define MAINTAINED_BY ${MAINTAINED_BY}" >> $OUTPUT_FILE 41 42 42 43 ## -
branches/samba-3.5.x/source3/smbd/server.c
r776 r778 1153 1153 DEBUG(0,("smbd version %s started.\n", samba_version_string())); 1154 1154 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE)); 1155 #ifdef __OS2__ 1156 DEBUGADD(0,("%s\n", maintained_by_string())); 1157 #endif 1155 1158 1156 1159 DEBUG(2,("uid=%d gid=%d euid=%d egid=%d\n", -
branches/samba-3.5.x/source3/version.ec_
r586 r778 1 1 SAMBA_VERSION_VENDOR_SUFFIX="eCS 1.2.0" 2 2 SAMBA_VERSION_VENDOR_PATCH=432 3 MAINTAINED_BY="unknown" -
branches/samba-3.5.x/source3/winbindd/winbindd.c
r738 r778 1114 1114 DEBUG(0,("winbindd version %s started.\n", samba_version_string())); 1115 1115 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE)); 1116 #ifdef __OS2__ 1117 DEBUGADD(0,("%s\n", maintained_by_string())); 1118 #endif 1116 1119 1117 1120 if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
Note:
See TracChangeset
for help on using the changeset viewer.