[pgsqlclient-checkins] pgsqlclient_10 makefile,1.7,1.8 PgSqlClient.build,1.6,1.7 readme.txt,1.1.1.1,
Status: Inactive
Brought to you by:
carlosga_fb
|
From: <car...@us...> - 2003-10-11 10:00:32
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10
In directory sc8-pr-cvs1:/tmp/cvs-serv2446
Modified Files:
makefile PgSqlClient.build readme.txt
Removed Files:
System.Security.Tls.snk
Log Message:
TLS Library is relicensed under the MIT/X11 license for allow
integration into mono:: project
Index: makefile
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/makefile,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** makefile 9 Oct 2003 14:59:46 -0000 1.7
--- makefile 11 Oct 2003 10:00:24 -0000 1.8
***************
*** 1,3 ****
! TLS = System.Security.Tls.dll
LIBRARY = PostgreSql.Data.PgSqlClient.dll
NUNIT_SUITE = PostgreSql.Data.PgSqlClient.UnitTests.dll
--- 1,3 ----
! TLS = Mono.Security.Tls.dll
LIBRARY = PostgreSql.Data.PgSqlClient.dll
NUNIT_SUITE = PostgreSql.Data.PgSqlClient.UnitTests.dll
***************
*** 26,34 ****
DEFINE = -define:_DEBUG
! System.Security.Tls.dll:
$(CSC) -target:library -out:$(TLS) $(LD_BASIC_FLAGS) $(DEFINE) $(RECURSE_TLS)
PostgreSql.Data.PgSqlClient.dll:
! $(CSC) -target:library -out:$(LIBRARY) $(LD_FLAGS) -reference:System.Security.Tls.dll $(DEFINE) $(TOOL_RESOURCES) $(RECURSE_SOURCE)
PostgreSql.Data.PgSqlClient.UnitTests.dll:
--- 26,34 ----
DEFINE = -define:_DEBUG
! Mono.Security.Tls.dll:
$(CSC) -target:library -out:$(TLS) $(LD_BASIC_FLAGS) $(DEFINE) $(RECURSE_TLS)
PostgreSql.Data.PgSqlClient.dll:
! $(CSC) -target:library -out:$(LIBRARY) $(LD_FLAGS) -reference:Mono.Security.Tls.dll $(DEFINE) $(TOOL_RESOURCES) $(RECURSE_SOURCE)
PostgreSql.Data.PgSqlClient.UnitTests.dll:
Index: PgSqlClient.build
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PgSqlClient.build,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** PgSqlClient.build 2 Oct 2003 17:21:21 -0000 1.6
--- PgSqlClient.build 11 Oct 2003 10:00:25 -0000 1.7
***************
*** 125,130 ****
<mkdir dir="${build.dir}" failonerror="false" />
! <!-- compile System.Security.TLS -->
! <csc output="${build.dir}\System.Security.Tls.dll" target="library" define="${build.define}">
<sources>
<includes name="${tls.src.dir}/**/*.cs" />
--- 125,130 ----
<mkdir dir="${build.dir}" failonerror="false" />
! <!-- compile Mono.Security.TLS -->
! <csc output="${build.dir}\Mono.Security.Tls.dll" target="library" define="${build.define}">
<sources>
<includes name="${tls.src.dir}/**/*.cs" />
***************
*** 155,159 ****
<absolute file="System.Drawing.dll" />
<absolute file="System.XML.dll" />
! <includes name="${build.dir}/System.Security.Tls.dll" />
</references>
<arg value="/resource:${resources.dir}\Toolbox\PgConnection.bmp,PostgreSql.Data.PgSqlClient.Resources.ToolBox.PgConnection.bmp" />
--- 155,159 ----
<absolute file="System.Drawing.dll" />
<absolute file="System.XML.dll" />
! <includes name="${build.dir}/Mono.Security.Tls.dll" />
</references>
<arg value="/resource:${resources.dir}\Toolbox\PgConnection.bmp,PostgreSql.Data.PgSqlClient.Resources.ToolBox.PgConnection.bmp" />
***************
*** 170,175 ****
<mkdir dir="${build.dir}" failonerror="false" />
! <!-- compile System.Security.TLS -->
! <csc output="${build.dir}\System.Security.Tls.dll" target="library" define="${build.define}">
<sources>
<includes name="${tls.src.dir}/**/*.cs" />
--- 170,175 ----
<mkdir dir="${build.dir}" failonerror="false" />
! <!-- compile Mono.Security.TLS -->
! <csc output="${build.dir}\Mono.Security.Tls.dll" target="library" define="${build.define}">
<sources>
<includes name="${tls.src.dir}/**/*.cs" />
***************
*** 201,205 ****
<includes name="${nant.settings.currentframework.frameworkassemblydirectory}/System.Drawing.dll" />
<includes name="${nant.settings.currentframework.frameworkassemblydirectory}/System.XML.dll" />
! <includes name="${build.dir}/System.Security.Tls.dll" />
</references>
<arg value="/resource:${resources.dir}\Toolbox\PgConnection.bmp,PostgreSql.Data.PgSqlClient.Resources.ToolBox.PgConnection.bmp" />
--- 201,205 ----
<includes name="${nant.settings.currentframework.frameworkassemblydirectory}/System.Drawing.dll" />
<includes name="${nant.settings.currentframework.frameworkassemblydirectory}/System.XML.dll" />
! <includes name="${build.dir}/Mono.Security.Tls.dll" />
</references>
<arg value="/resource:${resources.dir}\Toolbox\PgConnection.bmp,PostgreSql.Data.PgSqlClient.Resources.ToolBox.PgConnection.bmp" />
Index: readme.txt
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/readme.txt,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** readme.txt 2 Aug 2003 19:42:38 -0000 1.1.1.1
--- readme.txt 11 Oct 2003 10:00:25 -0000 1.2
***************
*** 1,23 ****
- /* PgSqlClient - ADO.NET Data Provider for PostgreSQL 7.4+
- * Copyright (C) 2003 Carlos Guzmán Álvarez
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-
PgSqlClient - ADO.NET Data Provider for PostgreSQL 7.4+
-------------------------------------------------------
--- 1,25 ----
PgSqlClient - ADO.NET Data Provider for PostgreSQL 7.4+
-------------------------------------------------------
+
+ Licenses
+ --------
+
+ PostgreSql.Data.PgSqlClient and PgSqlClient.Data.PgSqlClient.UnitTest
+ source code is released under the terms of the LGPL license
+ (http://www.opensource.org/licenses/lgpl-license.php).
+
+ Mono.Security.Protocol.Tls source code is released under the terms of the
+ Mit/X11 license.
+ (http://www.opensource.org/licenses/mit-license.php)
+
+ Copys of both licenses can be found with this package:
+
+ PostgreSql.Data.PgSqlClient.License.txt (LGPL)
+ PostgreSql.Data.PgSqlClient.License.html (LGPL)
+
+ and
+
+ Mono.Security.Protocol.Tls.txt (MIT/X11)
+
--- System.Security.Tls.snk DELETED ---
|