summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2003-08-05 22:40:45 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2003-08-05 22:40:45 +0000
commit6eef9839bb904bda686e239ab77db04f706c072c (patch)
tree92baf93e17fda049189adbe671cdde06718d2f90 /configure.in
parentaeaf3582cb233c858d3c4b7971437de5b24a2ab0 (diff)
Fix configure.in for autoconf 2.57.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3079 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index 756a69fee..853c8bef9 100644
--- a/configure.in
+++ b/configure.in
@@ -1,7 +1,7 @@
dnl -*- sh -*-
dnl the "configure" script is made from this by running GNU "autoconf"
dnl
-dnl "$Id: configure.in,v 1.33.2.31.2.103 2003/08/02 12:38:09 easysw Exp $"
+dnl "$Id: configure.in,v 1.33.2.31.2.104 2003/08/05 22:40:45 easysw Exp $"
dnl
dnl Configuration script for the Fast Light Tool Kit (FLTK).
dnl
@@ -377,10 +377,10 @@ AC_CHECK_HEADER(libpng/png.h, AC_DEFINE(HAVE_LIBPNG_PNG_H))
if test x$ac_cv_header_png_h = xyes -o x$ac_cv_header_libpng_png_h = xyes; then
AC_CHECK_LIB(png, png_read_rows,
- AC_DEFINE(HAVE_LIBPNG)
+ [AC_DEFINE(HAVE_LIBPNG)
IMAGELIBS="-lpng $IMAGELIBS"
LIBS="-lpng $LIBS"
- AC_CHECK_FUNCS(png_get_valid png_set_tRNS_to_alpha))
+ AC_CHECK_FUNCS(png_get_valid png_set_tRNS_to_alpha)])
fi
dnl Restore original LIBS settings...
@@ -852,5 +852,5 @@ dnl Make sure the fltk-config script is executable...
chmod +x fltk-config
dnl
-dnl End of "$Id: configure.in,v 1.33.2.31.2.103 2003/08/02 12:38:09 easysw Exp $".
+dnl End of "$Id: configure.in,v 1.33.2.31.2.104 2003/08/05 22:40:45 easysw Exp $".
dnl