aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-04-09 01:40:57 +0000
committerRichard M. Stallman2003-04-09 01:40:57 +0000
commit95c5b8fc6c15c013dd9345442fa223a5747e666f (patch)
tree0301fa09af21b7a61b0c04fa4f25b707c4ce050c
parent4a2fce7a9fdff3ede6f945e19e13154042dcb471 (diff)
downloademacs-95c5b8fc6c15c013dd9345442fa223a5747e666f.tar.gz
emacs-95c5b8fc6c15c013dd9345442fa223a5747e666f.zip
Put #include of jpeglib.h at start of line.
-rw-r--r--configure.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 231b02b6c00..bd7b5922bfc 100644
--- a/configure.in
+++ b/configure.in
@@ -2089,7 +2089,9 @@ if test "${HAVE_X11}" = "yes"; then
2089 if test "${HAVE_JPEG}" = "yes"; then 2089 if test "${HAVE_JPEG}" = "yes"; then
2090 AC_DEFINE(HAVE_JPEG) 2090 AC_DEFINE(HAVE_JPEG)
2091 AC_EGREP_CPP([version= *(6[2-9]|[7-9][0-9])], 2091 AC_EGREP_CPP([version= *(6[2-9]|[7-9][0-9])],
2092 [#include <jpeglib.h> 2092 [
2093/* HP compiler A.10.32.30 seems to need #include to be at start of line. */
2094#include <jpeglib.h>
2093 version=JPEG_LIB_VERSION 2095 version=JPEG_LIB_VERSION
2094], 2096],
2095 AC_DEFINE(HAVE_JPEG), 2097 AC_DEFINE(HAVE_JPEG),