Changeset 10711


Ignore:
Timestamp:
2005-10-07T12:34:30+13:00 (19 years ago)
Author:
kjdon
Message:

changed LIBOBJS=... to AC_LIBOBJ...

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/packages/mg/aclocal.m4

    r3745 r10711  
    132132  AC_MSG_RESULT(regex)
    133133  AC_DEFINE(WITH_REGEX)
    134   LIBOBJS="$LIBOBJS regex.o"
     134  AC_LIBOBJ([regex])
    135135fi])
    136136if test -z "$ac_with_regex"; then
    137137  AC_MSG_RESULT(rx)
    138   AC_CHECK_FUNC(re_rx_search, , [LIBOBJS="$LIBOBJS rx.o"])
     138  AC_CHECK_FUNC(re_rx_search, , [AC_LIBOBJ([rx])])
    139139fi
    140 AC_SUBST(LIBOBJS)dnl
    141140])
  • trunk/gsdl3/src/packages/mg/aclocal.m4

    r3745 r10711  
    132132  AC_MSG_RESULT(regex)
    133133  AC_DEFINE(WITH_REGEX)
    134   LIBOBJS="$LIBOBJS regex.o"
     134  AC_LIBOBJ([regex])
    135135fi])
    136136if test -z "$ac_with_regex"; then
    137137  AC_MSG_RESULT(rx)
    138   AC_CHECK_FUNC(re_rx_search, , [LIBOBJS="$LIBOBJS rx.o"])
     138  AC_CHECK_FUNC(re_rx_search, , [AC_LIBOBJ([rx])])
    139139fi
    140 AC_SUBST(LIBOBJS)dnl
    141140])
  • trunk/indexers/mg/aclocal.m4

    r3745 r10711  
    132132  AC_MSG_RESULT(regex)
    133133  AC_DEFINE(WITH_REGEX)
    134   LIBOBJS="$LIBOBJS regex.o"
     134  AC_LIBOBJ([regex])
    135135fi])
    136136if test -z "$ac_with_regex"; then
    137137  AC_MSG_RESULT(rx)
    138   AC_CHECK_FUNC(re_rx_search, , [LIBOBJS="$LIBOBJS rx.o"])
     138  AC_CHECK_FUNC(re_rx_search, , [AC_LIBOBJ([rx])])
    139139fi
    140 AC_SUBST(LIBOBJS)dnl
    141140])
  • trunk/indexers/mgpp/aclocal.m4

    r3365 r10711  
    132132  AC_MSG_RESULT(regex)
    133133  AC_DEFINE(WITH_REGEX)
    134   LIBOBJS="$LIBOBJS regex.o"
     134  AC_LIBOBJ([regex])   
    135135fi])
    136136if test -z "$ac_with_regex"; then
     
    143143        find a local rx library and the one included with this
    144144        distribution doesn't work on 64-bit machines like yours)
    145       [LIBOBJS="$LIBOBJS regex.o"]
     145      AC_LIBOBJ([regex])
    146146    else
    147       [LIBOBJS="$LIBOBJS rx.o"]
     147      AC_LIBOBJ([rx])
    148148    fi]
    149149  )
    150150fi
    151 AC_SUBST(LIBOBJS)dnl
    152151])
    153152
  • trunk/mgpp/aclocal.m4

    r3365 r10711  
    132132  AC_MSG_RESULT(regex)
    133133  AC_DEFINE(WITH_REGEX)
    134   LIBOBJS="$LIBOBJS regex.o"
     134  AC_LIBOBJ([regex])   
    135135fi])
    136136if test -z "$ac_with_regex"; then
     
    143143        find a local rx library and the one included with this
    144144        distribution doesn't work on 64-bit machines like yours)
    145       [LIBOBJS="$LIBOBJS regex.o"]
     145      AC_LIBOBJ([regex])
    146146    else
    147       [LIBOBJS="$LIBOBJS rx.o"]
     147      AC_LIBOBJ([rx])
    148148    fi]
    149149  )
    150150fi
    151 AC_SUBST(LIBOBJS)dnl
    152151])
    153152
Note: See TracChangeset for help on using the changeset viewer.