utility_config.h   [plain text]


/*
 * Copyright (c) 2000-2001 Apple Computer, Inc. All Rights Reserved.
 * 
 * The contents of this file constitute Original Code as defined in and are
 * subject to the Apple Public Source License Version 1.2 (the 'License').
 * You may not use this file except in compliance with the License. Please obtain
 * a copy of the License at http://www.apple.com/publicsource and read it before
 * using this file.
 * 
 * This Original Code and all software distributed under the License are
 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS
 * OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT
 * LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 * PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the
 * specific language governing rights and limitations under the License.
 */


//
// utility_config.h - common configuration for the utility libraries
//
#ifndef _H_UTILITY_CONFIG
#define _H_UTILITY_CONFIG

// include public configuration
#include <Security/cssmconfig.h>

//
// Headers of varying provenance.
// We include these here because they're ubiquitous, and it's too much of a pain
// to replicate this logic everywhere.
//
#if defined(TARGET_OS_MAC)
#include <CoreServices/../Frameworks/CarbonCore.framework/Headers/MacTypes.h>
#elif defined(TARGET_OS_UNIX)
# include <sys/types.h>
#endif

#include <assert.h>

//
// Decide what io apis we'll be using
//
#define _USE_IO_POSIX 0
#define _USE_IO_MACOS 1

#if !defined(_USE_IO)
# if TARGET_API_MAC_OS8
#  define _USE_IO _USE_IO_MACOS
# else
#  define _USE_IO _USE_IO_POSIX
# endif
#endif

//
// Decide what threading support we'll be using
//
#define _USE_NO_THREADS 0
#define _USE_PTHREADS 1
#define _USE_MPTHREADS 2

#include <unistd.h>
#if defined(_POSIX_THREADS)
# define _USE_THREADS _USE_PTHREADS
#endif
#if !defined(_USE_THREADS)
# define _USE_THREADS _USE_NO_THREADS
#endif


//
// Compatibility switches
//
#define COMPAT_OSX_10_0		1	/* be compatible with MacOS 10.0.x formats & features */


//
// Bugs, buglets, and special compiler features
//
#define bug_private	private
#define bug_protected protected
#define bug_const const

#define BUG_GCC 0

#if defined(__GNUC__)
# undef BUG_GCC
# define BUG_GCC 1
# undef bug_const
# define bug_const
#else
# if !defined(__attribute__)
#  define __attribute__(whatever)	/* don't use for non-gcc compilers */
# endif
#endif

/*
ld: for architecture ppc
ld: common symbols not allowed with MH_DYLIB output format
/Network/Servers/fivestar/homes/delaware/jhurley/AppleDev/insight/build/intermediates/KeychainLib.build/Objects/Sources/KeychainLib/KCSleep.o definition of common __7KCSleep.mKCSleepRec (size 12)
*/
#define BUG_COMMON_SYMBOLS

// Make sure that namespace Security exists
namespace Security
{
} // end namespace Security

// Automatically use the Security namespace for everything that includes the utility_config header.
using namespace Security;

#endif //_H_UTILITY_CONFIG