diff options
author | SADA Kenji <sada@FreeBSD.org> | 1998-12-14 17:25:03 +0000 |
---|---|---|
committer | SADA Kenji <sada@FreeBSD.org> | 1998-12-14 17:25:03 +0000 |
commit | c15f4fe4fd50ac7af6377146c4b5ddb8daac6ec9 (patch) | |
tree | bdf99b819d245f1f0c7694d4f9cc335552f7188c /devel/libtool15/files/patch-ad | |
parent | Add some master sites. (diff) |
Fix PORTOBJFORMAT problem.
PR: ports/9070
Submitted by: Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp>
Notes
Notes:
svn path=/head/; revision=15349
Diffstat (limited to '')
-rw-r--r-- | devel/libtool15/files/patch-ad | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/devel/libtool15/files/patch-ad b/devel/libtool15/files/patch-ad new file mode 100644 index 000000000000..34b60ec9a08a --- /dev/null +++ b/devel/libtool15/files/patch-ad @@ -0,0 +1,21 @@ +--- ltmain.sh.orig Fri Mar 20 17:00:29 1998 ++++ ltmain.sh Sat Dec 12 09:13:28 1998 +@@ -967,6 +967,18 @@ + versuffix="$current.$revision" + ;; + ++ freebsd-aout) ++ version_vars="$version_vars major versuffix" ++ major="$current" ++ versuffix="$current.$revision"; ++ ;; ++ ++ freebsd-elf) ++ version_vars="$version_vars major versuffix" ++ major="$current" ++ versuffix="$current"; ++ ;; ++ + *) + $echo "$modename: unknown library version type \`$version_type'" 1>&2 + echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 |