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

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

On the latest Mac we found that gnome-lib failed to compile properly and failed at GLIB. Dr Bainbridge worked out that GLIB needed LIBICONV, and in order for GLIB to work with LIBICONV, it also needed CUPS. Dr Bainbridge got them all compiling together. Currently CASCADE-MAKE.sh specifies that these extra packages be processed for all darwin. It's now been tested to work on the latest Lion, but it still needs to be tested on Leopard.

  • Property svn:executable set to *
File size: 935 bytes
Line 
1#!/bin/bash
2
3package=gettext
4#version=-0.18.1.1
5version=-0.18.2
6
7progname=$0
8
9source ../cascade-make/lib/cascade-lib.bash GEXTGNOME ../.. $*
10
11prefix=$GEXTGNOME_INSTALLED
12
13if [ "x$CROSSCONFIGURE_ARGS" != "x" ] ; then
14
15 if [ $crossOS = "android" ] ; then
16 export CROSSCONFIGURE_VARS="$CROSSCONFIGURE_VARS \
17 gl_cv_header_working_stdint_h=yes"
18 fi
19
20 if [ $crossOS = "windows" ] ; then
21 export CROSSCONFIGURE_VARS="$CROSSCONFIGURE_VARS \
22 gl_cv_func_memchr_works=yes
23 ac_cv_func_strnlen_working=yes"
24 fi
25fi
26
27opt_run_untar $force_untar $auto_untar $package $version
28opt_run_configure $force_config $auto_config $package $version $prefix --without-emacs --without-git
29
30opt_run_make $compile $package $version
31opt_run_make $install $package $version "install"
32opt_run_make $clean $package $version "clean"
33opt_run_make $distclean $package $version "distclean"
34
35opt_run_tarclean $tarclean $package $version
Note: See TracBrowser for help on using the repository browser.