summaryrefslogtreecommitdiffstats
path: root/configure
Commit message (Collapse)AuthorAgeFilesLines
* Enable Kbuild-like quiet buildsJosh Stone2009-10-221-0/+18
| | | | | | | | This enables much cleaner build output from automake. To re-enable the verbose commands, pass --disable-silent-rules to configure, or use V=1 at make time. * configure.ac: Enable AM_SILENT_RULES by default.
* Updated checking for grapher dependencies.David Smith2009-10-151-253/+522
| | | | | | | | | | | | * configure.ac: Made sure nss includes will error even if only 1 header isn't usable. Added grapher dependencies gtkmm and boost headers. * Makefile.in: Regenerated. * config.in: Ditto. * configure: Ditto. * doc/Makefile.in: Ditto. * doc/SystemTap_Tapset_Reference/Makefile.in: Ditto. * grapher/Makefile.am: Use libglade CFLAGS/LIBS. * grapher/Makefile.in: Regenerated.
* Added man page for stapgraphTim Moore2009-10-071-1/+2
| | | | * grapher/stapgraph.1.in: new file
* Grapher support now also needs libglademm24-devel, version 2.6.7 or higher.Mark Wielaard2009-10-011-2/+2
| | | | | * configure.ac: Clarify fail/help string when gtkmm support wasn't found. * configure: Regenerated.
* doc build: support older xmlto without --stringparm optionFrank Ch. Eigler2009-09-301-9/+45
| | | | | * configure.ac: Check for xmlto --stringparam support. * doc/Systemtap_Tapset_Reference/Makefile.am: Be sensitive to the result.
* Add graph data chooser window, based on gladeTim Moore2009-09-301-8/+8
| | | | | | | | | | | | | * configure.ac: Test for libglademm * grapher/GraphWidget.hxx (DataModelColumns): new class (onDataDialogCancel, void onDataAdd, onDataRemove, onDataDialogOpen): new methods * grapher/GraphWidget.cxx: ditto; methods for the graph data dialog. * grapher/graph-dialog.glade: New file. * grapher/graph-dialog.gladep: New file. * grapher/Makefile.am (dist_pkgdata_DATA): add graph-dialog.glade to installation. * grapher/GraphWidget.cxx (GraphWidget constructor): Use PKGDATADIR
* build fix: use boost shared_ptr if libstdc++ to old to have <tr1/memory>Frank Ch. Eigler2009-09-291-0/+302
| | | | | | * configure.ac: Look for tr1/memory and boost/shared_ptr.hpp * setupdwfl.h (shared_ptr): Define conditionally based on above. * systemtap.spec (with_boost): New parameter, default-off.
* tapset docs cleanupFrank Ch. Eigler2009-09-291-1/+1
| | | | | | | | | | | | | | Several problems: some invalid <command> etc. directives in the tapset embedded docs; some analysis about the non-generation of the pdf; some cleanup of the generated man pages. * configure.ac (BUILD_PDFREFDOCS): Correct condition typo, but still leave disabled. * doc/SystemTap_Tapset_Reference/Makefile.am (XMLTOMANPARMS): Add, to disable noise "AUTHORS" / "COPYRIGHT" sections. * tapset/*.stp: Removed several docbook-y markup that is not valid in kerneldoc.
* Better grapher option handling.David Smith2009-09-231-27/+34
| | | | | | * configure.ac: Don't check for gtkmm if '--disable-grapher' was used. Also, error if '--enable-grapher' was used but gtkmm isn't installed. * configure: Regenerated.
* Fix configure on systems without 'gcc -fgnu89-inline' support (rhel4).David Smith2009-09-231-1/+45
| | | | | | * configure.ac: Only compile elfutils with '-fgnu89-inline' if the compiler actually supports it. * configure: Regenerated.
* Version bumps for the 1.0 releaseJosh Stone2009-09-221-2144/+2497
|
* 2009-09-14 Dave Brolley <brolley@redhat.com>Dave Brolley2009-09-141-2488/+2135
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * modsign.cxx (init_cert_db_path): Use 'system' call. (sign_module): Renamed to 'main'. This is now an independant program. Check for arguments. Return 1 on error. * buildrun.cxx (modsign.h): Don't #include it. (compile_pass): Don't sign the module. * main.cxx (main): Don't copy the module signature. * cache.cxx (add_to_cache): Don't cache the module signature. * Makefile.am (bin_PROGRAMS): Add stap-sign-module. (stap_SOURCES): Remove modsign.cxx and nsscommon.c. (stap_sign_module_SOURCES): New variable. (stap_sign_module_CPPFLAGS): New variable. (stap_sign_module_LDFLAGS): New variable. (stap_sign_module_LDADD): New variable. * stap-server (initialization): Initialize unprivileged. (parse_options): Handle --unprivileged. (create_response): Call stap-sign-module if --unprivileged was specified. * systemtap.spec: Add stap-sign-module to stap-server. * Makefile.in: Regenerated. * doc/Makefile.in: Regenerated. * doc/SystemTap_Tapset_Reference/Makefile.in: Regenerated. * grapher/Makefile.in: Regenerated. * testsuite/Makefile.in: Regenerated. * aclocal.m4: Likewise. * testsuite/aclocal.m4: Likewise. * configure: Likewise. * testsuite/configure: Likewise.
* elfutils build tweak: run nested configure with bash, add -fgnu89-inlineFrank Ch. Eigler2009-08-181-2057/+3846
| | | | | * configure.ac: Tweak --with-elfutils nested configure invocation. * rest of auto* files: regenerated with fedora-11 tools
* Do not use plain [] in help string in configure.acEugeniy Meshcheryakov2009-08-071-3846/+2057
| | | | This confuses Debian's automake.
* Version bumps for the 0.9.9 releaseJosh Stone2009-08-041-10/+10
|
* Support for presenting multiple graphsTim Moore2009-07-281-189/+291
| | | | | | | | | | | | | | | | | | | | * grapher/Graph.hxx: New file; class for single graph display. * grapher/Graph.cxx: New file. * grapher/GraphData.hxx: Associate title and axis labels with graph data and not a graph display. * grapher/GraphWidget.hxx: Move graph-related members to Graph class. * grapher/GraphWidget.cxx (getExtents, setExtents): Move to Graph class (on_expose_event): Move graph rendering to Graph. (on_button_press_event): Delegate to Graph. (on_motion_notify_event, on_scroll_event): Modify "active" graph. * grapher/StapParser.cxx (findTaggedValue): New parsing helper function. (io_callback): Support new syntax where properties are attached to graph data and not the entire graph. * grapher/grapher.cxx (GrapherWindow): Don't set graph values. * grapher/Makefile.am: Add Graph.cxx. * testsuite/systemtap.examples/general/grapher.stp: New property syntax.
* PR10399 dtrace should obey prefix install pathMark Wielaard2009-07-151-0/+4
| | | | | | | * dtrace: Renamed to... * dtrace.in: Add -I@prefix/include to gcc invocation. * configure.ac (AC_CONFIG_FILES): List dtrace. * configure: Regenerated.
* Version bumps for the 0.9.8 releaseJosh Stone2009-06-111-10/+10
|
* PR10209: extend configury for --disable-translatorElliott Baron2009-06-051-4/+43
| | | | | | | | | | | | * configure.ac: Added --disable-translator feature, creates AM_CONDITIONAL BUILD_TRANSLATOR. * Makefile.am: Only build runtime components (staprun, stapio) if BUILD_TRANSLATOR == FALSE. * configure: Regenerated. * Makefile.in: Likewise. * aclocal.m4: Likewise. * config.in: Likewise. * doc/Makefile.in: Likewise. * doc/SystemTap_Tapset_Reference/Makefile.in: Likewise. * grapher/Makefile.in: Likewise.
* Suggest rpms to install using debuginfo-install.William Cohen2009-05-271-13/+476
| | | | | | | | | The patch makes use of the RPM libraries to determine which rpm supplied the executable and from that information suggest a command to install the appropriate debuginfo rpm. This is enabled using the "--with-rpm" option for configure. Can be explicitly disabled with "--without-rpm".
* Move dfwlpp into its own fileJosh Stone2009-05-121-1897/+2149
| | | | | It's not a terribly clean split, but moving it helps reveals some of the knots that need to be untangled.
* Correct typo in BUILD_SERVER test in configure.ac.Dave Brolley2009-05-111-2150/+1898
|
* Check whether certutil as provided by nss-tools is installed.Mark Wielaard2009-05-081-25/+60
| | | | | | | | | | | * configure.ac: Add check for certuril, don't build nss stap server when not found. * Makefile.in: Regenerated. * aclocal.m4: Likewise. * configure: Likewise. * doc/Makefile.in: Likewise. * doc/SystemTap_Tapset_Reference/Makefile.in: Likewise. * grapher/Makefile.in: Likewise.
* Run autoreconfEugeniy Meshcheryakov2009-05-061-2/+41
|
* run autoreconfEugeniy Meshcheryakov2009-05-061-16/+36
|
* Run autoreconfEugeniy Meshcheryakov2009-05-051-1892/+2115
|
* Module signing and verification using a separate file for the module signature.Dave Brolley2009-05-041-2117/+1895
|
* Version bumps for 0.9.7 releaseJosh Stone2009-04-231-10/+10
|
* Version bumps for 0.9.6 releaseJosh Stone2009-04-231-10/+10
|
* Finish moving grapher into a subdirectoryTim Moore2009-04-201-3/+226
| | | | | | | | | | * configure.ac (GRAPHER): Configuration prefix for variables defined by PKG_CHECK_MODULES macro. (BUILD_GRAPHER): New conditional variable (enable-grapher): New option (AC_CONFIG_FILES): Add grapher/Makefile * Makefile.am (SUBDIRS): Add grapher * grapher/Makefile.am: New file
* Move grapher to subdirectoryTim Moore2009-04-201-238/+2
|
* graphing widget and test harnessTim Moore2009-04-151-0/+236
|
* PR9953: split up the two process.* tapsetsJosh Stone2009-04-141-2/+2
| | | | | | | The overlapping process.* tapsets are now separated. Those probe points documented in stapprobes(3stap) remain the same. Those that were formerly in stapprobes.process(3stap) have been renamed to kprocess, to reflect their kernel perspective on processes.
* Really fix run-stap this time, I promise!Josh Stone2009-04-021-42/+0
|
* Fix the magic run-stap wrappers even moreJosh Stone2009-04-011-3/+3
|
* Fix sudo magic wrappers for run-stap devel script.Roland McGrath2009-04-011-0/+46
|
* hand-regen configure after commit 99c0acad yxmlto->xmlto typo fixFrank Ch. Eigler2009-03-291-2/+2
|
* Version bumps for 0.9.5 releaseJosh Stone2009-03-271-1804/+2062
|
* Update configure --help message now that default is changedRajan Arora2009-03-251-1/+1
| | | | | *configure.ac: Update help message for building with pie support. *configure: Regenerate.
* PR 9922 fix, make --disable-pie the configure defaultRajan Arora2009-03-241-1/+2
| | | | | | | *configure.ac: Change the default to compiling without fPIE. *systemtap.spec: Add --enable-pie as the default option (set pie_supported to 1). *configure: Regenerated with autoconf 2.61.
* Move man pages from man5 to man3 (3stap).Will Cohen2009-03-241-17/+17
|
* version bump to 0.9 throughoutFrank Ch. Eigler2009-02-171-10/+10
|
* fixing configury version driftFrank Ch. Eigler2009-02-171-3335/+3839
|
* Move sdt.h to includes/sys and use in tests.Mark Wielaard2009-02-171-4677/+3916
|
* PR 9716, replaced pkgconfig checks with AC macros in configure.ac for server ↵Elliott Baron2009-02-171-213/+348
| | | | deps.
* PR6936: Add systemtap initscript and systemtap-initscript subpackage.Masami Hiramatsu2009-01-301-1/+2
|
* Check for version.h.in for elfutils < 0.138.Mark Wielaard2009-01-261-2/+5
|
* Use install-pkgincludeHEADERS for elfutils configure build step.Mark Wielaard2009-01-231-4/+4
|
* Use make -k install-data for elfutils.Mark Wielaard2009-01-231-1/+4
|
* 2009-01-22 David Smith <dsmith@redhat.com>David Smith2009-01-221-1/+1
| | | | | | | | | * systemtap.spec: Added 'nss-devel' buildreq so that the 'client' subpackage could be built correctly. Added file-based buildreq for xmlto's pdf support, which works on f8, f9, f9, and rhel5. * configure.ac: Fixed typo. * configure: Regenerated.