This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug documentation/5538] configure: error: missing elfutils development headers/libraries (dw 0.123+)


------- Additional Comments From davh at davh dot dk  2008-01-03 14:15 -------
Forgot the stupid double include in the actual include:
diff --git a/configure.ac b/configure.ac
index d2a150b..af84e92 100644
--- a/configure.ac
+++ b/configure.ac
@@ -109,10 +109,10 @@ if test $build_elfutils = no; then
   # Need libdwfl-capable recent elfutils from Fedora
   save_LIBS="$LIBS"
   AC_CHECK_LIB(dw, dwfl_module_getsym,,[
-    AC_MSG_ERROR([missing elfutils development headers/libraries (dw 0.123+)])])
+    AC_MSG_ERROR([missing elfutils development headers/libraries (dw
0.123+)])], -lelf -lebl -ldw)
   AC_CHECK_LIB(ebl, ebl_openbackend,,[
-    AC_MSG_ERROR([missing elfutils development headers/libraries (ebl 0.123+)])])
-  stap_LIBS="$LIBS"
+    AC_MSG_ERROR([missing elfutils development headers/libraries (ebl
0.123+)])], -lelf -ldw)
+  stap_LIBS="$LIBS -lelf $LIBS"
   LIBS="$SAVE_LIBS"
 else
   # We built our own and stap_LDFLAGS points at the install.


-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=5538

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]