Revert back Makefile.global

Add check for --with-mb. It is now obsoleted.
This commit is contained in:
Tatsuo Ishii 2000-01-19 01:42:12 +00:00
parent 8ff9f85bd5
commit d4aab2c000
3 changed files with 428 additions and 414 deletions

View File

@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.64 2000/01/18 03:01:40 ishii Exp $
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.65 2000/01/19 01:42:12 ishii Exp $
#
# NOTES
# Essentially all Postgres make files include this file and use the
@ -160,9 +160,6 @@ X11_LIBS= -lX11 @X_EXTRA_LIBS@
# flag whether multibyte is on/off
MULTIBYTE=@MULTIBYTE@
ifdef MULTIBYTE
MBFLAGS = -DMULTIBYTE
endif
##############################################################################
#

831
src/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -262,6 +262,12 @@ Or do not specify an argument to the option to use the default.])
AC_MSG_RESULT("disabled")
)
AC_ARG_WITH(mb,
[ --with-mb=<encoding> this option is obsoleted ],
[
AC_MSG_ERROR([*** --with-mb is not supported anymore. Use --enable-multibyte instead.])
]
)
dnl We use the default value of 5432 for the DEF_PGPORT value. If
dnl we over-ride it with --with-pgport=port then we bypass this piece