changeset 103:2cc9863cedf4

removed support for libowfat at the request of its author (http://www.fefe.de/nowindows/)
author Volker Grabsch <vog@notjusthosting.com>
date Wed, 09 Jan 2008 17:46:48 +0100
parents 1cb80b39f3cd
children 36dae867aea9
files build_mingw_cross_env.sh
diffstat 1 files changed, 0 insertions(+), 47 deletions(-) [+]
line wrap: on
line diff
--- a/build_mingw_cross_env.sh	Mon Jan 07 00:16:42 2008 +0100
+++ b/build_mingw_cross_env.sh	Wed Jan 09 17:46:48 2008 +0100
@@ -141,7 +141,6 @@
 VERSION_libgeotiff=1.2.4
 VERSION_gdal=1.4.4
 VERSION_pdflib_lite=7.0.2
-VERSION_libowfat=0.26
 
 
 #---
@@ -2003,52 +2002,6 @@
 
 
 #---
-#   libowfat
-#
-#   http://www.fefe.de/libowfat/
-#---
-
-case "$1" in
-
---new-versions)
-    VERSION=`
-        wget -q -O- 'http://www.fefe.de/libowfat/' |
-        $SED -n 's,.*libowfat-\([0-9][^>]*\)\.tar.*,\1,p' |
-        head -1`
-    test -n "$VERSION"
-    $SED "s,^VERSION_libowfat=.*,VERSION_libowfat=$VERSION," -i "$0"
-    ;;
-
---download)
-    cd "$DOWNLOAD"
-    tar tfj "libowfat-$VERSION_libowfat.tar.bz2" &>/dev/null ||
-    wget -c "http://dl.fefe.de/libowfat-$VERSION_libowfat.tar.bz2"
-    ;;
-
---build)
-    cd "$SOURCE"
-    tar xfvj "$DOWNLOAD/libowfat-$VERSION_libowfat.tar.bz2"
-    cd "libowfat-$VERSION_libowfat"
-    $SED 's,gcc -I\. -MM,$(CROSS)gcc -I. -MM,' -i GNUmakefile
-    $MAKE Makefile -f GNUmakefile \
-        CROSS="$TARGET-" \
-        prefix="$PREFIX/$TARGET" \
-        INCLUDEDIR="$PREFIX/$TARGET/include/libowfat" \
-        DIET=
-    $MAKE install \
-        CROSS="$TARGET-" \
-        prefix="$PREFIX/$TARGET" \
-        INCLUDEDIR="$PREFIX/$TARGET/include/libowfat" \
-        DIET=
-    $SED 's,#include_next <io.h>,#include <io.h>,' -i "$PREFIX/$TARGET/include/libowfat/io.h"
-    cd "$SOURCE"
-    rm -rfv "libowfat-$VERSION_libowfat"
-    ;;
-
-esac
-
-
-#---
 #   Cleanup
 #---