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

Last change on this file since 27197 was 27197, checked in by ak19, 11 years ago

Needed to make changes to 2 packages to get gnome-lib src code to compile on mac/darwin (rata): libxml2-2.9.0/threads.c file (2 changes) and the file glib-2.28.1/glib/gatomic.c (1 change). The changes are headed by comments marked with the word Greenstone. Because of these changes, the tar files containing the two affected packages are renamed with the gs- prefix to indicate they have been customised for Greenstone. I won't be deleting the original tar files of the packages yet, not until I have confirmed that things still compile on Linux with these changes.

  • Property svn:executable set to *
File size: 1.9 KB
Line 
1#!/bin/bash
2
3# glib2.28.1 was modified for Greenstone to allow compilation to succed on a Mac, so it has acquired a 'gs-' prefix
4package=gs-glib
5#version=-2.24.2
6version=-2.28.1
7#version=-2.34.3
8
9progname=$0
10
11source ../cascade-make/lib/cascade-lib.bash GEXTGNOME ../.. $*
12
13prefix=$GEXTGNOME_INSTALLED
14
15export CFLAGS="$CFLAGS -I$GEXTGNOME_INSTALLED/include"
16export CPPFLAGS="$CPPFLAGS -I$GEXTGNOME_INSTALLED/include"
17export CXXFLAGS="$CXXFLAGS -I$GEXTGNOME_INSTALLED/include"
18export LDFLAGS="$LDFLAGS -L$GEXTGNOME_INSTALLED/lib"
19
20if [ "x$crossOS" = "xandroid" ] ; then
21 # Based on details found at:
22 # http://axcoto.com/blog/article/836
23 extra_config_args="glib_cv_stack_grows=${glib_cv_stack_grows=no} glib_cv_uscore=${glib_cv_uscore=no} ac_cv_func_posix_getpwuid_r=${ac_cv_func_posix_getpwuid_r=no} ac_cv_func_posix_getgrgid_r=${ac_cv_func_posix_getgrgid_r=no}"
24
25 # Not clear how many of the following are needed.
26 # List came from:
27 # https://mail.gnome.org/archives/gtk-devel-list/2011-March/msg00096.html
28 #
29 # Could be that some of these are helpful in general (i.e. move out to
30 # main section of this script) in making a more minimal glib
31
32 extra_config_args="--without-included-regex --disable-java --disable-openmp --without-libiconv-prefix --without-libintl-prefix --without-libglib-2.0-prefix --without-libcroco-0.6-prefix --with-included-libxml --without-libncurses-prefix --without-libtermcap-prefix --without-libcurses-prefix --without-libexpat-prefix --without-emacs $extra_config_args"
33
34
35else
36 extra_config_args=
37fi
38
39opt_run_untar $force_untar $auto_untar $package $version
40opt_run_configure $force_config $auto_config $package $version $prefix \
41 $extra_config_args
42
43opt_run_make $compile $package $version
44opt_run_make $install $package $version "install"
45opt_run_make $clean $package $version "clean"
46opt_run_make $distclean $package $version "distclean"
47
48opt_run_tarclean $tarclean $package $version
Note: See TracBrowser for help on using the repository browser.