OSDN Git Service
(root)
/
android-x86
/
external-bluetooth-bluez.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c0b7506
)
build: Check for clock_gettime and pthread_create
author
Marcel Holtmann
<marcel@holtmann.org>
Mon, 2 Sep 2013 18:25:54 +0000
(11:25 -0700)
committer
Marcel Holtmann
<marcel@holtmann.org>
Mon, 2 Sep 2013 18:25:54 +0000
(11:25 -0700)
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index
a6a214b
..
050d30d
100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-40,6
+40,12
@@
AC_ARG_ENABLE(threads, AC_HELP_STRING([--enable-threads],
AC_CHECK_FUNC(signalfd, dummy=yes,
AC_MSG_ERROR(signalfd support is required))
+AC_CHECK_FUNC(clock_gettime, dummy=yes,
+ AC_MSG_ERROR(realtime clock support is required))
+
+AC_CHECK_LIB(pthread, pthread_create, dummy=yes,
+ AC_MSG_ERROR(posix thread support is required))
+
AC_CHECK_LIB(dl, dlopen, dummy=yes,
AC_MSG_ERROR(dynamic linking loader is required))