diff options
Diffstat (limited to 'contrib/perl5/hints/cygwin.sh')
-rw-r--r-- | contrib/perl5/hints/cygwin.sh | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/contrib/perl5/hints/cygwin.sh b/contrib/perl5/hints/cygwin.sh deleted file mode 100644 index c57d3f6..0000000 --- a/contrib/perl5/hints/cygwin.sh +++ /dev/null @@ -1,47 +0,0 @@ -#! /bin/sh -# cygwin.sh - hints for building perl using the Cygwin environment for Win32 -# - -# not otherwise settable -exe_ext='.exe' -firstmakefile='GNUmakefile' -case "$ldlibpthname" in -'') ldlibpthname=PATH ;; -esac -archobjs='cygwin.o' - -# mandatory (overrides incorrect defaults) -test -z "$cc" && cc='gcc' -if test -z "$plibpth" -then - plibpth=`gcc -print-file-name=libc.a` - plibpth=`dirname $plibpth` - plibpth=`cd $plibpth && pwd` -fi -so='dll' -# - eliminate -lc, implied by gcc and a symlink to libcygwin.a -libswanted=`echo " $libswanted " | sed -e 's/ c / /g'` -# - eliminate -lm, symlink to libcygwin.a -libswanted=`echo " $libswanted " | sed -e 's/ m / /g'` -libswanted="$libswanted cygipc" -test -z "$optimize" && optimize='-O2' -ccflags="$ccflags -DPERL_USE_SAFE_PUTENV" -# - otherwise i686-cygwin -archname='cygwin' - -# dynamic loading -# - otherwise -fpic -cccdlflags=' ' -ld='ld2' - -# optional(ish) -# - perl malloc needs to be unpolluted -bincompat5005='undef' - -# Win9x problem with non-blocking read from a closed pipe -d_eofnblk='define' - -# strip exe's and dll's -#ldflags="$ldflags -s" -#ccdlflags="$ccdlflags -s" -#lddlflags="$lddlflags -s" |