- 09 Oct, 1998 3 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
o configure.in Jan.
-
Thomas G. Lockhart authored
-
- 08 Oct, 1998 1 commit
-
-
Bruce Momjian authored
following patches fix the problems (i.e., all regression tests pass) in what I hope to be a platform-independent fashion. The accomplish the following: Brook Milligan
-
- 07 Oct, 1998 1 commit
-
-
Thomas G. Lockhart authored
Before, "make install" did not run the lextest. Fix up the ODBC make from this main configure. Include configure test for "ln -s" in Makefile.global.in. Was always in configure, just not carried through to here for use.
-
- 06 Oct, 1998 2 commits
-
-
Thomas G. Lockhart authored
Suppress installing man pages from here; do it from the doc/Makefile now.
-
Tom Lane authored
and make backend/libpq/pqcomm.c only try to lock the socket file when the call exists. Also, change open-RDONLY to open-WRONLY; at least on my platform, you can't get a write lock on a file you didn't open for writing.
-
- 04 Oct, 1998 1 commit
-
-
Tom Lane authored
to behave sanely. configure was not treating it as BSD...
-
- 20 Sep, 1998 1 commit
-
-
Bruce Momjian authored
-
- 11 Sep, 1998 3 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
1. The UnixWare tas macro was reformatted (by indent or it like?) which caused it to break. The asm macro construct is very particular about the %mem construct -- it has to start in column 1. 2. When compiling libpq++, g++ was used even if configure found the C++ com- piler to be CC. 3. When compiling libpq++, '-Wno-error' was added to CXXFLAGS, even if the compiler wasn't g++. Billy G. Allie
-
Bruce Momjian authored
-
- 10 Sep, 1998 3 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 02 Sep, 1998 3 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 30 Aug, 1998 2 commits
-
-
Marc G. Fournier authored
From: Tom Lane <tgl@sss.pgh.pa.us> We're carrying around a copy of install-sh in case the local system has no install script. It's wasted baggage, because configure doesn't know it's there :-(. (Apparently everyone who's used postgres lately already had an install script somewhere in their path. I happened to try to run configure with a minimal PATH tonight, and it promptly gave up for lack of an install program.) Here's the patch.
-
Bruce Momjian authored
-
- 25 Aug, 1998 1 commit
-
-
Bruce Momjian authored
int64 fix
-
- 24 Aug, 1998 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
[AC_MSG_RESULT(yes) AC_DEFINE(HAVE_LONG_INT_64)], this line produces something like: echo "$ac_t""yes" 1>&6 cat >> confdefs.h <<\EOF and would append garbage "yes cat" to confdefs.h. Of course the result confdefs.h is not syntactically correct therefore following tests using confdefs.h would all fail. To avoid the problem, we could switch the order of AC_MSG_RESULT and AC_DEFINE (see attached patch). This happend on my LinuxPPC box. Tatsuo Ishii t-ishii@sra.co.jp
-
- 23 Aug, 1998 1 commit
-
-
Bruce Momjian authored
is a working 64-bit-int type available. In playing around with it on my machine, I found that gcc provides perfectly fine support for "long long" arithmetic ... but sprintf() and sscanf(), which are system-supplied, don't work :-(. So the autoconf test program does a cursory test on them too. If we find that a lot of systems are like this, it might be worth the trouble to implement binary<->ASCII conversion of int64 ourselves rather than relying on sprintf/sscanf to handle the data type. regards, tom lane
-
- 19 Aug, 1998 1 commit
-
-
Marc G. Fournier authored
Fix for SNPRINTF test in configure From: Tom Lane <tgl@sss.pgh.pa.us>
-
- 02 Aug, 1998 1 commit
-
-
Bruce Momjian authored
-
- 01 Aug, 1998 1 commit
-
-
Marc G. Fournier authored
Adrian Hall reported a problem to me that snprintf() doesn't exist in, at least, Solaris 2.5.1. We use it in backend/utils/adt/int8.c. Add a check to configure so that we see if it exists or not, and, if not, compile in snprintf.c from backend/port, which was taken from, and falls under the same Berkeley license as us, the FreeBSD libc/stdio ...
-
- 26 Jul, 1998 1 commit
-
-
Marc G. Fournier authored
From: t-ishii@sra.co.jp As Bruce mentioned, this is due to the conflict among changes we made. Included patches should fix the problem(I changed all MB to MULTIBYTE). Please let me know if you have further problem. P.S. I did not include pathces to configure and gram.c to save the file size(configure.in and gram.y modified).
-
- 24 Jul, 1998 1 commit
-
-
Marc G. Fournier authored
I really hope that I haven't missed anything in this one... 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.
-
- 19 Jul, 1998 1 commit
-
-
Bruce Momjian authored
in a more readable form. -- I am submitting the following patches to the June 6, 1998 snapshot of PostgreSQL. These patches implement a port of PostgreSQL to SCO UnixWare 7, and updates the Univel port (UnixWare 2.x). The patched files, and the reason for the patch are: File Reason for the patch --------------- --------------------------------------------------------------- src/backend/port/dynloader/unixware.c src/backend/port/dynloader/unixware.h src/include/port/unixware.h src/makefiles/Makefile.unixware src/template/unixware Created for the UNIXWARE port. src/include/port/univel.h Modifed this file to work with the changes made to s_lock.[ch]. src/backend/storage/buffer/s_lock.c src/include/storage/s_lock.h Moved the UNIXWARE (and Univel) tas() function from s_lock.c to s_lock.h. The UnixWare compiler asm construct is treated as a macro and needs to be in the s_lock.h file. I also reworked the tas() function to correct some errors in the code. src/include/version.h.in The use of the ## operator with quoted strings in the VERSION macro caused problems with the UnixWare C compiler. I removed the ## operators since they were not needed in this case. The macro expands into a sequence of quoted strings that will be concatenated by any ANSI C compiler. src/config.guess This script was modified to recognize SCO UnixWare 7. src/configure src/configure.in The configure script was modified to recognize SCO UnixWare 7. Billy G. Allie
-
- 14 Jul, 1998 1 commit
-
-
Bruce Momjian authored
-
- 18 Jun, 1998 1 commit
-
-
Bruce Momjian authored
-
- 17 Jun, 1998 1 commit
-
-
Bruce Momjian authored
-
- 16 Jun, 1998 2 commits
-
-
Bruce Momjian authored
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
-
Bruce Momjian authored
configuration system. The idea is to make the configure arguments that specify compilers to be compatible with the other --with options. The main point, though, is that the c++ support is on by default, but can easily be disabled by the --without-CXX option for those few(?) that don't want it. Brook Milligan
-
- 12 Jun, 1998 1 commit
-
-
Bruce Momjian authored
needed.
-
- 01 Jun, 1998 1 commit
-
-
Edmund Mergl authored
-
- 24 May, 1998 1 commit
-
-
Marc G. Fournier authored
1998-05-18 Karl Eichwalder <ke@suse.de> * configure.in (AC_CHECK_LIB): check for ncurses; if this fails check for curses.
-
- 13 May, 1998 2 commits
-
-
Marc G. Fournier authored
under FreeBSD for DBL_MIN check now...
-
Marc G. Fournier authored
Add a check for DBL_MIN problem...not sure if this is right...needs testing...
-