Обсуждение: Re: [GENERAL]

Поиск
Список
Период
Сортировка

Re: [GENERAL]

От
Steven Schlansker
Дата:
http://www.postgresql.org/about/licence/


Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and
withouta written agreement is hereby granted, provided that the above copyright notice and this paragraph and the
followingtwo paragraphs appear in all copies. 


On Feb 11, 2014, at 1:35 AM, Nedal Slman <nedalslman@ymail.com> wrote:

>
>
>  hi
> i want to ask if there is any problem or fees to using Postgesql in commercial application
> like develop not open source application using Postgresql database and sell it .
>
> Best Wishes
> Nedal Slman



Re: [GENERAL]

От
"Perry, Hemy"
Дата:
Yet there is ONE file (src\backend\parser\gram.h) that goes into the server directory
(postgresql\include\server\parser\gram.h)which has a Bison exception in its license that might affect everything that
isdelivered with this file. 

The exception says:
Bison Exception:
"As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and
distributethat work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton
ora modified version thereof as a parser skeleton.  Alternatively, if you modify or redistribute the parser skeleton
itself,you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison
outputfiles to be licensed under the GNU General Public License without this special exception." 

So my understanding is that I must take this file out from the deliverable. Isn't that correct?
Thanks
Hemy

-----Original Message-----
From: pgsql-admin-owner@postgresql.org [mailto:pgsql-admin-owner@postgresql.org] On Behalf Of Steven Schlansker
Sent: Tuesday, 11 February, 2014 19:29
To: Nedal Slman
Cc: pgsql-admin@postgresql.org
Subject: Re: [ADMIN] [GENERAL]

http://www.postgresql.org/about/licence/


Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and
withouta written agreement is hereby granted, provided that the above copyright notice and this paragraph and the
followingtwo paragraphs appear in all copies. 


On Feb 11, 2014, at 1:35 AM, Nedal Slman <nedalslman@ymail.com> wrote:

>
>
>  hi
> i want to ask if there is any problem or fees to using Postgesql in
> commercial application like develop not open source application using Postgresql database and sell it .
>
> Best Wishes
> Nedal Slman



--
Sent via pgsql-admin mailing list (pgsql-admin@postgresql.org) To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-admin


Re: [GENERAL]

От
Tom Lane
Дата:
"Perry, Hemy" <hemy_perry@mentor.com> writes:
> Yet there is ONE file (src\backend\parser\gram.h) that goes into the server directory
(postgresql\include\server\parser\gram.h)which has a Bison exception in its license that might affect everything that
isdelivered with this file. 
> The exception says:
> Bison Exception:
> "As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and
distributethat work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton
ora modified version thereof as a parser skeleton.  Alternatively, if you modify or redistribute the parser skeleton
itself,you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison
outputfiles to be licensed under the GNU General Public License without this special exception." 

> So my understanding is that I must take this file out from the deliverable. Isn't that correct?

No, it isn't.

If you were to generate Postgres' grammar with a custom-modified Bison,
then this wording might require you to honor GPL as well as BSD terms
of distribution for the result.  Nobody does that though.  Per the
above statement, we can distribute the files generated by stock versions
of Bison under terms of our choice, to wit the Postgres license.

Were this not the case, we wouldn't be using Bison.

            regards, tom lane