]> git.eshelyaron.com Git - emacs.git/commitdiff
Add ``checking'' messages for
authorGerd Moellmann <gerd@gnu.org>
Fri, 1 Sep 2000 14:05:06 +0000 (14:05 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 1 Sep 2000 14:05:06 +0000 (14:05 +0000)
XpmReturnAllocPixels.

configure.in

index f2be12849a2aa663987fb065cb348f87f4a5266f..28c1e7f69d888e51ab0b7476e8e4e728ba14fd4d 100644 (file)
@@ -1778,6 +1778,7 @@ if test "${HAVE_X11}" = "yes"; then
     AC_CHECK_HEADER(X11/xpm.h,
       AC_CHECK_LIB(Xpm, XpmReadFileToPixmap, HAVE_XPM=yes, , -lX11))
     if test "${HAVE_XPM}" = "yes"; then
+       AC_MSG_CHECKING(for XpmReturnAllocPixels preprocessor define)
        AC_EGREP_CPP(no_return_alloc_pixels,
        [#include "X11/xpm.h"
 #ifndef XpmReturnAllocPixels
@@ -1786,6 +1787,11 @@ no_return_alloc_pixels
        ], HAVE_XPM=no, HAVE_XPM=yes)
     fi
     CFLAGS="${old_c_flags}"
+    if test "${HAVE_XPM}" = "yes"; then
+       AC_MSG_RESULT(yes)
+    else
+       AC_MSG_RESULT(no)
+    fi
   fi
 
   if test "${HAVE_XPM}" = "yes"; then