1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
From: =?utf-8?q?S=C3=A9bastien_Villemot?= <sebastien@debian.org>
Date: Wed, 7 Aug 2024 04:11:53 +0200
Subject: Fix detection of callback library
Forwarded: no
Last-Update: 2017-11-09
The callback library is now embedded in libffcall, and the symbol names have
changed, hence fix the configure test.
Last-Update: 2017-11-09
configure.in | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/configure.in b/configure.in
index 0ace885..ffcc4d1 100644
@@ -77,9 +77,9 @@ dnl ---------------
dnl Ffcall callback
dnl ---------------
-AC_CHECK_LIB(callback,
- alloc_trampoline_r,,
- AC_MSG_ERROR([can't find callback library.]))
+AC_CHECK_LIB(ffcall,
+ callback_trampoline_alloc,,
+ AC_MSG_ERROR([can't find ffcall library.]))
dnl Header
|