summaryrefslogtreecommitdiff
path: root/src/Makefile.global.in
Commit message (Collapse)AuthorAgeFilesLines
* I really hope that I haven't missed anything in this one...Marc G. Fournier1998-07-241-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From: t-ishii@sra.co.jp Attached are patches to enhance the multi-byte support. (patches are against 7/18 snapshot) * determine encoding at initdb/createdb rather than compile time Now initdb/createdb has an option to specify the encoding. Also, I modified the syntax of CREATE DATABASE to accept encoding option. See README.mb for more details. For this purpose I have added new column "encoding" to pg_database. Also pg_attribute and pg_class are changed to catch up the modification to pg_database. Actually I haved added pg_database_mb.h, pg_attribute_mb.h and pg_class_mb.h. These are used only when MB is enabled. The reason having separate files is I couldn't find a way to use ifdef or whatever in those files. I have to admit it looks ugly. No way. * support for PGCLIENTENCODING when issuing COPY command commands/copy.c modified. * support for SQL92 syntax "SET NAMES" See gram.y. * support for LATIN2-5 * add UNICODE regression test case * new test suite for MB New directory test/mb added. * clean up source files Basic idea is to have MB's own subdirectory for easier maintenance. These are include/mb and backend/utils/mb.
* Hi, here are the patches to enhance existing MB handling. This timeBruce Momjian1998-06-161-2/+2
| | | | | | | | | | | | | | | | I have implemented a framework of encoding translation between the backend and the frontend. Also I have added a new variable setting command: SET CLIENT_ENCODING TO 'encoding'; Other features include: Latin1 support more 8 bit cleaness See doc/README.mb for more details. Note that the pacthes are against May 30 snapshot. Tatsuo Ishii
* Add sys/time.h to fe-misc.c, prevent pgtclsh from using old libaries,Bruce Momjian1998-05-121-1/+2
| | | | and allow CUSTOM_COPT to appear in compile AND LINK commands.
* From: t-ishii@sra.co.jpMarc G. Fournier1998-04-271-1/+6
| | | | | | | | | | | | | | | | | | | | | | | Hi, here are patches I promised (against 6.3.2): * character_length(), position(), substring() are now aware of multi-byte characters * add octet_length() * add --with-mb option to configure * new regression tests for EUC_KR (contributed by "Soonmyung. Hong" <hong@lunaris.hanmesoft.co.kr>) * add some test cases to the EUC_JP regression test * fix problem in regress/regress.sh in case of System V * fix toupper(), tolower() to handle 8bit chars note that: o patches for both configure.in and configure are included. maybe the one for configure is not necessary. o pg_proc.h was modified to add octet_length(). I used OIDs (1374-1379) for that. Please let me know if these numbers are not appropriate.
* From: Tom Lane <tgl@sss.pgh.pa.us>Marc G. Fournier1998-04-271-1/+2
| | | | | | | | | | | | HP-UX (all versions) requires shared libraries to have execute permission, and really needs them to be exactly mode 555 for performance reasons. The standard configure/install procedure installs libpq.sl as mode 644, which DOES NOT WORK. The attached patch modifies the makefiles to distinguish INSTL_LIB_OPTS (install mode for ordinary libraries) from INSTL_SHLIB_OPTS (mode for shared libs), and adds a test to configure to set INSTL_SHLIB_OPTS="-m 555" when on HP-UX.
* Fix for PROFILE env.Bruce Momjian1998-04-121-1/+2
|
* Hi,Bruce Momjian1998-04-061-23/+1
| | | | | | | | | | | | | | | | | | | | | | Attached you'll find a (big) patch that fixes make dep and make depend in all Makefiles where I found it to be appropriate. It also removes the dependency in Makefile.global for NAMEDATALEN and OIDNAMELEN by making backend/catalog/genbki.sh and bin/initdb/initdb.sh a little smarter. This no longer requires initdb.sh that is turned into initdb with a sed script when installing Postgres, hence initdb.sh should be renamed to initdb (after the patch has been applied :-) ) This patch is against the 6.3 sources, as it took a while to complete. Please review and apply, Cheers, Jeroen van Vianen
* more tcl/tk fixesBruce Momjian1998-03-231-3/+1
|
* Another tcl/tk fix.Bruce Momjian1998-03-231-3/+1
|
* Configure patches from Brook Milligan.Bruce Momjian1998-02-221-8/+8
|
* From: Tom I Helbekkmo <tih@Hamartun.Priv.NO>Marc G. Fournier1998-02-131-1/+6
| | | | | | | | | Apart from this Makefile hack, all I've done is to make dynamically loaded code modules fail properly (as was already done for __mips__, although I think this is too loose: I believe NetBSD for the pmax can do dynamic linking), and to add test-and-set lock handling. As Bruce suggested, this is done in a maximally efficient inlined way: I was not aware that this code was so important, speed-wise.
* From: Phil Thompson <phil@river-bank.demon.co.uk>Marc G. Fournier1998-01-271-3/+3
| | | | Cleanup patches for previous protocol changes patch
* Thank god for searchable mail archives.PostgreSQL Daemon1998-01-151-2/+2
| | | | | | | | | Patch by: wieck@sapserv.debis.de (Jan Wieck) One of the design rules of PostgreSQL is extensibility. And to follow this rule means (at least for me) that there should not only be a builtin PL. Instead I would prefer a defined interface for PL implemetations.
* Potential fix for Bruce's "test" problemMarc G. Fournier1997-12-201-6/+1
|
* Major cleanout of PORTNAME variables from Makefiles...bound to screw upMarc G. Fournier1997-12-201-11/+2
| | | | some of the ports...
* Get rid of PORTNAME from Makefile.global.in...Marc G. Fournier1997-12-191-2/+4
|
* Make it entirely possible for PORTNAME to be undefinedMarc G. Fournier1997-12-171-2/+4
|
* Make configure more automated, from Brook Milligan.Bruce Momjian1997-10-301-8/+10
|
* Make sure that LIBPQDIR points to the right directoryMarc G. Fournier1997-08-171-2/+2
|
* Update supported ports for 6.1.1 release.Bruce Momjian1997-07-141-28/+7
|
* Update for bsdiBruce Momjian1997-05-081-2/+2
|
* clean up the bin/*/Makefiles...up version.h to v6.1 instead of v6.0Marc G. Fournier1997-04-261-2/+2
| | | | | Remove bin/Makefile.global since it wasn't actually *doing* anything that Makefile.global hadn't already done
* Oops, don't forget to remove the CASSERT=true lineMarc G. Fournier1997-04-151-5/+1
|
* Have CASSERT enabled/disabled via configure, and passed through config.hMarc G. Fournier1997-04-151-6/+2
| | | | instead of as a -D
* Remove port specific Makefile 'targets' (ie. shared libraries) fromMarc G. Fournier1997-04-121-173/+9
| | | | | | | | | Makefile.global and move them to seperate 'include' makefiles Over time, should become even more port specific: ie. Makefile.BSD44_derived should be broken down into netbsd/freebsd specific ports
* Move YACC and YFLAGS into the template filesMarc G. Fournier1997-04-041-18/+3
| | | | | Clean up the .sample files...comment out all sample entries except for the localhost one
* This commit represents a clean compile with the new templates underMarc G. Fournier1997-04-041-41/+7
| | | | | | | | | FreeBSD The Makefile(s) have all been cleaned up such that there is a single LDFLAGS vs LD_ADD or LDADD or LDFLAGS or LDFLAGS_BE. The Makefile(s) should be alot more straightforward then they were before...and consistent
* One helluva mess.Marc G. Fournier1997-04-041-229/+28
| | | | | | | | | | | | Further extended Makefile.global/build/configure so that we can have a 'template' file for each OS (and each version of OS, as in BSDi) which is used as much as possible to generate Makefile.global Any future ports should look at using the template file as a basis, before moving over to Makefile.global. This will most probably break alot of the ports, atho I've tried to be very neat about it...
* Various improvements to reduce questions :)Marc G. Fournier1997-04-031-11/+1
| | | | | | | | Remove USE_LOCALE from Makefile.global.in Add USE_LOCALE to build/configure/config.h Add check for BUILDRUN in configure to make sure that build is run before configure
* From: Oleg Bartunov <oleg@sai.msu.su>Marc G. Fournier1997-04-021-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | Subject: [HACKERS] locale patches ! Hi there, here are little patches to get Postgres 6.1 works with locale stuff. This is a patch against 970402.tar.gz, there are no problem to apply them by hand to 6.0 release. Collate stuff tested about 1-2 months in real working database but I'm sure there must be no problem. US hackers could vote against locale implementation ( locale for sure will affect to speed of postgres ), so I introduce variable USE_LOCALE which controls locale stuff. Non-US users now could use ~* operator for searching and <order by> for strings with nation alphabet. Please, don't forget, as I did first time, to set environment variable LC_CTYPE and LC_COLLATE because backend get locale information from them. I start postmaster from a little script, assuming that shell is Bash shell it looks like: #!/bin/sh export LC_CTYPE=koi8-r export LC_COLLATE=koi8-r postmaster -B 1024 -S -D/usr/local/pgsql/data/ -o '-Fe'
* Add ability to change installation directory in build, prior to configureMarc G. Fournier1997-03-261-2/+2
|
* Start of a univel port by "Michael P. Snyder" <msnyder@hawkeye.huntersmoon.com>Marc G. Fournier1997-03-251-1/+41
|
* Move nextstep into problem/bug section.Bruce Momjian1997-03-061-2/+5
|
* Removed a reference to DATADIR that still existedMarc G. Fournier1997-02-121-2/+2
|
* Add missing paren for hpux.Bruce Momjian1997-02-081-2/+2
|
* Make sure all changes are committed...Marc G. Fournier1997-02-061-6/+1
|
* Add Makefile.in so that configure can determine if inet_aton.o is requiredMarc G. Fournier1997-02-051-1/+3
| | | | | | | | | Add CFLAGS= @CPPFLAGS@ to Makefile.global and configure so that build is useful for finding extra header files Split header files from libraries in build. Doesn't make much sense to look for a header file in /usr/local/lib, nor to look for a library in /usr/local/include :)
* Bring back in the autoconf files - work in progressMarc G. Fournier1997-02-041-0/+690
|
* Remove all the configure related stuff...Marc G. Fournier1997-01-241-718/+0
|
* Have configure auto-detect more of the libraries, and shorten outMarc G. Fournier1997-01-241-83/+23
| | | | the ports section of Makefile.global as a result.
* Add in the code required to auto-detect the OS and to set PORTNAME...Marc G. Fournier1997-01-241-2/+2
| | | | | Right now, it only auto-detects FreeBSD, and the rest still get set to UNDEFINED, but its a step in the right direction, no?
* Auto-sense lib{readline,history,curses,termcap}Marc G. Fournier1997-01-241-110/+136
| | | | Autoconf bin/psql/Makefile
* Makefile.global.in currently should reflect what Makefile.globalMarc G. Fournier1997-01-231-52/+47
| | | | in v6.0 does...
* Bring in Nat' preliminary work at autoconf'ng PostgreSQL...I imagineMarc G. Fournier1997-01-231-0/+757
it still needs lots of work, but, hey, at least this way there are more ppl working off the same "Source"...