updates.
[silc.git] / prepare
diff --git a/prepare b/prepare
index be4f9e34b6ccca7b9691e08a4eaa3da8fd962421..8141415bf5e16f00764d2e1bc90dbaaaf6d79daf 100755 (executable)
--- a/prepare
+++ b/prepare
@@ -1,10 +1,10 @@
 #!/bin/sh
 #
-#  prepare-clean
+#  prepare
 #
 #  Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
 #
-#  Copyright (C) 2000 Pekka Riikonen
+#  Copyright (C) 2000 - 2001 Pekka Riikonen
 #
 #  This program is free software; you can redistribute it and/or modify
 #  it under the terms of the GNU General Public License as published by
 # temporary files (including these prepare* scripts) are removed.
 #
 
-echo "Preparing SILC source tree for configuration and compilation..."
+SILC_VERSION=0.2
+
+version=$1
+if test "$version" = ""; then
+  version=$SILC_VERSION;
+fi
 
-version=`date +%Y%m%d`
+echo "Preparing SILC source tree for configuration and compilation..."
 
 # Replace version string and create configure.in
-sed -e "1,/YYYYMMDD/s//$version/" configure.in.pre >configure.in
+sed -e "/SILC_VERSION/s//$version/" configure.in.pre >configure.in
 
 aclocal
 autoconf
 autoheader
 automake
 
+cd lib/trq
+aclocal
+autoconf
+autoheader
+automake >/dev/null 2>/dev/null
+cd ../..
+
 file=includes/version_internal.h
 echo "/* Automatically generated by ./prepare */" >$file
 echo "#define SILC_VERSION_STRING \"$version\"" >>$file