Changeset 23801 for main


Ignore:
Timestamp:
2011-03-22T21:37:41+13:00 (13 years ago)
Author:
ak19
Message:

Added enable/disable-wvware flag to affected configure and Makefiles files in build-src, build-src/packages and top-level GS2, so we can turn off wvware compiling (such as for 64 bit Mac OS Snow Leopard Update 3 machines - MacOS 10.6.3 and over). By default wvware compilation is enabled.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/configure.in

    r23356 r23801  
    8787fi
    8888AC_SUBST(USE_YAZ)
     89
     90dnl
     91dnl Set use of wvware (enabled by default)
     92dnl
     93AC_ARG_ENABLE(wvware, [  --disable-wvware          Disable wvWare compilation], USE_WVWARE=$enableval, USE_WVWARE=yes)
     94if test $USE_WVWARE = "yes" -o $USE_WVWARE = "1" ; then
     95  USE_WVWARE=1
     96  AC_DEFINE(USE_WVWARE,[])
     97else
     98  USE_WVWARE=0
     99fi
     100AC_SUBST(USE_WVWARE)
    89101
    90102dnl
Note: See TracChangeset for help on using the changeset viewer.