diff options
author | davygrvy <davygrvy@pobox.com> | 2004-11-24 21:37:31 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2004-11-24 21:37:31 (GMT) |
commit | a99970bd99ecb3a539ddd86b873cf0910ca6c6bf (patch) | |
tree | 05a40b73bd86e723cbd875123315e1f9368baddc /generic | |
parent | 885ab6d26a4b5cd50132d00339764ea54ff4d81d (diff) | |
download | tcl-a99970bd99ecb3a539ddd86b873cf0910ca6c6bf.zip tcl-a99970bd99ecb3a539ddd86b873cf0910ca6c6bf.tar.gz tcl-a99970bd99ecb3a539ddd86b873cf0910ca6c6bf.tar.bz2 |
* generic/tclPort.h: Relative include of tclWinPort.h returned as it was requiring
me set -I$(tcl_root)/win for my extensions that need to include tclInt.h and
doesn't appear to serve any purpose on windows builds.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclPort.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclPort.h b/generic/tclPort.h index 8761cae..3d9af28 100644 --- a/generic/tclPort.h +++ b/generic/tclPort.h @@ -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: tclPort.h,v 1.12 2004/11/17 17:53:01 dgp Exp $ + * RCS: @(#) $Id: tclPort.h,v 1.13 2004/11/24 21:37:31 davygrvy Exp $ */ #ifndef _TCLPORT @@ -22,7 +22,7 @@ #endif #if defined(__WIN32__) -# include "tclWinPort.h" +# include "../win/tclWinPort.h" #else # include "tclUnixPort.h" #endif |