summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2003-04-09 01:40:57 +0000
committerRichard M. Stallman <rms@gnu.org>2003-04-09 01:40:57 +0000
commit95c5b8fc6c15c013dd9345442fa223a5747e666f (patch)
tree0301fa09af21b7a61b0c04fa4f25b707c4ce050c /configure.in
parent4a2fce7a9fdff3ede6f945e19e13154042dcb471 (diff)
downloademacs-95c5b8fc6c15c013dd9345442fa223a5747e666f.tar.gz
Put #include of jpeglib.h at start of line.
Diffstat (limited to 'configure.in')
-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
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),