| Commit message (Collapse) | Author | Age |
|
|
|
| |
Fix spelling of "DIRSEPARATOR".
|
|
|
|
| |
to allow ODBC library to be linked.
|
|
|
|
| |
and emit informative message instead of aborting the Postgres install.
|
| |
|
| |
|
|
|
|
| |
when constructing standalone tarball.
|
|
|
|
|
| |
cvs tree. Am trying to fix the permissions to allow file execution,
since I had damaged the permissions when transferring in with ftp.
|
|
|
|
|
|
|
|
| |
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...
|
| |
|
|
|
|
|
| |
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...
|
|
|
|
|
| |
Now, src/interfaces/perl5/Makefile.PL is pretty simple, and instead we
work a little harder in src/interfaces/Makefile.
|
|
|
|
| |
This time, src/interfaces/perl5/Makefile.PL no longer needs to be autoconf'd.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Michael
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
$(LD) $(LDFLAGS_SL) -o $@ ecpglib.sho typename.sho.o
must be
$(LD) $(LDFLAGS_SL) -o $@ ecpglib.sho.o typename.sho.o
^^
Regards,
Oleg
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
| |
Include soft links in the installation directory for major version number.
Use the existing $(DLSUFFIX) parameter to name shared library.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
with the -o $@ used in the ${SHLIB} directive, causing a failure for
*at least* gcc2.8.1 + Solaris 2.6 under both hardware platforms...
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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 @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.
|
|
|
|
| |
Requires --with-odbc specified in the standalone configure.
|
|
|
|
|
| |
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.
|
|
|
|
| |
it probably ought to actually work.
|
| |
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|