Index: build/makearch.info ================================================================== --- build/makearch.info +++ build/makearch.info @@ -15,11 +15,11 @@ # each time a "makearch" is done. # # If @@SVNLCR@@ is used anywhere in this version number, it will be # replaced with the highest last-changed-rev from the output of # svn info -R (or 0) -VERS="0.14" +VERS="0.15" # Space sperated list of documents, if they exist, they will be # prefixed with the contents of the DOC_HDR file and substitution # will occur: # @@UTIL@@ becomes the utility name ${UTIL} Index: configure.ac ================================================================== --- configure.ac +++ configure.ac @@ -35,23 +35,20 @@ dnl Determine how to make shared objects DC_GET_SHOBJFLAGS dnl Only export symbols we wish to expose TARGET="tcc4tcl.${SHOBJEXT}" - - no_dlopen='1' else AC_CHECK_TOOL([RANLIB], [ranlib]) AC_CHECK_TOOL([AR], [ar]) TARGET="tcc4tcl-static.a" - - no_dlopen='0' fi AC_SUBST(TARGET) AC_SUBST(TCC4TCL_TARGET) +no_dlopen='0' AC_ARG_WITH([dlopen], AS_HELP_STRING([--without-dlopen], [do not define dlopen/dlclose/dlerror]), [ if test "$withval" = "no"; then no_dlopen='1' else no_dlopen='0'