This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Revert "Revert "[perl #77496] tied gets scalars and globs confused""
[perl5.git] / hints / interix.sh
CommitLineData
0c52c6a9
TV
1# hints/interix.sh
2#
3# Please check with tech-pkg@netbsd.org before making modifications
4# to this file.
5
6cc='gcc'
7cccdlflags="-DPIC $cccdlflags"
8ccdlflags='-Wl,-E'
9ccflags="-D_ALL_SOURCE $ccflags"
10d_poll="$undef"
11ld='gcc'
12lddlflags="-shared $lddlflags"
13rpathflag='-Wl,-R'
14sharpbang='#!'
c3eb8dc3 15usemymalloc='false'
0c52c6a9
TV
16usenm='false'
17
18# This script UU/usethreads.cbu will get 'called-back' by Configure
19# after it has prompted the user for whether to use threads.
20cat > UU/usethreads.cbu <<'EOCBU'
21case "$usethreads" in
22$define|true|[yY]*)
23 ccflags="-D_REENTRANT $ccflags"
24 libswanted="$libswanted pthread"
25 ;;
26esac
27EOCBU