source: trunk/essentials/dev-lang/perl/hints/newsos4.sh

Last change on this file was 3181, checked in by bird, 18 years ago

perl 5.8.8

File size: 999 bytes
Line 
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 ' 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)'
12echo ' cp libdbm.a /lib (copy newer one)'
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)
31gconvert_preference=sprintf
32# No POSIX.
33useposix='false'
Note: See TracBrowser for help on using the repository browser.