Re: [AOLSERVER] Ns_GetVersion(major, minor, patch) ??

2003-03-12 Thread Jerry Asher
I wonder if Ns_TclGetVersion would be less confusing and more consistent with other Ns_Tcl... function (such as Ns_TclGetLibrary()). Jerry Zoran Vasiljevic wrote: At the moment, we have Ns_InfoServerVersion(void) which returns a char * with the version string. I would need a better (i.e.

Re: [AOLSERVER] Ns_GetVersion(major, minor, patch) ??

2003-03-12 Thread Zoran Vasiljevic
On Wednesday 12 March 2003 20:45, you wrote: I wonder if Ns_TclGetVersion would be less confusing and more consistent with other Ns_Tcl... function (such as Ns_TclGetLibrary()). Well, it really has nothing to do with the Tcl. IIRC, the Ns_Tcl... familiy does someting with the Tcl interp most

Re: [AOLSERVER] Ns_GetVersion(major, minor, patch) ??

2003-03-12 Thread Nathan Folkman
Do we need a third level for builds like 3.4.2 and 3.5.6? Maybe NS_PATCH_VERSION? On Wednesday, March 12, 2003, at 02:58 PM, Zoran Vasiljevic wrote: #define NS_MAJOR_VERSION 4 #define NS_MINOR_VERSION 0 I. To remove yourself from this list: Send a message to [EMAIL PROTECTED] with the

Re: [AOLSERVER] Ns_GetVersion(major, minor, patch) ??

2003-03-12 Thread Zoran Vasiljevic
On Wednesday 12 March 2003 21:03, Nathan Folkman wrote: Do we need a third level for builds like 3.4.2 and 3.5.6? Maybe NS_PATCH_VERSION? The patch information is done in Tcl as: #define TCL_RELEASE_SERIAL 2 We might adopt it then as: #define NS_MAJOR_VERSION 8 #define NS_MINOR_VERSION

Re: [AOLSERVER] Ns_GetVersion(major, minor, patch) ??

2003-03-12 Thread Zoran Vasiljevic
On Wednesday 12 March 2003 21:51, Zoran Vasiljevic wrote: Uuups... #define NS_MAJOR_VERSION 4 #define NS_MINOR_VERSION 0 #define NS_RELEASE_SERIAL 0 This way, really :-) Zoran I. To remove yourself from this list: Send a message to [EMAIL PROTECTED] with the following text in the BODY

Re: [AOLSERVER] Ns_GetVersion(major, minor, patch) ??

2003-03-12 Thread Nathan Folkman
When in doubt, I usually go with what the Tcl guys have done. ;-) - Nathan On Wednesday, March 12, 2003, at 03:51 PM, Zoran Vasiljevic wrote: The patch information is done in Tcl as: #define TCL_RELEASE_SERIAL 2 We might adopt it then as: #define NS_MAJOR_VERSION 8 #define NS_MINOR_VERSION