Revision: 1950
          http://gtkpod.svn.sourceforge.net/gtkpod/?rev=1950&view=rev
Author:   tmzullinger
Date:     2008-03-02 18:10:17 -0800 (Sun, 02 Mar 2008)

Log Message:
-----------
shell portability fixes (courtesy of Klaus Heinz)

Modified Paths:
--------------
    libgpod/trunk/ChangeLog
    libgpod/trunk/configure.ac
    libgpod/trunk/m4/python.m4

Modified: libgpod/trunk/ChangeLog
===================================================================
--- libgpod/trunk/ChangeLog     2008-02-13 08:59:06 UTC (rev 1949)
+++ libgpod/trunk/ChangeLog     2008-03-03 02:10:17 UTC (rev 1950)
@@ -1,3 +1,8 @@
+2008-03-02  Todd Zullinger  <tmzullinger at users.sourceforge.net>
+
+       * configure.ac
+         m4/python.m4: shell portability fixes (courtesy of Klaus Heinz)
+
 2008-02-13  Todd Zullinger  <tmzullinger at users.sourceforge.net>
 
        * bindings/python/ipod.py: Track.set_thumbnail() was renamed

Modified: libgpod/trunk/configure.ac
===================================================================
--- libgpod/trunk/configure.ac  2008-02-13 08:59:06 UTC (rev 1949)
+++ libgpod/trunk/configure.ac  2008-03-03 02:10:17 UTC (rev 1950)
@@ -106,7 +106,7 @@
       AC_MSG_ERROR([HAL support explicitly requested but HAL couldn't be 
found])
   fi
 
-  if test "x$enable_hal" == "xyes"; then
+  if test "x$enable_hal" = "xyes"; then
         AC_DEFINE(HAVE_HAL, 1, [Define if you have HAL support])
         AC_SUBST(HAL_CFLAGS)
        AC_SUBST(HAL_LIBS)

Modified: libgpod/trunk/m4/python.m4
===================================================================
--- libgpod/trunk/m4/python.m4  2008-02-13 08:59:06 UTC (rev 1949)
+++ libgpod/trunk/m4/python.m4  2008-03-03 02:10:17 UTC (rev 1950)
@@ -99,7 +99,7 @@
     fi
     AC_MSG_RESULT($with_python)
 
-    if test "X$with_python" == Xyes; then
+    if test "X$with_python" = Xyes; then
         if test -z "$PYTHON"; then
             AC_PATH_PROG(PYTHON, python)
         fi
@@ -108,7 +108,7 @@
             AM_PATH_PYTHON($PYTHON_MIN_VERSION)
             AM_CHECK_PYTHON_HEADERS(with_python="yes",with_python="no")
     
-            if test "X$with_python" == Xyes; then
+            if test "X$with_python" = Xyes; then
                 dnl test for python ldflags
                 dnl copied from the Redland RDF bindings, http://librdf.org/
                 if test `uname` = Darwin; then
@@ -127,13 +127,13 @@
                 
AM_CHECK_PYMOD(mutagen,$PYTHON_MUTAGEN_MIN_VERSION,mutagen.version_string,,with_python=no)
 
                 dnl this test should perhaps be re-enabled, but only produce a 
warning -- tmz
-                dnl if test "X$have_gdkpixbuf" == "Xyes" -a "X$have_pygobject" 
== "Xyes"; then
+                dnl if test "X$have_gdkpixbuf" = "Xyes" -a "X$have_pygobject" 
= "Xyes"; then
                 dnl     dnl check for gtk module >= $PYTHON_GTK_MIN_VERSION
                 dnl     
AM_CHECK_PYMOD(gtk,$PYTHON_GTK_MIN_VERSION,'.'.join(map(str, 
gtk.ver)),,with_python=no)
                 dnl fi
 
                 dnl check for swig
-                if test "X$with_python" == Xyes; then
+                if test "X$with_python" = Xyes; then
                     AC_PROG_SWIG($SWIG_MIN_VERSION)
                     with_python="$has_swig"
                 fi


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2

Reply via email to