Changeset 26156 for main/trunk


Ignore:
Timestamp:
2012-09-06T14:56:09+12:00 (12 years ago)
Author:
kjdon
Message:

had to add AC_SUBST for ARCH_DEP_FLAGS otherwise its not passed in to unac which needs it

Location:
main/trunk/greenstone2/common-src/indexers
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/common-src/indexers/configure

    r25148 r26156  
    612612ENABLE_JNI
    613613ENABLE_ACCENTFOLD
     614ARCH_DEP_FLAGS
    614615ENABLE_JAVA
    615616target_alias
     
    17561757
    17571758
     1759if test -z "$ARCH_DEP_FLAGS" ; then
     1760    ARCH_DEP_FLAGS=
     1761fi
     1762
     1763
    17581764# Check whether --enable-accentfold was given.
    17591765if test "${enable_accentfold+set}" = set; then
     
    19581964CLASS_TEST=Test.class
    19591965cat << \EOF > $JAVA_TEST
    1960 /* #line 1960 "configure" */
     1966/* #line 1966 "configure" */
    19611967public class Test {
    19621968}
     
    21412147        ac_cv_prog_uudecode_base64=yes
    21422148else
    2143         echo "configure: 2143: uudecode had trouble decoding base 64 file 'Test.uue'" >&5
     2149        echo "configure: 2149: uudecode had trouble decoding base 64 file 'Test.uue'" >&5
    21442150        echo "configure: failed file was:" >&5
    21452151        cat Test.uue >&5
     
    22682274CLASS_TEST=Test.class
    22692275cat << \EOF > $JAVA_TEST
    2270 /* #line 2270 "configure" */
     2276/* #line 2276 "configure" */
    22712277public class Test {
    22722278}
     
    23092315TEST=Test
    23102316cat << \EOF > $JAVA_TEST
    2311 /* [#]line 2311 "configure" */
     2317/* [#]line 2317 "configure" */
    23122318public class Test {
    23132319public static void main (String args[]) {
  • main/trunk/greenstone2/common-src/indexers/configure.ac

    r25148 r26156  
    2020fi
    2121AC_SUBST(ENABLE_JAVA)
     22
     23dnl AC_MSG_CHECKING(to see if architecture is 64-bit)
     24dnl arch_64bit=no
     25dnl case "$host_cpu" in
     26dnl x86_64) arch_64bit=yes ;;
     27dnl esac
     28if test -z "$ARCH_DEP_FLAGS" ; then
     29    ARCH_DEP_FLAGS=
     30fi
     31AC_SUBST(ARCH_DEP_FLAGS)
    2232
    2333dnl
Note: See TracChangeset for help on using the changeset viewer.