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

Last change on this file was 30881, checked in by ak19, 8 years ago

Adding in disable-shared and enable-static flags to the configure step in as many packages' cascade-make files as possible (all the packages that support these flags).

  • Property svn:executable set to *
File size: 968 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 --disable-shared --enable-static
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.