diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-06-10 05:21:13 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-06-10 05:21:13 +0200 |
commit | 73c2dce8961e937e97c78f0b8b0ee4abd347756b (patch) | |
tree | df03de03fb1f5264944c5f660fb6b53541b04089 /utils | |
parent | 21e5d4981de057bae5261720021757d893061652 (diff) |
Update docs, remove obsolete win32-related utilities.
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/cross-compile.win32 | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/utils/cross-compile.win32 b/utils/cross-compile.win32 deleted file mode 100755 index c90ebc1b..00000000 --- a/utils/cross-compile.win32 +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -# Simple cross compilation script for BitlBee using mingw32 -# (C) Jelmer Vernooij <jelmer@samba.org> 2005-2006 - -GTK_SITE=ftp://ftp.gtk.org/pub/gtk/v2.8/win32 - -GLIB_VERSION=2.10.1 -LIBICONV_VERSION=1.9.1 -GETTEXT_VERSION=0.14.5 - -wget -c $GTK_SITE/glib-dev-$GLIB_VERSION.zip -wget -c $GTK_SITE/dependencies/libiconv-$LIBICONV_VERSION.bin.woe32.zip -wget -c $GTK_SITE/dependencies/gettext-dev-$GETTEXT_VERSION.zip - -DEPSDIR=`mktemp -d` - -unzip -d $DEPSDIR -o libiconv-$LIBICONV_VERSION.bin.woe32.zip -unzip -d $DEPSDIR -o glib-dev-$GLIB_VERSION.zip -unzip -d $DEPSDIR -o gettext-dev-$GETTEXT_VERSION.zip - -LD=i586-mingw32msvc-ld CC=i586-mingw32msvc-gcc STRIP=i586-mingw32msvc-strip PKG_CONFIG_PATH="$DEPSDIR/lib/pkgconfig" PKG_CONFIG="pkg-config --define-variable=prefix=\"$DEPSDIR\"" ./configure --ssl=sspi --arch=Windows |