aboutsummaryrefslogtreecommitdiffstats
path: root/testing/sleuthkit/10_link-to-sqlite.patch
diff options
context:
space:
mode:
authorFrancesco Colista <fcolista@alpinelinux.org>2016-08-22 08:21:27 +0000
committerFrancesco Colista <fcolista@alpinelinux.org>2016-08-22 08:22:30 +0000
commit187517d6a85e7a8bee39117f0599109ee8cd13ac (patch)
treea9ef7f8d064ca0c6a5dfa9274ebb856c8157619c /testing/sleuthkit/10_link-to-sqlite.patch
parent9d4e3d8d3cfa90f9f85600ef1671b8e19bf20ecd (diff)
downloadaports-187517d6a85e7a8bee39117f0599109ee8cd13ac.tar.bz2
aports-187517d6a85e7a8bee39117f0599109ee8cd13ac.tar.xz
community/sleuthkit: moved from testing, upgraded to 4.3.0, removed unused patch
Diffstat (limited to 'testing/sleuthkit/10_link-to-sqlite.patch')
-rw-r--r--testing/sleuthkit/10_link-to-sqlite.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/testing/sleuthkit/10_link-to-sqlite.patch b/testing/sleuthkit/10_link-to-sqlite.patch
deleted file mode 100644
index a4de9d4630..0000000000
--- a/testing/sleuthkit/10_link-to-sqlite.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From https://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-forensics/sleuthkit/files/sleuthkit-4.1.0-system-sqlite.patch?revision=1.1
-
---- a/tsk/auto/db_sqlite.cpp
-+++ b/tsk/auto/db_sqlite.cpp
-@@ -14,7 +14,7 @@
- */
-
- #include "tsk_db_sqlite.h"
--#include "sqlite3.h"
-+#include <sqlite3.h>
-
- #include <string.h>
-
---- a/tsk/auto/Makefile.am
-+++ b/tsk/auto/Makefile.am
-@@ -3,7 +3,8 @@
-
- noinst_LTLIBRARIES = libtskauto.la
- # Note that the .h files are in the top-level Makefile
--libtskauto_la_SOURCES = auto.cpp tsk_auto_i.h auto_db.cpp sqlite3.c sqlite3.h db_sqlite.cpp tsk_db_sqlite.h case_db.cpp tsk_case_db.h
-+libtskauto_la_SOURCES = auto.cpp tsk_auto_i.h auto_db.cpp db_sqlite.cpp tsk_db_sqlite.h case_db.cpp tsk_case_db.h
-+libtskauto_la_LIBADD = -lsqlite3
-
- indent:
- indent *.cpp *.h
---- a/tsk/auto/tsk_db_sqlite.h
-+++ b/tsk/auto/tsk_db_sqlite.h
-@@ -25,7 +25,7 @@
- #include <ostream>
-
-
--#include "sqlite3.h"
-+#include <sqlite3.h>
- #include "tsk_auto_i.h"
-
- using std::map;