1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
|
/*
File: MoreSetup.h
Contains: Sets up conditions etc for MoreIsBetter.
Written by: Pete Gontier
Copyright: Copyright (c) 1998-2001 by Apple Computer, Inc., All Rights Reserved.
Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Computer, Inc.
("Apple") in consideration of your agreement to the following terms, and your
use, installation, modification or redistribution of this Apple software
constitutes acceptance of these terms. If you do not agree with these terms,
please do not use, install, modify or redistribute this Apple software.
In consideration of your agreement to abide by the following terms, and subject
to these terms, Apple grants you a personal, non-exclusive license, under Apples
copyrights in this original Apple software (the "Apple Software"), to use,
reproduce, modify and redistribute the Apple Software, with or without
modifications, in source and/or binary forms; provided that if you redistribute
the Apple Software in its entirety and without modifications, you must retain
this notice and the following text and disclaimers in all such redistributions of
the Apple Software. Neither the name, trademarks, service marks or logos of
Apple Computer, Inc. may be used to endorse or promote products derived from the
Apple Software without specific prior written permission from Apple. Except as
expressly stated in this notice, no other rights or licenses, express or implied,
are granted by Apple herein, including but not limited to any patent rights that
may be infringed by your derivative works or by other works in which the Apple
Software may be incorporated.
The Apple Software is provided by Apple on an "AS IS" basis. APPLE MAKES NO
WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED
WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN
COMBINATION WITH YOUR PRODUCTS.
IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION
OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, TORT
(INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Change History (most recent first):
$Log: MoreSetup.h,v $
Revision 1.14 2002/11/08 22:43:02 eskimo1
A bunch of key changes. We no longer include <Carbon/Carbon.h> in the Mach-O builds, which means that individual MoreIsBetter modules can decide what frameworks they're dependent on. Also changed MoreIsBetter to use the standard C assert mechanism.
Revision 1.13 2001/11/07 15:55:15 eskimo1
Tidy up headers, add CVS logs, update copyright.
<12> 21/9/01 Quinn Fix CF framework includes workaround.
<11> 21/9/01 Quinn Changes for CWPro7 Mach-O build.
<10> 15/2/01 Quinn MoreIsBetter now requires UI 3.4 (pre-release) or later.
<9> 8/2/01 Quinn Modern versions of MIB require UI 3.3.2 or higher.
<8> 22/11/00 Quinn Switch to "MacErrors.h".
<7> 22/4/99 Quinn Add a check for the Universal Interfaces version. MoreIsBetter
requires Universal Interfaces 3.2 or higher (because many of its
component parts do).
<6> 2/11/99 PCG add comments because Andy rightfully pointed out my original
attempts sucked; also, remove some excessive TARGET_CARBON
gymnastics
<5> 1/22/99 PCG TARGET_CARBON
<4> 11/11/98 PCG fix header
<3> 11/10/98 PCG separate change histories
<2> 10/11/98 Quinn Convert "MorePrefix.h" to "MoreSetup.h".
<1> 10/11/98 Quinn Changed name from "MorePrefix.h" to "MoreSetup.h".
Start of "MorePrefix.h" change history (most recent first):
<3> 5/11/98 Quinn Use MoreAssertQ instead of MoreAssert.
<2> 7/24/98 PCG rid of triplet #includes
<2> 6/23/98 PCG add copyright disclaimer stuff
<1> 6/23/98 PCG initial checkin
*/
#pragma once
//
// We never want to use old names or locations.
// Since these settings must be consistent all the way through
// a compilation unit, and since we don't want to silently
// change them out from under a developer who uses a prefix
// file (C/C++ panel of Target Settings), we simply complain
// if they are already set in a way we don't like.
//
#ifndef OLDROUTINELOCATIONS
#define OLDROUTINELOCATIONS 0
#elif OLDROUTINELOCATIONS
#error OLDROUTINELOCATIONS must be FALSE when compiling MoreIsBetter.
#endif
#ifndef OLDROUTINENAMES
#define OLDROUTINENAMES 0
#elif OLDROUTINENAMES
#error OLDROUTINENAMES must be FALSE when compiling MoreIsBetter.
#endif
//
// The next statement sets up the various TARGET_xxx
// variables needed later in this file.
//
#include <TargetConditionals.h>
//
// "TargetConditionals.h" on Mac OS X doesn't define
// TARGET_API_MAC_CARBON, which is kinda annoying. So,
// if we're building for Mach-O and it hasn't been set,
// set it. All Mach-O builds are inherently Carbon builds.
//
// Note that we *have* to set TARGET_API_MAC_CARBON because
// MoreIsBetter code tests it. However, we also want to set
// the other values because otherwise GCC won't use its
// precompiled header. I thought about fixing this by
// including <ConditionalMacros.h> via <CoreServices/CoreServices.h>,
// but the whole goal of using <TargetConditionals.h> was to
// allow MoreIsBetter projects to have no dependencies on
// frameworks beyond System.framework.
//
#if TARGET_RT_MAC_MACHO
#define TARGET_API_MAC_OS8 0
#define TARGET_API_MAC_CARBON 1
#define TARGET_API_MAC_OSX 1
#endif
//
// We need a master conditional to determine whether to use
// framework notation to reference include files. There is
// no good way to determine whether the source tree
// is using framework includes or not, so we make a guess and
// say that Mach-O implies framework includes. However,
// if you're building CFM with framework includes (which is
// possible, although somewhat tricky), you'll have to
// override this.
//
#if !defined(MORE_FRAMEWORK_INCLUDES)
#if TARGET_RT_MAC_MACHO
#define MORE_FRAMEWORK_INCLUDES 1
#else
#define MORE_FRAMEWORK_INCLUDES 0
#endif
#endif
//
// The following works around a problem in <CoreFoundation/CFBase.h>
// in Mac OS X. CF is assuming that the CW Mach-O compiler
// would not use framework includes, which is not the case for the
// CWPro7 and later compilers. We only do this for the CW build
// because otherwise the presence of the define prevents Project Builder
// from using Carbon's precompiled header.
//
#if MORE_FRAMEWORK_INCLUDES
#if defined(__MWERKS__)
#if !defined(__CF_USE_FRAMEWORK_INCLUDES__)
#define __CF_USE_FRAMEWORK_INCLUDES__ 1
#endif
#endif
#endif
//
// Previouly we would bring in <MacErrors.h> at this point.
// However, that's somewhat counter to the idea behind flat
// includes, so I've eliminated it.
//
//
// Now that we've included a Mac OS interface file,
// we know that the Universal Interfaces environment
// is set up. MoreIsBetter requires Universal Interfaces
// 3.4 or higher. Check for it. Of course, "TargetConditionals.h"
// on Mac OS X doesn't set UNIVERSAL_INTERFACES_VERSION, so
// we only check this if we're not using framework includes.
//
#if !MORE_FRAMEWORK_INCLUDES
#if !defined(UNIVERSAL_INTERFACES_VERSION) || UNIVERSAL_INTERFACES_VERSION < 0x0341
#error MoreIsBetter requires Universal Interfaces 3.4.1 or higher.
#endif
#endif
//
// We usually want assertions and other debugging code
// turned on, but you can turn it all off if you like
// by setting MORE_DEBUG to 0. Also, now that we use
// the standard C assertion mechanism, we default to
// have MORE_DEBUG off if NDEBUG is set.
//
#if !defined(MORE_DEBUG)
#if defined(NDEBUG)
#define MORE_DEBUG 0
#else
#define MORE_DEBUG 1
#endif
#endif
//
// We now use standard C assertions throughout MoreIsBetter.
// Previously we would declare two custom assertion macros,
// MoreAssert and MoreAssertQ.
//
// Our assertion macros compile down to nothing if
// MORE_DEBUG is not true. MoreAssert produces a
// value indicating whether the assertion succeeded
// or failed. MoreAssertQ is Quinn's flavor of
// MoreAssert which does not produce a value.
//
#include <assert.h>
//
// Chances are that if you're building CFM then you'd much
// rather have assert triggered DebugStr that abort. The
// following redefines assert that way. We don't do this
// for Mach-O because you might be building a Mach-O tool that
// doesn't have access to DebugStr.
//
#if TARGET_RT_MAC_CFM && !defined(NDEBUG)
#undef assert
#define assert(x) ((x) ? ((void) 0) : DebugStr("\pMoreIsBetter assertion failure: " #x))
#endif
//
// Finally, we define MoreAssertPCG, to accomodate some
// older MoreIsBetter code that tests the result of its
// assertions. This doesn't fit in with the standard C
// assert model, so I've deprecated the approach. However
// there's a bunch of existing code that works that way
// and reworking it would be likely to generate errors.
// Fortunately, all of the old code that uses this is
// Carbon based, so I don't have to worry about not having
// access to DebugStr.
//
#if MORE_DEBUG
#define MoreAssertPCG(x) \
((x) ? true : (DebugStr ("\pMoreIsBetter assertion failure: " #x), false))
#else
#define MoreAssertPCG(x) (true)
#endif
|