Index: library/lib/make.xotcl =================================================================== diff -u -N -r0d2cbd1be616bb5b06ce142667182c4577ef9aa1 -r94fe4ddff10fb6c1d4e867c3f082a4df58280a0a --- library/lib/make.xotcl (.../make.xotcl) (revision 0d2cbd1be616bb5b06ce142667182c4577ef9aa1) +++ library/lib/make.xotcl (.../make.xotcl) (revision 94fe4ddff10fb6c1d4e867c3f082a4df58280a0a) @@ -4,7 +4,7 @@ ### Object file added (for better -n processing) #lappend auto_path .. -package require XOTcl +package require XOTcl 1 namespace import -force ::xotcl::* ### Index: library/lib/pkgIndex.tcl =================================================================== diff -u -N -ra976b7c6a116f584114d2612494aaaa8e8028387 -r94fe4ddff10fb6c1d4e867c3f082a4df58280a0a --- library/lib/pkgIndex.tcl (.../pkgIndex.tcl) (revision a976b7c6a116f584114d2612494aaaa8e8028387) +++ library/lib/pkgIndex.tcl (.../pkgIndex.tcl) (revision 94fe4ddff10fb6c1d4e867c3f082a4df58280a0a) @@ -7,6 +7,7 @@ # in response to "package require" commands. When this # script is sourced, the variable $dir must contain the # full path name of this file's directory. + package ifneeded xotcl::htmllib 0.1 [list source [file join $dir htmllib.xotcl]] package ifneeded xotcl::metadataAnalyzer 0.84 [list source [file join $dir metadataAnalyzer.xotcl]] package ifneeded xotcl::mixinStrategy 0.9 [list source [file join $dir mixinStrategy.xotcl]] Index: library/store/XOTclSdbm/Makefile =================================================================== diff -u -N --- library/store/XOTclSdbm/Makefile (revision 2d45b41a8a644b3d647f59208067e81391ad7d36) +++ library/store/XOTclSdbm/Makefile (revision 0) @@ -1,433 +0,0 @@ -# Makefile.in -- -# -# This file is a Makefile for Sample TEA Extension. If it has the name -# "Makefile.in" then it is a template for a Makefile; to generate the -# actual Makefile, run "./configure", which is a configuration script -# generated by the "autoconf" program (constructs like "@foo@" will get -# replaced in the actual Makefile. -# -# Copyright (c) 1999 Scriptics Corporation. -# Copyright (c) 2002-2003 ActiveState Corporation. -# -# See the file "license.terms" for information on usage and redistribution -# of this file, and for a DISCLAIMER OF ALL WARRANTIES. -# -# RCS: @(#) $Id: Makefile.in,v 1.5 2007/08/14 16:38:26 neumann Exp $ - -#======================================================================== -# Add additional lines to handle any additional AC_SUBST cases that -# have been added in a customized configure script. -#======================================================================== - -#SAMPLE_NEW_VAR = @SAMPLE_NEW_VAR@ - -#======================================================================== -# Nothing of the variables below this line should need to be changed. -# Please check the TARGETS section below to make sure the make targets -# are correct. -#======================================================================== - -#======================================================================== -# The names of the source files is defined in the configure script. -# The object files are used for linking into the final library. -# This will be used when a dist target is added to the Makefile. -# It is not important to specify the directory, as long as it is the -# $(srcdir) or in the generic, win or unix subdirectory. -#======================================================================== - -PKG_SOURCES = hash.c pair.c sdbm.c xotclsdbm.c -PKG_OBJECTS = hash.o pair.o sdbm.o xotclsdbm.o - -PKG_STUB_SOURCES = -PKG_STUB_OBJECTS = - -#======================================================================== -# PKG_TCL_SOURCES identifies Tcl runtime files that are associated with -# this package that need to be installed, if any. -#======================================================================== - -PKG_TCL_SOURCES = - -#======================================================================== -# This is a list of public header files to be installed, if any. -#======================================================================== - -PKG_HEADERS = - -#======================================================================== -# "PKG_LIB_FILE" refers to the library (dynamic or static as per -# configuration options) composed of the named objects. -#======================================================================== - -PKG_LIB_FILE = libxotclsdbm1.2.dylib -PKG_STUB_LIB_FILE = libxotclsdbmstub1.2.a - -lib_BINARIES = $(PKG_LIB_FILE) -BINARIES = $(lib_BINARIES) - -SHELL = /bin/sh - -srcdir = . -prefix = /usr/local/ns -exec_prefix = /usr/local/ns - -bindir = ${exec_prefix}/bin -libdir = ${exec_prefix}/lib -datadir = ${prefix}/share -mandir = ${prefix}/share/man -includedir = ${prefix}/include - -DESTDIR = - -PKG_DIR = $(PACKAGE_NAME)$(PACKAGE_VERSION) -pkgdatadir = $(datadir)/$(PKG_DIR) -pkglibdir = $(libdir)/$(PKG_DIR) -pkgincludedir = $(includedir)/$(PKG_DIR) - -top_builddir = . - -INSTALL = /usr/bin/install -c -INSTALL_PROGRAM = ${INSTALL} -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_SCRIPT = ${INSTALL} - -PACKAGE_NAME = xotclsdbm -PACKAGE_VERSION = 1.2 -CC = gcc -CFLAGS_DEFAULT = -g -CFLAGS_WARNING = -Wall -Wno-implicit-int -CLEANFILES = pkgIndex.tcl -EXEEXT = -LDFLAGS_DEFAULT = -prebind -headerpad_max_install_names -Wl,-search_paths_first -MAKE_LIB = ${SHLIB_LD} -o $@ $(PKG_OBJECTS) ${SHLIB_LD_LIBS} -MAKE_SHARED_LIB = ${SHLIB_LD} -o $@ $(PKG_OBJECTS) ${SHLIB_LD_LIBS} -MAKE_STATIC_LIB = ${STLIB_LD} $@ $(PKG_OBJECTS) -MAKE_STUB_LIB = ${STLIB_LD} $@ $(PKG_STUB_OBJECTS) -OBJEXT = o -RANLIB = : -RANLIB_STUB = ranlib -SHLIB_CFLAGS = -fno-common -SHLIB_LD = ${CC} -dynamiclib ${CFLAGS} ${LDFLAGS_DEFAULT} -Wl,-single_module -SHLIB_LD_FLAGS = @SHLIB_LD_FLAGS@ -SHLIB_LD_LIBS = ${LIBS} -L/usr/local/src/tcl8.5.8/unix -ltclstub8.5 -STLIB_LD = ${AR} cr -TCL_DEFS = -DPACKAGE_NAME=\"tcl\" -DPACKAGE_TARNAME=\"tcl\" -DPACKAGE_VERSION=\"8.5\" -DPACKAGE_STRING=\"tcl\ 8.5\" -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 -DNO_VALUES_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DHAVE_PTHREAD_ATTR_SETSTACKSIZE=1 -DHAVE_PTHREAD_GET_STACKSIZE_NP=1 -DTCL_THREADS=1 -DTCL_CFGVAL_ENCODING=\"iso8859-1\" -DMODULE_SCOPE=extern\ __attribute__\(\(__visibility__\(\"hidden\"\)\)\) -DMAC_OSX_TCL=1 -DTCL_SHLIB_EXT=\".dylib\" -DTCL_CFG_DEBUG=1 -DTCL_TOMMATH=1 -DMP_PREC=4 -DTCL_WIDE_INT_IS_LONG=1 -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRTOL=1 -DHAVE_WAITPID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETPWUID_R_5=1 -DHAVE_GETPWUID_R=1 -DHAVE_GETPWNAM_R_5=1 -DHAVE_GETPWNAM_R=1 -DHAVE_GETGRGID_R_5=1 -DHAVE_GETGRGID_R=1 -DHAVE_GETGRNAM_R_5=1 -DHAVE_GETGRNAM_R=1 -DHAVE_MTSAFE_GETHOSTBYNAME=1 -DHAVE_MTSAFE_GETHOSTBYADDR=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_STRUCT_TM_TM_ZONE=1 -DHAVE_TM_ZONE=1 -DHAVE_GMTIME_R=1 -DHAVE_LOCALTIME_R=1 -DHAVE_MKTIME=1 -DHAVE_TM_GMTOFF=1 -DHAVE_TIMEZONE_VAR=1 -DHAVE_STRUCT_STAT_ST_BLKSIZE=1 -DHAVE_ST_BLKSIZE=1 -DHAVE_INTPTR_T=1 -DHAVE_UINTPTR_T=1 -DHAVE_SIGNED_CHAR=1 -DHAVE_LANGINFO=1 -DHAVE_CHFLAGS=1 -DHAVE_GETATTRLIST=1 -DHAVE_COPYFILE_H=1 -DHAVE_COPYFILE=1 -DUSE_VFORK=1 -DTCL_DEFAULT_ENCODING=\"utf-8\" -DTCL_LOAD_FROM_MEMORY=1 -DTCL_WIDE_CLICKS=1 -DHAVE_AVAILABILITYMACROS_H=1 -DHAVE_WEAK_IMPORT=1 -D_DARWIN_C_SOURCE=1 -DHAVE_FTS=1 -DHAVE_SYS_IOCTL_H=1 -DHAVE_SYS_FILIO_H=1 -DTCL_UNLOAD_DLLS=1 -TCL_BIN_DIR = /usr/local/src/tcl8.5.8/unix -TCL_SRC_DIR = /usr/local/src/tcl8.5.8 -# This is necessary for packages that use private Tcl headers -#TCL_TOP_DIR_NATIVE = @TCL_TOP_DIR_NATIVE@ -# Not used, but retained for reference of what libs Tcl required -TCL_LIBS = ${DL_LIBS} ${LIBS} ${MATH_LIBS} - -#======================================================================== -# TCLLIBPATH seeds the auto_path in Tcl's init.tcl so we can test our -# package without installing. The other environment variables allow us -# to test against an uninstalled Tcl. Add special env vars that you -# require for testing here (like TCLX_LIBRARY). -#======================================================================== - -EXTRA_PATH = $(top_builddir):$(TCL_BIN_DIR) -TCLSH_ENV = TCL_LIBRARY=`echo $(TCL_SRC_DIR)/library` \ - DYLD_LIBRARY_PATH="$(EXTRA_PATH):$(DYLD_LIBRARY_PATH)" \ - PATH="$(EXTRA_PATH):$(PATH)" \ - TCLLIBPATH="$(top_builddir)" -TCLSH_PROG = /usr/local/src/tcl8.5.8/unix/tclsh -TCLSH = $(TCLSH_ENV) $(TCLSH_PROG) -SHARED_BUILD = 1 - -INCLUDES = -I/Users/neumann/src/xotcl-1.6.6/generic -I./generic -I"/usr/local/src/tcl8.5.8/generic" - -EXTRA_CFLAGS = - -# TCL_DEFS is not strictly need here, but if you remove it, then you -# must make sure that configure.in checks for the necessary components -# that your library may use. TCL_DEFS can actually be a problem if -# you do not compile with a similar machine setup as the Tcl core was -# compiled with. -#DEFS = $(TCL_DEFS) -DPACKAGE_NAME=\"xotclsdbm\" -DPACKAGE_TARNAME=\"xotclsdbm\" -DPACKAGE_VERSION=\"1.2\" -DPACKAGE_STRING=\"xotclsdbm\ 1.2\" -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 -DNO_VALUES_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DTCL_THREADS=1 -DTCL_WIDE_INT_IS_LONG=1 -DUSE_TCL_STUBS=1 $(EXTRA_CFLAGS) -DEFS = -DPACKAGE_NAME=\"xotclsdbm\" -DPACKAGE_TARNAME=\"xotclsdbm\" -DPACKAGE_VERSION=\"1.2\" -DPACKAGE_STRING=\"xotclsdbm\ 1.2\" -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 -DNO_VALUES_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DTCL_THREADS=1 -DTCL_WIDE_INT_IS_LONG=1 -DUSE_TCL_STUBS=1 $(EXTRA_CFLAGS) - -CONFIG_CLEAN_FILES = Makefile - -CPPFLAGS = -LIBS = -L/Users/neumann/src/xotcl-1.6.6 -lxotclstub1.6.6 -L/Users/neumann/src/xotcl-1.6.6 -lxotcl1.6.6 -AR = ar -CFLAGS = -pipe ${CFLAGS_DEFAULT} ${CFLAGS_WARNING} ${SHLIB_CFLAGS} -COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) - -#======================================================================== -# Start of user-definable TARGETS section -#======================================================================== - -#======================================================================== -# TEA TARGETS. Please note that the "libraries:" target refers to platform -# independent files, and the "binaries:" target inclues executable programs and -# platform-dependent libraries. Modify these targets so that they install -# the various pieces of your package. The make and install rules -# for the BINARIES that you specified above have already been done. -#======================================================================== - -all: binaries libraries doc - -#======================================================================== -# The binaries target builds executable programs, Windows .dll's, unix -# shared/static libraries, and any other platform-dependent files. -# The list of targets to build for "binaries:" is specified at the top -# of the Makefile, in the "BINARIES" variable. -#======================================================================== - -binaries: $(BINARIES) pkgIndex.tcl - -libraries: - -doc: - @echo "If you have documentation to create, place the commands to" - @echo "build the docs in the 'doc:' target. For example:" - @echo " xml2nroff sample.xml > sample.n" - @echo " xml2html sample.xml > sample.html" - -install: all install-binaries install-libraries install-doc - -install-binaries: binaries install-lib-binaries install-bin-binaries - if test "x$(SHARED_BUILD)" = "x1"; then \ - $(INSTALL_DATA) pkgIndex.tcl $(DESTDIR)$(pkglibdir); \ - fi - -#======================================================================== -# This rule installs platform-independent files, such as header files. -#======================================================================== - -install-libraries: libraries - @mkdir -p $(DESTDIR)$(includedir) - @echo "Installing header files in $(DESTDIR)$(includedir)" - @if test -n "$(PKG_HEADERS)" ; then \ - for i in "$(PKG_HEADERS)" ; do \ - echo "Installing $(srcdir)/$$i" ; \ - $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(includedir) ; \ - done; \ - fi - -#======================================================================== -# Install documentation. Unix manpages should go in the $(mandir) -# directory. -#======================================================================== - -install-doc: doc -#install-doc: doc -# @mkdir -p $(DESTDIR)$(mandir)/mann -# @echo "Installing documentation in $(DESTDIR)$(mandir)" -# @for i in $(srcdir)/doc/*.n; do \ -# echo "Installing $$i"; \ -# rm -f $(DESTDIR)$(mandir)/mann/`basename $$i`; \ -# $(INSTALL_DATA) $$i $(DESTDIR)$(mandir)/mann ; \ -# done - -test: binaries libraries - $(TCLSH) `echo $(srcdir)/tests/all.tcl` $(TESTFLAGS) - -shell: binaries libraries - @$(TCLSH) $(SCRIPT) - -gdb: - $(TCLSH_ENV) gdb $(TCLSH_PROG) $(SCRIPT) - -depend: - -#======================================================================== -# $(PKG_LIB_FILE) should be listed as part of the BINARIES variable -# mentioned above. That will ensure that this target is built when you -# run "make binaries". -# -# The $(PKG_OBJECTS) objects are created and linked into the final -# library. In most cases these object files will correspond to the -# source files above. -#======================================================================== - -$(PKG_LIB_FILE): $(PKG_OBJECTS) - -rm -f $(PKG_LIB_FILE) - ${MAKE_LIB} - $(RANLIB) $(PKG_LIB_FILE) - -$(PKG_STUB_LIB_FILE): $(PKG_STUB_OBJECTS) - -rm -f $(PKG_STUB_LIB_FILE) - ${MAKE_STUB_LIB} - $(RANLIB_STUB) $(PKG_STUB_LIB_FILE) - -#======================================================================== -# We need to enumerate the list of .c to .o lines here. -# -# In the following lines, $(srcdir) refers to the toplevel directory -# containing your extension. If your sources are in a subdirectory, -# you will have to modify the paths to reflect this: -# -# sample.$(OBJEXT): $(srcdir)/generic/sample.c -# $(COMPILE) -c `echo $(srcdir)/generic/sample.c` -o $@ -# -# Setting the VPATH variable to a list of paths will cause the makefile -# to look into these paths when resolving .c to .obj dependencies. -# As necessary, add $(srcdir):$(srcdir)/compat:.... -#======================================================================== - -VPATH = $(srcdir)/generic:$(srcdir)/unix:$(srcdir)/win - -.c.o: - $(COMPILE) -c `echo $<` -o $@ - -#======================================================================== -# Create the pkgIndex.tcl file. -# It is usually easiest to let Tcl do this for you with pkg_mkIndex, but -# you may find that you need to customize the package. If so, either -# modify the -hand version, or create a pkgIndex.tcl.in file and have -# the configure script output the pkgIndex.tcl by editing configure.in. -#======================================================================== - -#pkgIndex.tcl: -# ( echo pkg_mkIndex . $(PKG_LIB_FILE) \; exit; ) | $(TCLSH) - -pkgIndex.tcl: - (echo 'package ifneeded xotcl::store::sdbm $(PACKAGE_VERSION) \ - [list load [file join $$dir $(PKG_LIB_FILE)]]'\ - ) > pkgIndex.tcl - -#======================================================================== -# Distribution creation -# You may need to tweak this target to make it work correctly. -#======================================================================== - -#COMPRESS = tar cvf $(PKG_DIR).tar $(PKG_DIR); compress $(PKG_DIR).tar -COMPRESS = gtar zcvf $(PKG_DIR).tar.gz $(PKG_DIR) -DIST_ROOT = /tmp/dist -DIST_DIR = $(DIST_ROOT)/$(PKG_DIR) - -dist-clean: - rm -rf $(DIST_DIR) $(DIST_ROOT)/$(PKG_DIR).tar.* - -dist: dist-clean - mkdir -p $(DIST_DIR) - cp -p $(srcdir)/ChangeLog $(srcdir)/README* $(srcdir)/license* \ - $(srcdir)/aclocal.m4 $(srcdir)/configure $(srcdir)/*.in \ - $(DIST_DIR)/ - chmod 664 $(DIST_DIR)/Makefile.in $(DIST_DIR)/aclocal.m4 - chmod 775 $(DIST_DIR)/configure $(DIST_DIR)/configure.in - - cp -p $(srcdir)/*.[ch] $(DIST_DIR)/ - - mkdir $(DIST_DIR)/tclconfig - cp $(srcdir)/tclconfig/install-sh $(srcdir)/tclconfig/tcl.m4 \ - $(DIST_DIR)/tclconfig/ - chmod 664 $(DIST_DIR)/tclconfig/tcl.m4 - chmod +x $(DIST_DIR)/tclconfig/install-sh - - list='demos doc generic library mac tests unix win'; \ - for p in $$list; do \ - if test -d $(srcdir)/$$p ; then \ - mkdir $(DIST_DIR)/$$p; \ - cp -p $(srcdir)/$$p/*.* $(DIST_DIR)/$$p/; \ - fi; \ - done - - (cd $(DIST_ROOT); $(COMPRESS);) - -#======================================================================== -# End of user-definable section -#======================================================================== - -#======================================================================== -# Don't modify the file to clean here. Instead, set the "CLEANFILES" -# variable in configure.in -#======================================================================== - -clean: - -test -z "$(BINARIES)" || rm -f $(BINARIES) - -rm -f *.$(OBJEXT) core *.core - -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) - -distclean: clean - -rm -f *.tab.c - -rm -f $(CONFIG_CLEAN_FILES) - -rm -f config.cache config.log config.status - -#======================================================================== -# Install binary object libraries. On Windows this includes both .dll and -# .lib files. Because the .lib files are not explicitly listed anywhere, -# we need to deduce their existence from the .dll file of the same name. -# Library files go into the lib directory. -# In addition, this will generate the pkgIndex.tcl -# file in the install location (assuming it can find a usable tclsh shell) -# -# You should not have to modify this target. -#======================================================================== - -install-lib-binaries: - @mkdir -p $(DESTDIR)$(pkglibdir) - @list='$(lib_BINARIES)'; for p in $$list; do \ - if test -f $$p; then \ - echo " $(INSTALL_PROGRAM) $$p $(DESTDIR)$(pkglibdir)/$$p"; \ - $(INSTALL_PROGRAM) $$p $(DESTDIR)$(pkglibdir)/$$p; \ - stub=`echo $$p|sed -e "s/.*\(stub\).*/\1/"`; \ - if test "x$$stub" = "xstub"; then \ - echo " $(RANLIB_STUB) $(DESTDIR)$(pkglibdir)/$$p"; \ - $(RANLIB_STUB) $(DESTDIR)$(pkglibdir)/$$p; \ - else \ - echo " $(RANLIB) $(DESTDIR)$(pkglibdir)/$$p"; \ - $(RANLIB) $(DESTDIR)$(pkglibdir)/$$p; \ - fi; \ - ext=`echo $$p|sed -e "s/.*\.//"`; \ - if test "x$$ext" = "xdll"; then \ - lib=`basename $$p|sed -e 's/.[^.]*$$//'`.lib; \ - if test -f $$lib; then \ - echo " $(INSTALL_DATA) $$lib $(DESTDIR)$(pkglibdir)/$$lib"; \ - $(INSTALL_DATA) $$lib $(DESTDIR)$(pkglibdir)/$$lib; \ - fi; \ - fi; \ - fi; \ - done - @list='$(PKG_TCL_SOURCES)'; for p in $$list; do \ - if test -f $(srcdir)/$$p; then \ - destp=`basename $$p`; \ - echo " Install $$destp $(DESTDIR)$(pkglibdir)/$$destp"; \ - $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkglibdir)/$$destp; \ - fi; \ - done - -#======================================================================== -# Install binary executables (e.g. .exe files and dependent .dll files) -# This is for files that must go in the bin directory (located next to -# wish and tclsh), like dependent .dll files on Windows. -# -# You should not have to modify this target, except to define bin_BINARIES -# above if necessary. -#======================================================================== - -install-bin-binaries: - @mkdir -p $(DESTDIR)$(bindir) - @list='$(bin_BINARIES)'; for p in $$list; do \ - if test -f $$p; then \ - echo " $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/$$p"; \ - $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/$$p; \ - fi; \ - done - -.SUFFIXES: .c .$(OBJEXT) - -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) \ - && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status - -uninstall-binaries: - list='$(lib_BINARIES)'; for p in $$list; do \ - rm -f $(DESTDIR)$(pkglibdir)/$$p; \ - done - list='$(PKG_TCL_SOURCES)'; for p in $$list; do \ - p=`basename $$p`; \ - rm -f $(DESTDIR)$(pkglibdir)/$$p; \ - done - list='$(bin_BINARIES)'; for p in $$list; do \ - rm -f $(DESTDIR)$(bindir)/$$p; \ - done - -.PHONY: all binaries clean depend distclean doc install libraries test - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: Index: library/store/XOTclSdbm/config.log =================================================================== diff -u -N --- library/store/XOTclSdbm/config.log (revision 2d45b41a8a644b3d647f59208067e81391ad7d36) +++ library/store/XOTclSdbm/config.log (revision 0) @@ -1,994 +0,0 @@ -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by xotclsdbm configure 1.2, which was -generated by GNU Autoconf 2.61. Invocation command line was - - $ ./configure --with-tcl=/usr/local/src/tcl8.5.8/unix/ --enable-symbols --with-actiweb --prefix=/usr/local/ns --with-xotcl=/Users/neumann/src/xotcl-1.6.6 - -## --------- ## -## Platform. ## -## --------- ## - -hostname = imac.lan -uname -m = i386 -uname -r = 10.2.0 -uname -s = Darwin -uname -v = Darwin Kernel Version 10.2.0: Tue Nov 3 23:08:29 PST 2009; root:xnu-1486.2.11~3/RELEASE_I386 - -/usr/bin/uname -p = i386 -/bin/uname -X = unknown - -/bin/arch = unknown -/usr/bin/arch -k = unknown -/usr/convex/getsysinfo = unknown -/usr/bin/hostinfo = Mach kernel version: - Darwin Kernel Version 10.2.0: Tue Nov 3 23:08:29 PST 2009; root:xnu-1486.2.11~3/RELEASE_I386 -Kernel configured for up to 2 processors. -2 processors are physically available. -2 processors are logically available. -Processor type: i486 (Intel 80486) -Processors active: 0 1 -Primary memory available: 8.00 gigabytes -Default processor set: 102 tasks, 403 threads, 2 processors -Load average: 0.85, Mach factor: 1.19 -/bin/machine = unknown -/usr/bin/oslevel = unknown -/bin/universe = unknown - -PATH: /Library/Frameworks/Python.framework/Versions/Current/bin -PATH: /opt/local/bin -PATH: /opt/local/sbin -PATH: /sw/bin -PATH: /sw/sbin -PATH: /usr/bin -PATH: /bin -PATH: /usr/sbin -PATH: /sbin -PATH: /usr/local/bin -PATH: /usr/X11/bin -PATH: /usr/X11R6/bin - - -## ----------- ## -## Core tests. ## -## ----------- ## - -configure:1772: checking for correct TEA configuration -configure:1788: result: warning: requested TEA version "3.5", have "3.6" -configure:1940: checking for Tcl configuration -configure:2056: result: found /usr/local/src/tcl8.5.8/unix/tclConfig.sh -configure:2062: checking for existence of /usr/local/src/tcl8.5.8/unix/tclConfig.sh -configure:2066: result: loading -configure:2164: --exec-prefix defaulting to TCL_EXEC_PREFIX /usr/local/ns -configure:2240: checking for gcc -configure:2256: found /usr/bin/gcc -configure:2267: result: gcc -configure:2505: checking for C compiler version -configure:2512: gcc --version >&5 -i686-apple-darwin10-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5646) (dot 1) -Copyright (C) 2007 Free Software Foundation, Inc. -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -configure:2515: $? = 0 -configure:2522: gcc -v >&5 -Using built-in specs. -Target: i686-apple-darwin10 -Configured with: /var/tmp/gcc/gcc-5646.1~2/src/configure --disable-checking --enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin10 --with-gxx-include-dir=/include/c++/4.2.1 --program-prefix=i686-apple-darwin10- --host=x86_64-apple-darwin10 --target=i686-apple-darwin10 -Thread model: posix -gcc version 4.2.1 (Apple Inc. build 5646) (dot 1) -configure:2525: $? = 0 -configure:2532: gcc -V >&5 -gcc-4.2: argument to `-V' is missing -configure:2535: $? = 1 -configure:2558: checking for C compiler default output file name -configure:2585: gcc conftest.c >&5 -configure:2588: $? = 0 -configure:2626: result: a.out -configure:2643: checking whether the C compiler works -configure:2653: ./a.out -configure:2656: $? = 0 -configure:2673: result: yes -configure:2680: checking whether we are cross compiling -configure:2682: result: no -configure:2685: checking for suffix of executables -configure:2692: gcc -o conftest conftest.c >&5 -configure:2695: $? = 0 -configure:2719: result: -configure:2725: checking for suffix of object files -configure:2751: gcc -c conftest.c >&5 -configure:2754: $? = 0 -configure:2777: result: o -configure:2781: checking whether we are using the GNU C compiler -configure:2810: gcc -c conftest.c >&5 -configure:2816: $? = 0 -configure:2833: result: yes -configure:2838: checking whether gcc accepts -g -configure:2868: gcc -c -g conftest.c >&5 -configure:2874: $? = 0 -configure:2973: result: yes -configure:2990: checking for gcc option to accept ISO C89 -configure:3064: gcc -c conftest.c >&5 -configure:3070: $? = 0 -configure:3093: result: none needed -configure:3116: checking how to run the C preprocessor -configure:3156: gcc -E conftest.c -configure:3162: $? = 0 -configure:3193: gcc -E conftest.c -conftest.c:8:28: error: ac_nonexistent.h: No such file or directory -configure:3199: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclsdbm" -| #define PACKAGE_TARNAME "xotclsdbm" -| #define PACKAGE_VERSION "1.2" -| #define PACKAGE_STRING "xotclsdbm 1.2" -| #define PACKAGE_BUGREPORT "" -| /* end confdefs.h. */ -| #include -configure:3232: result: gcc -E -configure:3261: gcc -E conftest.c -configure:3267: $? = 0 -configure:3298: gcc -E conftest.c -conftest.c:8:28: error: ac_nonexistent.h: No such file or directory -configure:3304: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclsdbm" -| #define PACKAGE_TARNAME "xotclsdbm" -| #define PACKAGE_VERSION "1.2" -| #define PACKAGE_STRING "xotclsdbm 1.2" -| #define PACKAGE_BUGREPORT "" -| /* end confdefs.h. */ -| #include -configure:3355: checking for a BSD-compatible install -configure:3411: result: /usr/bin/install -c -configure:3427: checking whether make sets $(MAKE) -configure:3448: result: yes -configure:3505: checking for ranlib -configure:3521: found /usr/bin/ranlib -configure:3532: result: ranlib -configure:3568: checking for grep that handles long lines and -e -configure:3642: result: /usr/bin/grep -configure:3647: checking for egrep -configure:3725: result: /usr/bin/grep -E -configure:3730: checking for ANSI C header files -configure:3760: gcc -c conftest.c >&5 -configure:3766: $? = 0 -configure:3865: gcc -o conftest conftest.c >&5 -configure:3868: $? = 0 -configure:3874: ./conftest -configure:3877: $? = 0 -configure:3894: result: yes -configure:3918: checking for sys/types.h -configure:3939: gcc -c conftest.c >&5 -configure:3945: $? = 0 -configure:3961: result: yes -configure:3918: checking for sys/stat.h -configure:3939: gcc -c conftest.c >&5 -configure:3945: $? = 0 -configure:3961: result: yes -configure:3918: checking for stdlib.h -configure:3939: gcc -c conftest.c >&5 -configure:3945: $? = 0 -configure:3961: result: yes -configure:3918: checking for string.h -configure:3939: gcc -c conftest.c >&5 -configure:3945: $? = 0 -configure:3961: result: yes -configure:3918: checking for memory.h -configure:3939: gcc -c conftest.c >&5 -configure:3945: $? = 0 -configure:3961: result: yes -configure:3918: checking for strings.h -configure:3939: gcc -c conftest.c >&5 -configure:3945: $? = 0 -configure:3961: result: yes -configure:3918: checking for inttypes.h -configure:3939: gcc -c conftest.c >&5 -configure:3945: $? = 0 -configure:3961: result: yes -configure:3918: checking for stdint.h -configure:3939: gcc -c conftest.c >&5 -configure:3945: $? = 0 -configure:3961: result: yes -configure:3918: checking for unistd.h -configure:3939: gcc -c conftest.c >&5 -configure:3945: $? = 0 -configure:3961: result: yes -configure:3983: checking if the compiler understands -pipe -configure:4011: gcc -c -pipe conftest.c >&5 -configure:4017: $? = 0 -configure:4033: result: yes -configure:4044: checking whether byte ordering is bigendian -configure:4077: gcc -c -pipe conftest.c >&5 -configure:4083: $? = 0 -configure:4115: gcc -c -pipe conftest.c >&5 -conftest.c: In function 'main': -conftest.c:25: error: 'not' undeclared (first use in this function) -conftest.c:25: error: (Each undeclared identifier is reported only once -conftest.c:25: error: for each function it appears in.) -conftest.c:25: error: expected ';' before 'big' -configure:4121: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclsdbm" -| #define PACKAGE_TARNAME "xotclsdbm" -| #define PACKAGE_VERSION "1.2" -| #define PACKAGE_STRING "xotclsdbm 1.2" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| #include -| #include -| -| int -| main () -| { -| #if BYTE_ORDER != BIG_ENDIAN -| not big endian -| #endif -| -| ; -| return 0; -| } -configure:4261: result: no -configure:4289: checking for sin -configure:4345: gcc -o conftest -pipe conftest.c >&5 -conftest.c:41: warning: conflicting types for built-in function 'sin' -configure:4351: $? = 0 -configure:4368: result: yes -configure:4376: checking for main in -lieee -configure:4405: gcc -o conftest -pipe conftest.c -lieee >&5 -ld: library not found for -lieee -collect2: ld returned 1 exit status -configure:4411: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclsdbm" -| #define PACKAGE_TARNAME "xotclsdbm" -| #define PACKAGE_VERSION "1.2" -| #define PACKAGE_STRING "xotclsdbm 1.2" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| -| -| int -| main () -| { -| return main (); -| ; -| return 0; -| } -configure:4429: result: no -configure:4441: checking for main in -linet -configure:4470: gcc -o conftest -pipe conftest.c -linet >&5 -ld: library not found for -linet -collect2: ld returned 1 exit status -configure:4476: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclsdbm" -| #define PACKAGE_TARNAME "xotclsdbm" -| #define PACKAGE_VERSION "1.2" -| #define PACKAGE_STRING "xotclsdbm 1.2" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| -| -| int -| main () -| { -| return main (); -| ; -| return 0; -| } -configure:4494: result: no -configure:4510: checking net/errno.h usability -configure:4527: gcc -c -pipe conftest.c >&5 -conftest.c:51:23: error: net/errno.h: No such file or directory -configure:4533: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclsdbm" -| #define PACKAGE_TARNAME "xotclsdbm" -| #define PACKAGE_VERSION "1.2" -| #define PACKAGE_STRING "xotclsdbm 1.2" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #include -configure:4547: result: no -configure:4551: checking net/errno.h presence -configure:4566: gcc -E conftest.c -conftest.c:18:23: error: net/errno.h: No such file or directory -configure:4572: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclsdbm" -| #define PACKAGE_TARNAME "xotclsdbm" -| #define PACKAGE_VERSION "1.2" -| #define PACKAGE_STRING "xotclsdbm 1.2" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| #include -configure:4586: result: no -configure:4614: checking for net/errno.h -configure:4621: result: no -configure:4655: checking for connect -configure:4711: gcc -o conftest -pipe conftest.c >&5 -configure:4717: $? = 0 -configure:4734: result: yes -configure:4988: checking for gethostbyname -configure:5044: gcc -o conftest -pipe conftest.c >&5 -configure:5050: $? = 0 -configure:5067: result: yes -configure:5148: checking dirent.h -configure:5194: gcc -o conftest -pipe conftest.c >&5 -configure:5200: $? = 0 -configure:5217: result: yes -configure:5238: checking errno.h usability -configure:5255: gcc -c -pipe conftest.c >&5 -configure:5261: $? = 0 -configure:5275: result: yes -configure:5279: checking errno.h presence -configure:5294: gcc -E conftest.c -configure:5300: $? = 0 -configure:5314: result: yes -configure:5342: checking for errno.h -configure:5349: result: yes -configure:5374: checking float.h usability -configure:5391: gcc -c -pipe conftest.c >&5 -configure:5397: $? = 0 -configure:5411: result: yes -configure:5415: checking float.h presence -configure:5430: gcc -E conftest.c -configure:5436: $? = 0 -configure:5450: result: yes -configure:5478: checking for float.h -configure:5485: result: yes -configure:5510: checking values.h usability -configure:5527: gcc -c -pipe conftest.c >&5 -conftest.c:51:20: error: values.h: No such file or directory -configure:5533: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclsdbm" -| #define PACKAGE_TARNAME "xotclsdbm" -| #define PACKAGE_VERSION "1.2" -| #define PACKAGE_STRING "xotclsdbm 1.2" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #include -configure:5547: result: no -configure:5551: checking values.h presence -configure:5566: gcc -E conftest.c -conftest.c:18:20: error: values.h: No such file or directory -configure:5572: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclsdbm" -| #define PACKAGE_TARNAME "xotclsdbm" -| #define PACKAGE_VERSION "1.2" -| #define PACKAGE_STRING "xotclsdbm 1.2" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| #include -configure:5586: result: no -configure:5614: checking for values.h -configure:5621: result: no -configure:5646: checking limits.h usability -configure:5663: gcc -c -pipe conftest.c >&5 -configure:5669: $? = 0 -configure:5683: result: yes -configure:5687: checking limits.h presence -configure:5702: gcc -E conftest.c -configure:5708: $? = 0 -configure:5722: result: yes -configure:5750: checking for limits.h -configure:5757: result: yes -configure:5777: checking for stdlib.h -configure:5782: result: yes -configure:5967: checking for string.h -configure:5972: result: yes -configure:6154: checking sys/wait.h usability -configure:6171: gcc -c -pipe conftest.c >&5 -configure:6177: $? = 0 -configure:6191: result: yes -configure:6195: checking sys/wait.h presence -configure:6210: gcc -E conftest.c -configure:6216: $? = 0 -configure:6230: result: yes -configure:6258: checking for sys/wait.h -configure:6265: result: yes -configure:6290: checking dlfcn.h usability -configure:6307: gcc -c -pipe conftest.c >&5 -configure:6313: $? = 0 -configure:6327: result: yes -configure:6331: checking dlfcn.h presence -configure:6346: gcc -E conftest.c -configure:6352: $? = 0 -configure:6366: result: yes -configure:6394: checking for dlfcn.h -configure:6401: result: yes -configure:6433: checking sys/param.h usability -configure:6450: gcc -c -pipe conftest.c >&5 -configure:6456: $? = 0 -configure:6470: result: yes -configure:6474: checking sys/param.h presence -configure:6489: gcc -E conftest.c -configure:6495: $? = 0 -configure:6509: result: yes -configure:6537: checking for sys/param.h -configure:6545: result: yes -configure:6570: Reading file /Users/neumann/src/xotcl-1.6.6/xotclConfig.sh -configure:6733: checking for Tcl public headers -configure:6807: result: /usr/local/src/tcl8.5.8/generic -configure:6875: checking for pthread_mutex_init in -lpthread -configure:6910: gcc -o conftest -pipe conftest.c -lpthread >&5 -configure:6916: $? = 0 -configure:6934: result: yes -configure:7243: checking for building with threads -configure:7251: result: yes (default) -configure:7292: checking how to build libraries -configure:7310: result: shared -configure:7337: checking if 64bit support is requested -configure:7346: result: no -configure:7351: checking if 64bit Sparc VIS support is requested -configure:7360: result: no -configure:7388: checking system version -configure:7418: result: Darwin-10.2.0 -configure:7426: checking for dlopen in -ldl -configure:7461: gcc -o conftest -pipe conftest.c -ldl >&5 -configure:7467: $? = 0 -configure:7485: result: yes -configure:7526: checking for ar -configure:7542: found /usr/bin/ar -configure:7553: result: ar -configure:8804: checking if ld accepts -single_module flag -configure:8833: gcc -o conftest -pipe -dynamiclib -Wl,-single_module conftest.c >&5 -configure:8839: $? = 0 -configure:8857: result: yes -configure:8871: checking if ld accepts -search_paths_first flag -configure:8900: gcc -o conftest -pipe -prebind -headerpad_max_install_names -Wl,-search_paths_first conftest.c >&5 -configure:8906: $? = 0 -configure:8924: result: yes -configure:9361: checking for required early compiler flags -configure:9389: gcc -c -pipe conftest.c >&5 -configure:9395: $? = 0 -configure:9486: gcc -c -pipe conftest.c >&5 -conftest.c: In function 'main': -conftest.c:29: warning: 'stat64' is deprecated (declared at /usr/include/sys/stat.h:465) -configure:9492: $? = 0 -configure:9583: gcc -c -pipe conftest.c >&5 -conftest.c: In function 'main': -conftest.c:29: error: 'open64' undeclared (first use in this function) -conftest.c:29: error: (Each undeclared identifier is reported only once -conftest.c:29: error: for each function it appears in.) -configure:9589: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclsdbm" -| #define PACKAGE_TARNAME "xotclsdbm" -| #define PACKAGE_VERSION "1.2" -| #define PACKAGE_STRING "xotclsdbm 1.2" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define NO_VALUES_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_SYS_PARAM_H 1 -| #define USE_THREAD_ALLOC 1 -| #define _REENTRANT 1 -| #define _THREAD_SAFE 1 -| #define TCL_THREADS 1 -| /* end confdefs.h. */ -| #include -| int -| main () -| { -| char *p = (char *)open64; -| ; -| return 0; -| } -configure:9621: gcc -c -pipe conftest.c >&5 -conftest.c: In function 'main': -conftest.c:30: error: 'open64' undeclared (first use in this function) -conftest.c:30: error: (Each undeclared identifier is reported only once -conftest.c:30: error: for each function it appears in.) -configure:9627: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclsdbm" -| #define PACKAGE_TARNAME "xotclsdbm" -| #define PACKAGE_VERSION "1.2" -| #define PACKAGE_STRING "xotclsdbm 1.2" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define NO_VALUES_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_SYS_PARAM_H 1 -| #define USE_THREAD_ALLOC 1 -| #define _REENTRANT 1 -| #define _THREAD_SAFE 1 -| #define TCL_THREADS 1 -| /* end confdefs.h. */ -| #define _LARGEFILE_SOURCE64 1 -| #include -| int -| main () -| { -| char *p = (char *)open64; -| ; -| return 0; -| } -configure:9656: result: none -configure:9664: checking for 64-bit integer type -configure:9693: gcc -c -pipe conftest.c >&5 -conftest.c: In function 'main': -conftest.c:29: error: '__int64' undeclared (first use in this function) -conftest.c:29: error: (Each undeclared identifier is reported only once -conftest.c:29: error: for each function it appears in.) -conftest.c:29: error: expected ';' before 'value' -configure:9699: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclsdbm" -| #define PACKAGE_TARNAME "xotclsdbm" -| #define PACKAGE_VERSION "1.2" -| #define PACKAGE_STRING "xotclsdbm 1.2" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define NO_VALUES_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_SYS_PARAM_H 1 -| #define USE_THREAD_ALLOC 1 -| #define _REENTRANT 1 -| #define _THREAD_SAFE 1 -| #define TCL_THREADS 1 -| /* end confdefs.h. */ -| -| int -| main () -| { -| __int64 value = (__int64) 0; -| ; -| return 0; -| } -configure:9739: gcc -c -pipe conftest.c >&5 -conftest.c: In function 'main': -conftest.c:30: error: duplicate case value -conftest.c:30: error: previously used here -configure:9745: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclsdbm" -| #define PACKAGE_TARNAME "xotclsdbm" -| #define PACKAGE_VERSION "1.2" -| #define PACKAGE_STRING "xotclsdbm 1.2" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define NO_VALUES_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_SYS_PARAM_H 1 -| #define USE_THREAD_ALLOC 1 -| #define _REENTRANT 1 -| #define _THREAD_SAFE 1 -| #define TCL_THREADS 1 -| /* end confdefs.h. */ -| -| int -| main () -| { -| switch (0) { -| case 1: case (sizeof(long long)==sizeof(long)): ; -| } -| ; -| return 0; -| } -configure:9767: result: using long -configure:10072: checking for build with symbols -configure:10091: result: yes (standard debugging) -configure:10224: checking for tclsh -configure:10251: result: /usr/local/src/tcl8.5.8/unix/tclsh -configure:10396: creating ./config.status - -## ---------------------- ## -## Running config.status. ## -## ---------------------- ## - -This file was extended by xotclsdbm config.status 1.2, which was -generated by GNU Autoconf 2.61. Invocation command line was - - CONFIG_FILES = - CONFIG_HEADERS = - CONFIG_LINKS = - CONFIG_COMMANDS = - $ ./config.status - -on imac.lan - -config.status:634: creating Makefile -config.status:769: WARNING: Makefile.in seems to ignore the --datarootdir setting - -## ---------------- ## -## Cache variables. ## -## ---------------- ## - -ac_cv_c_bigendian=no -ac_cv_c_compiler_gnu=yes -ac_cv_c_tclconfig=/usr/local/src/tcl8.5.8/unix -ac_cv_c_tclh=/usr/local/src/tcl8.5.8/generic -ac_cv_env_CC_set= -ac_cv_env_CC_value= -ac_cv_env_CFLAGS_set= -ac_cv_env_CFLAGS_value= -ac_cv_env_CPPFLAGS_set= -ac_cv_env_CPPFLAGS_value= -ac_cv_env_CPP_set= -ac_cv_env_CPP_value= -ac_cv_env_LDFLAGS_set= -ac_cv_env_LDFLAGS_value= -ac_cv_env_LIBS_set= -ac_cv_env_LIBS_value= -ac_cv_env_build_alias_set= -ac_cv_env_build_alias_value= -ac_cv_env_host_alias_set= -ac_cv_env_host_alias_value= -ac_cv_env_target_alias_set= -ac_cv_env_target_alias_value= -ac_cv_func_connect=yes -ac_cv_func_gethostbyname=yes -ac_cv_func_sin=yes -ac_cv_header_dlfcn_h=yes -ac_cv_header_errno_h=yes -ac_cv_header_float_h=yes -ac_cv_header_inttypes_h=yes -ac_cv_header_limits_h=yes -ac_cv_header_memory_h=yes -ac_cv_header_net_errno_h=no -ac_cv_header_stdc=yes -ac_cv_header_stdint_h=yes -ac_cv_header_stdlib_h=yes -ac_cv_header_string_h=yes -ac_cv_header_strings_h=yes -ac_cv_header_sys_param_h=yes -ac_cv_header_sys_stat_h=yes -ac_cv_header_sys_types_h=yes -ac_cv_header_sys_wait_h=yes -ac_cv_header_unistd_h=yes -ac_cv_header_values_h=no -ac_cv_lib_dl_dlopen=yes -ac_cv_lib_ieee_main=no -ac_cv_lib_inet_main=no -ac_cv_lib_pthread_pthread_mutex_init=yes -ac_cv_objext=o -ac_cv_path_EGREP='/usr/bin/grep -E' -ac_cv_path_GREP=/usr/bin/grep -ac_cv_path_install='/usr/bin/install -c' -ac_cv_prog_AR=ar -ac_cv_prog_CPP='gcc -E' -ac_cv_prog_ac_ct_CC=gcc -ac_cv_prog_ac_ct_RANLIB=ranlib -ac_cv_prog_cc_c89= -ac_cv_prog_cc_g=yes -ac_cv_prog_make_make_set=yes -tcl_cv_cc_pipe=yes -tcl_cv_dirent_h=yes -tcl_cv_flag__isoc99_source=no -tcl_cv_flag__largefile64_source=no -tcl_cv_flag__largefile_source64=no -tcl_cv_ld_search_paths_first=yes -tcl_cv_ld_single_module=yes -tcl_cv_sys_version=Darwin-10.2.0 -tcl_cv_type_64bit=none - -## ----------------- ## -## Output variables. ## -## ----------------- ## - -AR='ar' -CC='gcc' -CELIB_DIR='' -CFLAGS='-pipe ${CFLAGS_DEFAULT} ${CFLAGS_WARNING} ${SHLIB_CFLAGS} ' -CFLAGS_DEBUG='-g' -CFLAGS_DEFAULT='-g' -CFLAGS_OPTIMIZE='-Os' -CFLAGS_WARNING='-Wall -Wno-implicit-int' -CLEANFILES='pkgIndex.tcl' -CPP='gcc -E' -CPPFLAGS='' -CYGPATH='echo' -DEFS='-DPACKAGE_NAME=\"xotclsdbm\" -DPACKAGE_TARNAME=\"xotclsdbm\" -DPACKAGE_VERSION=\"1.2\" -DPACKAGE_STRING=\"xotclsdbm\ 1.2\" -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 -DNO_VALUES_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DTCL_THREADS=1 -DTCL_WIDE_INT_IS_LONG=1 -DUSE_TCL_STUBS=1' -DL_LIBS='' -ECHO_C='ECHO_N='' -ECHO_T='' -EGREP='/usr/bin/grep -E' -EXEEXT='' -GREP='/usr/bin/grep' -INSTALL_DATA='${INSTALL} -m 644' -INSTALL_PROGRAM='${INSTALL}' -INSTALL_SCRIPT='${INSTALL}' -LDFLAGS=' -prebind -headerpad_max_install_names -Wl,-search_paths_first ' -LDFLAGS_DEFAULT=' -prebind -headerpad_max_install_names -Wl,-search_paths_first ' -LD_LIBRARY_PATH_VAR='DYLD_LIBRARY_PATH' -LIBOBJS='' -LIBS='' -LTLIBOBJS='' -MAKE_LIB='${SHLIB_LD} -o $@ $(PKG_OBJECTS) ${SHLIB_LD_LIBS} ' -MAKE_SHARED_LIB='${SHLIB_LD} -o $@ $(PKG_OBJECTS) ${SHLIB_LD_LIBS}' -MAKE_STATIC_LIB='${STLIB_LD} $@ $(PKG_OBJECTS)' -MAKE_STUB_LIB='${STLIB_LD} $@ $(PKG_STUB_OBJECTS)' -MATH_LIBS='' -OBJEXT='o' -PACKAGE_BUGREPORT='' -PACKAGE_NAME='xotclsdbm' -PACKAGE_STRING='xotclsdbm 1.2' -PACKAGE_TARNAME='xotclsdbm' -PACKAGE_VERSION='1.2' -PATH_SEPARATOR=':' -PKG_CFLAGS=' ' -PKG_HEADERS='' -PKG_INCLUDES=' -I/Users/neumann/src/xotcl-1.6.6/generic -I./generic' -PKG_LIBS=' -L/Users/neumann/src/xotcl-1.6.6 -lxotclstub1.6.6 -L/Users/neumann/src/xotcl-1.6.6 -lxotcl1.6.6' -PKG_LIB_FILE='libxotclsdbm1.2.dylib' -PKG_OBJECTS=' hash.o pair.o sdbm.o xotclsdbm.o' -PKG_SOURCES=' hash.c pair.c sdbm.c xotclsdbm.c' -PKG_STUB_LIB_FILE='libxotclsdbmstub1.2.a' -PKG_STUB_OBJECTS='' -PKG_STUB_SOURCES='' -PKG_TCL_SOURCES='' -RANLIB=':' -RANLIB_STUB='ranlib' -SET_MAKE='' -SHARED_BUILD='1' -SHELL='/bin/sh' -SHLIB_CFLAGS='-fno-common' -SHLIB_LD='${CC} -dynamiclib ${CFLAGS} ${LDFLAGS_DEFAULT} -Wl,-single_module' -SHLIB_LD_LIBS='${LIBS} -L/usr/local/src/tcl8.5.8/unix -ltclstub8.5' -STLIB_LD='${AR} cr' -TCLSH_PROG='/usr/local/src/tcl8.5.8/unix/tclsh' -TCL_BIN_DIR='/usr/local/src/tcl8.5.8/unix' -TCL_DBGX='' -TCL_DEFS='-DPACKAGE_NAME=\"tcl\" -DPACKAGE_TARNAME=\"tcl\" -DPACKAGE_VERSION=\"8.5\" -DPACKAGE_STRING=\"tcl\ 8.5\" -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 -DNO_VALUES_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DHAVE_PTHREAD_ATTR_SETSTACKSIZE=1 -DHAVE_PTHREAD_GET_STACKSIZE_NP=1 -DTCL_THREADS=1 -DTCL_CFGVAL_ENCODING=\"iso8859-1\" -DMODULE_SCOPE=extern\ __attribute__\(\(__visibility__\(\"hidden\"\)\)\) -DMAC_OSX_TCL=1 -DTCL_SHLIB_EXT=\".dylib\" -DTCL_CFG_DEBUG=1 -DTCL_TOMMATH=1 -DMP_PREC=4 -DTCL_WIDE_INT_IS_LONG=1 -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRTOL=1 -DHAVE_WAITPID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETPWUID_R_5=1 -DHAVE_GETPWUID_R=1 -DHAVE_GETPWNAM_R_5=1 -DHAVE_GETPWNAM_R=1 -DHAVE_GETGRGID_R_5=1 -DHAVE_GETGRGID_R=1 -DHAVE_GETGRNAM_R_5=1 -DHAVE_GETGRNAM_R=1 -DHAVE_MTSAFE_GETHOSTBYNAME=1 -DHAVE_MTSAFE_GETHOSTBYADDR=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_STRUCT_TM_TM_ZONE=1 -DHAVE_TM_ZONE=1 -DHAVE_GMTIME_R=1 -DHAVE_LOCALTIME_R=1 -DHAVE_MKTIME=1 -DHAVE_TM_GMTOFF=1 -DHAVE_TIMEZONE_VAR=1 -DHAVE_STRUCT_STAT_ST_BLKSIZE=1 -DHAVE_ST_BLKSIZE=1 -DHAVE_INTPTR_T=1 -DHAVE_UINTPTR_T=1 -DHAVE_SIGNED_CHAR=1 -DHAVE_LANGINFO=1 -DHAVE_CHFLAGS=1 -DHAVE_GETATTRLIST=1 -DHAVE_COPYFILE_H=1 -DHAVE_COPYFILE=1 -DUSE_VFORK=1 -DTCL_DEFAULT_ENCODING=\"utf-8\" -DTCL_LOAD_FROM_MEMORY=1 -DTCL_WIDE_CLICKS=1 -DHAVE_AVAILABILITYMACROS_H=1 -DHAVE_WEAK_IMPORT=1 -D_DARWIN_C_SOURCE=1 -DHAVE_FTS=1 -DHAVE_SYS_IOCTL_H=1 -DHAVE_SYS_FILIO_H=1 -DTCL_UNLOAD_DLLS=1 ' -TCL_EXTRA_CFLAGS='-pipe ' -TCL_INCLUDES='-I"/usr/local/src/tcl8.5.8/generic"' -TCL_LD_FLAGS=' -prebind -headerpad_max_install_names -Wl,-search_paths_first ' -TCL_LIBS='${DL_LIBS} ${LIBS} ${MATH_LIBS}' -TCL_LIB_FILE='libtcl8.5.dylib' -TCL_LIB_FLAG='-ltcl8.5' -TCL_LIB_SPEC='-L/usr/local/src/tcl8.5.8/unix -ltcl8.5' -TCL_SHLIB_LD_LIBS='${LIBS}' -TCL_SRC_DIR='/usr/local/src/tcl8.5.8' -TCL_STUB_LIB_FILE='libtclstub8.5.a' -TCL_STUB_LIB_FLAG='-ltclstub8.5' -TCL_STUB_LIB_SPEC='-L/usr/local/src/tcl8.5.8/unix -ltclstub8.5' -TCL_THREADS='1' -TCL_VERSION='8.5' -ac_ct_CC='gcc' -bindir='${exec_prefix}/bin' -build_alias='' -datadir='${datarootdir}' -datarootdir='${prefix}/share' -docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' -dvidir='${docdir}' -exec_prefix='/usr/local/ns' -host_alias='' -htmldir='${docdir}' -includedir='${prefix}/include' -infodir='${datarootdir}/info' -libdir='${exec_prefix}/lib' -libexecdir='${exec_prefix}/libexec' -localedir='${datarootdir}/locale' -localstatedir='${prefix}/var' -mandir='${datarootdir}/man' -oldincludedir='/usr/include' -pdfdir='${docdir}' -prefix='/usr/local/ns' -program_transform_name='s,x,x,' -psdir='${docdir}' -sbindir='${exec_prefix}/sbin' -sharedstatedir='${prefix}/com' -sysconfdir='${prefix}/etc' -target_alias='' - -## ----------- ## -## confdefs.h. ## -## ----------- ## - -#define PACKAGE_NAME "xotclsdbm" -#define PACKAGE_TARNAME "xotclsdbm" -#define PACKAGE_VERSION "1.2" -#define PACKAGE_STRING "xotclsdbm 1.2" -#define PACKAGE_BUGREPORT "" -#define STDC_HEADERS 1 -#define HAVE_SYS_TYPES_H 1 -#define HAVE_SYS_STAT_H 1 -#define HAVE_STDLIB_H 1 -#define HAVE_STRING_H 1 -#define HAVE_MEMORY_H 1 -#define HAVE_STRINGS_H 1 -#define HAVE_INTTYPES_H 1 -#define HAVE_STDINT_H 1 -#define HAVE_UNISTD_H 1 -#define NO_VALUES_H 1 -#define HAVE_LIMITS_H 1 -#define HAVE_SYS_PARAM_H 1 -#define USE_THREAD_ALLOC 1 -#define _REENTRANT 1 -#define _THREAD_SAFE 1 -#define TCL_THREADS 1 -#define TCL_WIDE_INT_IS_LONG 1 -#define USE_TCL_STUBS 1 - -configure: exit 0 Index: library/xml/TclExpat-1.1/Makefile =================================================================== diff -u -N --- library/xml/TclExpat-1.1/Makefile (revision 2d45b41a8a644b3d647f59208067e81391ad7d36) +++ library/xml/TclExpat-1.1/Makefile (revision 0) @@ -1,433 +0,0 @@ -# Makefile.in -- -# -# This file is a Makefile for Sample TEA Extension. If it has the name -# "Makefile.in" then it is a template for a Makefile; to generate the -# actual Makefile, run "./configure", which is a configuration script -# generated by the "autoconf" program (constructs like "@foo@" will get -# replaced in the actual Makefile. -# -# Copyright (c) 1999 Scriptics Corporation. -# Copyright (c) 2002-2003 ActiveState Corporation. -# -# See the file "license.terms" for information on usage and redistribution -# of this file, and for a DISCLAIMER OF ALL WARRANTIES. -# -# RCS: @(#) $Id: Makefile.in,v 1.5 2007/08/14 16:38:27 neumann Exp $ - -#======================================================================== -# Add additional lines to handle any additional AC_SUBST cases that -# have been added in a customized configure script. -#======================================================================== - -#SAMPLE_NEW_VAR = @SAMPLE_NEW_VAR@ - -#======================================================================== -# Nothing of the variables below this line should need to be changed. -# Please check the TARGETS section below to make sure the make targets -# are correct. -#======================================================================== - -#======================================================================== -# The names of the source files is defined in the configure script. -# The object files are used for linking into the final library. -# This will be used when a dist target is added to the Makefile. -# It is not important to specify the directory, as long as it is the -# $(srcdir) or in the generic, win or unix subdirectory. -#======================================================================== - -PKG_SOURCES = xmltok.c unixfilemap.c xmlrole.c xmlwf.c codepage.c xmlparse.c hashtable.c tclexpat.c -PKG_OBJECTS = xmltok.o unixfilemap.o xmlrole.o xmlwf.o codepage.o xmlparse.o hashtable.o tclexpat.o - -PKG_STUB_SOURCES = -PKG_STUB_OBJECTS = - -#======================================================================== -# PKG_TCL_SOURCES identifies Tcl runtime files that are associated with -# this package that need to be installed, if any. -#======================================================================== - -PKG_TCL_SOURCES = - -#======================================================================== -# This is a list of public header files to be installed, if any. -#======================================================================== - -PKG_HEADERS = - -#======================================================================== -# "PKG_LIB_FILE" refers to the library (dynamic or static as per -# configuration options) composed of the named objects. -#======================================================================== - -PKG_LIB_FILE = libxotclexpat0.9.dylib -PKG_STUB_LIB_FILE = libxotclexpatstub0.9.a - -lib_BINARIES = $(PKG_LIB_FILE) -BINARIES = $(lib_BINARIES) - -SHELL = /bin/sh - -srcdir = . -prefix = /usr/local/ns -exec_prefix = /usr/local/ns - -bindir = ${exec_prefix}/bin -libdir = ${exec_prefix}/lib -datadir = ${prefix}/share -mandir = ${prefix}/share/man -includedir = ${prefix}/include - -DESTDIR = - -PKG_DIR = $(PACKAGE_NAME)$(PACKAGE_VERSION) -pkgdatadir = $(datadir)/$(PKG_DIR) -pkglibdir = $(libdir)/$(PKG_DIR) -pkgincludedir = $(includedir)/$(PKG_DIR) - -top_builddir = . - -INSTALL = /usr/bin/install -c -INSTALL_PROGRAM = ${INSTALL} -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_SCRIPT = ${INSTALL} - -PACKAGE_NAME = xotclexpat -PACKAGE_VERSION = 0.9 -CC = gcc -CFLAGS_DEFAULT = -g -CFLAGS_WARNING = -Wall -CLEANFILES = pkgIndex.tcl -EXEEXT = -LDFLAGS_DEFAULT = -prebind -headerpad_max_install_names -Wl,-search_paths_first -MAKE_LIB = ${SHLIB_LD} -o $@ $(PKG_OBJECTS) ${SHLIB_LD_LIBS} -MAKE_SHARED_LIB = ${SHLIB_LD} -o $@ $(PKG_OBJECTS) ${SHLIB_LD_LIBS} -MAKE_STATIC_LIB = ${STLIB_LD} $@ $(PKG_OBJECTS) -MAKE_STUB_LIB = ${STLIB_LD} $@ $(PKG_STUB_OBJECTS) -OBJEXT = o -RANLIB = : -RANLIB_STUB = ranlib -SHLIB_CFLAGS = -fno-common -SHLIB_LD = ${CC} -dynamiclib ${CFLAGS} ${LDFLAGS_DEFAULT} -Wl,-single_module -current_version 0.9 -compatibility_version 0.9 -SHLIB_LD_FLAGS = @SHLIB_LD_FLAGS@ -SHLIB_LD_LIBS = ${LIBS} -L/usr/local/src/tcl8.5.8/unix -ltclstub8.5 -STLIB_LD = ${AR} cr -TCL_DEFS = -DPACKAGE_NAME=\"tcl\" -DPACKAGE_TARNAME=\"tcl\" -DPACKAGE_VERSION=\"8.5\" -DPACKAGE_STRING=\"tcl\ 8.5\" -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 -DNO_VALUES_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DHAVE_PTHREAD_ATTR_SETSTACKSIZE=1 -DHAVE_PTHREAD_GET_STACKSIZE_NP=1 -DTCL_THREADS=1 -DTCL_CFGVAL_ENCODING=\"iso8859-1\" -DMODULE_SCOPE=extern\ __attribute__\(\(__visibility__\(\"hidden\"\)\)\) -DMAC_OSX_TCL=1 -DTCL_SHLIB_EXT=\".dylib\" -DTCL_CFG_DEBUG=1 -DTCL_TOMMATH=1 -DMP_PREC=4 -DTCL_WIDE_INT_IS_LONG=1 -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRTOL=1 -DHAVE_WAITPID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETPWUID_R_5=1 -DHAVE_GETPWUID_R=1 -DHAVE_GETPWNAM_R_5=1 -DHAVE_GETPWNAM_R=1 -DHAVE_GETGRGID_R_5=1 -DHAVE_GETGRGID_R=1 -DHAVE_GETGRNAM_R_5=1 -DHAVE_GETGRNAM_R=1 -DHAVE_MTSAFE_GETHOSTBYNAME=1 -DHAVE_MTSAFE_GETHOSTBYADDR=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_STRUCT_TM_TM_ZONE=1 -DHAVE_TM_ZONE=1 -DHAVE_GMTIME_R=1 -DHAVE_LOCALTIME_R=1 -DHAVE_MKTIME=1 -DHAVE_TM_GMTOFF=1 -DHAVE_TIMEZONE_VAR=1 -DHAVE_STRUCT_STAT_ST_BLKSIZE=1 -DHAVE_ST_BLKSIZE=1 -DHAVE_INTPTR_T=1 -DHAVE_UINTPTR_T=1 -DHAVE_SIGNED_CHAR=1 -DHAVE_LANGINFO=1 -DHAVE_CHFLAGS=1 -DHAVE_GETATTRLIST=1 -DHAVE_COPYFILE_H=1 -DHAVE_COPYFILE=1 -DUSE_VFORK=1 -DTCL_DEFAULT_ENCODING=\"utf-8\" -DTCL_LOAD_FROM_MEMORY=1 -DTCL_WIDE_CLICKS=1 -DHAVE_AVAILABILITYMACROS_H=1 -DHAVE_WEAK_IMPORT=1 -D_DARWIN_C_SOURCE=1 -DHAVE_FTS=1 -DHAVE_SYS_IOCTL_H=1 -DHAVE_SYS_FILIO_H=1 -DTCL_UNLOAD_DLLS=1 -TCL_BIN_DIR = /usr/local/src/tcl8.5.8/unix -TCL_SRC_DIR = /usr/local/src/tcl8.5.8 -# This is necessary for packages that use private Tcl headers -#TCL_TOP_DIR_NATIVE = @TCL_TOP_DIR_NATIVE@ -# Not used, but retained for reference of what libs Tcl required -TCL_LIBS = ${DL_LIBS} ${LIBS} ${MATH_LIBS} - -#======================================================================== -# TCLLIBPATH seeds the auto_path in Tcl's init.tcl so we can test our -# package without installing. The other environment variables allow us -# to test against an uninstalled Tcl. Add special env vars that you -# require for testing here (like TCLX_LIBRARY). -#======================================================================== - -EXTRA_PATH = $(top_builddir):$(TCL_BIN_DIR) -TCLSH_ENV = TCL_LIBRARY=`echo $(TCL_SRC_DIR)/library` \ - DYLD_LIBRARY_PATH="$(EXTRA_PATH):$(DYLD_LIBRARY_PATH)" \ - PATH="$(EXTRA_PATH):$(PATH)" \ - TCLLIBPATH="$(top_builddir)" -TCLSH_PROG = /usr/local/src/tcl8.5.8/unix/tclsh -TCLSH = $(TCLSH_ENV) $(TCLSH_PROG) -SHARED_BUILD = 1 - -INCLUDES = -I/Users/neumann/src/xotcl-1.6.6/generic -I./generic -I"/usr/local/src/tcl8.5.8/generic" - -EXTRA_CFLAGS = - -# TCL_DEFS is not strictly need here, but if you remove it, then you -# must make sure that configure.in checks for the necessary components -# that your library may use. TCL_DEFS can actually be a problem if -# you do not compile with a similar machine setup as the Tcl core was -# compiled with. -#DEFS = $(TCL_DEFS) -DPACKAGE_NAME=\"xotclexpat\" -DPACKAGE_TARNAME=\"xotclexpat\" -DPACKAGE_VERSION=\"0.9\" -DPACKAGE_STRING=\"xotclexpat\ 0.9\" -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 -DNO_VALUES_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DTCL_THREADS=1 -DMODULE_SCOPE=extern\ __attribute__\(\(__visibility__\(\"hidden\"\)\)\) -DTCL_WIDE_INT_IS_LONG=1 -DUSE_TCL_STUBS=1 $(EXTRA_CFLAGS) -DEFS = -DPACKAGE_NAME=\"xotclexpat\" -DPACKAGE_TARNAME=\"xotclexpat\" -DPACKAGE_VERSION=\"0.9\" -DPACKAGE_STRING=\"xotclexpat\ 0.9\" -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 -DNO_VALUES_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DTCL_THREADS=1 -DMODULE_SCOPE=extern\ __attribute__\(\(__visibility__\(\"hidden\"\)\)\) -DTCL_WIDE_INT_IS_LONG=1 -DUSE_TCL_STUBS=1 $(EXTRA_CFLAGS) - -CONFIG_CLEAN_FILES = Makefile - -CPPFLAGS = -LIBS = -L/Users/neumann/src/xotcl-1.6.6 -lxotclstub1.6.6 -AR = ar -CFLAGS = -pipe ${CFLAGS_DEFAULT} ${CFLAGS_WARNING} ${SHLIB_CFLAGS} -COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) - -#======================================================================== -# Start of user-definable TARGETS section -#======================================================================== - -#======================================================================== -# TEA TARGETS. Please note that the "libraries:" target refers to platform -# independent files, and the "binaries:" target inclues executable programs and -# platform-dependent libraries. Modify these targets so that they install -# the various pieces of your package. The make and install rules -# for the BINARIES that you specified above have already been done. -#======================================================================== - -all: binaries libraries doc - -#======================================================================== -# The binaries target builds executable programs, Windows .dll's, unix -# shared/static libraries, and any other platform-dependent files. -# The list of targets to build for "binaries:" is specified at the top -# of the Makefile, in the "BINARIES" variable. -#======================================================================== - -binaries: $(BINARIES) pkgIndex.tcl - -libraries: - -doc: - @echo "If you have documentation to create, place the commands to" - @echo "build the docs in the 'doc:' target. For example:" - @echo " xml2nroff sample.xml > sample.n" - @echo " xml2html sample.xml > sample.html" - -install: all install-binaries install-libraries install-doc - -install-binaries: binaries install-lib-binaries install-bin-binaries - if test "x$(SHARED_BUILD)" = "x1"; then \ - $(INSTALL_DATA) pkgIndex.tcl $(DESTDIR)$(pkglibdir); \ - fi - -#======================================================================== -# This rule installs platform-independent files, such as header files. -#======================================================================== - -install-libraries: libraries - @mkdir -p $(DESTDIR)$(includedir) - @echo "Installing header files in $(DESTDIR)$(includedir)" - @if test -n "$(PKG_HEADERS)" ; then \ - for i in "$(PKG_HEADERS)" ; do \ - echo "Installing $(srcdir)/$$i" ; \ - $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(includedir) ; \ - done; \ - fi - -#======================================================================== -# Install documentation. Unix manpages should go in the $(mandir) -# directory. -#======================================================================== - -install-doc: doc -#install-doc: doc -# @mkdir -p $(DESTDIR)$(mandir)/mann -# @echo "Installing documentation in $(DESTDIR)$(mandir)" -# @for i in $(srcdir)/doc/*.n; do \ -# echo "Installing $$i"; \ -# rm -f $(DESTDIR)$(mandir)/mann/`basename $$i`; \ -# $(INSTALL_DATA) $$i $(DESTDIR)$(mandir)/mann ; \ -# done - -test: binaries libraries - $(TCLSH) `echo $(srcdir)/tests/all.tcl` $(TESTFLAGS) - -shell: binaries libraries - @$(TCLSH) $(SCRIPT) - -gdb: - $(TCLSH_ENV) gdb $(TCLSH_PROG) $(SCRIPT) - -depend: - -#======================================================================== -# $(PKG_LIB_FILE) should be listed as part of the BINARIES variable -# mentioned above. That will ensure that this target is built when you -# run "make binaries". -# -# The $(PKG_OBJECTS) objects are created and linked into the final -# library. In most cases these object files will correspond to the -# source files above. -#======================================================================== - -$(PKG_LIB_FILE): $(PKG_OBJECTS) - -rm -f $(PKG_LIB_FILE) - ${MAKE_LIB} - $(RANLIB) $(PKG_LIB_FILE) - -$(PKG_STUB_LIB_FILE): $(PKG_STUB_OBJECTS) - -rm -f $(PKG_STUB_LIB_FILE) - ${MAKE_STUB_LIB} - $(RANLIB_STUB) $(PKG_STUB_LIB_FILE) - -#======================================================================== -# We need to enumerate the list of .c to .o lines here. -# -# In the following lines, $(srcdir) refers to the toplevel directory -# containing your extension. If your sources are in a subdirectory, -# you will have to modify the paths to reflect this: -# -# sample.$(OBJEXT): $(srcdir)/generic/sample.c -# $(COMPILE) -c `echo $(srcdir)/generic/sample.c` -o $@ -# -# Setting the VPATH variable to a list of paths will cause the makefile -# to look into these paths when resolving .c to .obj dependencies. -# As necessary, add $(srcdir):$(srcdir)/compat:.... -#======================================================================== - -VPATH = $(srcdir)/generic:$(srcdir)/unix:$(srcdir)/win - -.c.o: - $(COMPILE) -c `echo $<` -o $@ - -#======================================================================== -# Create the pkgIndex.tcl file. -# It is usually easiest to let Tcl do this for you with pkg_mkIndex, but -# you may find that you need to customize the package. If so, either -# modify the -hand version, or create a pkgIndex.tcl.in file and have -# the configure script output the pkgIndex.tcl by editing configure.in. -#======================================================================== - -pkgIndex.tcl: - ( echo pkg_mkIndex . $(PKG_LIB_FILE) \; exit; ) | $(TCLSH) - -pkgIndex.tcl-hand: - (echo 'package ifneeded xotcl::xml::expat $(PACKAGE_VERSION) \ - [list load [file join $$dir $(PKG_LIB_FILE)]]'\ - ) > pkgIndex.tcl - -#======================================================================== -# Distribution creation -# You may need to tweak this target to make it work correctly. -#======================================================================== - -#COMPRESS = tar cvf $(PKG_DIR).tar $(PKG_DIR); compress $(PKG_DIR).tar -COMPRESS = gtar zcvf $(PKG_DIR).tar.gz $(PKG_DIR) -DIST_ROOT = /tmp/dist -DIST_DIR = $(DIST_ROOT)/$(PKG_DIR) - -dist-clean: - rm -rf $(DIST_DIR) $(DIST_ROOT)/$(PKG_DIR).tar.* - -dist: dist-clean - mkdir -p $(DIST_DIR) - cp -p $(srcdir)/ChangeLog $(srcdir)/README* $(srcdir)/license* \ - $(srcdir)/aclocal.m4 $(srcdir)/configure $(srcdir)/*.in \ - $(DIST_DIR)/ - chmod 664 $(DIST_DIR)/Makefile.in $(DIST_DIR)/aclocal.m4 - chmod 775 $(DIST_DIR)/configure $(DIST_DIR)/configure.in - - cp -p $(srcdir)/*.[ch] $(DIST_DIR)/ - - mkdir $(DIST_DIR)/tclconfig - cp $(srcdir)/tclconfig/install-sh $(srcdir)/tclconfig/tcl.m4 \ - $(DIST_DIR)/tclconfig/ - chmod 664 $(DIST_DIR)/tclconfig/tcl.m4 - chmod +x $(DIST_DIR)/tclconfig/install-sh - - list='demos doc generic library mac tests unix win'; \ - for p in $$list; do \ - if test -d $(srcdir)/$$p ; then \ - mkdir $(DIST_DIR)/$$p; \ - cp -p $(srcdir)/$$p/*.* $(DIST_DIR)/$$p/; \ - fi; \ - done - - (cd $(DIST_ROOT); $(COMPRESS);) - -#======================================================================== -# End of user-definable section -#======================================================================== - -#======================================================================== -# Don't modify the file to clean here. Instead, set the "CLEANFILES" -# variable in configure.in -#======================================================================== - -clean: - -test -z "$(BINARIES)" || rm -f $(BINARIES) - -rm -f *.$(OBJEXT) core *.core - -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) - -distclean: clean - -rm -f *.tab.c - -rm -f $(CONFIG_CLEAN_FILES) - -rm -f config.cache config.log config.status - -#======================================================================== -# Install binary object libraries. On Windows this includes both .dll and -# .lib files. Because the .lib files are not explicitly listed anywhere, -# we need to deduce their existence from the .dll file of the same name. -# Library files go into the lib directory. -# In addition, this will generate the pkgIndex.tcl -# file in the install location (assuming it can find a usable tclsh shell) -# -# You should not have to modify this target. -#======================================================================== - -install-lib-binaries: - @mkdir -p $(DESTDIR)$(pkglibdir) - @list='$(lib_BINARIES)'; for p in $$list; do \ - if test -f $$p; then \ - echo " $(INSTALL_PROGRAM) $$p $(DESTDIR)$(pkglibdir)/$$p"; \ - $(INSTALL_PROGRAM) $$p $(DESTDIR)$(pkglibdir)/$$p; \ - stub=`echo $$p|sed -e "s/.*\(stub\).*/\1/"`; \ - if test "x$$stub" = "xstub"; then \ - echo " $(RANLIB_STUB) $(DESTDIR)$(pkglibdir)/$$p"; \ - $(RANLIB_STUB) $(DESTDIR)$(pkglibdir)/$$p; \ - else \ - echo " $(RANLIB) $(DESTDIR)$(pkglibdir)/$$p"; \ - $(RANLIB) $(DESTDIR)$(pkglibdir)/$$p; \ - fi; \ - ext=`echo $$p|sed -e "s/.*\.//"`; \ - if test "x$$ext" = "xdll"; then \ - lib=`basename $$p|sed -e 's/.[^.]*$$//'`.lib; \ - if test -f $$lib; then \ - echo " $(INSTALL_DATA) $$lib $(DESTDIR)$(pkglibdir)/$$lib"; \ - $(INSTALL_DATA) $$lib $(DESTDIR)$(pkglibdir)/$$lib; \ - fi; \ - fi; \ - fi; \ - done - @list='$(PKG_TCL_SOURCES)'; for p in $$list; do \ - if test -f $(srcdir)/$$p; then \ - destp=`basename $$p`; \ - echo " Install $$destp $(DESTDIR)$(pkglibdir)/$$destp"; \ - $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkglibdir)/$$destp; \ - fi; \ - done - -#======================================================================== -# Install binary executables (e.g. .exe files and dependent .dll files) -# This is for files that must go in the bin directory (located next to -# wish and tclsh), like dependent .dll files on Windows. -# -# You should not have to modify this target, except to define bin_BINARIES -# above if necessary. -#======================================================================== - -install-bin-binaries: - @mkdir -p $(DESTDIR)$(bindir) - @list='$(bin_BINARIES)'; for p in $$list; do \ - if test -f $$p; then \ - echo " $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/$$p"; \ - $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/$$p; \ - fi; \ - done - -.SUFFIXES: .c .$(OBJEXT) - -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) \ - && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status - -uninstall-binaries: - list='$(lib_BINARIES)'; for p in $$list; do \ - rm -f $(DESTDIR)$(pkglibdir)/$$p; \ - done - list='$(PKG_TCL_SOURCES)'; for p in $$list; do \ - p=`basename $$p`; \ - rm -f $(DESTDIR)$(pkglibdir)/$$p; \ - done - list='$(bin_BINARIES)'; for p in $$list; do \ - rm -f $(DESTDIR)$(bindir)/$$p; \ - done - -.PHONY: all binaries clean depend distclean doc install libraries test - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: Index: library/xml/TclExpat-1.1/config.log =================================================================== diff -u -N --- library/xml/TclExpat-1.1/config.log (revision 2d45b41a8a644b3d647f59208067e81391ad7d36) +++ library/xml/TclExpat-1.1/config.log (revision 0) @@ -1,1007 +0,0 @@ -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by xotclexpat configure 0.9, which was -generated by GNU Autoconf 2.61. Invocation command line was - - $ ./configure --with-tcl=/usr/local/src/tcl8.5.8/unix/ --enable-symbols --with-actiweb --prefix=/usr/local/ns --with-xotcl=/Users/neumann/src/xotcl-1.6.6 - -## --------- ## -## Platform. ## -## --------- ## - -hostname = imac.lan -uname -m = i386 -uname -r = 10.2.0 -uname -s = Darwin -uname -v = Darwin Kernel Version 10.2.0: Tue Nov 3 23:08:29 PST 2009; root:xnu-1486.2.11~3/RELEASE_I386 - -/usr/bin/uname -p = i386 -/bin/uname -X = unknown - -/bin/arch = unknown -/usr/bin/arch -k = unknown -/usr/convex/getsysinfo = unknown -/usr/bin/hostinfo = Mach kernel version: - Darwin Kernel Version 10.2.0: Tue Nov 3 23:08:29 PST 2009; root:xnu-1486.2.11~3/RELEASE_I386 -Kernel configured for up to 2 processors. -2 processors are physically available. -2 processors are logically available. -Processor type: i486 (Intel 80486) -Processors active: 0 1 -Primary memory available: 8.00 gigabytes -Default processor set: 102 tasks, 405 threads, 2 processors -Load average: 1.23, Mach factor: 0.86 -/bin/machine = unknown -/usr/bin/oslevel = unknown -/bin/universe = unknown - -PATH: /Library/Frameworks/Python.framework/Versions/Current/bin -PATH: /opt/local/bin -PATH: /opt/local/sbin -PATH: /sw/bin -PATH: /sw/sbin -PATH: /usr/bin -PATH: /bin -PATH: /usr/sbin -PATH: /sbin -PATH: /usr/local/bin -PATH: /usr/X11/bin -PATH: /usr/X11R6/bin - - -## ----------- ## -## Core tests. ## -## ----------- ## - -configure:1776: checking for correct TEA configuration -configure:1795: result: ok (TEA 3.7) -configure:1987: checking for Tcl configuration -configure:2113: result: found /usr/local/src/tcl8.5.8/unix/tclConfig.sh -configure:2119: checking for existence of /usr/local/src/tcl8.5.8/unix/tclConfig.sh -configure:2123: result: loading -configure:2282: --exec-prefix defaulting to TCL_EXEC_PREFIX /usr/local/ns -configure:2358: checking for gcc -configure:2374: found /usr/bin/gcc -configure:2385: result: gcc -configure:2623: checking for C compiler version -configure:2630: gcc --version >&5 -i686-apple-darwin10-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5646) (dot 1) -Copyright (C) 2007 Free Software Foundation, Inc. -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -configure:2633: $? = 0 -configure:2640: gcc -v >&5 -Using built-in specs. -Target: i686-apple-darwin10 -Configured with: /var/tmp/gcc/gcc-5646.1~2/src/configure --disable-checking --enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin10 --with-gxx-include-dir=/include/c++/4.2.1 --program-prefix=i686-apple-darwin10- --host=x86_64-apple-darwin10 --target=i686-apple-darwin10 -Thread model: posix -gcc version 4.2.1 (Apple Inc. build 5646) (dot 1) -configure:2643: $? = 0 -configure:2650: gcc -V >&5 -gcc-4.2: argument to `-V' is missing -configure:2653: $? = 1 -configure:2676: checking for C compiler default output file name -configure:2703: gcc conftest.c >&5 -configure:2706: $? = 0 -configure:2744: result: a.out -configure:2761: checking whether the C compiler works -configure:2771: ./a.out -configure:2774: $? = 0 -configure:2791: result: yes -configure:2798: checking whether we are cross compiling -configure:2800: result: no -configure:2803: checking for suffix of executables -configure:2810: gcc -o conftest conftest.c >&5 -configure:2813: $? = 0 -configure:2837: result: -configure:2843: checking for suffix of object files -configure:2869: gcc -c conftest.c >&5 -configure:2872: $? = 0 -configure:2895: result: o -configure:2899: checking whether we are using the GNU C compiler -configure:2928: gcc -c conftest.c >&5 -configure:2934: $? = 0 -configure:2951: result: yes -configure:2956: checking whether gcc accepts -g -configure:2986: gcc -c -g conftest.c >&5 -configure:2992: $? = 0 -configure:3091: result: yes -configure:3108: checking for gcc option to accept ISO C89 -configure:3182: gcc -c conftest.c >&5 -configure:3188: $? = 0 -configure:3211: result: none needed -configure:3234: checking how to run the C preprocessor -configure:3274: gcc -E conftest.c -configure:3280: $? = 0 -configure:3311: gcc -E conftest.c -conftest.c:8:28: error: ac_nonexistent.h: No such file or directory -configure:3317: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclexpat" -| #define PACKAGE_TARNAME "xotclexpat" -| #define PACKAGE_VERSION "0.9" -| #define PACKAGE_STRING "xotclexpat 0.9" -| #define PACKAGE_BUGREPORT "" -| /* end confdefs.h. */ -| #include -configure:3350: result: gcc -E -configure:3379: gcc -E conftest.c -configure:3385: $? = 0 -configure:3416: gcc -E conftest.c -conftest.c:8:28: error: ac_nonexistent.h: No such file or directory -configure:3422: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclexpat" -| #define PACKAGE_TARNAME "xotclexpat" -| #define PACKAGE_VERSION "0.9" -| #define PACKAGE_STRING "xotclexpat 0.9" -| #define PACKAGE_BUGREPORT "" -| /* end confdefs.h. */ -| #include -configure:3473: checking for a BSD-compatible install -configure:3529: result: /usr/bin/install -c -configure:3545: checking whether make sets $(MAKE) -configure:3566: result: yes -configure:3623: checking for ranlib -configure:3639: found /usr/bin/ranlib -configure:3650: result: ranlib -configure:3686: checking for grep that handles long lines and -e -configure:3760: result: /usr/bin/grep -configure:3765: checking for egrep -configure:3843: result: /usr/bin/grep -E -configure:3848: checking for ANSI C header files -configure:3878: gcc -c conftest.c >&5 -configure:3884: $? = 0 -configure:3983: gcc -o conftest conftest.c >&5 -configure:3986: $? = 0 -configure:3992: ./conftest -configure:3995: $? = 0 -configure:4012: result: yes -configure:4036: checking for sys/types.h -configure:4057: gcc -c conftest.c >&5 -configure:4063: $? = 0 -configure:4079: result: yes -configure:4036: checking for sys/stat.h -configure:4057: gcc -c conftest.c >&5 -configure:4063: $? = 0 -configure:4079: result: yes -configure:4036: checking for stdlib.h -configure:4057: gcc -c conftest.c >&5 -configure:4063: $? = 0 -configure:4079: result: yes -configure:4036: checking for string.h -configure:4057: gcc -c conftest.c >&5 -configure:4063: $? = 0 -configure:4079: result: yes -configure:4036: checking for memory.h -configure:4057: gcc -c conftest.c >&5 -configure:4063: $? = 0 -configure:4079: result: yes -configure:4036: checking for strings.h -configure:4057: gcc -c conftest.c >&5 -configure:4063: $? = 0 -configure:4079: result: yes -configure:4036: checking for inttypes.h -configure:4057: gcc -c conftest.c >&5 -configure:4063: $? = 0 -configure:4079: result: yes -configure:4036: checking for stdint.h -configure:4057: gcc -c conftest.c >&5 -configure:4063: $? = 0 -configure:4079: result: yes -configure:4036: checking for unistd.h -configure:4057: gcc -c conftest.c >&5 -configure:4063: $? = 0 -configure:4079: result: yes -configure:4101: checking if the compiler understands -pipe -configure:4129: gcc -c -pipe conftest.c >&5 -configure:4135: $? = 0 -configure:4151: result: yes -configure:4162: checking whether byte ordering is bigendian -configure:4195: gcc -c -pipe conftest.c >&5 -configure:4201: $? = 0 -configure:4233: gcc -c -pipe conftest.c >&5 -conftest.c: In function 'main': -conftest.c:25: error: 'not' undeclared (first use in this function) -conftest.c:25: error: (Each undeclared identifier is reported only once -conftest.c:25: error: for each function it appears in.) -conftest.c:25: error: expected ';' before 'big' -configure:4239: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclexpat" -| #define PACKAGE_TARNAME "xotclexpat" -| #define PACKAGE_VERSION "0.9" -| #define PACKAGE_STRING "xotclexpat 0.9" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| #include -| #include -| -| int -| main () -| { -| #if BYTE_ORDER != BIG_ENDIAN -| not big endian -| #endif -| -| ; -| return 0; -| } -configure:4379: result: no -configure:4407: checking for sin -configure:4463: gcc -o conftest -pipe conftest.c >&5 -conftest.c:41: warning: conflicting types for built-in function 'sin' -configure:4469: $? = 0 -configure:4486: result: yes -configure:4494: checking for main in -lieee -configure:4523: gcc -o conftest -pipe conftest.c -lieee >&5 -ld: library not found for -lieee -collect2: ld returned 1 exit status -configure:4529: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclexpat" -| #define PACKAGE_TARNAME "xotclexpat" -| #define PACKAGE_VERSION "0.9" -| #define PACKAGE_STRING "xotclexpat 0.9" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| -| -| int -| main () -| { -| return main (); -| ; -| return 0; -| } -configure:4547: result: no -configure:4559: checking for main in -linet -configure:4588: gcc -o conftest -pipe conftest.c -linet >&5 -ld: library not found for -linet -collect2: ld returned 1 exit status -configure:4594: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclexpat" -| #define PACKAGE_TARNAME "xotclexpat" -| #define PACKAGE_VERSION "0.9" -| #define PACKAGE_STRING "xotclexpat 0.9" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| -| -| int -| main () -| { -| return main (); -| ; -| return 0; -| } -configure:4612: result: no -configure:4628: checking net/errno.h usability -configure:4645: gcc -c -pipe conftest.c >&5 -conftest.c:51:23: error: net/errno.h: No such file or directory -configure:4651: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclexpat" -| #define PACKAGE_TARNAME "xotclexpat" -| #define PACKAGE_VERSION "0.9" -| #define PACKAGE_STRING "xotclexpat 0.9" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #include -configure:4665: result: no -configure:4669: checking net/errno.h presence -configure:4684: gcc -E conftest.c -conftest.c:18:23: error: net/errno.h: No such file or directory -configure:4690: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclexpat" -| #define PACKAGE_TARNAME "xotclexpat" -| #define PACKAGE_VERSION "0.9" -| #define PACKAGE_STRING "xotclexpat 0.9" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| #include -configure:4704: result: no -configure:4732: checking for net/errno.h -configure:4739: result: no -configure:4773: checking for connect -configure:4829: gcc -o conftest -pipe conftest.c >&5 -configure:4835: $? = 0 -configure:4852: result: yes -configure:5106: checking for gethostbyname -configure:5162: gcc -o conftest -pipe conftest.c >&5 -configure:5168: $? = 0 -configure:5185: result: yes -configure:5266: checking dirent.h -configure:5312: gcc -o conftest -pipe conftest.c >&5 -configure:5318: $? = 0 -configure:5335: result: yes -configure:5357: checking errno.h usability -configure:5374: gcc -c -pipe conftest.c >&5 -configure:5380: $? = 0 -configure:5394: result: yes -configure:5398: checking errno.h presence -configure:5413: gcc -E conftest.c -configure:5419: $? = 0 -configure:5433: result: yes -configure:5461: checking for errno.h -configure:5468: result: yes -configure:5493: checking float.h usability -configure:5510: gcc -c -pipe conftest.c >&5 -configure:5516: $? = 0 -configure:5530: result: yes -configure:5534: checking float.h presence -configure:5549: gcc -E conftest.c -configure:5555: $? = 0 -configure:5569: result: yes -configure:5597: checking for float.h -configure:5604: result: yes -configure:5629: checking values.h usability -configure:5646: gcc -c -pipe conftest.c >&5 -conftest.c:51:20: error: values.h: No such file or directory -configure:5652: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclexpat" -| #define PACKAGE_TARNAME "xotclexpat" -| #define PACKAGE_VERSION "0.9" -| #define PACKAGE_STRING "xotclexpat 0.9" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| #include -| #ifdef HAVE_SYS_TYPES_H -| # include -| #endif -| #ifdef HAVE_SYS_STAT_H -| # include -| #endif -| #ifdef STDC_HEADERS -| # include -| # include -| #else -| # ifdef HAVE_STDLIB_H -| # include -| # endif -| #endif -| #ifdef HAVE_STRING_H -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #ifdef HAVE_STRINGS_H -| # include -| #endif -| #ifdef HAVE_INTTYPES_H -| # include -| #endif -| #ifdef HAVE_STDINT_H -| # include -| #endif -| #ifdef HAVE_UNISTD_H -| # include -| #endif -| #include -configure:5666: result: no -configure:5670: checking values.h presence -configure:5685: gcc -E conftest.c -conftest.c:18:20: error: values.h: No such file or directory -configure:5691: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclexpat" -| #define PACKAGE_TARNAME "xotclexpat" -| #define PACKAGE_VERSION "0.9" -| #define PACKAGE_STRING "xotclexpat 0.9" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| #include -configure:5705: result: no -configure:5733: checking for values.h -configure:5740: result: no -configure:5765: checking limits.h usability -configure:5782: gcc -c -pipe conftest.c >&5 -configure:5788: $? = 0 -configure:5802: result: yes -configure:5806: checking limits.h presence -configure:5821: gcc -E conftest.c -configure:5827: $? = 0 -configure:5841: result: yes -configure:5869: checking for limits.h -configure:5876: result: yes -configure:5896: checking for stdlib.h -configure:5901: result: yes -configure:6086: checking for string.h -configure:6091: result: yes -configure:6273: checking sys/wait.h usability -configure:6290: gcc -c -pipe conftest.c >&5 -configure:6296: $? = 0 -configure:6310: result: yes -configure:6314: checking sys/wait.h presence -configure:6329: gcc -E conftest.c -configure:6335: $? = 0 -configure:6349: result: yes -configure:6377: checking for sys/wait.h -configure:6384: result: yes -configure:6409: checking dlfcn.h usability -configure:6426: gcc -c -pipe conftest.c >&5 -configure:6432: $? = 0 -configure:6446: result: yes -configure:6450: checking dlfcn.h presence -configure:6465: gcc -E conftest.c -configure:6471: $? = 0 -configure:6485: result: yes -configure:6513: checking for dlfcn.h -configure:6520: result: yes -configure:6552: checking sys/param.h usability -configure:6569: gcc -c -pipe conftest.c >&5 -configure:6575: $? = 0 -configure:6589: result: yes -configure:6593: checking sys/param.h presence -configure:6608: gcc -E conftest.c -configure:6614: $? = 0 -configure:6628: result: yes -configure:6656: checking for sys/param.h -configure:6664: result: yes -configure:6689: Reading file /Users/neumann/src/xotcl-1.6.6/xotclConfig.sh -configure:6717: result: using bundled expat distribution -configure:6929: checking for Tcl public headers -configure:7004: result: /usr/local/src/tcl8.5.8/generic -configure:7072: checking for pthread_mutex_init in -lpthread -configure:7107: gcc -o conftest -pipe conftest.c -lpthread >&5 -configure:7113: $? = 0 -configure:7131: result: yes -configure:7440: checking for building with threads -configure:7448: result: yes (default) -configure:7489: checking how to build libraries -configure:7507: result: shared -configure:7534: checking if 64bit support is requested -configure:7543: result: no -configure:7548: checking if 64bit Sparc VIS support is requested -configure:7557: result: no -configure:7568: checking if compiler supports visibility "hidden" -configure:7598: gcc -o conftest -pipe -Werror conftest.c >&5 -configure:7604: $? = 0 -configure:7622: result: yes -configure:7637: checking if rpath support is requested -configure:7646: result: yes -configure:7672: checking system version -configure:7703: result: Darwin-10.2.0 -configure:7711: checking for dlopen in -ldl -configure:7746: gcc -o conftest -pipe conftest.c -ldl >&5 -configure:7752: $? = 0 -configure:7770: result: yes -configure:7816: checking for ar -configure:7832: found /usr/bin/ar -configure:7843: result: ar -configure:9343: checking if ld accepts -single_module flag -configure:9372: gcc -o conftest -pipe -dynamiclib -Wl,-single_module conftest.c >&5 -configure:9378: $? = 0 -configure:9396: result: yes -configure:9419: checking if ld accepts -search_paths_first flag -configure:9448: gcc -o conftest -pipe -prebind -headerpad_max_install_names -Wl,-search_paths_first conftest.c >&5 -configure:9454: $? = 0 -configure:9472: result: yes -configure:10174: checking for required early compiler flags -configure:10202: gcc -c -pipe conftest.c >&5 -configure:10208: $? = 0 -configure:10299: gcc -c -pipe conftest.c >&5 -conftest.c: In function 'main': -conftest.c:30: warning: 'stat64' is deprecated (declared at /usr/include/sys/stat.h:465) -configure:10305: $? = 0 -configure:10396: gcc -c -pipe conftest.c >&5 -conftest.c: In function 'main': -conftest.c:30: error: 'open64' undeclared (first use in this function) -conftest.c:30: error: (Each undeclared identifier is reported only once -conftest.c:30: error: for each function it appears in.) -configure:10402: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclexpat" -| #define PACKAGE_TARNAME "xotclexpat" -| #define PACKAGE_VERSION "0.9" -| #define PACKAGE_STRING "xotclexpat 0.9" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define NO_VALUES_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_SYS_PARAM_H 1 -| #define USE_THREAD_ALLOC 1 -| #define _REENTRANT 1 -| #define _THREAD_SAFE 1 -| #define TCL_THREADS 1 -| #define MODULE_SCOPE extern __attribute__((__visibility__("hidden"))) -| /* end confdefs.h. */ -| #include -| int -| main () -| { -| char *p = (char *)open64; -| ; -| return 0; -| } -configure:10434: gcc -c -pipe conftest.c >&5 -conftest.c: In function 'main': -conftest.c:31: error: 'open64' undeclared (first use in this function) -conftest.c:31: error: (Each undeclared identifier is reported only once -conftest.c:31: error: for each function it appears in.) -configure:10440: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclexpat" -| #define PACKAGE_TARNAME "xotclexpat" -| #define PACKAGE_VERSION "0.9" -| #define PACKAGE_STRING "xotclexpat 0.9" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define NO_VALUES_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_SYS_PARAM_H 1 -| #define USE_THREAD_ALLOC 1 -| #define _REENTRANT 1 -| #define _THREAD_SAFE 1 -| #define TCL_THREADS 1 -| #define MODULE_SCOPE extern __attribute__((__visibility__("hidden"))) -| /* end confdefs.h. */ -| #define _LARGEFILE_SOURCE64 1 -| #include -| int -| main () -| { -| char *p = (char *)open64; -| ; -| return 0; -| } -configure:10469: result: none -configure:10477: checking for 64-bit integer type -configure:10506: gcc -c -pipe conftest.c >&5 -conftest.c: In function 'main': -conftest.c:30: error: '__int64' undeclared (first use in this function) -conftest.c:30: error: (Each undeclared identifier is reported only once -conftest.c:30: error: for each function it appears in.) -conftest.c:30: error: expected ';' before 'value' -configure:10512: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclexpat" -| #define PACKAGE_TARNAME "xotclexpat" -| #define PACKAGE_VERSION "0.9" -| #define PACKAGE_STRING "xotclexpat 0.9" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define NO_VALUES_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_SYS_PARAM_H 1 -| #define USE_THREAD_ALLOC 1 -| #define _REENTRANT 1 -| #define _THREAD_SAFE 1 -| #define TCL_THREADS 1 -| #define MODULE_SCOPE extern __attribute__((__visibility__("hidden"))) -| /* end confdefs.h. */ -| -| int -| main () -| { -| __int64 value = (__int64) 0; -| ; -| return 0; -| } -configure:10552: gcc -c -pipe conftest.c >&5 -conftest.c: In function 'main': -conftest.c:31: error: duplicate case value -conftest.c:31: error: previously used here -configure:10558: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| #define PACKAGE_NAME "xotclexpat" -| #define PACKAGE_TARNAME "xotclexpat" -| #define PACKAGE_VERSION "0.9" -| #define PACKAGE_STRING "xotclexpat 0.9" -| #define PACKAGE_BUGREPORT "" -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_UNISTD_H 1 -| #define NO_VALUES_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_SYS_PARAM_H 1 -| #define USE_THREAD_ALLOC 1 -| #define _REENTRANT 1 -| #define _THREAD_SAFE 1 -| #define TCL_THREADS 1 -| #define MODULE_SCOPE extern __attribute__((__visibility__("hidden"))) -| /* end confdefs.h. */ -| -| int -| main () -| { -| switch (0) { -| case 1: case (sizeof(long long)==sizeof(long)): ; -| } -| ; -| return 0; -| } -configure:10580: result: using long -configure:10885: checking for build with symbols -configure:10904: result: yes (standard debugging) -configure:11037: checking for tclsh -configure:11064: result: /usr/local/src/tcl8.5.8/unix/tclsh -configure:11209: creating ./config.status - -## ---------------------- ## -## Running config.status. ## -## ---------------------- ## - -This file was extended by xotclexpat config.status 0.9, which was -generated by GNU Autoconf 2.61. Invocation command line was - - CONFIG_FILES = - CONFIG_HEADERS = - CONFIG_LINKS = - CONFIG_COMMANDS = - $ ./config.status - -on imac.lan - -config.status:634: creating Makefile -config.status:769: WARNING: Makefile.in seems to ignore the --datarootdir setting - -## ---------------- ## -## Cache variables. ## -## ---------------- ## - -ac_cv_c_bigendian=no -ac_cv_c_compiler_gnu=yes -ac_cv_c_tclconfig=/usr/local/src/tcl8.5.8/unix -ac_cv_c_tclh=/usr/local/src/tcl8.5.8/generic -ac_cv_env_CC_set= -ac_cv_env_CC_value= -ac_cv_env_CFLAGS_set= -ac_cv_env_CFLAGS_value= -ac_cv_env_CPPFLAGS_set= -ac_cv_env_CPPFLAGS_value= -ac_cv_env_CPP_set= -ac_cv_env_CPP_value= -ac_cv_env_LDFLAGS_set= -ac_cv_env_LDFLAGS_value= -ac_cv_env_LIBS_set= -ac_cv_env_LIBS_value= -ac_cv_env_build_alias_set= -ac_cv_env_build_alias_value= -ac_cv_env_host_alias_set= -ac_cv_env_host_alias_value= -ac_cv_env_target_alias_set= -ac_cv_env_target_alias_value= -ac_cv_func_connect=yes -ac_cv_func_gethostbyname=yes -ac_cv_func_sin=yes -ac_cv_header_dlfcn_h=yes -ac_cv_header_errno_h=yes -ac_cv_header_float_h=yes -ac_cv_header_inttypes_h=yes -ac_cv_header_limits_h=yes -ac_cv_header_memory_h=yes -ac_cv_header_net_errno_h=no -ac_cv_header_stdc=yes -ac_cv_header_stdint_h=yes -ac_cv_header_stdlib_h=yes -ac_cv_header_string_h=yes -ac_cv_header_strings_h=yes -ac_cv_header_sys_param_h=yes -ac_cv_header_sys_stat_h=yes -ac_cv_header_sys_types_h=yes -ac_cv_header_sys_wait_h=yes -ac_cv_header_unistd_h=yes -ac_cv_header_values_h=no -ac_cv_lib_dl_dlopen=yes -ac_cv_lib_ieee_main=no -ac_cv_lib_inet_main=no -ac_cv_lib_pthread_pthread_mutex_init=yes -ac_cv_objext=o -ac_cv_path_EGREP='/usr/bin/grep -E' -ac_cv_path_GREP=/usr/bin/grep -ac_cv_path_install='/usr/bin/install -c' -ac_cv_prog_AR=ar -ac_cv_prog_CPP='gcc -E' -ac_cv_prog_ac_ct_CC=gcc -ac_cv_prog_ac_ct_RANLIB=ranlib -ac_cv_prog_cc_c89= -ac_cv_prog_cc_g=yes -ac_cv_prog_make_make_set=yes -tcl_cv_cc_pipe=yes -tcl_cv_cc_visibility_hidden=yes -tcl_cv_dirent_h=yes -tcl_cv_flag__isoc99_source=no -tcl_cv_flag__largefile64_source=no -tcl_cv_flag__largefile_source64=no -tcl_cv_ld_search_paths_first=yes -tcl_cv_ld_single_module=yes -tcl_cv_sys_version=Darwin-10.2.0 -tcl_cv_type_64bit=none - -## ----------------- ## -## Output variables. ## -## ----------------- ## - -AR='ar' -CC='gcc' -CELIB_DIR='' -CFLAGS='-pipe ${CFLAGS_DEFAULT} ${CFLAGS_WARNING} ${SHLIB_CFLAGS} ' -CFLAGS_DEBUG='-g' -CFLAGS_DEFAULT='-g' -CFLAGS_OPTIMIZE='-Os' -CFLAGS_WARNING='-Wall' -CLEANFILES='pkgIndex.tcl' -CPP='gcc -E' -CPPFLAGS='' -CYGPATH='echo' -DEFS='-DPACKAGE_NAME=\"xotclexpat\" -DPACKAGE_TARNAME=\"xotclexpat\" -DPACKAGE_VERSION=\"0.9\" -DPACKAGE_STRING=\"xotclexpat\ 0.9\" -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 -DNO_VALUES_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DTCL_THREADS=1 -DMODULE_SCOPE=extern\ __attribute__\(\(__visibility__\(\"hidden\"\)\)\) -DTCL_WIDE_INT_IS_LONG=1 -DUSE_TCL_STUBS=1' -DL_LIBS='' -ECHO_C='ECHO_N='' -ECHO_T='' -EGREP='/usr/bin/grep -E' -EXEEXT='' -GREP='/usr/bin/grep' -INSTALL_DATA='${INSTALL} -m 644' -INSTALL_PROGRAM='${INSTALL}' -INSTALL_SCRIPT='${INSTALL}' -LDFLAGS=' -prebind -headerpad_max_install_names -Wl,-search_paths_first ' -LDFLAGS_DEFAULT=' -prebind -headerpad_max_install_names -Wl,-search_paths_first ' -LD_LIBRARY_PATH_VAR='DYLD_LIBRARY_PATH' -LIBOBJS='' -LIBS='' -LTLIBOBJS='' -MAKE_LIB='${SHLIB_LD} -o $@ $(PKG_OBJECTS) ${SHLIB_LD_LIBS} ' -MAKE_SHARED_LIB='${SHLIB_LD} -o $@ $(PKG_OBJECTS) ${SHLIB_LD_LIBS}' -MAKE_STATIC_LIB='${STLIB_LD} $@ $(PKG_OBJECTS)' -MAKE_STUB_LIB='${STLIB_LD} $@ $(PKG_STUB_OBJECTS)' -MATH_LIBS='' -OBJEXT='o' -PACKAGE_BUGREPORT='' -PACKAGE_NAME='xotclexpat' -PACKAGE_STRING='xotclexpat 0.9' -PACKAGE_TARNAME='xotclexpat' -PACKAGE_VERSION='0.9' -PATH_SEPARATOR=':' -PKG_CFLAGS=' ' -PKG_HEADERS='' -PKG_INCLUDES=' -I/Users/neumann/src/xotcl-1.6.6/generic -I./generic' -PKG_LIBS=' -L/Users/neumann/src/xotcl-1.6.6 -lxotclstub1.6.6' -PKG_LIB_FILE='libxotclexpat0.9.dylib' -PKG_OBJECTS=' xmltok.o unixfilemap.o xmlrole.o xmlwf.o codepage.o xmlparse.o hashtable.o tclexpat.o' -PKG_SOURCES=' xmltok.c unixfilemap.c xmlrole.c xmlwf.c codepage.c xmlparse.c hashtable.c tclexpat.c' -PKG_STUB_LIB_FILE='libxotclexpatstub0.9.a' -PKG_STUB_OBJECTS='' -PKG_STUB_SOURCES='' -PKG_TCL_SOURCES='' -RANLIB=':' -RANLIB_STUB='ranlib' -SET_MAKE='' -SHARED_BUILD='1' -SHELL='/bin/sh' -SHLIB_CFLAGS='-fno-common' -SHLIB_LD='${CC} -dynamiclib ${CFLAGS} ${LDFLAGS_DEFAULT} -Wl,-single_module -current_version 0.9 -compatibility_version 0.9' -SHLIB_LD_LIBS='${LIBS} -L/usr/local/src/tcl8.5.8/unix -ltclstub8.5' -STLIB_LD='${AR} cr' -TCLSH_PROG='/usr/local/src/tcl8.5.8/unix/tclsh' -TCL_BIN_DIR='/usr/local/src/tcl8.5.8/unix' -TCL_DBGX='' -TCL_DEFS='-DPACKAGE_NAME=\"tcl\" -DPACKAGE_TARNAME=\"tcl\" -DPACKAGE_VERSION=\"8.5\" -DPACKAGE_STRING=\"tcl\ 8.5\" -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 -DNO_VALUES_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DHAVE_PTHREAD_ATTR_SETSTACKSIZE=1 -DHAVE_PTHREAD_GET_STACKSIZE_NP=1 -DTCL_THREADS=1 -DTCL_CFGVAL_ENCODING=\"iso8859-1\" -DMODULE_SCOPE=extern\ __attribute__\(\(__visibility__\(\"hidden\"\)\)\) -DMAC_OSX_TCL=1 -DTCL_SHLIB_EXT=\".dylib\" -DTCL_CFG_DEBUG=1 -DTCL_TOMMATH=1 -DMP_PREC=4 -DTCL_WIDE_INT_IS_LONG=1 -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRTOL=1 -DHAVE_WAITPID=1 -DHAVE_GETADDRINFO=1 -DHAVE_GETPWUID_R_5=1 -DHAVE_GETPWUID_R=1 -DHAVE_GETPWNAM_R_5=1 -DHAVE_GETPWNAM_R=1 -DHAVE_GETGRGID_R_5=1 -DHAVE_GETGRGID_R=1 -DHAVE_GETGRNAM_R_5=1 -DHAVE_GETGRNAM_R=1 -DHAVE_MTSAFE_GETHOSTBYNAME=1 -DHAVE_MTSAFE_GETHOSTBYADDR=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_STRUCT_TM_TM_ZONE=1 -DHAVE_TM_ZONE=1 -DHAVE_GMTIME_R=1 -DHAVE_LOCALTIME_R=1 -DHAVE_MKTIME=1 -DHAVE_TM_GMTOFF=1 -DHAVE_TIMEZONE_VAR=1 -DHAVE_STRUCT_STAT_ST_BLKSIZE=1 -DHAVE_ST_BLKSIZE=1 -DHAVE_INTPTR_T=1 -DHAVE_UINTPTR_T=1 -DHAVE_SIGNED_CHAR=1 -DHAVE_LANGINFO=1 -DHAVE_CHFLAGS=1 -DHAVE_GETATTRLIST=1 -DHAVE_COPYFILE_H=1 -DHAVE_COPYFILE=1 -DUSE_VFORK=1 -DTCL_DEFAULT_ENCODING=\"utf-8\" -DTCL_LOAD_FROM_MEMORY=1 -DTCL_WIDE_CLICKS=1 -DHAVE_AVAILABILITYMACROS_H=1 -DHAVE_WEAK_IMPORT=1 -D_DARWIN_C_SOURCE=1 -DHAVE_FTS=1 -DHAVE_SYS_IOCTL_H=1 -DHAVE_SYS_FILIO_H=1 -DTCL_UNLOAD_DLLS=1 ' -TCL_EXTRA_CFLAGS='-pipe ' -TCL_INCLUDES='-I"/usr/local/src/tcl8.5.8/generic"' -TCL_LD_FLAGS=' -prebind -headerpad_max_install_names -Wl,-search_paths_first ' -TCL_LIBS='${DL_LIBS} ${LIBS} ${MATH_LIBS}' -TCL_LIB_FILE='libtcl8.5.dylib' -TCL_LIB_FLAG='-ltcl8.5' -TCL_LIB_SPEC='-L/usr/local/src/tcl8.5.8/unix -ltcl8.5' -TCL_SHLIB_LD_LIBS='${LIBS}' -TCL_SRC_DIR='/usr/local/src/tcl8.5.8' -TCL_STUB_LIB_FILE='libtclstub8.5.a' -TCL_STUB_LIB_FLAG='-ltclstub8.5' -TCL_STUB_LIB_SPEC='-L/usr/local/src/tcl8.5.8/unix -ltclstub8.5' -TCL_THREADS='1' -TCL_VERSION='8.5' -ac_ct_CC='gcc' -bindir='${exec_prefix}/bin' -build_alias='' -datadir='${datarootdir}' -datarootdir='${prefix}/share' -docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' -dvidir='${docdir}' -exec_prefix='/usr/local/ns' -host_alias='' -htmldir='${docdir}' -includedir='${prefix}/include' -infodir='${datarootdir}/info' -libdir='${exec_prefix}/lib' -libexecdir='${exec_prefix}/libexec' -localedir='${datarootdir}/locale' -localstatedir='${prefix}/var' -mandir='${datarootdir}/man' -oldincludedir='/usr/include' -pdfdir='${docdir}' -prefix='/usr/local/ns' -program_transform_name='s,x,x,' -psdir='${docdir}' -sbindir='${exec_prefix}/sbin' -sharedstatedir='${prefix}/com' -sysconfdir='${prefix}/etc' -target_alias='' - -## ----------- ## -## confdefs.h. ## -## ----------- ## - -#define PACKAGE_NAME "xotclexpat" -#define PACKAGE_TARNAME "xotclexpat" -#define PACKAGE_VERSION "0.9" -#define PACKAGE_STRING "xotclexpat 0.9" -#define PACKAGE_BUGREPORT "" -#define STDC_HEADERS 1 -#define HAVE_SYS_TYPES_H 1 -#define HAVE_SYS_STAT_H 1 -#define HAVE_STDLIB_H 1 -#define HAVE_STRING_H 1 -#define HAVE_MEMORY_H 1 -#define HAVE_STRINGS_H 1 -#define HAVE_INTTYPES_H 1 -#define HAVE_STDINT_H 1 -#define HAVE_UNISTD_H 1 -#define NO_VALUES_H 1 -#define HAVE_LIMITS_H 1 -#define HAVE_SYS_PARAM_H 1 -#define USE_THREAD_ALLOC 1 -#define _REENTRANT 1 -#define _THREAD_SAFE 1 -#define TCL_THREADS 1 -#define MODULE_SCOPE extern __attribute__((__visibility__("hidden"))) -#define TCL_WIDE_INT_IS_LONG 1 -#define USE_TCL_STUBS 1 - -configure: exit 0