Try for a LINUX_ELF fix (bandage?)

This commit is contained in:
Marc G. Fournier 1998-04-21 12:38:46 +00:00
parent 5bdda53f12
commit 5e6b0a574b
4 changed files with 305 additions and 288 deletions

580
src/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -80,6 +80,13 @@ AC_ARG_WITH(template,
[ TEMPLATE=template/$withval ],
[ TEMPLATE=template/`uname -s | tr A-Z a-z` ])
AC_MSG_RESULT($TEMPLATE)
if test "$TEMPLATE" = "linux-elf"; then
LINUX_ELF=yes
else
LINUX_ELF=no
fi
AC_SUBST(LINUX_ELF)
export TEMPLATE
if test ! -f "$TEMPLATE"; then

View File

@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.11 1998/04/06 16:52:15 momjian Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.12 1998/04/21 12:38:32 scrappy Exp $
#
#-------------------------------------------------------------------------
@ -34,6 +34,7 @@ shlib :=
LIBPQ = -L $(SRCDIR)/interfaces/libpq -lpq
ifeq ($(PORTNAME), linux)
LINUX_ELF=@LINUX_ELF@
ifdef LINUX_ELF
install-shlib-dep := install-shlib
shlib := libpgtcl.so.1

View File

@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.14 1998/04/06 16:52:28 momjian Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.15 1998/04/21 12:38:46 scrappy Exp $
#
#-------------------------------------------------------------------------
@ -32,6 +32,7 @@ OBJS= fe-auth.o fe-connect.o fe-exec.o fe-misc.o fe-lobj.o \
shlib :=
install-shlib-dep :=
ifeq ($(PORTNAME), linux)
LINUX_ELF=@LINUX_ELF@
ifdef LINUX_ELF
install-shlib-dep := install-shlib
shlib := libpq.so.$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)