Make new DISABLE_COMPLEX_MACRO for compilers that can't handle our

macros.
This commit is contained in:
Bruce Momjian 1998-06-14 01:34:07 +00:00
parent bedfe275cc
commit b52c666a99
2 changed files with 6 additions and 3 deletions

View File

@ -6,7 +6,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: heapam.h,v 1.31 1998/03/01 04:46:56 scrappy Exp $ * $Id: heapam.h,v 1.32 1998/06/14 01:34:07 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -88,7 +88,7 @@ typedef HeapAccessStatisticsData *HeapAccessStatistics;
* *
* ---------------- * ----------------
*/ */
#if !defined(USE_UNIVEL_CC) #if !defined(DISABLE_COMPLEX_MACRO)
#define fastgetattr(tup, attnum, tupleDesc, isnull) \ #define fastgetattr(tup, attnum, tupleDesc, isnull) \
( \ ( \
@ -132,7 +132,7 @@ typedef HeapAccessStatisticsData *HeapAccessStatistics;
) \ ) \
) )
#else /* !defined(USE_UNIVEL_CC) */ #else /* !defined(DISABLE_COMPLEX_MACRO) */
extern Datum nocachegetattr(HeapTuple tup, int attnum, extern Datum nocachegetattr(HeapTuple tup, int attnum,
TupleDesc att, bool *isnull); TupleDesc att, bool *isnull);

View File

@ -10,8 +10,11 @@
* the native UNIXWARE C compiler. * the native UNIXWARE C compiler.
***************************************/ ***************************************/
#define USE_UNIVEL_CC #define USE_UNIVEL_CC
typedef unsigned char slock_t; typedef unsigned char slock_t;
#define DISABLE_COMPLEX_MACRO
/*************************************************************** /***************************************************************
* strcasecmp() is in c89.a. The following include will get the * strcasecmp() is in c89.a. The following include will get the
* needed prototype. * needed prototype.