shanewfx / google-glog

Automatically exported from code.google.com/p/google-glog
Other
0 stars 0 forks source link

libunwind is not detected on Debian squeeze #42

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Package libunwind7-dev has been installed with 'apt-get install' on Debian 
testing, but google-glog failed to detect that library.

One possible fix:

--- glog-0.3.0/configure.ac     2009-07-30 12:21:16.000000000 +0000
+++ configure.ac        2010-03-19 18:02:20.000000000 +0000
@@ -34,7 +34,7 @@
 # For backtrace with glibc.
 AC_CHECK_HEADERS(execinfo.h)
 # For backtrace with libunwind.
-AC_CHECK_HEADERS(libunwind.h)
+AC_CHECK_HEADERS(libunwind.h, ac_cv_have_libunwind_h=1, 
ac_cv_have_libunwind_h=0)
 AC_CHECK_HEADERS(ucontext.h)
 AC_CHECK_HEADERS(sys/utsname.h)
 AC_CHECK_HEADERS(pwd.h)

Original issue reported on code.google.com by giantc...@gmail.com on 19 Mar 2010 at 6:14

GoogleCodeExporter commented 9 years ago
Thanks for your report and fix! Could you sign our Individual Contributor 
License 
Agreement, please? We need to ask you to sign this to avoid any troubles. The 
process 
is just submitting an HTML form, and it shouldn't take your time so much.

http://code.google.com/legal/individual-cla-v1.0.html

Original comment by shinichi...@gmail.com on 7 Apr 2010 at 6:57

GoogleCodeExporter commented 9 years ago
Hi, I have signed the Agreement.

Original comment by giantc...@gmail.com on 8 Apr 2010 at 11:55

GoogleCodeExporter commented 9 years ago
Fixed in http://code.google.com/p/google-glog/source/detail?r=84

Thanks for your patch!

Original comment by shinichi...@gmail.com on 28 May 2010 at 3:46