bjh 01/01/28 03:42:33 Modified: . configure.in Log: Don't add libmm.la to the list of libraries to link if it's not getting built. Revision Changes Path 1.219 +3 -1 apr/configure.in Index: configure.in =================================================================== RCS file: /home/cvs/apr/configure.in,v retrieving revision 1.218 retrieving revision 1.219 diff -u -r1.218 -r1.219 --- configure.in 2001/01/28 02:04:41 1.218 +++ configure.in 2001/01/28 11:42:31 1.219 @@ -168,7 +168,9 @@ sharedmem="1" anonymous_shm="1" AC_MSG_RESULT(anonymous) - LIBTOOL_LIBS="$abs_builddir/shmem/unix/mm/libmm.la" + if test "$USE_MM" = "yes"; then + LIBTOOL_LIBS="$abs_builddir/shmem/unix/mm/libmm.la" + fi elif test "$ac_cv_enable_shmem" = "file"; then sharedmem="1" filebased_shm="1"