summaryrefslogtreecommitdiff
path: root/src/configure.in
diff options
context:
space:
mode:
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 c8d51d1b122..c43e26b0704 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)