- Sep 03, 2002
-
-
Bruce Momjian authored
-
- Jul 27, 2002
-
-
Peter Eisentraut authored
Some makefile simplifications.
-
- Jul 16, 2002
-
-
Bruce Momjian authored
one place. Everything may be moved to src/utils eventually. Add DLLINIT variable to simplify makfiles.
-
- May 24, 2002
-
-
Peter Eisentraut authored
system, not Tcl-provided one. Make sure export file, if any, is cleaned. Tcl configuration is now read directly in configure and recorded in Makefile.global. This eliminates some duplicate efforts and allows for easier hand-editing of the results, if necessary.
-
- Apr 10, 2002
-
-
Peter Eisentraut authored
-
- Nov 11, 2001
-
-
Bruce Momjian authored
Denis A Ustimenko
-
- Oct 05, 2001
-
-
Peter Eisentraut authored
-
- Sep 23, 2001
-
-
Peter Eisentraut authored
an already installed iODBC or unixODBC driver manager. In particular, use the include files provided by the driver manager over our own, and use the odbcinst library of the driver manager rather than gpps.c. Migrate portability sections common to several files into psqlodbc.h.
-
- Sep 12, 2001
-
-
Peter Eisentraut authored
suggested by Bob Deblier (bob@virtualunlimited.com)
-
- Jun 20, 2001
-
-
Peter Eisentraut authored
(see http://mail.gnu.org/pipermail/libtool/2000-July/001824.html). But apparently it should still be present with -Bsymbolic.
-
- May 07, 2001
-
-
Peter Eisentraut authored
-
- Apr 15, 2001
-
-
Tom Lane authored
Rocco Altier <roccoa@routescape.com>.
-
- Mar 27, 2001
-
-
Bruce Momjian authored
more recent versions of the IBM C++ compiler (now called VisualAge C++). The C++ part was previously broken (g++ and xlC), thus this is zero risk. Only AIX specific parts are touched (1 Makefile.shlib line (link with $(COMPILER ) instead of $(CC) and one shell script line (parameter -C to nm to not demangle C++ symbo ls for .exp file)). I thus ask you to please apply this patch before release. With or without this patch RC1 on AIX 4.3.2 RS6000 passes "gmake check" for both the native compiler vac.C 5.0.1 and gcc 2.95.2 :-) Andreas
-
- Mar 14, 2001
-
-
Tom Lane authored
-
- Mar 11, 2001
-
-
Tom Lane authored
driver does not work because its internal cross-references get bound to similarly named functions in unixODBC shared library.
-
- Feb 27, 2001
-
-
Tatsuo Ishii authored
-
- Feb 20, 2001
-
-
Peter Eisentraut authored
or library directories on the command line.
-
- Feb 10, 2001
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Peter Eisentraut authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- Feb 04, 2001
-
-
Peter Eisentraut authored
-
- Dec 06, 2000
-
-
Peter Eisentraut authored
through to here yet.
-
- Nov 30, 2000
-
-
Peter Eisentraut authored
$(CC) $(CFLAGS) $(LDFLAGS) <object files> <extra-libraries> $(LIBS) -o $@ This form seemed to be the most portable, readable, and logical, but in any case it's better than having a dozen different ones in the tree.
-
- Nov 14, 2000
-
-
Peter Eisentraut authored
-
- Nov 09, 2000
-
-
Bruce Momjian authored
that installs into a different path than is configured. With this applied both postmaster and the shared libs are location independent for AIX 4.2 and up. Thanks Andreas
-
- Nov 08, 2000
-
-
Peter Eisentraut authored
compatible with libpq.so.2.1, etc.
-
- Nov 04, 2000
-
-
Peter Eisentraut authored
compilers from different providers. (Especially important since the C++ compiler that goes with your favourite C compiler might not work.)
-
- Oct 31, 2000
-
-
Peter Eisentraut authored
Bruce Hartzler <bruceh@mail.utexas.edu>. It contains shared library support, regression test map, and the usual template files. The dynamic loader is missing, the spin lock code apparently doesn't assemble due to syntax problems, and semaphores are to be hoped for from Apple.
-
- Oct 28, 2000
-
-
Peter Eisentraut authored
path into executables and shared libraries (-rpath or -R for most). Can be disabled with --disable-rpath, since some binary packaging standards do not like this option.
-
- Oct 27, 2000
-
-
Peter Eisentraut authored
-
- Oct 25, 2000
-
-
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.
-
- Oct 23, 2000
-
-
Peter Eisentraut authored
particular, allow linking with arbitrary commands rather than only $(AR) or $(LD), and treat C++ without hacks. Add option to disable shared libraries. This takes the place of the BSD_SHLIB variable. The regression test driver ignores the plpgsql test if there are no shared libraries available.
-
- Oct 20, 2000
-
-
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.
-
- Oct 10, 2000
-
-
Peter Eisentraut authored
anyway, the rest being due to them not being kept in sync. Add configure test for lorder and use it (on Solaris) when found.
-
- Oct 07, 2000
-
-
Bruce Momjian authored
after that dynamic loading isn't working and shared memory handling is broken. Attached with this message, there is a Zip file which contain : * beos.diff = patch file generated with difforig * beos = folder with beos support files which need to be moved in / src/backend/port * expected = foler with three file for message and precision difference in regression test * regression.diff = rule problem (need to kill the backend manualy) * dynloader = dynloader files (they are also in the pacth files, but there is so much modification that I have join full files) Everything works except a problem in 'rules' Is there some problems with rules in the current tree ? It used to works with last week tree. Cyril VELTER
-
- Sep 17, 2000
-
-
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.
-
- Jul 07, 2000
-
-
Bruce Momjian authored
|> developers so we are sure it will work on all platforms. The problem with the current settings is that the linker is called directly. This is wrong, it should always be called through the compiler driver (the only exception is `ld -r'). This will make sure that the necessary libraries like libgcc are linked in. But there is still a different problem with the setting of LDFLAGS_ODBC. The psqlodbc module defines the functions _init and _fini which are reserved for the shared library initialisation. These should be changed to constructor functions. Then LDFLAGS_ODBC can be changed to be just `-lm'. Btw, why does it use -Bsymbolic? Andreas Schwab
-