This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[patch] -Wall
[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.
7set `echo X "$libswanted "| sed -e 's/ nsl / /'`
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
21# The following routines are only available as stubs in GNU libc.
22# XXX remove this once metaconf detects the GNU libc stubs.
23d_msgctl='undef'
24d_msgget='undef'
25d_msgrcv='undef'
26d_msgsnd='undef'
27d_semctl='undef'
28d_semget='undef'
29d_semop='undef'
30d_shmat='undef'
31d_shmctl='undef'
32d_shmdt='undef'
33d_shmget='undef'