1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/japanese/ptex-common/files/patch-ac
Masafumi Max NAKANE 893959dfa6 Make ptex-* ports compile on 2.2.x.
Submitted and requested by:	Mamoru Iwaki <iwaki@bc.niigata-u.ac.jp>
1999-08-25 19:30:28 +00:00

42 lines
1.3 KiB
Plaintext

--- klibtool.orig Fri Dec 12 18:53:46 1997
+++ klibtool Fri Feb 5 20:44:55 1999
@@ -371,7 +371,7 @@
ot_args=`eval echo '$'args_SHARED_archive`
ot_prog=`eval echo '$'prog_SHARED_archive`
test -z "$ot_prog" && ot_prog=$CC
- cmdname="$ot_prog $ot_args -o"
+ cmdname="$ot_prog $ot_args"
$verbose "$0: replaced $old_ar with $cmdname."
fi
@@ -397,6 +397,20 @@
lib_dir=.
fi
lib_basename=`basename $libname`
+ if test $ot = SHARED; then
+if [ -x /sbin/sysctl ]
+then
+ OSVERSION=`/sbin/sysctl -n kern.osreldate`
+else
+ OSVERSION=`/usr/sbin/sysctl -n kern.osreldate`
+fi
+if [ $OSVERSION -ge 300000 ]
+then
+ cmdname="$cmdname -Wl,-soname,$lib_basename -o"
+else
+ cmdname="$cmdname -o"
+fi
+ fi
lib_base=`echo $lib_basename | sed 's/[.0-9]*$//'`
# We might have to run a command after making the library.
@@ -669,7 +672,7 @@
exit 1
fi
$verbose "$0: dir = $dir, libname = $libname."
- version=`awk '$1 == "'$libname'" { print "." $2 "." $3 "." $4 }' $verfile`
+ version=`awk '$1 == "'$libname'" { print "." $2 }' $verfile`
$verbose "$0: version for $libname = $version."
echo $version
;;