diff options
author | Werner Koch <wk@gnupg.org> | 2007-06-12 13:39:37 +0000 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2007-06-12 13:39:37 +0000 |
commit | 6c61bc48f1a3eef71bb8c602501a2737ba5fd153 (patch) | |
tree | 771ea4ee0c757f62d5d7767d6bfcfae08379dcd7 /autogen.sh | |
parent | 6746803805f884c42119555e33892c51b4bdfc65 (diff) | |
download | libassuan-6c61bc48f1a3eef71bb8c602501a2737ba5fd153.tar.gz |
Various minor changes for W32
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 47 |
1 files changed, 24 insertions, 23 deletions
@@ -30,6 +30,11 @@ check_version () { DIE=no +FORCE= +if test "$1" == "--force"; then + FORCE=" --force" + shift +fi # ***** W32 build script ******* @@ -47,25 +52,20 @@ if test "$1" = "--build-w32"; then [ -z "$w32root" ] && w32root="$HOME/w32root" echo "Using $w32root as standard install directory" >&2 - # See whether we have the Debian cross compiler package or the - # old mingw32/cpd system - if i586-mingw32msvc-gcc --version >/dev/null 2>&1 ; then - host=i586-mingw32msvc - crossbindir=/usr/$host/bin - else - host=i386--mingw32 - if ! mingw32 --version >/dev/null; then - echo "We need at least version 0.3 of MingW32/CPD" >&2 - exit 1 - fi - crossbindir=`mingw32 --install-dir`/bin - # Old autoconf version required us to setup the environment - # with the proper tool names. - CC=`mingw32 --get-path gcc` - CPP=`mingw32 --get-path cpp` - AR=`mingw32 --get-path ar` - RANLIB=`mingw32 --get-path ranlib` - export CC CPP AR RANLIB + crossbindir= + for host in i586-mingw32msvc i386-mingw32msvc mingw32; do + if ${host}-gcc --version >/dev/null 2>&1 ; then + crossbindir=/usr/${host}/bin + conf_CC="CC=${host}-gcc" + break; + fi + done + if [ -z "$crossbindir" ]; then + echo "Cross compiler kit not installed" >&2 + echo "Under Debian GNU/Linux, you may install it using" >&2 + echo " apt-get install mingw32 mingw32-runtime mingw32-binutils" >&2 + echo "Stop." >&2 + exit 1 fi if [ -f "$tsdir/config.log" ]; then @@ -76,7 +76,8 @@ if test "$1" = "--build-w32"; then fi ./configure --enable-maintainer-mode --prefix=${w32root} \ - --host=i586-mingw32msvc --build=${build} \ + --host=${host} --build=${build} \ + --with-pth-prefix=${w32root} \ --disable-shared exit $? @@ -122,7 +123,7 @@ if test "$1" = "--build-amd64"; then fi $tsdir/configure --enable-maintainer-mode --prefix=${amd64root} \ - --host=${host} --build=${build} + --host=${host} --build=${build} rc=$? exit $rc fi @@ -193,7 +194,7 @@ echo "Running autoheader..." $AUTOHEADER echo "Running automake --gnu ..." $AUTOMAKE --gnu; -echo "Running autoconf..." -$AUTOCONF +echo "Running autoconf${FORCE} ..." +$AUTOCONF${FORCE} echo "You may now run \"./configure --enable-maintainer-mode && make\"." |