Commit 6e9558e6 authored by Marc G. Fournier's avatar Marc G. Fournier

From: "Billy G. Allie" <Bill.Allie@mug.org>

The following patches will bring the UNIVEL port in line with the new porting
model used in postgreSQL 6.3
parent d8ddb10f
This diff is collapsed.
...@@ -133,6 +133,7 @@ DL_LIB=`grep '^DL_LIB:' $TEMPLATE | awk -F: '{print $2}'` ...@@ -133,6 +133,7 @@ DL_LIB=`grep '^DL_LIB:' $TEMPLATE | awk -F: '{print $2}'`
YACC=`grep '^YACC:' $TEMPLATE | awk -F: '{print $2}'` YACC=`grep '^YACC:' $TEMPLATE | awk -F: '{print $2}'`
YFLAGS=`grep '^YFLAGS:' $TEMPLATE | awk -F: '{print $2}'` YFLAGS=`grep '^YFLAGS:' $TEMPLATE | awk -F: '{print $2}'`
CC=`grep '^CC:' $TEMPLATE | awk -F: '{print $2}'` CC=`grep '^CC:' $TEMPLATE | awk -F: '{print $2}'`
LIBS=`grep '^LIBS:' $TEMPLATE | awk -F: '{print $2}'`
dnl We now need to check for additional directories (include dnl We now need to check for additional directories (include
......
...@@ -5,11 +5,16 @@ ...@@ -5,11 +5,16 @@
#define HAS_TEST_AND_SET #define HAS_TEST_AND_SET
#define NEED_I386_TAS_ASM #define NEED_I386_TAS_ASM
#define USE_UNIVEL_CC_ASM /***************************************\ /***************************************
| Define this if you are compiling with | * Define this if you are compiling with
| the native UNIXWARE C compiler. | * the native UNIXWARE C compiler.
\***************************************/ ***************************************/
#define USE_UNIVEL_CC_ASM
typedef unsigned char slock_t; typedef unsigned char slock_t;
/***************************************************************
* strcasecmp() is in c89, but is not in any include file :-(
***************************************************************/
int strcasecmp(char *, char *);
#ifndef BIG_ENDIAN #ifndef BIG_ENDIAN
#define BIG_ENDIAN 4321 #define BIG_ENDIAN 4321
......
AROPT:crs AROPT:crs
CFLAGS:-I$(SRCDIR)/backend/port/univel -Xa -v -DHAVE_RUSAGE -O -K i486,host,inline,loop_unroll -Dsvr4 CFLAGS:-Xa -v -O -K i486,host,inline,loop_unroll -Dsvr4
SHARED_LIB:-K PIC SHARED_LIB:-K PIC
SRCH_INC: SRCH_INC:
SRCH_LIB: SRCH_LIB:
USE_LOCALE:no USE_LOCALE:no
DLSUFFIX:.so DLSUFFIX:.so
YFLAGS:-d YACC=/usr/ccs/bin/yacc
YACC:yacc YACC:yacc
CC:cc CC:cc
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment