blob: 9a7da8c7eb6ad455de6c83e92bc504808eae8af6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# isc_2.sh
# Interactive Unix Version 2.2
# Compile perl entirely in posix mode.
# Andy Dougherty doughera@lafayette.edu
# Wed Oct 5 15:57:37 EDT 1994
#
# Use Configure -Dcc=gcc to use gcc
#
set `echo X "$libswanted "| sed -e 's/ c / /'`
shift
libswanted="$*"
case "$cc" in
*gcc*) ccflags="$ccflags -posix"
ldflags="$ldflags -posix"
;;
*) ccflags="$ccflags -Xp -D_POSIX_SOURCE"
ldflags="$ldflags -Xp"
;;
esac
# Compensate for conflicts in <net/errno.h>
doio_cflags='ccflags="$ccflags -DENOTSOCK=103"'
pp_sys_cflags='ccflags="$ccflags -DENOTSOCK=103"'
# for ext/IPC/SysV/SysV.xs
ccflags="$ccflags -DPERL_ISC"
|