Skip to content

Commit

Permalink
3105539: sqlite compile issues because pthread and ldl were needed
Browse files Browse the repository at this point in the history
  • Loading branch information
bcarrier committed Dec 31, 2010
1 parent d530bcc commit 5855a5e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions NEWS.txt
Expand Up @@ -4,6 +4,7 @@ Numbers refer to SourceForge.net tracker IDs:
---------------- VERSION 3.2.1 --------------
Bug Fixes
- 3108272: fls arguments for -d and -u
- 3105539: compile error issues because of SQlite and pthreads

New Features:
- A single dummy entry is added to the SQlite DB if no volume exists
Expand Down
4 changes: 4 additions & 0 deletions configure.ac
Expand Up @@ -11,6 +11,7 @@ AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE([foreign])
AM_PROG_LIBTOOL
AM_MAINTAINER_MODE
AC_CONFIG_MACRO_DIR([m4])

# Checks for programs.
AC_PROG_CXX
Expand Down Expand Up @@ -124,6 +125,9 @@ AS_IF([test "x$with_libewf" != "xno"],
)]
)

# sqlite requires pthread libraries - this was copied from its configure.ac
AC_SEARCH_LIBS(pthread_create, pthread)
AC_SEARCH_LIBS(dlopen, dl)

AC_CONFIG_COMMANDS([tsk3/tsk_incs.h],
[
Expand Down

0 comments on commit 5855a5e

Please sign in to comment.