Ignore:
Timestamp:
2013-09-25T20:55:18+12:00 (11 years ago)
Author:
ak19
Message:

Committing the configure files generated from autoconf on the CentOS linux after all (instead of generating them on Ubuntu). Note that these were generated with Warnings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/configure

    r25149 r28309  
    85878587
    85888588
     8589#----------------------------------------------------------------------------
     8590# GS2 uses this configure to set up gnome-lib env, GS3 uses the one in gs2build/build-src
     8591# For gnome-lib-minimal need to source its ./devel.bash before wvware can even be configured
     8592# For a gnome-lib that's already compiled, don't need to its source ./devel.bash to configure wvware
     8593# If a gnome-lib is not yet compiled, we compile it first with CASCADE-MAKE.sh
     8594
     8595if test -d ext/gnome-lib-minimal; then
     8596   echo "*** gnome-lib (minimal) detected. Sourcing the gnomelib env for configuring wvware..."
     8597   cd ext/gnome-lib-minimal
     8598   source ./devel.bash
     8599   cd ../..
     8600elif test -d ext/gnome-lib; then
     8601  if  -d ext/gnome-lib/$gsdlos ; then
     8602    echo "*** gnome-lib already compiled up in ext/gnome-lib/$gsdlos"
     8603    echo "*** Sourcing the gnomelib env for configuring wvware for GS2 (although it's not necessary)..."
     8604    cd ext/gnome-lib
     8605    source ./devel.bash
     8606    cd ../..
     8607  else
     8608    echo "*** Compiling up gnome-lib..."
     8609    cd ext/gnome-lib
     8610    ./CASCADE-MAKE.sh
     8611    gnomestatus=$?
     8612    if  $gnomestatus != 0  ; then
     8613       echo "****************************************"
     8614       echo "@@@ Failed to compile up gnomelib successfully"
     8615       echo "****************************************"
     8616       exit -1
     8617    fi
     8618    cd ../..
     8619  fi
     8620fi
     8621
    85898622# ---------------------------------------------------------------------------
    85908623
Note: See TracChangeset for help on using the changeset viewer.