]> git.street.me.uk Git - andy/viking.git/commitdiff
Fix configure error message
authorGuilhem Bonnefille <guilhem.bonnefille@gmail.com>
Sat, 19 Oct 2013 19:12:34 +0000 (21:12 +0200)
committerGuilhem Bonnefille <guilhem.bonnefille@gmail.com>
Sat, 19 Oct 2013 19:12:34 +0000 (21:12 +0200)
configure.ac

index d6bf5e6e9d252bbc70dd8cdedf9556a18f6093d2..3a5cf3d387f99cd3430b6e3ef4d0d921b60fa4f1 100644 (file)
@@ -306,7 +306,7 @@ AC_CACHE_CHECK([whether to enable MBTiles Support],
                [ac_cv_enable_mbtiles], [ac_cv_enable_mbtiles=yes])
 case $ac_cv_enable_mbtiles in
   yes)
-    AC_CHECK_HEADERS([sqlite3.h],[],[AC_MSG_ERROR([sqlite3.h is needed but not found - you will need to install package 'libmagic-dev' or similar. The feature can be disabled with --disable-mbtiles])])
+    AC_CHECK_HEADERS([sqlite3.h],[],[AC_MSG_ERROR([sqlite3.h is needed but not found - you will need to install package 'libsqlite3-dev' or similar. The feature can be disabled with --disable-mbtiles])])
     AC_CHECK_LIB(sqlite3, sqlite3_open, [], [AC_MSG_ERROR([libsqlite3 is needed but not found.])])
     ;;
 esac