Просмотр исходного кода

configure: compile with SQLite by default (backport of https://trac.osgeo.org/grass/changeset/60995)

git-svn-id: https://svn.osgeo.org/grass/grass/branches/releasebranch_7_0@62258 15284696-431f-4ddb-bdfa-cd5b030d7da7
Vaclav Petras 10 лет назад
Родитель
Сommit
d933b11e46
2 измененных файлов с 3 добавлено и 3 удалено
  1. 2 2
      configure
  2. 1 1
      configure.in

+ 2 - 2
configure

@@ -37,7 +37,7 @@ ac_help="$ac_help
 ac_help="$ac_help
   --with-mysql            support MySQL functionality (default: no)"
 ac_help="$ac_help
-  --with-sqlite           support SQLite functionality (default: no)"
+  --with-sqlite           support SQLite functionality (default: yes)"
 ac_help="$ac_help
   --with-opengl           support OpenGL functionality (default: yes)"
 ac_help="$ac_help
@@ -1728,7 +1728,7 @@ if test "${with_sqlite+set}" = set; then
   withval="$with_sqlite"
   :
 else
-  with_sqlite=no
+  with_sqlite=yes
 fi
 
 

+ 1 - 1
configure.in

@@ -250,7 +250,7 @@ LOC_ARG_WITH(tiff, TIFF)
 LOC_ARG_WITH(png, PNG)
 LOC_ARG_WITH(postgres, PostgreSQL, no)
 LOC_ARG_WITH(mysql, MySQL, no)
-LOC_ARG_WITH(sqlite, SQLite, no)
+LOC_ARG_WITH(sqlite, SQLite)
 LOC_ARG_WITH(opengl, OpenGL)
 LOC_ARG_WITH(odbc, ODBC, no)
 LOC_ARG_WITH(fftw, FFTW)