-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable dtrace option as it's not actually implemented properly
(even though advertised by configure). Do not break 3rd party modules that may have DTrace implemented perfectly well. Bump PKGREVISION.
- Loading branch information
Showing
4 changed files
with
37 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
$NetBSD: patch-include_ap__config.h,v 1.1 2013/06/04 22:08:20 fhajny Exp $ | ||
|
||
Non-existent DTrace support from upstream is not a reason to break | ||
3rd party DTrace enabled modules. This patch should be removed | ||
when DTrace support is actually implemented upstream (and working). | ||
|
||
--- include/ap_config.h.orig 2012-08-14 23:59:24.000000000 +0000 | ||
+++ include/ap_config.h | ||
@@ -148,17 +148,7 @@ | ||
#define AP_NONBLOCK_WHEN_MULTI_LISTEN 1 | ||
#endif | ||
|
||
-#if defined(AP_ENABLE_DTRACE) && HAVE_SYS_SDT_H | ||
-#include <sys/sdt.h> | ||
-#else | ||
-#undef _DTRACE_VERSION | ||
-#endif | ||
- | ||
-#ifdef _DTRACE_VERSION | ||
-#include "apache_probes.h" | ||
-#else | ||
#include "apache_noprobes.h" | ||
-#endif | ||
|
||
/* If APR has OTHER_CHILD logic, use reliable piped logs. */ | ||
#if APR_HAS_OTHER_CHILD |