Commit 80b6206c authored by Marc G. Fournier's avatar Marc G. Fournier

Further clean up "auto-configuration" for ports

parent 6361ac88
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
# be converted to Method 2. # be converted to Method 2.
# #
# IDENTIFICATION # IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.12 1997/12/30 04:08:55 scrappy Exp $ # $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.13 1998/01/13 15:31:09 scrappy Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
...@@ -25,7 +25,7 @@ INCLUDE_OPT = -I.. ...@@ -25,7 +25,7 @@ INCLUDE_OPT = -I..
CFLAGS+= ${INCLUDE_OPT} CFLAGS+= ${INCLUDE_OPT}
OBJS = dynloader.o @INET_ATON@ @STRERROR@ @MISSING_RANDOM@ @SRANDOM@ OBJS = dynloader.o @INET_ATON@ @STRERROR@ @MISSING_RANDOM@ @SRANDOM@
OBJS+= @GETHOSTNAME@ @GETRUSAGE@ @STRCASECMP@ @STRDUP@ OBJS+= @GETHOSTNAME@ @GETRUSAGE@ @STRCASECMP@ @STRDUP@ @TAS@
all: SUBSYS.o all: SUBSYS.o
......
This diff is collapsed.
...@@ -7,7 +7,11 @@ case "$host_os" in ...@@ -7,7 +7,11 @@ case "$host_os" in
solaris*) solaris*)
case "$host_cpu" in case "$host_cpu" in
sparc) os=sparc_solaris ;; sparc) os=sparc_solaris ;;
i386) os=i386_solaris ;; i386)
os=i386_solaris
AC_LINK_FILES(backend/port/tas/i386_solaris.s backend/port/tas.s)
TAS=tas.s
AC_SUBST(TAS) ;;
esac ;; esac ;;
sunos*) os=sunos4 ;; sunos*) os=sunos4 ;;
linux*) os=linux ;; linux*) os=linux ;;
......
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