Fix for missing tas.s under sparc_solaris

Reported by:  Shiby Thomas <sthomas@cise.ufl.edu>
This commit is contained in:
Marc G. Fournier 1998-02-03 02:07:15 +00:00
parent c18ed2f5a7
commit ea514d2e6a
4 changed files with 231 additions and 259 deletions

View File

@ -1,34 +0,0 @@
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for port/sparc_solaris
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/sparc_solaris/Attic/Makefile,v 1.5 1997/12/20 00:26:18 scrappy Exp $
#
#-------------------------------------------------------------------------
SRCDIR = ../../..
include ../../../Makefile.global
INCLUDE_OPT = -I..
CFLAGS+=$(INCLUDE_OPT)
OBJS = tas.o
all: SUBSYS.o
SUBSYS.o: $(OBJS)
$(LD) -r -o SUBSYS.o $(OBJS)
depend dep:
$(CC) -MM $(INCLUDE_OPT) *.c >depend
clean:
rm -f SUBSYS.o $(OBJS)
ifeq (depend,$(wildcard depend))
include depend
endif

View File

@ -1,5 +1,5 @@
!! !!
!! $Header: /cvsroot/pgsql/src/backend/port/sparc_solaris/Attic/tas.s,v 1.1.1.1 1996/07/09 06:21:45 scrappy Exp $ !! $Header: /cvsroot/pgsql/src/backend/port/tas/Attic/sparc_solaris.s,v 1.1 1998/02/03 02:07:15 scrappy Exp $
!! !!
!! this would be a piece of inlined assembler but it appears !! this would be a piece of inlined assembler but it appears
!! to be easier to just write the assembler than to try to !! to be easier to just write the assembler than to try to

441
src/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -6,12 +6,15 @@ AC_CANONICAL_HOST
case "$host_os" in case "$host_os" in
solaris*) solaris*)
case "$host_cpu" in case "$host_cpu" in
sparc) os=sparc_solaris ;; sparc) os=sparc_solaris
AC_LINK_FILES(backend/port/tas/sparc_solaris.s, backend/port/tas.s)
TAS=tas.o
AC_SUBST(TAS) ;;
i386) i386)
os=i386_solaris os=i386_solaris
AC_LINK_FILES(backend/port/tas/i386_solaris.s, backend/port/tas.s) AC_LINK_FILES(backend/port/tas/i386_solaris.s, backend/port/tas.s)
TAS=tas.o TAS=tas.o
AC_SUBST(TAS) ;; AC_SUBST(TAS) ;;
esac ;; esac ;;
sunos*) os=sunos4 ;; sunos*) os=sunos4 ;;
aux*) os=aux ;; aux*) os=aux ;;