1999-12-29 09:20:26 -05:00
|
|
|
#! /bin/sh
|
|
|
|
# Script to build release-archives with
|
|
|
|
#
|
|
|
|
|
|
|
|
echo "LIB version number?"
|
|
|
|
read version
|
|
|
|
|
|
|
|
libversion="$version"
|
|
|
|
|
2000-05-22 10:12:12 -04:00
|
|
|
#
|
|
|
|
# Now we have a section to get the major, minor and patch number from the
|
|
|
|
# full version string. We create a single hexadecimal number from it '0xMMmmpp'
|
|
|
|
#
|
2001-03-08 04:23:11 -05:00
|
|
|
perl='$a=<STDIN>;@p=split("[\\.-]",$a);for(0..2){printf STDOUT ("%02x",$p[0+$_]);}';
|
2000-05-22 10:12:12 -04:00
|
|
|
|
|
|
|
numeric=`echo $libversion | perl -e "$perl"`
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
echo "CURL version number?"
|
|
|
|
read curlversion
|
|
|
|
|
|
|
|
HEADER=include/curl/curl.h
|
|
|
|
CHEADER=src/version.h
|
|
|
|
|
|
|
|
# Replace version number in header file:
|
2000-05-22 10:12:12 -04:00
|
|
|
sed -e 's/^#define LIBCURL_VERSION .*/#define LIBCURL_VERSION "'$libversion'"/g' \
|
|
|
|
-e 's/^#define LIBCURL_VERSION_NUM .*/#define LIBCURL_VERSION_NUM 0x'$numeric'/g' \
|
|
|
|
$HEADER >$HEADER.new
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
# Save old header file
|
|
|
|
cp -p $HEADER $HEADER.old
|
|
|
|
|
|
|
|
# Make new header:
|
|
|
|
mv $HEADER.new $HEADER
|
|
|
|
|
|
|
|
# Replace version number in header file:
|
|
|
|
sed 's/#define CURL_VERSION.*/#define CURL_VERSION "'$curlversion'"/g' $CHEADER >$CHEADER.new
|
|
|
|
|
|
|
|
# Save old header file
|
|
|
|
cp -p $CHEADER $CHEADER.old
|
|
|
|
|
|
|
|
# Make new header:
|
|
|
|
mv $CHEADER.new $CHEADER
|
|
|
|
|
|
|
|
findprog()
|
|
|
|
{
|
|
|
|
file="$1"
|
|
|
|
for part in `echo $PATH| tr ':' ' '`; do
|
|
|
|
path="$part/$file"
|
|
|
|
if [ -x "$path" ]; then
|
|
|
|
# there it is!
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# no such executable
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
############################################################################
|
|
|
|
#
|
2001-01-08 07:57:38 -05:00
|
|
|
# Enforce a rerun of configure (updates the VERSION)
|
1999-12-29 09:20:26 -05:00
|
|
|
#
|
2001-01-08 07:57:38 -05:00
|
|
|
|
2001-05-28 17:50:00 -04:00
|
|
|
./config.status --recheck
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
############################################################################
|
|
|
|
#
|
|
|
|
# automake is needed to run to make a non-GNU Makefile.in if Makefile.am has
|
|
|
|
# been modified.
|
|
|
|
#
|
|
|
|
|
|
|
|
if { findprog automake >/dev/null 2>/dev/null; } then
|
|
|
|
echo "- Could not find or run automake, I hope you know what you're doing!"
|
|
|
|
else
|
|
|
|
echo "Runs automake --include-deps"
|
2001-05-22 17:17:58 -04:00
|
|
|
automake --include-deps Makefile
|
1999-12-29 09:20:26 -05:00
|
|
|
fi
|
|
|
|
|
2001-08-21 05:16:43 -04:00
|
|
|
############################################################################
|
|
|
|
#
|
|
|
|
# Make sure we have updated HTML versions of all man pages:
|
|
|
|
#
|
|
|
|
make html
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
############################################################################
|
|
|
|
#
|
2001-01-08 07:57:38 -05:00
|
|
|
# Now run make dist
|
1999-12-29 09:20:26 -05:00
|
|
|
#
|
|
|
|
|
2001-01-08 07:57:38 -05:00
|
|
|
make dist
|