hamster-applet r645 - trunk



Author: pzawadzki
Date: Fri Nov 28 13:23:40 2008
New Revision: 645
URL: http://svn.gnome.org/viewvc/hamster-applet?rev=645&view=rev

Log:
Reverse the sqlite check to accomodate for python 2.6 and 3.0.


Modified:
   trunk/ChangeLog
   trunk/configure.ac

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac	(original)
+++ trunk/configure.ac	Fri Nov 28 13:23:40 2008
@@ -100,13 +100,13 @@
 AC_MSG_RESULT($PYGTK_DEFSDIR)
 
 
-if test "x$PYTHON_VERSION" = "x2.5"; then
-    AC_MSG_CHECKING([for python sqlite module])
+if test "x$PYTHON_VERSION" = "x2.4"; then
+    AC_MSG_CHECKING([for pysqlite2 module])
     if AC_RUN_LOG([DISPLAY= $PYTHON -c '
 try:
-    import sqlite3
+    import pysqlite2
 except ImportError, e:
-    if str(e).find("sqlite3") >= 0:
+    if str(e).find("pysqlite2") >= 0:
         raise
 except:
     pass
@@ -114,15 +114,15 @@
       AC_MSG_RESULT([yes])
     else
       AC_MSG_RESULT([no])
-      AC_MSG_ERROR([Python 2.5: inbuilt sqlite is required to build hamster])
+      AC_MSG_ERROR([Python 2.4: pysqlite2 module required to build hamster])
     fi
 else
-    AC_MSG_CHECKING([for pysqlite2 module])
+    AC_MSG_CHECKING([for python sqlite module])
     if AC_RUN_LOG([DISPLAY= $PYTHON -c '
 try:
-    import pysqlite2
+    import sqlite3
 except ImportError, e:
-    if str(e).find("pysqlite2") >= 0:
+    if str(e).find("sqlite3") >= 0:
         raise
 except:
     pass
@@ -130,7 +130,7 @@
       AC_MSG_RESULT([yes])
     else
       AC_MSG_RESULT([no])
-      AC_MSG_ERROR([Python 2.4: pysqlite2 module required to build hamster])
+      AC_MSG_ERROR([Python 2.5+: inbuilt sqlite is required to build hamster])
     fi
 fi
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]