Thread: 1.18.0 tarball uploaded

1.18.0 tarball uploaded

From
Dave Page
Date:
I've uploaded the 1.18.0 GA tarball to
ftp://ftp.pgadmin.org/release/v1.18.0/src/. Please take a look and
yelp if there are any showstopper issues!

Thanks!

--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


Re: 1.18.0 tarball uploaded

From
Devrim GÜNDÜZ
Date:
Hi,

On Fri, 2013-08-30 at 12:45 +0100, Dave Page wrote:
> I've uploaded the 1.18.0 GA tarball to
> ftp://ftp.pgadmin.org/release/v1.18.0/src/. Please take a look and
> yelp if there are any showstopper issues!

Builds fine on all Red Hat / Fedora flavors. Great work, guys!

Regards,
--
Devrim GÜNDÜZ
Principal Systems Engineer @ EnterpriseDB: http://www.enterprisedb.com
PostgreSQL Danışmanı/Consultant, Red Hat Certified Engineer
Community: devrim~PostgreSQL.org, devrim.gunduz~linux.org.tr
http://www.gunduz.org  Twitter: http://twitter.com/devrimgunduz

Attachment

Re: 1.18.0 tarball uploaded

From
Dave Page
Date:
Thanks!

On Fri, Aug 30, 2013 at 4:51 PM, Devrim GÜNDÜZ <devrim@gunduz.org> wrote:
>
> Hi,
>
> On Fri, 2013-08-30 at 12:45 +0100, Dave Page wrote:
>> I've uploaded the 1.18.0 GA tarball to
>> ftp://ftp.pgadmin.org/release/v1.18.0/src/. Please take a look and
>> yelp if there are any showstopper issues!
>
> Builds fine on all Red Hat / Fedora flavors. Great work, guys!
>
> Regards,
> --
> Devrim GÜNDÜZ
> Principal Systems Engineer @ EnterpriseDB: http://www.enterprisedb.com
> PostgreSQL Danışmanı/Consultant, Red Hat Certified Engineer
> Community: devrim~PostgreSQL.org, devrim.gunduz~linux.org.tr
> http://www.gunduz.org  Twitter: http://twitter.com/devrimgunduz



--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


Re: 1.18.0 tarball uploaded

From
Richard PALO
Date:
Le 30/08/13 13:45, Dave Page a écrit :
> I've uploaded the 1.18.0 GA tarball to
> ftp://ftp.pgadmin.org/release/v1.18.0/src/. Please take a look and
> yelp if there are any showstopper issues!
>
> Thanks!
>
Hi, seems to build fine (and now without autoconf!) with pkgsrc.

I happened to notice that we provide by default, because of wxGTK*,
--with-libintl-prefix= and --with-libiconv-prefix= which are
consequently ignored by configure... for info.

Also, I would like confirmation concerning the two crypto options
libgcrypt and openssl, that contrary to the comments in configure,
libgcrypt is really intended to have precedence over openssl...

cheers

Re: 1.18.0 tarball uploaded

From
Dave Page
Date:
On Tue, Sep 3, 2013 at 10:31 PM, Richard PALO <richard.palo@free.fr> wrote:
> Le 30/08/13 13:45, Dave Page a écrit :
>
>> I've uploaded the 1.18.0 GA tarball to
>> ftp://ftp.pgadmin.org/release/v1.18.0/src/. Please take a look and
>> yelp if there are any showstopper issues!
>>
>> Thanks!
>>
> Hi, seems to build fine (and now without autoconf!) with pkgsrc.
>
> I happened to notice that we provide by default, because of wxGTK*,
> --with-libintl-prefix= and --with-libiconv-prefix= which are consequently
> ignored by configure... for info.

What do you mean by "provide"? pgAdmin doesn't use libiconv or libintl
directly, so configure makes no attempt to find them.

> Also, I would like confirmation concerning the two crypto options
> libgcrypt and openssl, that contrary to the comments in configure, libgcrypt
> is really intended to have precedence over openssl...

Hmm, yeah - it sure looks like libgcrypt would take precedence if both
are available to me, though I'm not entirely confident I'm reading
configure.ac.in correctly. Akshay, should the two "Look for xxx" tests
be swapped? I'm also thinking that we shouldn't be testing for "!= no"
either, but do an initial test to ensure both options aren't set to
"yes" (and thus conflicting), and if both aren't set to no, then force
OpenSSL to yes (so we have a default, but no/no can disable crypto).
Then, only test to see if one or the other option is set to yes.

Thoughts?

--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


Re: 1.18.0 tarball uploaded

From
Akshay Joshi
Date:



On Wed, Sep 4, 2013 at 1:22 PM, Dave Page <dpage@pgadmin.org> wrote:
On Tue, Sep 3, 2013 at 10:31 PM, Richard PALO <richard.palo@free.fr> wrote:
> Le 30/08/13 13:45, Dave Page a écrit :
>
>> I've uploaded the 1.18.0 GA tarball to
>> ftp://ftp.pgadmin.org/release/v1.18.0/src/. Please take a look and
>> yelp if there are any showstopper issues!
>>
>> Thanks!
>>
> Hi, seems to build fine (and now without autoconf!) with pkgsrc.
>
> I happened to notice that we provide by default, because of wxGTK*,
> --with-libintl-prefix= and --with-libiconv-prefix= which are consequently
> ignored by configure... for info.

What do you mean by "provide"? pgAdmin doesn't use libiconv or libintl
directly, so configure makes no attempt to find them.

> Also, I would like confirmation concerning the two crypto options
> libgcrypt and openssl, that contrary to the comments in configure, libgcrypt
> is really intended to have precedence over openssl...

Hmm, yeah - it sure looks like libgcrypt would take precedence if both
are available to me, though I'm not entirely confident I'm reading
configure.ac.in correctly. Akshay, should the two "Look for xxx" tests
be swapped? I'm also thinking that we shouldn't be testing for "!= no"

   We have set the variable "use_openssl"=auto so we have to test for "!= no". If we will not test for "!= no" then at the time of comparison we will have to check for "= yes" as well as "= auto". 
   
either, but do an initial test to ensure both options aren't set to
"yes" (and thus conflicting), and if both aren't set to no, then force
OpenSSL to yes (so we have a default, but no/no can disable crypto).
Then, only test to see if one or the other option is set to yes.

   OK. Will work on this. 

Thoughts?

--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



--
Akshay Joshi
Senior Software Engineer 
EnterpriseDB Corporation
The Enterprise PostgreSQL Company
Phone: +91 20-3058-9522
Mobile: +91 976-788-8246

Re: 1.18.0 tarball uploaded

From
Richard PALO
Date:
Le 04/09/13 09:52, Dave Page a écrit :
> On Tue, Sep 3, 2013 at 10:31 PM, Richard PALO <richard.palo@free.fr> wrote:
>> Le 30/08/13 13:45, Dave Page a écrit :
>>
>> I happened to notice that we provide by default, because of wxGTK*,
>> --with-libintl-prefix= and --with-libiconv-prefix= which are consequently
>> ignored by configure... for info.
>
> What do you mean by "provide"? pgAdmin doesn't use libiconv or libintl
> directly, so configure makes no attempt to find them.
>
I meant that these are provided as arguments to configure...it is okay
to ignore them if there is no use at all, which is why I mentioned that
it was simply for info. sorry for the noise.