This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
better Carp reporting within subclassed modules (from Wolfgang Laun
[perl5.git] / hints / newsos4.sh
CommitLineData
08aa1457 1#
2# hints file for NEWS-OS 4.x
3#
4
5echo
6echo 'Compiling Tips:'
7echo 'When you have found that ld complains "multiple defined" error'
8echo 'on linking /lib/libdbm.a, do following instructions.'
9echo ' cd /tmp (working on /tmp)'
10echo ' cp /lib/libdbm.a dbm.o (copy current libdbm.a)'
11echo ' ar cr libdbm.a dbm.o (make archive)'
12echo ' mv /lib/libdbm.a /lib/libdbm.a.backup (backup original library)'
13echo ' cp /tmp/libdbm.a /lib (copy newer one)'
14echo ' ranlib /lib/libdbm.a (ranlib for later use)'
15echo
16
17# No shared library.
18so='none'
19# Umm.. I like gcc.
20cc='gcc'
21# Configure does not find out where is libm.
22plibpth='/usr/lib/cmplrs/cc'
23# times() returns 'struct tms'
24clocktype='struct tms'
25# getgroups(2) returns integer (not gid_t)
26groupstype='int'
27# time(3) returns long (not time_t)
28timetype='long'
29# filemode type is int (not mode_t)
30modetype='int'
31# using sprintf(3) instead of gcvt(3)
32d_Gconvert='sprintf((b),"%.*g",(n),(x))'
33# No POSIX.
34useposix='false'