summaryrefslogtreecommitdiff
path: root/src/configure.in
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1997-04-01 09:27:11 +0000
committerMarc G. Fournier <scrappy@hub.org>1997-04-01 09:27:11 +0000
commit986bfc5053f6ed9d8f446dc26526f903d498106a (patch)
tree72e1ae25d0a894acb41dd6ef2ed3a296db6c4ff5 /src/configure.in
parent4bd4ecf498eca9d26d45ddd2ae09cd0e600e4006 (diff)
downloadpostgresql-986bfc5053f6ed9d8f446dc26526f903d498106a.tar.gz
Misc port related issues
Diffstat (limited to 'src/configure.in')
-rw-r--r--src/configure.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/configure.in b/src/configure.in
index c8d51d1b12..c43e26b070 100644
--- a/src/configure.in
+++ b/src/configure.in
@@ -1,6 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(backend/access/common/heaptuple.c)
AC_CANONICAL_HOST
+TR="tr"
case "$host_os" in
solaris*)
case "$host_cpu" in
@@ -17,7 +18,8 @@ nextstep*) PORTNAME='nextstep';;
ultrix*) PORTNAME='ultrix4';;
irix*) PORTNAME='irix5';;
hpux*) PORTNAME='hpux';;
- osf*) PORTNAME='alpha';;
+ osf*) PORTNAME='alpha'
+ TR="trbsd";;
sysv4.2*)
case "$host_vendor" in
univel) PORTNAME='univel';;
@@ -36,6 +38,7 @@ nextstep*) PORTNAME='nextstep';;
esac
AC_LINK_FILES(port/${PORTNAME}.h, include/os.h)
AC_SUBST(PORTNAME)
+AC_SUBST(TR)
AC_SUBST(LDFLAGS)
AC_SUBST(CPPFLAGS)
@@ -177,4 +180,4 @@ AC_SUBST(STRERROR)
AC_CHECK_FUNC(cbrt, AC_DEFINE(HAVE_CBRT), AC_CHECK_LIB(m, cbrt, AC_DEFINE(HAVE_CBRT)))
AC_CHECK_FUNC(rint, AC_DEFINE(HAVE_RINT), AC_CHECK_LIB(m, rint, AC_DEFINE(HAVE_RINT)))
-AC_OUTPUT(GNUmakefile Makefile.global backend/port/Makefile bin/psql/Makefile bin/pg_dump/Makefile)
+AC_OUTPUT(GNUmakefile Makefile.global backend/port/Makefile bin/psql/Makefile bin/pg_dump/Makefile backend/utils/Gen_fmgrtab.sh)