aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces
Commit message (Collapse)AuthorAge
* Fix macro declarations to allow disabling mylog() and qlog() on Unix boxes.Thomas G. Lockhart1998-10-28
| | | | Fix spelling of "DIRSEPARATOR".
* Include appropriate flags for resolved shared library LDFLAGS_ODBCThomas G. Lockhart1998-10-28
| | | | to allow ODBC library to be linked.
* Detect lack of permission to install into Perl module library,Tom Lane1998-10-27
| | | | and emit informative message instead of aborting the Postgres install.
* Put back string instead of string.h in libpq++.Bruce Momjian1998-10-23
|
* Change string to string.h in libpq++. BSDI 3.0 complains.Bruce Momjian1998-10-23
|
* Include new Makefile.shlib from top levelThomas G. Lockhart1998-10-21
| | | | when constructing standalone tarball.
* Arbitrary addition of a comment line to get ownership of file in theThomas G. Lockhart1998-10-21
| | | | | cvs tree. Am trying to fix the permissions to allow file execution, since I had damaged the permissions when transferring in with ftp.
* Centralized shared-library build knowledge in a new file,Tom Lane1998-10-19
| | | | | | | | src/Makefile.shlib. Updated all the makefiles that try to build shlibs to include that file instead of having duplicate (and mostly incomplete) copies of shared-library options. It works on HPUX, a lot better than it did before in fact, but there's a chance I broke some other platforms. At least now you only have to fix one place not six...
* run autoconfTom Lane1998-10-18
|
* Clean up shared makefile install procedures.Tom Lane1998-10-18
| | | | | Get the permissions right, don't overwrite real files with symlinks, etc. plpgsql and odbc still aren't fully up to speed, but at least they don't crash and burn...
* Still another round of Perl-module installation tweaks.Tom Lane1998-10-18
| | | | | Now, src/interfaces/perl5/Makefile.PL is pretty simple, and instead we work a little harder in src/interfaces/Makefile.
* Still another round of Perl-module installation tweaks.Tom Lane1998-10-18
| | | | This time, src/interfaces/perl5/Makefile.PL no longer needs to be autoconf'd.
* Remove Makefile.PL.Bruce Momjian1998-10-17
|
* Fix for GNUmakefile and stupid cruft I forgot in there.Bruce Momjian1998-10-17
|
* Add missing tcl *.in files.Bruce Momjian1998-10-16
|
* interfaces/Makefile fix.Bruce Momjian1998-10-16
|
* add missing file for perl.Bruce Momjian1998-10-16
|
* Here's a patch. It also includes the latest parser changes.Bruce Momjian1998-10-16
| | | | Michael
* Perl fixes from Brook MilliganBruce Momjian1998-10-16
|
* LAtest cvs has a little bug in src/interfaces/ecpg/lib/Makefile.inBruce Momjian1998-10-15
| | | | | | | | | | | | $(LD) $(LDFLAGS_SL) -o $@ ecpglib.sho typename.sho.o must be $(LD) $(LDFLAGS_SL) -o $@ ecpglib.sho.o typename.sho.o ^^ Regards, Oleg
* I have included a couple of patches that will make postgresBruce Momjian1998-10-14
| | | | | | | | | | | | | compile out of the tar file on Solaris with the SUN 5.0 compilers. These compilers will be needed if you wan to compile the libpg++ interface without using the gcc/g++. The SC4.2 compilers do not understand the string class. The first patch changes the ecpg intermediate shared library name from *.sho to *.sho.o so that the SUN compiler will allow it to be used in conjunction with the -o option. Matthew C. Aycock
* Clean up library names and installation paths.Thomas G. Lockhart1998-10-14
| | | | | Include soft links in the installation directory for major version number. Use the existing $(DLSUFFIX) parameter to name shared library.
* Remove $(DESTDIR) as a path prefix. $(POSTGRESDIR) is sufficient now.Thomas G. Lockhart1998-10-14
|
* Fix another memory leak in pg_select --- pointed out by teo@flex.roTom Lane1998-10-14
|
* New PGQUERY_LIMIT environment variable, and doc changes.Bruce Momjian1998-10-14
|
* From: Peter Gucwa <pg@softcomputer.com>Marc G. Fournier1998-10-13
| | | | | | Here are patches needed to complie under AIX 4.2. I changed configure.in, pqcomm.c, config.h.in, and fe-connect.c. Also I had to install flex because lex did not want to translate pgc.l.
* Remove the -soname ${SHLIB} from solaris_{sparc,x86} as they conflictMarc G. Fournier1998-10-13
| | | | | with the -o $@ used in the ${SHLIB} directive, causing a failure for *at least* gcc2.8.1 + Solaris 2.6 under both hardware platforms...
* This patch updates the ImageViewer example to use Multiple Threading.Bruce Momjian1998-10-12
| | | | | | | | | | | | | | When importing an image into the database, the example now fires off a new Thread, which imports the image in the background. This also means that the application doesn't freeze on the user, and they can still browse the images in the database, while the upload is running. This now makes the ImageViewer a true example on how to use Threads (the threadtest class is just that - a test). Peter
* Tcl fixes from Billy G. AllieBruce Momjian1998-10-12
|
* More Solaris fixes.Bruce Momjian1998-10-12
|
* Add SVr4 shared libraries.Bruce Momjian1998-10-12
|
* Solaris shared library fixes.Bruce Momjian1998-10-12
|
* Move documentation to sgml sources, so remove man page installation.Thomas G. Lockhart1998-10-10
|
* Move documentation to sgml sources.Thomas G. Lockhart1998-10-10
|
* major/minor shared name cleanupBruce Momjian1998-10-09
|
* Changes to support standalone installation.Thomas G. Lockhart1998-10-09
|
* More bsdi 4.0 cleanups for shared libraries.Bruce Momjian1998-10-09
|
* More bsdi 4.0 fixes.Bruce Momjian1998-10-09
|
* Fix for BSDI shared libraries.Bruce Momjian1998-10-09
|
* Add changelog.Bruce Momjian1998-10-08
|
* Just a quick patch. This makes the JDBC driver thread safe, which is anBruce Momjian1998-10-08
| | | | | | | | | | important step towards making the driver compliant, and means that for some Java applications and servlets, only a single database connection is needed, so in a sence this is a nice little show stopper for 6.4 (and should still be backward compatible to 6.3.2). Peter
* Hello!Bruce Momjian1998-10-08
| | | | | | | | | | | | | | | | | | | Here are two new patches for the Win32 support. 1) The patch based on the one from Hiroshi Inoue [Inoue@tpf.co.jp], to load Winsock.dll from libpq.dll. 2) A patch for psql.c to remove the call to WSAStartup(), since it is not required when it's done in libpq.dll. I'm still looking for the possibility of having a crypt() function in libpq.dll too, the same way getopt was included. Any chance of getting this before 6.4, or should we wait for the next one? //Magnus
* Use the $(LN_S) substitution for "ln -s" since configure tests for it.Thomas G. Lockhart1998-10-07
|
* Clean up for configuration from the Postgres main configure script.Thomas G. Lockhart1998-10-07
| | | | | | | Use @top-srcdir@ to find the right Makefile.global and use ODBCSRCDIR to point to this local directory. Move non-platform-specific stuff to outside the if clauses. Still need to move all platform-specific stuff to the templates.
* Add conditional compilation of the ODBC directory.Thomas G. Lockhart1998-10-07
| | | | Requires --with-odbc specified in the standalone configure.
* Took it on myself to change libpq's sharedlib version number fromTom Lane1998-10-06
| | | | | 1.1 to 2.0 for this release. The other frontend shlibs need version number bumps too, but I think a minor version number change will do for them.
* If we're going to offer a default definition of PQmblen,Tom Lane1998-10-06
| | | | it probably ought to actually work.
* Re-apply fix stomped on by someone else's patch. Tsk, tsk.Tom Lane1998-10-06
|
* Update source code to Byron's v6.30.0250 sources plus minor cleanupThomas G. Lockhart1998-10-06
| | | | | | | | | to get rid of unused variables. Get clean compile on Linux (Thomas and Gerald). Implement autoconf/configure for standalone builds and use the existing autoconf/configure system when in the Postgres source tree. Code tests and functions with ApplixWare-4.4.1beta on a Linux box. Changes should be backward compatible with WIN32 but still needs testing.
* Here are the patches against the current source tree. I have run theBruce Momjian1998-10-06
| | | | | | | | | | | | | | regression test on a FreeBSD box with both non-MULTIBYTE and MULTIBYTE-enabled, and confirmed that the results are same. However I do not tested on PCs(I don't have access to win). Please let me know if the patches break anything on PCs. Also please note that the patch for varchar.c is a fix for a nasty bug of char(n) types that I introduced and I believe at least this should be applied. Tatsuo Ishii