- from libxslt-configure.patch: * drop config.sub Android stuff (obsolete) * drop MinGW archive checks (obsolete) * split out libxslt-config.patch.1 * split out libxslt-freebsd.patch.1 - drop libxslt-aix.patch: presumably don't need special check for V7BETA since it's released now - drop libxslt-mingw.patch (it's for msys build so obsolete) - drop libxslt-win_manifest.patch: this can just be passed on configure.js command line so no need for a patch Change-Id: I8a2cad0a70a86ba1dffbe3c8fce60babb70a61f6 Reviewed-on: https://gerrit.libreoffice.org/6641 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
29 lines
700 B
Groff
29 lines
700 B
Groff
Usual patch to produce Linux-like .so files on FreeBSD
|
|
|
|
--- a/ltmain.sh Wed Aug 29 14:28:46 2007
|
|
+++ b/ltmain.sh Wed Jun 25 13:06:05 2008
|
|
@@ -6195,9 +6195,9 @@
|
|
revision="$number_revision"
|
|
;;
|
|
freebsd-aout|freebsd-elf|qnx|sunos)
|
|
- current="$number_major"
|
|
- revision="$number_minor"
|
|
- age="0"
|
|
+ current=`expr $number_major + $number_minor`
|
|
+ age="$number_minor"
|
|
+ revision="$number_revision"
|
|
;;
|
|
irix|nonstopux)
|
|
func_arith $number_major + $number_minor
|
|
@@ -6271,8 +6271,8 @@
|
|
;;
|
|
|
|
freebsd-elf)
|
|
- major=".$current"
|
|
- versuffix=".$current"
|
|
+ major=.`expr $current - $age`
|
|
+ versuffix="$major.$age.$revision"
|
|
;;
|
|
|
|
irix | nonstopux)
|