- Timestamp:
- 06/27/07 15:40:03 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/branches/2.2/modules/gadgeteer/gadget/gadgetConfig.h
r19729 r20363 48 48 #undef PACKAGE_VERSION 49 49 50 #ifdef _DEBUG 50 /* 51 * If either JUGGLER_DEBUG or _DEBUG is defined, that implies the need for 52 * GADGET_DEBUG. 53 */ 54 #if ! defined(GADGET_DEBUG) && (defined(JUGGLER_DEBUG) || defined(_DEBUG)) 51 55 # define GADGET_DEBUG 52 #else 56 /* If JUGGLER_OPT is defined, make sure that GADGET_OPT is also defined. */ 57 #elif defined(JUGGLER_OPT) && ! defined(GADGET_OPT) 53 58 # define GADGET_OPT 54 59 #endif
