"...postgres-fd-implementation.git" did not exist on "076c164559a81ccc55651949f39de0ce9015a335"
- 20 Jan, 2001 1 commit
-
-
Tom Lane authored
implementation in backend/port/strerror.c if configure finds no strerror in libc, same as we do for snprintf and inet_aton.
-
- 30 Oct, 2000 1 commit
-
-
Tatsuo Ishii authored
Now frontend/libpq has its own version of pg_encoding_to_char and pg_char_to_encoding.
-
- 25 Oct, 2000 1 commit
-
-
Peter Eisentraut authored
the -l options. (This was not the case when using the OpenSSL or Kerberos options.) Also make sure that shared library links get to see all the -L options. Get Kerberos 5 support to compile on Redhat 7.0. Add OpenSSL and -lsocket (if used/found) to libpq link.
-
- 20 Oct, 2000 2 commits
-
-
Peter Eisentraut authored
source directory. This involves mostly makefiles using $(srcdir) when they might have used ".". (Regression tests don't work with this, yet.) Sort out usage of CPPFLAGS, CFLAGS (and CXXFLAGS). Add "override" keyword in most places, to preserve necessary flags even when the user overrode the flags.
-
Tom Lane authored
anywhere else that Makefile.shlib needs to modify CFLAGS to produce valid code for a shared library. I'm not real clear on *why* the use of override causes make to ignore the later attempt to assign CFLAGS += but it indubitably does --- at least on gmake 3.79.1. gmake bug?
-
- 17 Oct, 2000 1 commit
-
-
Peter Eisentraut authored
(i.e., /usr/local/pgsql/etc by default).
-
- 12 Oct, 2000 1 commit
-
-
Tatsuo Ishii authored
-
- 17 Sep, 2000 1 commit
-
-
Peter Eisentraut authored
DESTDIR=/else/where' and prepends the value of DESTDIR to the full installation paths (e.g., /else/where/usr/local/pgsql/bin). This allows users to install the package into a location different from the one that was configured and hard-coded into various scripts, e.g., for creating binary packages. DESTDIR is in many cases preferrable over `make install prefix=/else/where' because a) `prefix' affects the path that is hard-coded into the files, which can lead to a `make install prefix=xxx' (as done by the regression test driver) corrupting the files in the source tree with wrong paths. b) it doesn't work at all if a directory was overridden to not depend on `prefix', e.g., --sysconfdir=/etc. (Updating the regression test driver to use DESTDIR is a separate undertaking.) See also autoconf@gnu.org, From: Akim Demaille <akim@epita.fr>, Date: 08 Sep 2000 12:48:59 +0200, Message-ID: <mv4em2vb1lw.fsf@nostromo.lrde.epita.fr>, Subject: Re: HTML format documentation.
-
- 31 Aug, 2000 1 commit
-
-
Peter Eisentraut authored
to one another. Sort out builddir vs srcdir variable namings. Remove some now obsoleted make variables.
-
- 28 Jun, 2000 1 commit
-
-
Peter Eisentraut authored
standard targets and behaviour. Replaced Makefile.in's with Makefile's and declared the respective variables in Makefile.global. maintainer-clean target now available at top level, although it does not work in the backend tree yet. Cleanup pass over Makefile.shlib, renamed some targets and variables. The shared library symlink tests are now done by make, not the shell. ecpg: Remove one warning in sloppy flex output. PL/Perl and Perl interface: the MakeMaker documentation is confusing, the realclean target *does* "delete derived files", but it also uninstalls them. Don't use that. The submake targets in the various bin directories that update libpq should `make all', not `make libpq.a'. That is a) unportable, and b) doesn't build the shared library.
-
- 13 Jan, 1998 1 commit
-
-
Marc G. Fournier authored
From: Tom I Helbekkmo <tih@Hamartun.Priv.NO>
-
- 17 Aug, 1997 1 commit
-
-
Marc G. Fournier authored
-
- 29 Jul, 1997 1 commit
-
-
Bruce Momjian authored
-
- 04 Apr, 1997 2 commits
-
-
Marc G. Fournier authored
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
-
Marc G. Fournier authored
Pointed out by: System Administrator <sysadmin@sba.miami.edu>
-
- 25 Mar, 1997 2 commits
-
-
Marc G. Fournier authored
Christoph Kaesling <ck@dog.pfalz.sub.de>
-
Marc G. Fournier authored
The first fixes a warning from gcc about the assignment within the condition. The extra set of parens should not make a difference, but with -Werror, they are necessary. The second fixes an "ln -s" invocation that assumes the current directory is implicitly the target if not specified. Not true in all cases, and again, it should not make a difference except to those implementation that it does. From: "Michael P. Snyder" <msnyder@hawkeye.huntersmoon.com>
-
- 17 Mar, 1997 1 commit
-
-
Marc G. Fournier authored
-
- 16 Mar, 1997 1 commit
-
-
Marc G. Fournier authored
Subject: [HACKERS] Patch for io routines I am currently trying to improve on the front-backend communication routines; and noticed that lots of code are duplicated for libpq and the backend. This is a first patch that tries to share code between the two, more to follow. mjl
-
- 15 Mar, 1997 1 commit
-
-
Marc G. Fournier authored
-
- 14 Mar, 1997 1 commit
-
-
Marc G. Fournier authored
-
- 20 Jan, 1997 1 commit
-
-
Bryan Henderson authored
-
- 10 Jan, 1997 2 commits
-
-
Bruce Momjian authored
-
Vadim B. Mikheev authored
-
- 06 Jan, 1997 1 commit
-
-
Marc G. Fournier authored
-
- 05 Jan, 1997 1 commit
-
-
Marc G. Fournier authored
Submitted by: "Martin J. Laubach" <mjl@wwx.vip.at> NOTE: The following patch I was uncertain of, but applied it...will end up testing the compile on my machine later tonight anyway, but if anyone knows why this *shouldn't* have been done, please change it. (CC -> LD) *************** *** 61,68 **** ../backend/lib/dllist.o: $(MAKE) -C ../backend/lib dllist.o ! libpq.so.1: $(OBJS) ! $(CC) $(LDFLAGS) -shared $(OBJS) -o libpq.so.1 c.h: ../include/c.h rm -f c.h --- 66,73 ---- ../backend/lib/dllist.o: $(MAKE) -C ../backend/lib dllist.o ! $(shlib): $(OBJS) ! $(LD) $(LDFLAGS) -shared $(OBJS) -o $(shlib) c.h: ../include/c.h rm -f c.h
-
- 10 Dec, 1996 1 commit
-
-
Bryan Henderson authored
-
- 26 Nov, 1996 3 commits
-
-
Bryan Henderson authored
-
Bryan Henderson authored
-
Bryan Henderson authored
-
- 17 Nov, 1996 1 commit
-
-
Bruce Momjian authored
-
- 14 Nov, 1996 1 commit
-
-
Bryan Henderson authored
In particular, no more compiled-in default for PGDATA or LIBDIR. Commands that need them need either invocation options or environment variables. PGPORT default is hardcoded as 5432, but overrideable with options or environment variables.
-
- 12 Nov, 1996 1 commit
-
-
Bryan Henderson authored
-
- 09 Nov, 1996 1 commit
-
-
Bruce Momjian authored
-
- 08 Nov, 1996 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 04 Nov, 1996 2 commits
-
-
Bryan Henderson authored
-
Bruce Momjian authored
-
- 03 Nov, 1996 1 commit
-
-
Marc G. Fournier authored
cc -shared, I believe...
-
- 02 Nov, 1996 1 commit
-
-
Bryan Henderson authored
-