Make debugtools.h independent from config.h.

This commit is contained in:
François Gouget 2001-11-06 19:01:05 +00:00 committed by Alexandre Julliard
parent 4a9c83998c
commit 2663b80f16
5 changed files with 374 additions and 385 deletions

746
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -39,12 +39,12 @@ AC_SUBST(OPTIONS)
if test "$DEBUG_MSGS" = "no"
then
AC_DEFINE(NO_DEBUG_MSGS, 1, [Define if all debug messages are to be compiled out])
OPTIONS="$OPTIONS -DNO_DEBUG_MSGS"
fi
if test "$TRACE_MSGS" = "no" -o "$DEBUG_MSGS" = "no"
then
AC_DEFINE(NO_TRACE_MSGS, 1, [Define if TRACE messages are to be compiled out])
OPTIONS="$OPTIONS -DNO_TRACE_MSGS"
fi
dnl **** Check for some programs ****

View File

@ -2,6 +2,8 @@
* Copyright 2001 Mike McCormack
*/
#include "config.h"
#include <string.h>
#include <stdio.h>
#include <fcntl.h>

View File

@ -427,12 +427,6 @@
/* Define if you have the xpg4 library (-lxpg4). */
#undef HAVE_LIBXPG4
/* Define if all debug messages are to be compiled out */
#undef NO_DEBUG_MSGS
/* Define if TRACE messages are to be compiled out */
#undef NO_TRACE_MSGS
/* Define if you have libjpeg including devel headers */
#undef HAVE_LIBJPEG

View File

@ -5,7 +5,6 @@
#ifdef __WINE__ /* Debugging interface is internal to Wine */
#include <stdarg.h>
#include "config.h"
#include "windef.h"
struct _GUID;