From Marcos H. Woehrmann on Bugzilla Bug #2405. This corrects the shell equality operator.

This commit is contained in:
Lee Howard 2015-06-14 21:51:17 +00:00
parent 76939f073f
commit a411152d3f
3 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2015-06-14 Lee Howard <faxguy@howardsilvan.com>
* configure, configure.ac: contribution from Marcos H. Woehrmann
on Bugzilla Bug #2405. Correct shell equality operator.
* tools/tiffgt.c (raster_draw): contribution from Jay Berkenbilt
on Bugzilla Bug #2401. Appropriately call glFlush().

2
configure vendored
View File

@ -18738,7 +18738,7 @@ if test "${with_jpeg12_lib+set}" = set; then :
fi
if test "x$enable_jpeg12" == "xyes" ; then
if test "x$enable_jpeg12" = "xyes" ; then
if test "x$with_jpeg12_lib" != "x" ; then
LIBS="$with_jpeg12_lib $LIBS"

View File

@ -777,7 +777,7 @@ AC_ARG_WITH(jpeg12-lib,
AS_HELP_STRING([--with-jpeg12-lib=LIBRARY],
[path to libjpeg 12bit library]),,)
if test "x$enable_jpeg12" == "xyes" ; then
if test "x$enable_jpeg12" = "xyes" ; then
if test "x$with_jpeg12_lib" != "x" ; then
LIBS="$with_jpeg12_lib $LIBS"