Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release-src > by-pkgid > 54ce8541e23a4764f8e42d2087decea1 > files > 2

javasqlite-20140624-3.mga5.src.rpm

diff -up javasqlite-20090430/SQLite/Database.java~ javasqlite-20090430/SQLite/Database.java
--- javasqlite-20090430/SQLite/Database.java~	2009-04-08 11:53:00.000000000 +0300
+++ javasqlite-20090430/SQLite/Database.java	2009-05-01 00:59:29.000000000 +0300
@@ -868,7 +868,7 @@ public class Database {
 	try {
 	    String path = System.getProperty("SQLite.library.path");
 	    if (path == null || path.length() == 0) {
-		System.loadLibrary("sqlite_jni");
+		System.load("@JNIPATH@/" + System.mapLibraryName("sqlite_jni"));
 	    } else {
 		try {
 		    java.lang.reflect.Method mapLibraryName;