source: trunk/third/perl/hints/newsos4.sh @ 14545

Revision 14545, 1012 bytes checked in by ghudson, 24 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r14544, which included commits to RCS files with non-trunk default branches.
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)
31d_Gconvert='sprintf((b),"%.*g",(n),(x))'
32# No POSIX.
33useposix='false'
Note: See TracBrowser for help on using the repository browser.