Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Sleuthkit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IRT
Sleuthkit
Commits
83e70baa
Commit
83e70baa
authored
7 years ago
by
rishwanth1995
Browse files
Options
Downloads
Patches
Plain Diff
changed jar file names in sleuthkit
parent
37e2d9cc
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
bindings/java/Makefile.am
+1
-1
1 addition, 1 deletion
bindings/java/Makefile.am
bindings/java/build.xml
+6
-5
6 additions, 5 deletions
bindings/java/build.xml
configure.ac
+14
-15
14 additions, 15 deletions
configure.ac
with
21 additions
and
21 deletions
bindings/java/Makefile.am
+
1
−
1
View file @
83e70baa
# Compile the sub directories
SUBDIRS
=
jni
tsk_jar
=
$(
top_builddir
)
/bindings/java/dist/
Tsk_DataModel
.jar
tsk_jar
=
$(
top_builddir
)
/bindings/java/dist/
sleuthkit-
$(
PACKAGE_VERSION
)
.jar
jardir
=
$(
prefix
)
/share/java
jar_DATA
=
$(
tsk_jar
)
...
...
This diff is collapsed.
Click to expand it.
bindings/java/build.xml
+
6
−
5
View file @
83e70baa
...
...
@@ -12,6 +12,7 @@
<!-- set global properties for this build -->
<property
name=
"src"
location=
"src/org/sleuthkit/datamodel"
/>
<property
name=
"VERSION"
value=
"4.6.0"
/>
<property
name=
"sample"
location=
"src/org/sleuthkit/datamodel/Examples"
/>
<property
name=
"build"
location=
"build/"
/>
<property
name=
"build-datamodel"
location=
"build/org/sleuthkit/datamodel"
/>
...
...
@@ -129,17 +130,17 @@
<target
name=
"dist-SQLite"
depends=
"check-build, init-ivy, compile, copyLibs-SQLite"
unless=
"up-to-date"
description=
"generate the distribution"
>
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
<jar
jarfile=
"${dist}/
Tsk_DataModel
.jar"
basedir=
"${build}"
/>
<jar
jarfile=
"${dist}/
sleuthkit-${VERSION}
.jar"
basedir=
"${build}"
/>
</target>
<target
name=
"dist-PostgreSQL"
depends=
"check-build, init-ivy, compile, copyLibs-PostgreSQL"
unless=
"up-to-date"
description=
"generate the PostgreSQL distribution"
>
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
<jar
jarfile=
"${dist}/
Tsk_DataModel_PostgreSQL
.jar"
basedir=
"${build}"
/>
<jar
jarfile=
"${dist}/
sleuthkit-postgresql-${VERSION}
.jar"
basedir=
"${build}"
/>
</target>
<target
name=
"check-build"
depends=
"check-native-build"
>
<uptodate
property=
"java-up-to-date"
targetfile=
"${dist}/
Tsk_DataModel
.jar"
>
<uptodate
property=
"java-up-to-date"
targetfile=
"${dist}/
sleuthkit-${VERSION}
.jar"
>
<srcfiles
dir=
"${src}"
includes=
"**/*.java"
/>
</uptodate>
<condition
property=
"up-to-date"
>
...
...
@@ -161,13 +162,13 @@
<target
name=
"Debug-SQLite"
depends=
"check-build, init-ivy, compile, copyLibs-SQLiteDebug"
unless=
"up-to-date"
description=
"generate the debug distribution"
>
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
<jar
jarfile=
"${dist}/
Tsk_DataModel
.jar"
basedir=
"${build}"
/>
<jar
jarfile=
"${dist}/
sleuthkit-${VERSION}
.jar"
basedir=
"${build}"
/>
</target>
<target
name=
"Debug-PostgreSQL"
depends=
"init-ivy, compile, copyLibs-PostgreSQLDebug"
description=
"generate the PostgreSQL debug distribution"
>
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
<jar
jarfile=
"${dist}/
Tsk_DataModel_PostgreSQL
.jar"
basedir=
"${build}"
/>
<jar
jarfile=
"${dist}/
sleuthkit-postgresql-${VERSION}
.jar"
basedir=
"${build}"
/>
</target>
<target
name=
"jni"
depends=
"compile"
description=
"make the jni.h file"
>
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
14
−
15
View file @
83e70baa
...
...
@@ -4,9 +4,9 @@ dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT(sleuthkit, 4.
5
.0)
AC_INIT(sleuthkit, 4.
6
.0)
m4_include([m4/ax_pthread.m4])
dnl include the version from 1.12.1. This will work for
dnl include the version from 1.12.1. This will work for
m4_include([m4/cppunit.m4])
m4_include([m4/ax_jni_include_dir.m4])
m4_include([m4/ac_prog_javac_works.m4])
...
...
@@ -107,20 +107,20 @@ esac
dnl Add enable/disable option
AC_ARG_ENABLE([java],
[AS_HELP_STRING([--disable-java], [Do not build the java bindings or jar file])])
dnl Checks for libraries.
dnl Some platforms will complain about missing included functions if libstdc++ is not included.
AC_CHECK_LIB(stdc++, main, , AC_MSG_ERROR([missing libstdc++]))
AC_CHECK_HEADERS(list, , , AC_MSG_ERROR([missing STL list class header]))
AC_CHECK_HEADERS(map, , , AC_MSG_ERROR([missing STL map class header]))
AC_CHECK_HEADERS(queue, , , AC_MSG_ERROR([missing STL queue class header]))
AC_CHECK_HEADERS(set, , , AC_MSG_ERROR([missing STL set class header]))
AC_CHECK_HEADERS(stack, , , AC_MSG_ERROR([missing STL stack class header]))
AC_CHECK_HEADERS(streambuf, , , AC_MSG_ERROR([missing STL streambuf class header]))
AC_CHECK_HEADERS(string, , , AC_MSG_ERROR([missing STL string class header]))
AC_CHECK_HEADERS(vector, , , AC_MSG_ERROR([missing STL vector class header]))
AC_CHECK_LIB(stdc++, main, , AC_MSG_ERROR([missing libstdc++]))
AC_CHECK_HEADERS(list, , , AC_MSG_ERROR([missing STL list class header]))
AC_CHECK_HEADERS(map, , , AC_MSG_ERROR([missing STL map class header]))
AC_CHECK_HEADERS(queue, , , AC_MSG_ERROR([missing STL queue class header]))
AC_CHECK_HEADERS(set, , , AC_MSG_ERROR([missing STL set class header]))
AC_CHECK_HEADERS(stack, , , AC_MSG_ERROR([missing STL stack class header]))
AC_CHECK_HEADERS(streambuf, , , AC_MSG_ERROR([missing STL streambuf class header]))
AC_CHECK_HEADERS(string, , , AC_MSG_ERROR([missing STL string class header]))
AC_CHECK_HEADERS(vector, , , AC_MSG_ERROR([missing STL vector class header]))
dnl Check for sqlite and its dependencies
AC_CHECK_HEADERS([sqlite3.h],
...
...
@@ -223,7 +223,7 @@ AS_IF([test "x$with_libewf" != "xno"],
dnl Test the dir if they specified something beyond yes/no
[AS_IF([test "x$with_libewf" != "xyes"],
[AS_IF([test -d ${with_libewf}/include],
[CPPFLAGS="$CPPFLAGS -I${with_libewf}/include"
[CPPFLAGS="$CPPFLAGS -I${with_libewf}/include"
LDFLAGS="$LDFLAGS -L${with_libewf}/lib"],
dnl Dir given was not correct
[AC_MSG_FAILURE([libewf directory not found at ${with_libewf}])])
...
...
@@ -337,7 +337,7 @@ AC_CONFIG_FILES([
tests/Makefile
samples/Makefile
man/Makefile
bindings/java/Makefile
bindings/java/Makefile
bindings/java/jni/Makefile
unit_tests/Makefile
unit_tests/base/Makefile])
...
...
@@ -355,4 +355,3 @@ Features:
Java/JNI support: $ax_java_support
Multithreading: $ax_multithread
]);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment