summaryrefslogtreecommitdiffstats
path: root/mac/tkMacLibrary.r
diff options
context:
space:
mode:
authordas <das>2001-12-27 22:45:03 (GMT)
committerdas <das>2001-12-27 22:45:03 (GMT)
commit04419abd89a3f566d4d489895c78cd9950928144 (patch)
tree3b1a15f588e16f1587ec08af31575f7de10585f0 /mac/tkMacLibrary.r
parent3f850339f62a30d1302728860ed3ea45c5560570 (diff)
downloadtk-04419abd89a3f566d4d489895c78cd9950928144.zip
tk-04419abd89a3f566d4d489895c78cd9950928144.tar.gz
tk-04419abd89a3f566d4d489895c78cd9950928144.tar.bz2
* mac/mac/tkMacInit.c:
* mac/mac/tkMacResource.r: synced up tkInit features to unix/win: use existing tkInit proc if defined. Added spinbox.tcl resource. Used TclGetEnv() instead of Tcl_GetVar2(interp, env) * mac/tkMacApplication.r: * mac/tkMacLibrary.r: minor version resources cleanup
Diffstat (limited to 'mac/tkMacLibrary.r')
-rw-r--r--mac/tkMacLibrary.r8
1 files changed, 5 insertions, 3 deletions
diff --git a/mac/tkMacLibrary.r b/mac/tkMacLibrary.r
index 8be084c..efc3858 100644
--- a/mac/tkMacLibrary.r
+++ b/mac/tkMacLibrary.r
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkMacLibrary.r,v 1.6 2001/11/23 02:05:58 das Exp $
+ * RCS: @(#) $Id: tkMacLibrary.r,v 1.7 2001/12/27 22:45:13 das Exp $
*/
#include <Types.r>
@@ -36,22 +36,24 @@
#if (TK_RELEASE_LEVEL == 2)
# define MINOR_VERSION (TK_MINOR_VERSION * 16) + TK_RELEASE_SERIAL
+# define RELEASE_CODE 0x00
#else
# define MINOR_VERSION TK_MINOR_VERSION * 16
+# define RELEASE_CODE TK_RELEASE_SERIAL
#endif
#define RELEASE_CODE 0x00
resource 'vers' (1) {
TK_MAJOR_VERSION, MINOR_VERSION,
- RELEASE_LEVEL, 0x00, verUS,
+ RELEASE_LEVEL, RELEASE_CODE, verUS,
TK_PATCH_LEVEL,
TK_PATCH_LEVEL ", by Ray Johnson & Jim Ingham" "\n" "© 2001 Tcl Core Team"
};
resource 'vers' (2) {
TK_MAJOR_VERSION, MINOR_VERSION,
- RELEASE_LEVEL, 0x00, verUS,
+ RELEASE_LEVEL, RELEASE_CODE, verUS,
TK_PATCH_LEVEL,
"Tk Library " TK_PATCH_LEVEL " © 1993-2001"
};