summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2004-11-12 20:20:20 (GMT)
committerdgp <dgp@users.sourceforge.net>2004-11-12 20:20:20 (GMT)
commit15db0cfaf8db72f2cd37a9379f11ccd9efb3ae7d (patch)
tree9ff4968256f4ea379c1be93d08c266ec070d0e86 /unix
parent76bdda652755702f1fe6c33d2cabfbd403ec9bfa (diff)
downloadtcl-15db0cfaf8db72f2cd37a9379f11ccd9efb3ae7d.zip
tcl-15db0cfaf8db72f2cd37a9379f11ccd9efb3ae7d.tar.gz
tcl-15db0cfaf8db72f2cd37a9379f11ccd9efb3ae7d.tar.bz2
* unix/Makefile.in: Be sure -I{BUILD_DIR} comes first so that
we #include the correct tclConfig.h file for the correct build. * generic/tclPort.h: Make sure tclConfig.h is #include'd so that its configuration values can guide portability support.
Diffstat (limited to 'unix')
-rw-r--r--unix/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index a2e18f4..c10f040 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -5,7 +5,7 @@
# "autoconf" program (constructs like "@foo@" will get replaced in the
# actual Makefile.
#
-# RCS: @(#) $Id: Makefile.in,v 1.152 2004/11/12 19:03:23 rmax Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.153 2004/11/12 20:20:24 dgp Exp $
VERSION = @TCL_VERSION@
MAJOR_VERSION = @TCL_MAJOR_VERSION@
@@ -275,12 +275,12 @@ DDD = ddd
CC_SWITCHES = ${CFLAGS} ${CFLAGS_WARNING} ${SHLIB_CFLAGS} \
--I${GENERIC_DIR} -I${SRC_DIR} -I${BUILD_DIR} \
+-I${BUILD_DIR} -I${GENERIC_DIR} -I${SRC_DIR} \
${AC_FLAGS} ${MATH_FLAGS} ${GENERIC_FLAGS} ${PROTO_FLAGS} \
${NO_DEPRECATED_FLAGS} ${ENV_FLAGS}
STUB_CC_SWITCHES = ${CFLAGS} ${CFLAGS_WARNING} ${SHLIB_CFLAGS} \
--I${GENERIC_DIR} -I${SRC_DIR} -I${BUILD_DIR} \
+-I${BUILD_DIR} -I${GENERIC_DIR} -I${SRC_DIR} \
${AC_FLAGS} ${MATH_FLAGS} ${GENERIC_FLAGS} ${PROTO_FLAGS} ${ENV_FLAGS}
LIBS = @TCL_LIBS@