This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
mktables: Add type_of() method to get range's type
[perl5.git] / hints / gnu.sh
CommitLineData
c8c809ad
MK
1# hints/gnu.sh
2# Last modified: Thu Dec 10 20:47:28 CET 1998
3# Mark Kettenis <kettenis@phys.uva.nl>
4
5# libnsl is unusable on the Hurd.
6# XXX remove this once SUNRPC is implemented.
761ee4e8 7set `echo X "$libswanted "| sed -e 's/ nsl / /' -e 's/ c / pthread /'`
c8c809ad
MK
8shift
9libswanted="$*"
10
11case "$optimize" in
12'') optimize='-O2' ;;
13esac
14
15# Flags needed to produce shared libraries.
16lddlflags='-shared'
17
18# Flags needed by programs that use dynamic linking.
19ccdlflags='-Wl,-E'
20
bfbdaa66
RGS
21# Debian bug #258618
22ccflags='-D_GNU_SOURCE'
23
c8c809ad
MK
24# The following routines are only available as stubs in GNU libc.
25# XXX remove this once metaconf detects the GNU libc stubs.
26d_msgctl='undef'
27d_msgget='undef'
28d_msgrcv='undef'
29d_msgsnd='undef'
30d_semctl='undef'
31d_semget='undef'
32d_semop='undef'
33d_shmat='undef'
34d_shmctl='undef'
35d_shmdt='undef'
36d_shmget='undef'