home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / LColorPicker / Sprocket support / BuildConditionals.h next >
Encoding:
Text File  |  1995-08-26  |  1.2 KB  |  56 lines  |  [TEXT/MMCC]

  1. // * ckt note:  I include this here because Sprocket doesn't
  2. //                    seem to come with a copy.  Throw it out
  3. //                    if you have a copy already.
  4.  
  5. /*
  6.     File:        BuildConditionals.h
  7.  
  8.     Contains:    Defines used to control what capabilities are built
  9.  
  10.     Written by: Dave Falkenburg
  11.  
  12.     Copyright:    © 1994 by Dave Falkenburg, all rights reserved.
  13.  
  14.     Change History (most recent first):
  15.      
  16.          <1>    11/12/94    DRF        First checked in.
  17.          <3>      9/9/94    DRF        Conditionalize AOCE support. Assume just a base system for now.
  18.          <2>      9/1/94    DRF        We only run under System 7.0 or later. NOTE: This typically
  19.                                     requires rebuilding precompiled headers.
  20.  */
  21.  
  22. #ifndef    _BUILDCONDITIONALS_
  23. #define    _BUILDCONDITIONALS_
  24.  
  25. #define    SystemSevenOrLater    1
  26. //Commented out by Dave Mark, 12/13/94
  27.  
  28. #ifndef    qDebug
  29. #define    qDebug                        0
  30. #endif
  31.  
  32. #ifndef    qAOCEAware
  33. #define    qAOCEAware                    0
  34. #endif
  35.  
  36. #ifndef    qUseQuickDrawGX
  37. #define    qUseQuickDrawGX                0
  38. #define    qRequireDrawGX                0
  39. #define    qUseQuickDrawGXDebugging    0
  40. #endif
  41.  
  42. #ifndef    qRequireThreadManager
  43. #define    qRequireThreadManager    0
  44. #endif
  45.  
  46. #ifndef    qInlineInputAware
  47. #define    qInlineInputAware    0
  48. #endif
  49.  
  50. #if    qUseQuickDrawGX
  51. //    Tell QuickDrawGX that we use universal headers
  52. #define    ppcinterfaces        1
  53. #endif
  54.  
  55. #endif
  56.