# HG changeset patch # User Jim Blandy # Date 740419189 0 # Node ID 6c4ad8344c3f6768c0eb0304aaa3671fc6342cad # Parent 34b62c7ca0dc9dc2c2f0abae49257a223ff0db47 * configure.in: Only check for -lXbsd once. diff -r 34b62c7ca0dc -r 6c4ad8344c3f configure1.in --- a/configure1.in Fri Jun 18 15:48:31 1993 +0000 +++ b/configure1.in Fri Jun 18 15:59:49 1993 +0000 @@ -1032,26 +1032,6 @@ ;; esac -### Check for XFree386. It needs special hacks. -lib_havexbsd=no -] -AC_HAVE_LIBRARY( Xbsd , have_libxbsd=yes , have_libxbsd=no ) -[ -if [ -n "${x_libraries}" ] && [ -f ${x_libraries}/libXbsd.a ]; then - have_libxbsd=yes -fi - -case ${window_system} in - x11 ) - if [ -d /usr/X386/include ] && [ "${have_libxbsd}" = "yes" ]; then - HAVE_XFREE386=yes - if [ "${C_SWITCH_X_SITE}" = "" ]; then - C_SWITCH_X_SITE="-I/usr/X386/include" - fi - fi - ;; -esac - #### Extract some information from the operating system and machine files. echo "Examining the machine- and system-dependent files to find out" @@ -1147,6 +1127,16 @@ CFLAGS="$CFLAGS_save" LIBS="$LIBS_save" +case "${window_system}:${LIBS}" in + x11:*-lXbsd* ) + if [ -d /usr/X386/include ]; then + HAVE_XFREE386=yes + if [ "${C_SWITCH_X_SITE}" = "" ]; then + C_SWITCH_X_SITE="-I/usr/X386/include" + fi + fi + ;; +esac #### Find out which version of Emacs this is. version=`grep 'defconst[ ]*emacs-version' ${srcdir}/lisp/version.el \