source: gs2-extensions/gnome-lib/trunk/src/packages/CASCADE-MAKE/LIBXSLT.sh@ 31153

Last change on this file since 31153 was 31153, checked in by ak19, 7 years ago

Experimenting: Adding in new package libxslt, to overcome that GS2 nightly binaries on Mac Mountain Lion fail to build. The error happens at the yaz-client stage, where a libxslt (dynamically linked lib note, not static unlike our gnome-lib packages) is found on the system, but overwrites all the static library dependencies needed by libxml which a static libxslt would have needed too. This results in the libxml dependency list being incomplete (being truncated to system dlls) and compilation failing.

File size: 723 bytes
Line 
1#!/bin/bash
2
3# now we're compiling everything statically, libxslt is needed for the GS2 release-kit to compile yaz successfully
4# on the Mac Mountain Lion
5# libxslt-1.1.28.tar.gz
6package=libxslt
7version=-1.1.28
8
9
10progname=$0
11
12source ../cascade-make/lib/cascade-lib.bash GEXTGNOME ../.. $*
13
14prefix=$GEXTGNOME_INSTALLED
15
16opt_run_untar $force_untar $auto_untar $package $version
17opt_run_configure $force_config $auto_config $package $version $prefix \
18 --disable-shared --enable-static
19
20opt_run_make $compile $package $version
21opt_run_make $install $package $version "install"
22opt_run_make $clean $package $version "clean"
23opt_run_make $distclean $package $version "distclean"
24
25opt_run_tarclean $tarclean $package $version
Note: See TracBrowser for help on using the repository browser.