diff options
author | wcohen <wcohen> | 2007-06-29 18:13:49 +0000 |
---|---|---|
committer | wcohen <wcohen> | 2007-06-29 18:13:49 +0000 |
commit | 6b1a02746ee21861ddbd7bb7ccd46d0674904417 (patch) | |
tree | 65b81cc9164aa57073a8d340e0cbe149a3e74e59 /configure | |
parent | 65eebc45d24f5272cc261b815fd1e0e523e3b504 (diff) | |
download | systemtap-steved-6b1a02746ee21861ddbd7bb7ccd46d0674904417.tar.gz systemtap-steved-6b1a02746ee21861ddbd7bb7ccd46d0674904417.tar.xz systemtap-steved-6b1a02746ee21861ddbd7bb7ccd46d0674904417.zip |
PR 4529
* configure.ac:
* Makefile.am: Limit where sqlite3 linked in.
* configure:
* Makefile.in: Regenerate.
* coveragedb.cxx (update_coverage_db): Remove unneeded print.
* coveragedb.cxx (increment_element): Correct formatting.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -6654,9 +6654,8 @@ else stap_LIBS="-ldw -lebl" fi -{ echo "$as_me:$LINENO: stap will link $stap_LIBS" >&5 -echo "$as_me: stap will link $stap_LIBS" >&6;} - +save_LIBS="$LIBS" +LIBS="$stap_LIBS" { echo "$as_me:$LINENO: checking for sqlite3_open in -lsqlite3" >&5 echo $ECHO_N "checking for sqlite3_open in -lsqlite3... $ECHO_C" >&6; } @@ -6728,11 +6727,17 @@ _ACEOF else - { { echo "$as_me:$LINENO: error: missing sqlite development headers/libraries" >&5 + { { echo "$as_me:$LINENO: error: missing sqlite development headers/libraries" >&5 echo "$as_me: error: missing sqlite development headers/libraries" >&2;} { (exit 1); exit 1; }; } fi +stap_LIBS="$LIBS" +LIBS="$SAVE_LIBS" + + +{ echo "$as_me:$LINENO: stap will link $stap_LIBS" >&5 +echo "$as_me: stap will link $stap_LIBS" >&6;} date=`date +%Y-%m-%d` |