diff options
author | hunt <hunt> | 2007-10-12 19:33:14 +0000 |
---|---|---|
committer | hunt <hunt> | 2007-10-12 19:33:14 +0000 |
commit | 7651c16b0e3d7dba7265be5e83720e324bdf64b0 (patch) | |
tree | 1ec6a256abd86ca6d050f04d006aa2967d1625f7 | |
parent | 9f0fad2a3b83e38749b98639ff240609ef2a1bad (diff) | |
download | systemtap-steved-7651c16b0e3d7dba7265be5e83720e324bdf64b0.tar.gz systemtap-steved-7651c16b0e3d7dba7265be5e83720e324bdf64b0.tar.xz systemtap-steved-7651c16b0e3d7dba7265be5e83720e324bdf64b0.zip |
2007-10-12 Martin Hunt <hunt@redhat.com>
* Makefile.am (staprun_LDADD): Add -lpthread.
* Makefile.in: Rebuilt.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | Makefile.in | 4 |
3 files changed, 9 insertions, 4 deletions
@@ -1,3 +1,8 @@ +2007-10-12 Martin Hunt <hunt@redhat.com> + + * Makefile.am (staprun_LDADD): Add -lpthread. + * Makefile.in: Rebuilt. + 2007-10-11 Frank Ch. Eigler <fche@elastic.org> * systemtap.spec.in: Make -testsuite subrpm require dejagnu. diff --git a/Makefile.am b/Makefile.am index 7e28591c..2da4da73 100644 --- a/Makefile.am +++ b/Makefile.am @@ -55,9 +55,9 @@ staprun_SOURCES = runtime/staprun/staprun.c runtime/staprun/staprun_funcs.c\ runtime/staprun/ctl.c runtime/staprun/common.c \ runtime/staprun/cap.c runtime/staprun/symbols.c -staprun_CPPFLAGS = $(AM_CPPFLAGS) -DSINGLE_THREADED +staprun_CPPFLAGS = $(AM_CPPFLAGS) staprun_CFLAGS = @PROCFLAGS@ $(AM_CFLAGS) -staprun_LDADD = @PROCFLAGS@ @cap_LIBS@ +staprun_LDADD = @PROCFLAGS@ @cap_LIBS@ -lpthread stapio_SOURCES = runtime/staprun/stapio.c \ runtime/staprun/mainloop.c runtime/staprun/common.c \ diff --git a/Makefile.in b/Makefile.in index 193e021a..77e5be8d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -283,9 +283,9 @@ staprun_SOURCES = runtime/staprun/staprun.c runtime/staprun/staprun_funcs.c\ runtime/staprun/ctl.c runtime/staprun/common.c \ runtime/staprun/cap.c runtime/staprun/symbols.c -staprun_CPPFLAGS = $(AM_CPPFLAGS) -DSINGLE_THREADED +staprun_CPPFLAGS = $(AM_CPPFLAGS) staprun_CFLAGS = @PROCFLAGS@ $(AM_CFLAGS) -staprun_LDADD = @PROCFLAGS@ @cap_LIBS@ +staprun_LDADD = @PROCFLAGS@ @cap_LIBS@ -lpthread stapio_SOURCES = runtime/staprun/stapio.c \ runtime/staprun/mainloop.c runtime/staprun/common.c \ runtime/staprun/ctl.c \ |