[GRASS-SVN] r67022 - grass/trunk/mswindows/osgeo4w
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat Dec 5 07:10:01 PST 2015
Author: martinl
Date: 2015-12-05 07:10:01 -0800 (Sat, 05 Dec 2015)
New Revision: 67022
Removed:
grass/trunk/mswindows/osgeo4w/proj4-config
Log:
wingrass: remove unused script
Deleted: grass/trunk/mswindows/osgeo4w/proj4-config
===================================================================
--- grass/trunk/mswindows/osgeo4w/proj4-config 2015-12-05 15:06:56 UTC (rev 67021)
+++ grass/trunk/mswindows/osgeo4w/proj4-config 2015-12-05 15:10:01 UTC (rev 67022)
@@ -1,47 +0,0 @@
-#!/bin/sh
-
-usage()
-{
- cat <<EOF
-Usage: proj4-config [OPTIONS]
-Options:
- [--prefix]
- [--cflags]
- [--libs]
- [--ldflags]
- [--includes]
-EOF
- exit $1
-}
-if test $# -eq 0; then
- usage 1 1>&2
-fi
-while test $# -gt 0; do
-case "$1" in
- -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
- *) optarg= ;;
-esac
-case $1 in
- --prefix)
- echo $OSGEO4W_ROOT_MSYS
- ;;
- --cflags)
- echo -I$OSGEO4W_ROOT_MSYS/include
- ;;
- --libs)
- echo $OSGEO4W_ROOT_MSYS/lib/proj_i.lib
- ;;
- --ldflags)
- echo
- ;;
- --includes)
- echo $OSGEO4W_ROOT_MSYS/include
- ;;
- *)
- usage 1 1>&2
- ;;
- esac
- shift
-done
-
-
More information about the grass-commit
mailing list