diff options
author | Larry Wall <lwall@netlabs.com> | 1993-02-04 22:50:33 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1993-02-04 22:50:33 +0000 |
commit | e334a159a5616cab575044bafaf68f75b7bb3a16 (patch) | |
tree | 47369293eb7417e5322f7fe46e1a1cfc0d9c69ef /hints | |
parent | 514dae0dba791ec01681adb3b3946a7646e146b3 (diff) | |
download | perl-e334a159a5616cab575044bafaf68f75b7bb3a16.tar.gz |
perl 4.0 patch 36: (combined patch)perl-4.0.36
Since Ed Barton sent me a patch for the malignent form of "Malformed
cmd links", I finally broke down and made a patch for the various
other little things that have been accumulating on version 4.
Diffstat (limited to 'hints')
-rw-r--r-- | hints/dec_osf1.sh | 11 | ||||
-rw-r--r-- | hints/solaris_2_1.sh | 4 |
2 files changed, 15 insertions, 0 deletions
diff --git a/hints/dec_osf1.sh b/hints/dec_osf1.sh new file mode 100644 index 0000000000..07f594e3cf --- /dev/null +++ b/hints/dec_osf1.sh @@ -0,0 +1,11 @@ +d_crypt='undef' # The function is there, but it is empty +d_odbm='undef' # We don't need both odbm and ndbm +gidtype='gid_t' +groupstype='int' +libpth="$libpth /usr/shlib" # Use the shared libraries if possible +libc='/usr/shlib/libc.so' # The archive version is /lib/libc.a +case `uname -m` in + mips|alpha) optimize="$optimize -O2 -Olimit 2900" + ccflags="$ccflags -std1 -D_BSD" ;; + *) ccflags="$ccflags -D_BSD" ;; +esac diff --git a/hints/solaris_2_1.sh b/hints/solaris_2_1.sh new file mode 100644 index 0000000000..de405bc24d --- /dev/null +++ b/hints/solaris_2_1.sh @@ -0,0 +1,4 @@ +d_vfork='undef' +d_wait4='undef' +i_dirent='undef' +i_sys_dir='define' |