Changeset 757
- Timestamp:
- Nov 30, 2012, 6:12:57 PM (13 years ago)
- Location:
- trunk/server/source3
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/build.cmd
r745 r757 19 19 /* version 0.3.10 from 15.11.2012 Silvan (python also in unixroot) */ 20 20 /* version 0.3.11 from 15.11.2012 Herwig (make libc switching really optional) */ 21 /* version 0.3.12 from 30.11.2012 Silvan (maintained by) */ 21 22 22 23 /* load the sysfuncs if not already loaded */ … … 28 29 29 30 /* init the version string (don't forget to change) */ 30 version = "0.3.1 1"31 version_date = " 15.11.2012"31 version = "0.3.12" 32 version_date = "30.11.2012" 32 33 33 34 /* number of make jobs to execute at the same time */ … … 208 209 /* eComStation Version file */ 209 210 VerFile = "VERSION.ECS" 211 maintainedBy = "unknown" 210 212 211 213 /* is the file available */ … … 230 232 parse var vendor_suffix vendor suffix 231 233 end 234 if left(eCSVer.I,14) = "MAINTAINED_BY=" then do 235 parse var eCSver.I . '='maintainedBy 236 maintainedBy = '"Maintained by: ' || strip(maintainedBy,,'"') || '"' 237 end 232 238 end 233 239 ok = stream(VerFile, 'c', 'close') … … 259 265 if Verline <> "=" then call lineout NewVersion, verline 260 266 end 267 if maintainedBy <> "" then call lineout NewVersion, "MAINTAINED_BY="maintainedBy 261 268 262 269 ok = stream(Version,'c','close') … … 266 273 verstring = suffix'-'Major'.'minor'.'release'.'revision'-'vendor'-'date('S') 267 274 say "Samba branded as: "verstring 275 say maintainedBy 268 276 say 269 277 return -
trunk/server/source3/lib/version.c
r414 r757 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 -
trunk/server/source3/nmbd/nmbd.c
r751 r757 879 879 DEBUG(0,("nmbd version %s started.\n", samba_version_string())); 880 880 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE)); 881 #ifdef __OS2__ 882 DEBUGADD(0,("%s\n", maintained_by_string())); 883 #endif 881 884 882 885 if (!lp_load_initial_only(get_dyn_CONFIGFILE())) { -
trunk/server/source3/script/mkversion.sh
r745 r757 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 41 echo "#define MAINTAINED_BY ${MAINTAINED_BY}" >> $OUTPUT_FILE 40 42 41 43 -
trunk/server/source3/smbd/server.c
r751 r757 1037 1037 DEBUG(0,("smbd version %s started.\n", samba_version_string())); 1038 1038 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE)); 1039 #ifdef __OS2__ 1040 DEBUGADD(0,("%s\n", maintained_by_string())); 1041 #endif 1039 1042 1040 1043 DEBUG(2,("uid=%d gid=%d euid=%d egid=%d\n", -
trunk/server/source3/version.ec_
r745 r757 1 1 SAMBA_VERSION_VENDOR_SUFFIX="eCS 1.3.0" 2 SAMBA_VERSION_VENDOR_PATCH=432 2 MAINTAINED_BY="unknown" -
trunk/server/source3/winbindd/winbindd.c
r751 r757 1348 1348 DEBUG(0,("winbindd version %s started.\n", samba_version_string())); 1349 1349 DEBUGADD(0,("%s\n", COPYRIGHT_STARTUP_MESSAGE)); 1350 #ifdef __OS2__ 1351 DEBUGADD(0,("%s\n", maintained_by_string())); 1352 #endif 1350 1353 1351 1354 if (!lp_load_initial_only(get_dyn_CONFIGFILE())) {
Note:
See TracChangeset
for help on using the changeset viewer.