2. make the libcurl and curl version the same
# Script to build release-archives with
#
-echo "LIB version number?"
-read version
+version=$1
+
+if [ -z "$version" ]; then
+ echo "Specify a version number!"
+ exit
+fi
+
+echo $version
libversion="$version"
numeric=`echo $libversion | perl -e "$perl"`
-echo "CURL version number?"
-read curlversion
+# we make curl the same version as libcurl
+curlversion=$libversion
HEADER=include/curl/curl.h
CHEADER=src/version.h