diff options
author | Günther Deschner <gdeschner@redhat.com> | 2013-03-07 23:07:55 +0100 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2013-03-14 13:42:50 -0400 |
commit | 25e52de4cacb3b2bb96475bbb90d9f518bcc1127 (patch) | |
tree | 92fc56bbb542c3476f244cb27dae2d9a5b3dad33 /proxy/conf_macros.m4 | |
parent | 9fd4d3a355fefcf1c903502102e2e6407ae5f6dd (diff) | |
download | gss-proxy-25e52de4cacb3b2bb96475bbb90d9f518bcc1127.tar.gz gss-proxy-25e52de4cacb3b2bb96475bbb90d9f518bcc1127.tar.xz gss-proxy-25e52de4cacb3b2bb96475bbb90d9f518bcc1127.zip |
mechglue: add trace debugging
This is enabled via --with-gssidebug.
Signed-off-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'proxy/conf_macros.m4')
-rw-r--r-- | proxy/conf_macros.m4 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/proxy/conf_macros.m4 b/proxy/conf_macros.m4 index 3f7a81b..a0575f8 100644 --- a/proxy/conf_macros.m4 +++ b/proxy/conf_macros.m4 @@ -219,3 +219,17 @@ AC_DEFUN([WITH_CC_PATH], AC_DEFINE_UNQUOTED(CCACHE_PATH, "$config_ccpath", [Where to store ccache files for gssproxy]) ]) +AC_DEFUN([WITH_GSSIDEBUG], + [ AC_ARG_WITH([gssidebug], + [AC_HELP_STRING([--with-gssidebug], + [Whether to build with interposer debugging support [no]] + ) + ], + [], + with_gssidebug=no + ) + if test x"$with_gssidebug" = xyes; then + AC_DEFINE_UNQUOTED(GSSI_DEBUGGING, 1, [Build with interposer debugging support]) + fi + ]) + |