This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Ticket number for bitops in perlexperiment
[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.'
08aa1457 9echo ' cp /lib/libdbm.a dbm.o (copy current libdbm.a)'
10echo ' ar cr libdbm.a dbm.o (make archive)'
11echo ' mv /lib/libdbm.a /lib/libdbm.a.backup (backup original library)'
8c99d73e 12echo ' cp libdbm.a /lib (copy newer one)'
08aa1457 13echo ' ranlib /lib/libdbm.a (ranlib for later use)'
14echo
15
16# No shared library.
17so='none'
18# Umm.. I like gcc.
19cc='gcc'
20# Configure does not find out where is libm.
21plibpth='/usr/lib/cmplrs/cc'
22# times() returns 'struct tms'
23clocktype='struct tms'
24# getgroups(2) returns integer (not gid_t)
25groupstype='int'
26# time(3) returns long (not time_t)
27timetype='long'
28# filemode type is int (not mode_t)
29modetype='int'
30# using sprintf(3) instead of gcvt(3)
aade5aff 31gconvert_preference=sprintf
08aa1457 32# No POSIX.
33useposix='false'