summaryrefslogtreecommitdiff
path: root/app-mobilephone/gnokii/files/gnokii-0.6.31-sqlite-typo.patch
diff options
context:
space:
mode:
Diffstat (limited to 'app-mobilephone/gnokii/files/gnokii-0.6.31-sqlite-typo.patch')
-rw-r--r--app-mobilephone/gnokii/files/gnokii-0.6.31-sqlite-typo.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/app-mobilephone/gnokii/files/gnokii-0.6.31-sqlite-typo.patch b/app-mobilephone/gnokii/files/gnokii-0.6.31-sqlite-typo.patch
new file mode 100644
index 000000000000..b3dd41d22019
--- /dev/null
+++ b/app-mobilephone/gnokii/files/gnokii-0.6.31-sqlite-typo.patch
@@ -0,0 +1,18 @@
+https://bugs.gentoo.org/829800
+https://src.fedoraproject.org/rpms/gnokii/raw/rawhide/f/gnokii-0.6.31-sqlite3.patch
+
+Patch by Robert Scheck <robert@fedoraproject.org> for gnokii <= 0.6.31 which adds
+the missing linking to -lsqlite3 by correcting the configure script. Without this
+patch the libsmsd_sqlite.so fails with "undefined symbol: sqlite3_open" simply.
+
+--- a/configure.in
++++ b/configure.in
+@@ -747,7 +747,7 @@
+ have_sqlite=no
+ PKG_CHECK_MODULES(SQLITE3, sqlite3, have_sqlite=yes, have_sqlite=no)
+ if test x$enable_sqlite != xno && test x$PKGCONF != xno ; then
+- SQLITE_LIBS=SQLITE3_LIBS
++ SQLITE_LIBS=$SQLITE3_LIBS
+ dnl SQLITE_CFLAGS=SQLITE3_CFLAGS
+ AC_SUBST(SQLITE_LIBS)
+ AC_SUBST(SQLITE_CFLAGS)