diff options
author | Stuart Bouyer <stubear@gentoo.org> | 2002-07-31 01:29:24 +0000 |
---|---|---|
committer | Stuart Bouyer <stubear@gentoo.org> | 2002-07-31 01:29:24 +0000 |
commit | a2cefddea199c104f3b021d59e06d8ae227e95f9 (patch) | |
tree | 4ce05a5a785c7afd633e41a74b7208949c85f4fd /dev-db/postgresql | |
parent | fix segfault in pam_wheel.so, resolving bug #5686 (diff) | |
download | gentoo-2-a2cefddea199c104f3b021d59e06d8ae227e95f9.tar.gz gentoo-2-a2cefddea199c104f3b021d59e06d8ae227e95f9.tar.bz2 gentoo-2-a2cefddea199c104f3b021d59e06d8ae227e95f9.zip |
moved multibyte support to nls flag instead of cjk flag
Diffstat (limited to 'dev-db/postgresql')
-rw-r--r-- | dev-db/postgresql/ChangeLog | 11 | ||||
-rw-r--r-- | dev-db/postgresql/postgresql-7.2.1-r2.ebuild | 7 |
2 files changed, 11 insertions, 7 deletions
diff --git a/dev-db/postgresql/ChangeLog b/dev-db/postgresql/ChangeLog index 8f33804a862c..31c5aff216da 100644 --- a/dev-db/postgresql/ChangeLog +++ b/dev-db/postgresql/ChangeLog @@ -1,8 +1,15 @@ # ChangeLog for dev-db/postgresql # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql/ChangeLog,v 1.20 2002/07/28 13:20:11 stubear Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql/ChangeLog,v 1.21 2002/07/31 01:29:24 stubear Exp $ -* postgresql-7.2.1-r2.ebuild (24 Jul 2002) +* postgresql-7.2.1-r2 (31 Jul 2002) + + 31 Jul 2002; Stuart Bouyer <stubear@gentoo.org> postgresql-7.2.1-r2.ebuild: + + Moved --enable-multibyte to nls flag after it was pointed out that it + enables much more than just CJK support (ie unicode and latin1 etc). + +* postgresql-7.2.1-r2 (24 Jul 2002) 24 Jul 2002; Stuart Bouyer <stubear@gentoo.org> postgresql-7.2.1-r2.ebuild: diff --git a/dev-db/postgresql/postgresql-7.2.1-r2.ebuild b/dev-db/postgresql/postgresql-7.2.1-r2.ebuild index 89be1e29b2fd..6d393333efb6 100644 --- a/dev-db/postgresql/postgresql-7.2.1-r2.ebuild +++ b/dev-db/postgresql/postgresql-7.2.1-r2.ebuild @@ -1,7 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# Author Geert Bevin <gbevin@theleaf.be> -# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql/postgresql-7.2.1-r2.ebuild,v 1.1 2002/07/24 17:13:06 stubear Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/postgresql/postgresql-7.2.1-r2.ebuild,v 1.2 2002/07/31 01:29:24 stubear Exp $ S=${WORKDIR}/${P} DESCRIPTION="PostgreSQL is a sophisticated Object-Relational DBMS" @@ -66,10 +65,8 @@ src_compile() { use perl && myconf="$myconf --with-perl" use java && myconf="$myconf --with-java" use ssl && myconf="$myconf --with-openssl=yes" - use nls && myconf="$myconf --enable-locale --enable-nls" + use nls && myconf="$myconf --enable-locale --enable-nls --enable-multibyte" use libg++ && myconf="$myconf --with-CXX" - use cjk && myconf="$myconf --enable-multibyte" - ./configure --prefix=/usr \ --mandir=/usr/share/man \ |