public inbox for [email protected]  
help / color / mirror / Atom feed
[Pljava-dev] PL/Java 1.5.0-BETA2 announced (release candidate)
4+ messages / 2 participants
[nested] [flat]

* [Pljava-dev] PL/Java 1.5.0-BETA2 announced (release candidate)
@ 2016-02-23 01:38 Chapman Flack <[email protected]>
  2016-02-26 18:08 ` [Pljava-dev] PLJava build issues on Ubuntu Peter Brewer <[email protected]>
  0 siblings, 1 reply; 4+ messages in thread

From: Chapman Flack @ 2016-02-23 01:38 UTC (permalink / raw)

PL/Java brings functions, triggers, and types in Java. 1.5.0, now in second
beta/release candidate, supports latest PostgreSQL and Java versions with a
range of improvements and fixes.

Project site:  http://tada.github.io/pljava/
Release notes: http://tada.github.io/pljava/releasenotes.html

Although PL/Java has historically used numbered betas and not "RC"
releases, this may be considered a 1.5.0 release candidate.

Changes since 1.5.0-BETA1:

* Microsoft Windows builds are now supported using both the Visual Studio
  and the MinGW-w64 toolchains.
* Fixed: two build/install issues on Mac OS X El Capitan (issues 94, 96)
* Fixed: parameter declaration generated for trigger function (issue 92)
* Fixed: source location missing for some annotation errors (issue 95)
* Fixed: pljava-api jar missing from installation jar

Please see the release notes for more details and the cumulative list of
changes.

Many thanks to all the individuals and organizations listed in the release
notes under Credits.
_______________________________________________
Pljava-dev mailing list
[email protected]
http://lists.pgfoundry.org/mailman/listinfo/pljava-dev



^ permalink  raw  reply  [nested|flat] 4+ messages in thread

* [Pljava-dev] PLJava build issues on Ubuntu
  2016-02-23 01:38 [Pljava-dev] PL/Java 1.5.0-BETA2 announced (release candidate) Chapman Flack <[email protected]>
@ 2016-02-26 18:08 ` Peter Brewer <[email protected]>
  2016-02-26 18:51   ` Re: [Pljava-dev] PLJava build issues on Ubuntu Chapman Flack <[email protected]>
  0 siblings, 1 reply; 4+ messages in thread

From: Peter Brewer @ 2016-02-26 18:08 UTC (permalink / raw)

First of all... I can't tell you how glad I am to see the work on the 
new release! Thanks to everyone who is making this happen.

I am, however, having a few issues with building. My version info is:

OS : Ubuntu 14.04.4
Maven : 3.0.5
Java : OpenJDK 1.7.0_95 (i386)
PG: 9.3.11
gcc : 4.8.4

As you can see from the attached mvn log, things go pear shaped building 
the PL/Java backend native code.

Any ideas?

Peter

-- 
*********************************
Dr Peter Brewer
Research Associate
Rm 405, Bryant Bannister Building
Laboratory of Tree-Ring Research
1215 E Lowell St
Tucson AZ 85721
USA
Phone: +1 520 621 0753
Fax  : +1 520 621 8229
Email: [email protected]
Web  : http://ltrr.arizona.edu
*********************************


_______________________________________________
Pljava-dev mailing list
[email protected]
http://lists.pgfoundry.org/mailman/listinfo/pljava-dev

Attachments:

  [application/gzip] pljava.log.tar.gz (6.6K, ../../[email protected]/2-pljava.log.tar.gz)
  download

^ permalink  raw  reply  [nested|flat] 4+ messages in thread

* Re: [Pljava-dev] PLJava build issues on Ubuntu
  2016-02-23 01:38 [Pljava-dev] PL/Java 1.5.0-BETA2 announced (release candidate) Chapman Flack <[email protected]>
  2016-02-26 18:08 ` [Pljava-dev] PLJava build issues on Ubuntu Peter Brewer <[email protected]>
@ 2016-02-26 18:51   ` Chapman Flack <[email protected]>
  2016-02-26 20:46     ` Re: [Pljava-dev] PLJava build issues on Ubuntu Peter Brewer <[email protected]>
  0 siblings, 1 reply; 4+ messages in thread

From: Chapman Flack @ 2016-02-26 18:51 UTC (permalink / raw)

On 02/26/2016 01:08 PM, Peter Brewer wrote:
> First of all... I can't tell you how glad I am to see the work

Thank you!

> Athings go pear shaped building
> the PL/Java backend native code.
> Any ideas?

Yes. :)

Most of what you are seeing there are [-Wsign-conversion]
warnings, and those are a miserable nuisance. It is not
really possible to tweak PL/Java's code to make them go
away, without actually changing .h files that come from
PostgreSQL itself, and when you try to read your log, all
those nuisance warnings get in the way of seeing the one
actual error that determined the shape of the fruit.

That one's on line 791:
[ERROR] /usr/include/postgresql/9.3/server/libpq/libpq-be.h:36:27: fatal
error: gssapi/gssapi.h: No such file or directory

It seems that your PostgreSQL package was build with gssapi
support, but the PL/Java build did not find the gssapi.h file
on your system. The solution may be as simple as finding a
package named gssapi-devel or some such, from your Ubuntu
package manager and installing it.

As far as the nuisance sign-conversion warnings, I recommend
using -Pwnosign on the mvn command line, to turn them off.
It is just easier to spot real problems that way.

After locating gssapi.h, would you be willing to do your
testing on 1.5.0-BETA2 rather than 1.6.0-SNAPSHOT?  It's
extra valuable to have testing focused on the imminent 1.5.0
release; 1.6.0-SNAPSHOT will be where somewhat more vaporous
future work will be happening.

Regards,
-Chap
_______________________________________________
Pljava-dev mailing list
[email protected]
http://lists.pgfoundry.org/mailman/listinfo/pljava-dev



^ permalink  raw  reply  [nested|flat] 4+ messages in thread

* Re: [Pljava-dev] PLJava build issues on Ubuntu
  2016-02-23 01:38 [Pljava-dev] PL/Java 1.5.0-BETA2 announced (release candidate) Chapman Flack <[email protected]>
  2016-02-26 18:08 ` [Pljava-dev] PLJava build issues on Ubuntu Peter Brewer <[email protected]>
  2016-02-26 18:51   ` Re: [Pljava-dev] PLJava build issues on Ubuntu Chapman Flack <[email protected]>
@ 2016-02-26 20:46     ` Peter Brewer <[email protected]>
  0 siblings, 0 replies; 4+ messages in thread

From: Peter Brewer @ 2016-02-26 20:46 UTC (permalink / raw)

On 02/26/2016 11:51 AM, Chapman Flack wrote:
> Most of what you are seeing there are [-Wsign-conversion]
> warnings, and those are a miserable nuisance. It is not
> really possible to tweak PL/Java's code to make them go
> away, without actually changing .h files that come from
> PostgreSQL itself, and when you try to read your log, all
> those nuisance warnings get in the way of seeing the one
> actual error that determined the shape of the fruit.
>
> That one's on line 791:
> [ERROR] /usr/include/postgresql/9.3/server/libpq/libpq-be.h:36:27: fatal
> error: gssapi/gssapi.h: No such file or directory
Looks like installing libkrb5-dev fixed this for me.  Thanks.

> After locating gssapi.h, would you be willing to do your
> testing on 1.5.0-BETA2 rather than 1.6.0-SNAPSHOT?  It's
> extra valuable to have testing focused on the imminent 1.5.0
> release; 1.6.0-SNAPSHOT will be where somewhat more vaporous
> future work will be happening.
Sure.  I've switched to 1.5.0-b2 but have a few more errors.  Logs attached.

Many thanks

Peter

-- 
*********************************
Dr Peter Brewer
Research Associate
Rm 405, Bryant Bannister Building
Laboratory of Tree-Ring Research
1215 E Lowell St
Tucson AZ 85721
USA
Phone: +1 520 621 0753
Fax  : +1 520 621 8229
Email: [email protected]
Web  : http://ltrr.arizona.edu
*********************************



_______________________________________________
Pljava-dev mailing list
[email protected]
http://lists.pgfoundry.org/mailman/listinfo/pljava-dev

Attachments:

  [application/gzip] pljava-v2.log.tar.gz (43.0K, ../../[email protected]/2-pljava-v2.log.tar.gz)
  download

^ permalink  raw  reply  [nested|flat] 4+ messages in thread


end of thread, other threads:[~2016-02-26 20:46 UTC | newest]

Thread overview: 4+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2016-02-23 01:38 [Pljava-dev] PL/Java 1.5.0-BETA2 announced (release candidate) Chapman Flack <[email protected]>
2016-02-26 18:08 ` [Pljava-dev] PLJava build issues on Ubuntu Peter Brewer <[email protected]>
2016-02-26 18:51   ` Re: [Pljava-dev] PLJava build issues on Ubuntu Chapman Flack <[email protected]>
2016-02-26 20:46     ` Re: [Pljava-dev] PLJava build issues on Ubuntu Peter Brewer <[email protected]>

This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox