Configure update: fstatvfs/fstafs/getmntent/hasmntopt were
[p5sagit/p5-mst-13.2.git] / cygwin32 / gcc2
1 #!/bin/sh
2 #
3 # gcc wrapper for building dynamic lib version of perl
4 #  if -buildperl found on command line, then all args passed to
5 #     perlgcc, else pass all args to gcc.
6 #  jc 3/24/97
7 #
8
9 PERLPATH=/perl5.005
10
11 case "$*" in
12 *-buildperl*)   $PERLPATH/miniperl perlgcc "$@" ;;
13 *)              gcc "$@" ;;
14 esac