Control seamless debug output via configure.

git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@1409 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Pierre Ossman 2007-06-13 14:53:32 +00:00
parent b9ec200b2c
commit d201361d53
2 changed files with 8 additions and 2 deletions

View File

@ -830,6 +830,14 @@ AC_ARG_WITH(debug-channel,
fi
])
AC_ARG_WITH(debug-seamless,
[ --with-debug-seamless enable debugging of SeamlessRDP code],
[
if test $withval != "no";
then
AC_DEFINE(WITH_DEBUG_SEAMLESS,1)
fi
])
AC_ARG_WITH(debug-smartcard,
[ --with-debug-smartcard enable debugging of smart-card code],

View File

@ -22,8 +22,6 @@
#include <stdarg.h>
#include <assert.h>
/* #define WITH_DEBUG_SEAMLESS */
#ifdef WITH_DEBUG_SEAMLESS
#define DEBUG_SEAMLESS(args) printf args;
#else