Index: Makefile.in ================================================================== --- Makefile.in +++ Makefile.in @@ -55,11 +55,10 @@ tcc4tcl-static.a: tcc4tcl.o tcc/libtcc.a cp tcc/libtcc.a tcc4tcl-static.new.a $(AR) rcu tcc4tcl-static.new.a tcc4tcl.o -$(RANLIB) tcc4tcl-static.new.a mv tcc4tcl-static.new.a tcc4tcl-static.a - -@WEAKENSYMS@ tcc4tcl-static.a install: $(TARGET) pkgIndex.tcl $(srcdir)/tcc4tcl.tcl tcc/libtcc1.a $(shell echo $(srcdir)/tcc/include/*) $(srcdir)/headers.awk $(INSTALL) -d "$(DESTDIR)$(PACKAGE_INSTALL_DIR)" $(INSTALL) -d "$(DESTDIR)$(PACKAGE_INSTALL_DIR)/lib" $(INSTALL) -d "$(DESTDIR)$(PACKAGE_INSTALL_DIR)/include" Index: configure.ac ================================================================== --- configure.ac +++ configure.ac @@ -10,15 +10,15 @@ dnl Determine system information DC_CHK_OS_INFO dnl Determine if a shared or static build is requested -AC_ARG_ENABLE([static], AS_HELP_STRING([--enable-static], [build static library instead of shared library]), [ +AC_ARG_ENABLE([shared], AS_HELP_STRING([--disble-shared], [build static library instead of shared library]), [ if test "$enableval" = "no"; then - TCC4TCL_TARGET=shared + TCC4TCL_TARGET=static else - TCC4TCL_TARGET=static + TCC4TCL_TARGET=shared fi ], [ TCC4TCL_TARGET=shared ]) @@ -50,10 +50,10 @@ TCLEXT_INIT dnl This must be done last since it breaks the compilation if test "${TCC4TCL_TARGET}" = "shared"; then DC_SETVERSIONSCRIPT([tcc4tcl.syms], [tcc4tcl.vers]) + DC_FIND_STRIP_AND_REMOVESYMS([tcc4tcl.syms]) fi -DC_FIND_STRIP_AND_REMOVESYMS([tcc4tcl.syms]) dnl Produce output AC_OUTPUT(Makefile pkgIndex.tcl tcc4tcl.syms)