use builtin __CYGWIN__ rather than -DCYGWIN (from Eric Fifer
[p5sagit/p5-mst-13.2.git] / hints / cygwin.sh
1 #! /bin/sh
2 # cygwin.sh - hints for building perl using the Cygwin environment for Win32
3 #
4
5 # not otherwise settable
6 exe_ext='.exe'
7 firstmakefile='GNUmakefile'
8 case "$ldlibpthname" in
9 '') ldlibpthname=PATH ;;
10 esac
11
12 # mandatory (overrides incorrect defaults)
13 test -z "$cc" && cc='gcc'
14 if test -z "$plibpth"
15 then
16     plibpth=`gcc -print-file-name=libc.a`
17     plibpth=`dirname $plibpth`
18     plibpth=`cd $plibpth && pwd`
19 fi
20 so='dll'
21 # - eliminate -lc, implied by gcc
22 libswanted=`echo " $libswanted " | sed -e 's/ c / /g'`
23 libswanted="$libswanted cygipc cygwin kernel32"
24 # - otherwise i686-cygwin
25 archname='cygwin'
26
27 # dynamic loading
28 ld='ld2'
29 # - otherwise -fpic
30 cccdlflags=' '
31
32 # optional(ish)
33 # - perl malloc needs to be unpolluted
34 bincompat5005='undef'
35
36 # stubs (ENOSYS, not implemented)
37 d_chroot='undef'
38 d_seteuid='undef'
39 d_setegid='undef'
40
41 # strip exe's and dll's
42 #ldflags="$ldflags -s"
43 #ccdlflags="$ccdlflags -s"
44 #lddlflags="$lddlflags -s"