From: pierce at hogranch.com (John R Pierce) Date: Mon, 05 Dec 2011 13:52:20 -0800 Subject: [Pljava-dev] CVS HEAD is now Java 6. In-Reply-To: References: <4ED7E5DE.7040703@hogranch.com> <4ED91C50.5030201@hogranch.com> Message-ID: <4EDD3D14.9010705@hogranch.com> On 12/05/11 4:00 AM, Johann 'Myrkraverk' Oskarsson wrote: > Can you try upgrading your Java and rebuild again? Please make sure > /usr/java/latest/bin and /usr/pgsql-9.0/bin are prefixed to your PATH. > Or you can use /usr/java/1.6.0_xx eplicitly for both JAVA_HOME and > your path. not sure it matters, but I've been using the non-RPM version of java from snoracle... loading them into /usr/java/* I just pulled down jdk-6u29-linux-x64.bin and put it in /usr/java ... I updated my 'makeit' to the new JDK path... $ cat makeit export JAVA_HOME=/usr/java/jdk1.6.0_29 export PATH=$JAVA_HOME/bin:/usr/pgsql-9.0/bin:$PATH export LD_LIBRARY_PATH=/usr/java/jdk1.6.0_29/jre/lib/amd64/server export USE_LD_RPATH=1 make clean make I checked to be sure my 'cvs head' source is still current, cvs diff returned no differences. So I ran my 'makeit'. I do note a few warnings at compile time, I've been seeing these before. $ ./makeit make[1]: Entering directory `/home/piercej/org.postgresql.pljava/build/classes/pljava' javac -source 1.6 -target 1.6 -d . -g /home/piercej/org.postgresql.pljava/src/java/pljava/org/postgresql/pljava/SessionManager.java:36: warning: non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Class for a varargs call cast to java.lang.Class[] for a non-varargs call and to suppress this warning s_getSession = spc.getMethod("getSession", null); ^ /home/piercej/org.postgresql.pljava/src/java/pljava/org/postgresql/pljava/SessionManager.java:38: warning: non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Object for a varargs call cast to java.lang.Object[] for a non-varargs call and to suppress this warning return (Session)s_getSession.invoke(null, null); ^ Note: Some input files use unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. 2 warnings jar cf /home/piercej/org.postgresql.pljava/build/pljava.jar . javah -classpath . -d /home/piercej/org.postgresql.pljava/build/jni make[1]: Leaving directory `/home/piercej/org.postgresql.pljava/build/classes/pljava' make[1]: Entering directory `/home/piercej/org.postgresql.pljava/build/classes/deploy' javac -source 1.6 -target 1.6 -d . -g Note: /home/piercej/org.postgresql.pljava/src/java/deploy/org/postgresql/pljava/deploy/Deployer.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. jar cmf /home/piercej/org.postgresql.pljava/src/java/deploy/META-INF/manifest.txt /home/piercej/org.postgresql.pljava/build/deploy.jar . make[1]: Leaving directory `/home/piercej/org.postgresql.pljava/build/classes/deploy' make[1]: Entering directory `/home/piercej/org.postgresql.pljava/build/objs' /home/piercej/org.postgresql.pljava/src/C/pljava/Makefile:227: warning: overriding commands for target `pljava.so' /usr/pgsql-9.0/lib/pgxs/src/makefiles/../../src/Makefile.shlib:355: warning: ignoring old commands for target `pljava.so' gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/Exception.c -o Exception.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/PgSavepoint.c -o PgSavepoint.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/SQLOutputToChunk.c -o SQLOutputToChunk.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/SQLOutputToTuple.c -o SQLOutputToTuple.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/ExecutionPlan.c -o ExecutionPlan.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/SQLInputFromChunk.c -o SQLInputFromChunk.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/PgObject.c -o PgObject.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/backports.c -o backports.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/HashMap.c -o HashMap.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/SubXactListener.c -o SubXactListener.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/Session.c -o Session.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/XactListener.c -o XactListener.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/Invocation.c -o Invocation.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/SPI.c -o SPI.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/Iterator.c -o Iterator.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Float.c -o type/Float.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Boolean.c -o type/Boolean.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Byte.c -o type/Byte.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Double.c -o type/Double.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/TupleDesc.c -o type/TupleDesc.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Timestamp.c -o type/Timestamp.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/LargeObject.c -o type/LargeObject.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Void.c -o type/Void.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Date.c -o type/Date.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Any.c -o type/Any.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Relation.c -o type/Relation.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Type.c -o type/Type.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Time.c -o type/Time.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Short.c -o type/Short.o /home/piercej/org.postgresql.pljava/src/C/pljava/type/Short.c: In function ???_shortArray_coerceObject???: /home/piercej/org.postgresql.pljava/src/C/pljava/type/Short.c:86: warning: passing argument 4 of ???JNI_getIntArrayRegion??? from incompatible pointer type /home/piercej/org.postgresql.pljava/src/C/include/pljava/JNICalls.h:115: note: expected ???jint *??? but argument is of type ???jshort *??? gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/byte_array.c -o type/byte_array.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Portal.c -o type/Portal.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Long.c -o type/Long.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Oid.c -o type/Oid.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Tuple.c -o type/Tuple.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Integer.c -o type/Integer.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Coerce.c -o type/Coerce.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/AclId.c -o type/AclId.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/ErrorData.c -o type/ErrorData.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/BigDecimal.c -o type/BigDecimal.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/String.c -o type/String.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/TriggerData.c -o type/TriggerData.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/HeapTupleHeader.c -o type/HeapTupleHeader.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/UDT.c -o type/UDT.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Composite.c -o type/Composite.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/JavaWrapper.c -o type/JavaWrapper.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/Array.c -o type/Array.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/type/TupleTable.c -o type/TupleTable.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/JNICalls.c -o JNICalls.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/SQLInputFromTuple.c -o SQLInputFromTuple.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/Function.c -o Function.o gcc -c -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I/usr/pgsql-9.0/include/server -I/usr/pgsql-9.0/include/internal -I/usr/include/et -D_GNU_SOURCE -I/usr/include/libxml2 -I/usr/include -DPKGLIBDIR=\"/usr/pgsql-9.0/lib\" -I/home/piercej/org.postgresql.pljava/src/C/include -I/home/piercej/org.postgresql.pljava/build/jni -DPGSQL_MAJOR_VER=9 -DPGSQL_MINOR_VER=0 -DPGSQL_PATCH_VER=5 -I"/usr/java/jdk1.6.0_29/include" -I"/usr/java/jdk1.6.0_29/include/linux" /home/piercej/org.postgresql.pljava/src/C/pljava/Backend.c -o Backend.o gcc -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -I/usr/include/et -DLINUX_OOM_ADJ=0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared Exception.o PgSavepoint.o SQLOutputToChunk.o SQLOutputToTuple.o ExecutionPlan.o SQLInputFromChunk.o PgObject.o backports.o HashMap.o SubXactListener.o Session.o XactListener.o Invocation.o SPI.o Iterator.o type/Float.o type/Boolean.o type/Byte.o type/Double.o type/TupleDesc.o type/Timestamp.o type/LargeObject.o type/Void.o type/Date.o type/Any.o type/Relation.o type/Type.o type/Time.o type/Short.o type/byte_array.o type/Portal.o type/Long.o type/Oid.o type/Tuple.o type/Integer.o type/Coerce.o type/AclId.o type/ErrorData.o type/BigDecimal.o type/String.o type/TriggerData.o type/HeapTupleHeader.o type/UDT.o type/Composite.o type/JavaWrapper.o type/Array.o type/TupleTable.o JNICalls.o SQLInputFromTuple.o Function.o Backend.o -L. -L"/usr/java/jdk1.6.0_29/jre/lib/amd64/server" -ljvm -Wl,-rpath,/usr/java/jdk1.6.0_29/jre/lib/amd64/server -o pljava.so make[1]: Leaving directory `/home/piercej/org.postgresql.pljava/build/objs' make[1]: Entering directory `/home/piercej/org.postgresql.pljava/build/classes/examples' javac -source 1.6 -target 1.6 -d . -classpath /home/piercej/org.postgresql.pljava/build/classes/pljava -g Note: Some input files use unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. jar cmf /home/piercej/org.postgresql.pljava/src/java/examples/deployment/examples.manifest /home/piercej/org.postgresql.pljava/build/examples.jar . \ -C /home/piercej/org.postgresql.pljava/src/java/examples deployment/examples.ddr \ -C /home/piercej/org.postgresql.pljava/src/java/examples org/postgresql/pljava/example/example.properties make[1]: Leaving directory `/home/piercej/org.postgresql.pljava/build/classes/examples' $ so... I uninstall pljava... $ psql -f src/sql/uninstall.sql psql:src/sql/uninstall.sql:1: NOTICE: drop cascades to 10 other objects DETAIL: drop cascades to function sqlj.install_jar(character varying,character varying,boolean) drop cascades to function sqlj.replace_jar(character varying,character varying,boolean) drop cascades to function sqlj.remove_jar(character varying,boolean) drop cascades to function sqlj.install_jar(bytea,character varying,boolean) drop cascades to function sqlj.replace_jar(bytea,character varying,boolean) drop cascades to function sqlj.set_classpath(character varying,character varying) drop cascades to function sqlj.get_classpath(character varying) drop cascades to function sqlj.add_type_mapping(character varying,character varying) drop cascades to function sqlj.drop_type_mapping(character varying) drop cascades to function sysprop(text) DROP LANGUAGE DROP LANGUAGE psql:src/sql/uninstall.sql:3: NOTICE: drop cascades to 6 other objects DETAIL: drop cascades to function sqlj.java_call_handler() drop cascades to function sqlj.javau_call_handler() drop cascades to table sqlj.jar_repository drop cascades to table sqlj.jar_entry drop cascades to table sqlj.classpath_entry drop cascades to table sqlj.typemap_entry DROP SCHEMA stop and restart postgres to be really safe, then run the deployer... $ java -cp ./build/deploy.jar:postgresql-9.1-901.jdbc4.jar org.postgresql.pljava.deploy.Deployer -install -password XXXXX and run the smoketest... $ psql psql (9.0.5) Type "help" for help. piercej=# CREATE or REPLACE FUNCTION sysprop( text ) RETURNS text AS 'java.lang.System.getProperty' LANGUAGE java; CREATE FUNCTION piercej=# SELECT sysprop( 'java.home' ); The connection to the server was lost. Attempting reset: Failed. !> hmm. postgres just released 9.0.6 as rpms, so I updated my test system to that, and redid the whole above sequence, same error. #$@$@# -- john r pierce N 37, W 122 santa cruz ca mid-left coast