Tcl Source Code

Artifact [a6af376661]
Login

Artifact a6af37666183aee8185925572dd5ae3fe356c963:

Attachment "tclPort.diff" to ticket [922727ffff] added by das 2004-04-21 19:08:52.
Index: generic/tclPort.h
===================================================================
RCS file: /cvsroot/tcl/tcl/generic/tclPort.h,v
retrieving revision 1.8
diff -u -p -r1.8 tclPort.h
--- generic/tclPort.h	17 Mar 2004 18:14:14 -0000	1.8
+++ generic/tclPort.h	21 Apr 2004 11:48:07 -0000
@@ -19,9 +19,9 @@
 #include "tcl.h"
 
 #if defined(__WIN32__)
-#   include "../win/tclWinPort.h"
+#   include "tclWinPort.h"
 #else
-#   include "../unix/tclUnixPort.h"
+#   include "tclUnixPort.h"
 #endif
 
 #if !defined(LLONG_MIN)
Index: macosx/Makefile
===================================================================
RCS file: /cvsroot/tcl/tcl/macosx/Makefile,v
retrieving revision 1.13
diff -u -p -r1.13 Makefile
--- macosx/Makefile	6 Apr 2004 22:25:56 -0000	1.13
+++ macosx/Makefile	21 Apr 2004 11:48:07 -0000
@@ -94,7 +94,7 @@ PRODUCT_LONGVERSION	:= $(shell eval $$(g
 				echo "${PRODUCT_VERSION}$${TCL_PATCH_LEVEL}")
 YEAR                    := $(shell date +%Y)
 
-PRIVATE_HEADERS		:= tclInt.h tclIntDecls.h tclIntPlatDecls.h
+PRIVATE_HEADERS		:= tclInt.h tclIntDecls.h tclIntPlatDecls.h tclPort.h ../unix/tclUnixPort.h
 TARGETS			:= tclsh tcltest
 TCLSH			:= tclsh${PRODUCT_VERSION}
 TCL_EXE			?= ${SYMROOT}/${TCLSH}
Index: unix/Makefile.in
===================================================================
RCS file: /cvsroot/tcl/tcl/unix/Makefile.in,v
retrieving revision 1.135
diff -u -p -r1.135 Makefile.in
--- unix/Makefile.in	17 Mar 2004 18:14:18 -0000	1.135
+++ unix/Makefile.in	21 Apr 2004 11:48:07 -0000
@@ -277,7 +277,7 @@ DDD			= ddd
 
 
 CC_SWITCHES = ${CFLAGS} ${CFLAGS_WARNING} ${SHLIB_CFLAGS} \
--I${GENERIC_DIR} -I${SRC_DIR} \
+-I${GENERIC_DIR} -I${UNIX_DIR} -I${SRC_DIR} \
 ${AC_FLAGS} ${MATH_FLAGS} ${GENERIC_FLAGS} ${PROTO_FLAGS} ${MEM_DEBUG_FLAGS} \
 ${COMPILE_DEBUG_FLAGS} ${NO_DEPRECATED_FLAGS} ${ENV_FLAGS} \
 -DTCL_SHLIB_EXT=\"${SHLIB_SUFFIX}\"