Index: xotcl/ChangeLog =================================================================== diff -u -r6728daf2a67ce8406e152e5799defe7cc768a25e -rcbbcdfc2c1fcbf6d16a0fe9a1f3f8408ae0cbdee --- xotcl/ChangeLog (.../ChangeLog) (revision 6728daf2a67ce8406e152e5799defe7cc768a25e) +++ xotcl/ChangeLog (.../ChangeLog) (revision cbbcdfc2c1fcbf6d16a0fe9a1f3f8408ae0cbdee) @@ -1,9 +1,13 @@ +2004-06-18 Gustaf.Neumann@wu-wien.ac.at + * added *.a to CLEANFILES in configure.in to rm stublibfile + on a "make clean" + 2004-06-13 jim@jam.sessionsnet.org * fixed make distclean target factored list of configure output files into macro made sure value of output files got through to make distclean target -2004-06-12 Gustaf.Neumann@wu-wien.ac.at +2004-06-12 * changed namespace treatment in procs/instprocs in provious versions, methods were evaluated in the namespace where they are invoked. This has the problem that Index: xotcl/Makefile =================================================================== diff -u -r6728daf2a67ce8406e152e5799defe7cc768a25e -rcbbcdfc2c1fcbf6d16a0fe9a1f3f8408ae0cbdee --- xotcl/Makefile (.../Makefile) (revision 6728daf2a67ce8406e152e5799defe7cc768a25e) +++ xotcl/Makefile (.../Makefile) (revision cbbcdfc2c1fcbf6d16a0fe9a1f3f8408ae0cbdee) @@ -12,7 +12,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: Makefile,v 1.3 2004/06/18 07:57:36 neumann Exp $ +# RCS: @(#) $Id: Makefile,v 1.4 2004/06/18 08:12:56 neumann Exp $ #======================================================================== # Add additional lines to handle any additional AC_SUBST cases that @@ -125,7 +125,7 @@ CC = gcc -pipe CFLAGS_DEFAULT = -O CFLAGS_WARNING = -Wall -Wconversion -Wno-implicit-int -CLEANFILES = *.o *.so *~ core gmon.out config.* +CLEANFILES = *.o *.a *.so *~ core gmon.out config.* EXEEXT = LDFLAGS_DEFAULT = -rdynamic MAKE_LIB = ${SHLIB_LD} -o $@ $(PKG_OBJECTS) ${SHLIB_LD_FLAGS} ${SHLIB_LD_LIBS} @@ -175,7 +175,7 @@ #DEFS = $(TCL_DEFS) -DPACKAGE_NAME=\"xotcl\" -DPACKAGE_TARNAME=\"xotcl\" -DPACKAGE_VERSION=\"1.2.1\" -DPACKAGE_STRING=\"xotcl\ 1.2.1\" -DPACKAGE_BUGREPORT=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -D_LARGEFILE64_SOURCE=1 -DTCL_WIDE_INT_TYPE=long\ long -DHAVE_STRUCT_STAT64=1 -DHAVE_TYPE_OFF64_T=1 -DHAVE_LIMITS_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DHAVE_PTHREAD_ATTR_SETSTACKSIZE=1 -DHAVE_READDIR_R=1 -DTCL_THREADS=1 -DUSE_TCL_STUBS=1 -DCOMPILE_XOTCL_STUBS=1 $(EXTRA_CFLAGS) DEFS = -DPACKAGE_NAME=\"xotcl\" -DPACKAGE_TARNAME=\"xotcl\" -DPACKAGE_VERSION=\"1.2.1\" -DPACKAGE_STRING=\"xotcl\ 1.2.1\" -DPACKAGE_BUGREPORT=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -D_LARGEFILE64_SOURCE=1 -DTCL_WIDE_INT_TYPE=long\ long -DHAVE_STRUCT_STAT64=1 -DHAVE_TYPE_OFF64_T=1 -DHAVE_LIMITS_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DHAVE_PTHREAD_ATTR_SETSTACKSIZE=1 -DHAVE_READDIR_R=1 -DTCL_THREADS=1 -DUSE_TCL_STUBS=1 -DCOMPILE_XOTCL_STUBS=1 $(EXTRA_CFLAGS) -CONFIG_CLEAN_FILES = @CONFIG_CLEAN_FILES@ +CONFIG_CLEAN_FILES = Makefile xotclConfig.sh apps/utils/xotclsh apps/utils/xowish unix/xotcl.spec unix/pkgIndex.unix CPPFLAGS = LIBS = Index: xotcl/configure =================================================================== diff -u -ra27d1ba1278015bb1d8740779e70467ce26dbb76 -rcbbcdfc2c1fcbf6d16a0fe9a1f3f8408ae0cbdee --- xotcl/configure (.../configure) (revision a27d1ba1278015bb1d8740779e70467ce26dbb76) +++ xotcl/configure (.../configure) (revision cbbcdfc2c1fcbf6d16a0fe9a1f3f8408ae0cbdee) @@ -6633,7 +6633,7 @@ #TEA_ADD_SOURCES([win/winFile.c]) #TEA_ADD_INCLUDES([-I\"$(${CYGPATH} ${srcdir}/w else - CLEANFILES="*.o *.so *~ core gmon.out config.*" + CLEANFILES="*.o *.a *.so *~ core gmon.out config.*" #TEA_ADD_SOURCES([unix/unixFile.c]) #TEA_ADD_LIBS([-lsuperfly]) fi Index: xotcl/configure.in =================================================================== diff -u -r6728daf2a67ce8406e152e5799defe7cc768a25e -rcbbcdfc2c1fcbf6d16a0fe9a1f3f8408ae0cbdee --- xotcl/configure.in (.../configure.in) (revision 6728daf2a67ce8406e152e5799defe7cc768a25e) +++ xotcl/configure.in (.../configure.in) (revision cbbcdfc2c1fcbf6d16a0fe9a1f3f8408ae0cbdee) @@ -233,7 +233,7 @@ #TEA_ADD_SOURCES([win/winFile.c]) #TEA_ADD_INCLUDES([-I\"$(${CYGPATH} ${srcdir}/w else - CLEANFILES="*.o *.so *~ core gmon.out config.*" + CLEANFILES="*.o *.a *.so *~ core gmon.out config.*" #TEA_ADD_SOURCES([unix/unixFile.c]) #TEA_ADD_LIBS([-lsuperfly]) fi Index: xotcl/library/store/XOTclGdbm/Makefile =================================================================== diff -u -ra27d1ba1278015bb1d8740779e70467ce26dbb76 -rcbbcdfc2c1fcbf6d16a0fe9a1f3f8408ae0cbdee --- xotcl/library/store/XOTclGdbm/Makefile (.../Makefile) (revision a27d1ba1278015bb1d8740779e70467ce26dbb76) +++ xotcl/library/store/XOTclGdbm/Makefile (.../Makefile) (revision cbbcdfc2c1fcbf6d16a0fe9a1f3f8408ae0cbdee) @@ -12,7 +12,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: Makefile,v 1.4 2004/06/18 08:04:35 neumann Exp $ +# RCS: @(#) $Id: Makefile,v 1.5 2004/06/18 08:12:56 neumann Exp $ #======================================================================== # Add additional lines to handle any additional AC_SUBST cases that Index: xotcl/library/store/XOTclSdbm/Makefile =================================================================== diff -u -ra27d1ba1278015bb1d8740779e70467ce26dbb76 -rcbbcdfc2c1fcbf6d16a0fe9a1f3f8408ae0cbdee --- xotcl/library/store/XOTclSdbm/Makefile (.../Makefile) (revision a27d1ba1278015bb1d8740779e70467ce26dbb76) +++ xotcl/library/store/XOTclSdbm/Makefile (.../Makefile) (revision cbbcdfc2c1fcbf6d16a0fe9a1f3f8408ae0cbdee) @@ -12,7 +12,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: Makefile,v 1.4 2004/06/18 08:04:35 neumann Exp $ +# RCS: @(#) $Id: Makefile,v 1.5 2004/06/18 08:12:56 neumann Exp $ #======================================================================== # Add additional lines to handle any additional AC_SUBST cases that Index: xotcl/library/xml/TclExpat-1.1/Makefile =================================================================== diff -u -ra27d1ba1278015bb1d8740779e70467ce26dbb76 -rcbbcdfc2c1fcbf6d16a0fe9a1f3f8408ae0cbdee --- xotcl/library/xml/TclExpat-1.1/Makefile (.../Makefile) (revision a27d1ba1278015bb1d8740779e70467ce26dbb76) +++ xotcl/library/xml/TclExpat-1.1/Makefile (.../Makefile) (revision cbbcdfc2c1fcbf6d16a0fe9a1f3f8408ae0cbdee) @@ -12,7 +12,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: Makefile,v 1.4 2004/06/18 08:04:35 neumann Exp $ +# RCS: @(#) $Id: Makefile,v 1.5 2004/06/18 08:12:56 neumann Exp $ #======================================================================== # Add additional lines to handle any additional AC_SUBST cases that