Make debugtools.h independent from config.h.
This commit is contained in:
parent
4a9c83998c
commit
2663b80f16
|
@ -39,12 +39,12 @@ AC_SUBST(OPTIONS)
|
||||||
|
|
||||||
if test "$DEBUG_MSGS" = "no"
|
if test "$DEBUG_MSGS" = "no"
|
||||||
then
|
then
|
||||||
AC_DEFINE(NO_DEBUG_MSGS, 1, [Define if all debug messages are to be compiled out])
|
OPTIONS="$OPTIONS -DNO_DEBUG_MSGS"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "$TRACE_MSGS" = "no" -o "$DEBUG_MSGS" = "no"
|
if test "$TRACE_MSGS" = "no" -o "$DEBUG_MSGS" = "no"
|
||||||
then
|
then
|
||||||
AC_DEFINE(NO_TRACE_MSGS, 1, [Define if TRACE messages are to be compiled out])
|
OPTIONS="$OPTIONS -DNO_TRACE_MSGS"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl **** Check for some programs ****
|
dnl **** Check for some programs ****
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
* Copyright 2001 Mike McCormack
|
* Copyright 2001 Mike McCormack
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
|
|
@ -427,12 +427,6 @@
|
||||||
/* Define if you have the xpg4 library (-lxpg4). */
|
/* Define if you have the xpg4 library (-lxpg4). */
|
||||||
#undef HAVE_LIBXPG4
|
#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 */
|
/* Define if you have libjpeg including devel headers */
|
||||||
#undef HAVE_LIBJPEG
|
#undef HAVE_LIBJPEG
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
#ifdef __WINE__ /* Debugging interface is internal to Wine */
|
#ifdef __WINE__ /* Debugging interface is internal to Wine */
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include "config.h"
|
|
||||||
#include "windef.h"
|
#include "windef.h"
|
||||||
|
|
||||||
struct _GUID;
|
struct _GUID;
|
||||||
|
|
Loading…
Reference in New Issue