to ignore signatures in messages. Affected files are
irssi/src/silc/core/client_ops.c, silc-core.c.
+ * Fixed the libtoolfix to use command line options instead of
+ environment variables. They didn't work as expected. Now,
+ the libtool is fully run-time configurable.
+
Wed Dec 4 21:08:52 CET 2002 Jochen Eisinger <c0ffee@penguin-breeder.org>
* Verify signature payload for signed messages. Affected files
else
install-exec-hook:
-mkdir -p $(libdir)
- -@if test '!' -f $(top_srcdir)/lib/.libs/libsilc.a ; then \
- $(LIBTOOL) $(INSTALL) libsilc.la $(libdir)/ \
- fi
- -@if test '!' -f $(top_srcdir)/lib/.libs/libsilcclient.a ; then \
- $(LIBTOOL) $(INSTALL) libsilcclient.la $(libdir)/ \
- fi
+ -$(LIBTOOL) $(INSTALL) libsilc.la $(libdir)/
+ -$(LIBTOOL) $(INSTALL) libsilcclient.la $(libdir)/
+ -rm -rf $(libdir)/libsilc.a
+ -rm -rf $(libdir)/libsilcclient.a
endif
if SILC_DIST_WIN32DLL
noinst_LTLIBRARIES = libsilccrypt.la
-# Compile silccrypt always as shared library since silcsim will need it.
-LIBTOOL_ENABLE_SHARED=yes
-
libsilccrypt_la_SOURCES = \
none.c \
rc5.c \
silcpkcs.c \
pkcs1.c
+# Tell libtool to compile silccrypt as shared since silcsim will need it.
+CFLAGS = --libtool-enable-shared
+
if SILC_DIST_TOOLKIT
include_HEADERS = \
aes.h \
twofish.h
endif
-EXTRA_DIST = *.h
+EXTRA_DIST = *.h tests
include $(top_srcdir)/Makefile.defines.in
all: $(SIM_CIPHER_OBJS) $(SIM_HASH_OBJS)
endif
-# Libtool to compile always SIM as shared library
-LIBTOOL_ENABLE_SHARED=yes
-LIBTOOL_ENABLE_STATIC=no
-
$(SIM_CIPHER_OBJS):
@if test '!' -f lib$*.la ; then \
$(LIBTOOL) --mode=link $(CCLD) -rpath $(silc_modulesdir) \
- ../silccrypt/$*.lo -o lib$*.la; \
+ ../silccrypt/$*.lo -o lib$*.la --libtool-enable-shared; \
cd $(srcdir) && $(LN_S) -f $(srcdir)/.libs/lib$*.so \
$(srcdir)/$*.sim.so; \
fi
$(SIM_HASH_OBJS):
@if test '!' -f lib$*.la ; then \
$(LIBTOOL) --mode=link $(CCLD) -rpath $(silc_modulesdir) \
- ../silccrypt/$*.lo -o lib$*.la; \
+ ../silccrypt/$*.lo -o lib$*.la --libtool-enable-shared; \
cd $(srcdir) && $(LN_S) -f $(srcdir)/.libs/lib$*.so \
$(srcdir)/$*.sim.so; \
fi
#
# This script fixes the fundamental problem of libtool: it is not
# configurable in run-time. This changes the libtool so that it becomes
-# more generic and configurable in run-time. It is possible to specify
-# how the libtool should behave by environment variables.
+# more generic and configurable in run-time.
#
-# Environment variables:
+# New command line options to libtool:
#
-# LIBTOOL_ENABLE_SHARED
-# LIBTOOL_ENABLE_STATIC
+# --libtool-enable-shared Enable shared library compilation
+# --libtool-enable-static Enable static library compilation
+# --libtool-disable-shared Disable shared library compilation
+# --libtool-disable-static Disable static library compilation
#
-# Set either to "yes" or "no" value. "no" is equivalent to being disabled.
-# If environment variables are not given then the default settings apply.
+# If options are omitted the default libtool configuration will apply.
#
# Sanity checks
sed '/^# ltmain\.sh/q' ./libtool >./libtool.tmp
# Put our wrapper to the new libtool. This allows the run-time
-# configuration of the libtool. This could include a lot of other
-# things like command line arguments too.
+# configuration of the libtool.
+ltmain=`pwd`/ltmain.sh
cat << EOF >> ./libtool.tmp
-if test "\$LIBTOOL_ENABLE_SHARED" != ""; then
- build_libtool_libs=\$LIBTOOL_ENABLE_SHARED
-fi
-if test "\$LIBTOOL_ENABLE_STATIC" != ""; then
- build_old_libs=\$LIBTOOL_ENABLE_STATIC
+args=\`echo \$*\`
+cargs=\`echo \$* | sed -e '/--libtool-enable-shared/s///' -e '/--libtool-enable-static/s///' -e '/--libtool-disable-shared/s///' -e '/--libtool-disable-static/s///'\`
+for i in \$args
+do
+ if test "\$i" == "--libtool-enable-shared"; then
+ build_libtool_libs=yes
+ fast_install=yes
+ continue
+ fi
+ if test "\$i" == "--libtool-disable-shared"; then
+ build_libtool_libs=no
+ continue
+ fi
+ if test "\$i" == "--libtool-enable-static"; then
+ build_old_libs=yes
+ continue
+ fi
+ if test "\$i" == "--libtool-disable-static"; then
+ build_old_libs=no
+ continue
+ fi
+done
+if test "\$cargs" = ""; then
+ cargs="--silent"
fi
+. $ltmain \$cargs
EOF
-# Do a trick with the ltmain.sh to make these settings valid
-ltmain=`pwd`/ltmain.sh
-echo ". $ltmain" >> ./libtool.tmp
mv -f ./libtool.tmp ./libtool
chmod +x ./libtool
# SILC Distribution versions. Set here or give the version on the command
# line as argument.
#
-SILC_VERSION=0.9.6 # Base version
+SILC_VERSION=0.9.7 # Base version
#############################################################################