Index: xotcl/library/xml/TclExpat-1.1/configure.in =================================================================== diff -u -rf9bb662bd07a30d00a33e75ab3354bb9f8463999 -re525b7364d9b1fbc7b06e81becf4fe0df06c4209 --- xotcl/library/xml/TclExpat-1.1/configure.in (.../configure.in) (revision f9bb662bd07a30d00a33e75ab3354bb9f8463999) +++ xotcl/library/xml/TclExpat-1.1/configure.in (.../configure.in) (revision e525b7364d9b1fbc7b06e81becf4fe0df06c4209) @@ -3,7 +3,7 @@ dnl generate the file "configure", which is run during Tcl installation dnl to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.16 2007/08/14 16:36:47 neumann Exp $ +# RCS: @(#) $Id: configure.in,v 1.17 2007/08/14 16:38:27 neumann Exp $ #----------------------------------------------------------------------- # Sample configure.in for Tcl Extensions. The only places you should @@ -90,7 +90,12 @@ # and PKG_TCL_SOURCES. #----------------------------------------------------------------------- -TEA_ADD_SOURCES([xmltok.c unixfilemap.c xmlrole.c xmlwf.c codepage.c xmlparse.c hashtable.c tclexpat.c]) +if test "${TEA_PLATFORM}" = "windows" ; then + TEA_ADD_SOURCES([xmltok.c win32filemap.c xmlrole.c xmlwf.c codepage.c xmlparse.c hashtable.c tclexpat.c]) +else + TEA_ADD_SOURCES([xmltok.c unixfilemap.c xmlrole.c xmlwf.c codepage.c xmlparse.c hashtable.c tclexpat.c]) +fi + TEA_ADD_HEADERS([]) TEA_ADD_INCLUDES([-I${with_xotcl}/generic ${XOTCL_BUILD_INCLUDE_SPEC}]) TEA_ADD_LIBS([$XOTCL_BUILD_STUB_LIB_SPEC]) @@ -236,3 +241,5 @@ + +