]> git.eshelyaron.com Git - emacs.git/commitdiff
Put #include of jpeglib.h at start of line.
authorRichard M. Stallman <rms@gnu.org>
Wed, 9 Apr 2003 01:40:57 +0000 (01:40 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 9 Apr 2003 01:40:57 +0000 (01:40 +0000)
configure.in

index 231b02b6c00f0a84650b6be3b7c9c7a2db0ae185..bd7b5922bfc8ed6dd819a0623505a8716dec5afa 100644 (file)
@@ -2089,7 +2089,9 @@ if test "${HAVE_X11}" = "yes"; then
   if test "${HAVE_JPEG}" = "yes"; then
     AC_DEFINE(HAVE_JPEG)
     AC_EGREP_CPP([version= *(6[2-9]|[7-9][0-9])],
-        [#include <jpeglib.h>
+        [
+/* HP compiler A.10.32.30 seems to need #include to be at start of line.  */
+#include <jpeglib.h>
         version=JPEG_LIB_VERSION
 ],
         AC_DEFINE(HAVE_JPEG),