CVS: winex configure.ac,1.100,1.101
| Newsgroups | gmane.comp.emulators.winex.cvs |
|---|---|
| Message-ID | <[email protected]> |
Subject: winex configure.ac,1.100,1.101Update of /var/lib/cvsd/cvsroot/winex In directory agravaine:/tmp/cvs-serv19224 Modified Files: configure.ac Log Message: - make config.h include-guarded - include config.h in include/wine/debug.h to ensure that all channels get disabled when desired - fix build error in twain that shows up now that it actually tries to detect SANE support (hah!) due to config.h getting included via debug.h Index: configure.ac =================================================================== RCS file: /var/lib/cvsd/cvsroot/winex/configure.ac,v retrieving revision 1.100 retrieving revision 1.101 diff -u -d -r1.100 -r1.101 --- configure.ac 30 Mar 2007 20:23:33 -0000 1.100 +++ configure.ac 30 Mar 2007 20:33:34 -0000 1.101 @@ -2058,7 +2058,10 @@ AC_DEFUN([WINE_CONFIG_EXTRA_DIR], [AC_CONFIG_COMMANDS([$1],[test -d "$1" || (AC_MSG_NOTICE([creating $1]) && mkdir "$1")])]) -AH_TOP([#define __WINE_CONFIG_H]) +AH_TOP([#ifndef __WINE_CONFIG_H +#define __WINE_CONFIG_H]) + +AH_BOTTOM([#endif /* __WINE_CONFIG_H */]) WINE_CONFIG_EXTRA_DIR(dlls/ddraw/d3ddevice) WINE_CONFIG_EXTRA_DIR(dlls/ddraw/dclipper)