diff options
| author | Marc G. Fournier <scrappy@hub.org> | 1998-02-02 13:17:01 +0000 |
|---|---|---|
| committer | Marc G. Fournier <scrappy@hub.org> | 1998-02-02 13:17:01 +0000 |
| commit | 4e9dd952966b600951f05ab2913b5b97936d42ba (patch) | |
| tree | 9f0fada5717856c244f94f19f9a3829a4c21270e /src/interfaces/jdbc/Makefile | |
| parent | 67c92f423aae5bb2500b7dffb0fc2a4267d2e546 (diff) | |
From: Peter T Mount <patches@maidast.demon.co.uk>
[This is a repost - it supercedes the previous one. It fixes the patch so
it doesn't bread aix port, plus there's a file missing out of the
original post because difforig doesn't pick up new files. It's now
attached. peter]
This patch brings the JDBC driver up to the current protocol spec.
Basically, the backend now tells the driver what authentication scheme to
use.
The patch also fixes a performance problem with large objects. In the
buffer manager, each fastpath call was sending multiple Notifications to
the backend (sometimes more data in the form of notifications were being
sent than blob data!).
Diffstat (limited to 'src/interfaces/jdbc/Makefile')
| -rw-r--r-- | src/interfaces/jdbc/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/interfaces/jdbc/Makefile b/src/interfaces/jdbc/Makefile index 1065dcec4fb..44a9ca32903 100644 --- a/src/interfaces/jdbc/Makefile +++ b/src/interfaces/jdbc/Makefile @@ -4,7 +4,7 @@ # Makefile for Java JDBC interface # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/Makefile,v 1.4 1998/01/13 02:19:10 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/Makefile,v 1.5 1998/02/02 13:16:38 scrappy Exp $ # #------------------------------------------------------------------------- @@ -33,8 +33,9 @@ all: postgresql.jar @echo @echo Then either add -Djdbc.drivers=postgresql.Driver to the @echo commandline when running your application, or edit the - @echo "properties file (~/.hotjava/properties under unix), and" - @echo add a line containing jdbc.drivers=postgresql.Driver + @echo "properties file for your application (~/.hotjava/properties" + @echo "under unix for HotJava), and add a line containing" + @echo jdbc.drivers=postgresql.Driver @echo @echo More details are in the README file. @echo ------------------------------------------------------------ @@ -76,8 +77,12 @@ OBJS= postgresql/CallableStatement.class \ postgresql/util/PGobject.class \ postgresql/util/PGtokenizer.class +# If you have problems with the first line, try the second one. +# This is needed when compiling under Solaris, as the solaris sh doesn't +# recognise $( ) postgresql.jar: $(OBJS) - $(JAR) -c0vf $@ $$($(FIND) postgresql -name "*.class" -print) + $(JAR) -c0f $@ $$($(FIND) postgresql -name "*.class" -print) +# $(JAR) -c0f $@ `$(FIND) postgresql -name "*.class" -print` # This rule removes any temporary and compiled files from the source tree. clean: |
