]> granicus.if.org Git - libjpeg-turbo/commitdiff
Oops. Should be single, not double = sign
authorDRC <dcommander@users.sourceforge.net>
Wed, 13 Oct 2010 19:22:20 +0000 (19:22 +0000)
committerDRC <dcommander@users.sourceforge.net>
Wed, 13 Oct 2010 19:22:20 +0000 (19:22 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@255 632fc199-4ca6-4c93-a231-07263d6284db

configure.ac

index a2b4f3f983530210e2222967c8f5d102573dfbdb..98d45bca108b23c18ac3d87f6a486dae59f42e18 100644 (file)
@@ -136,12 +136,12 @@ AC_ARG_WITH([jpeg7],
 AC_ARG_WITH([jpeg8],
     AC_HELP_STRING([--with-jpeg8], [Emulate libjpeg v8b API/ABI (this makes libjpeg-turbo backward incompatible with libjpeg v6b.)]))
 AC_MSG_CHECKING([libjpeg version number])
-if test "x${with_jpeg8}" == "xyes"; then
+if test "x${with_jpeg8}" = "xyes"; then
     JPEG_LIB_VERSION=80
     AC_DEFINE([JPEG_LIB_VERSION], [80], [Version 8.0])
     [JPEG_LIB_VERSION="`expr $JPEG_LIB_VERSION / 10`:2"]
 else
-    if test "x${with_jpeg7}" == "xyes"; then
+    if test "x${with_jpeg7}" = "xyes"; then
         JPEG_LIB_VERSION=70
         AC_DEFINE([JPEG_LIB_VERSION], [70], [Version 7.0])
         [JPEG_LIB_VERSION="`expr $JPEG_LIB_VERSION / 10`:`expr $JPEG_LIB_VERSION % 10`"]