1
0
Fork 0

Enable/Disable support for debugger and screenshots

Bettter checks for libpng and libcurses
Removal of settings.h file


Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@733
This commit is contained in:
Sjoerd van der Berg 2003-03-10 14:30:27 +00:00
parent 359aca11f3
commit 8de6c90eb3
3 changed files with 44 additions and 7 deletions

View file

@ -180,7 +180,9 @@ AH_TOP([
*/
])
AH_TEMPLATE([C_HAS_ATTRIBUTE],[Determines if the compilers supports attributes for structures])
AH_TEMPLATE([C_HAS_ATTRIBUTE],[Determines if the compilers supports attributes for structures.])
AH_TEMPLATE([C_DEBUG],[Enable the internal debugger.])
AH_TEMPLATE([C_SSHOT],[Enable the screenshot support.])
AH_BOTTOM([#define INLINE inline])
@ -190,5 +192,18 @@ AH_BOTTOM([#if C_HAS_ATTRIBUTE
#define GCC_ATTRIBUTE(x) /* attribute not supported */
#endif])
AH_BOTTOM([
/* Enable some heavy debugging options */
#define C_HEAVY_DEBUG 0
/* Enable some big compile-time increasing inlines */
#define C_EXTRAINLINE 0
/* Enable the FPU module, still only for beta testing */
#define C_FPU 0
/* Maximum memory address range in megabytes */
#define C_MEM_MAX_SIZE 12
])