You can subscribe to this list here.
| 2002 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Stephen J. <spj...@us...> - 2003-05-25 12:59:31
|
Update of /cvsroot/liblookdb/liblookdb/lookdbinterface
In directory sc8-pr-cvs1:/tmp/cvs-serv30885
Modified Files:
lookdbinterfaceoci.cpp
Log Message:
Bug fix for numeric overflow with Oracle NUMBER(N) data types with N > 9.
Patch submitted by Stephen Blackheath.
Index: lookdbinterfaceoci.cpp
===================================================================
RCS file: /cvsroot/liblookdb/liblookdb/lookdbinterface/lookdbinterfaceoci.cpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** lookdbinterfaceoci.cpp 21 Feb 2003 13:15:38 -0000 1.14
--- lookdbinterfaceoci.cpp 25 May 2003 12:59:28 -0000 1.15
***************
*** 1206,1210 ****
if( (colPrecision != 0) && (colScale == 0) )
{
! aType = LOOK_INTEGER;
}
else
--- 1206,1213 ----
if( (colPrecision != 0) && (colScale == 0) )
{
! if (colPrecision >= 10)
! aType = LOOK_NUMERIC;
! else
! aType = LOOK_INTEGER;
}
else
|
|
From: Stephen J. <spj...@us...> - 2003-02-21 13:15:46
|
Update of /cvsroot/liblookdb/liblookdb/lookdbinterface
In directory sc8-pr-cvs1:/tmp/cvs-serv6311
Modified Files:
lookdbinterfaceoci.cpp
Log Message:
Fix memory leak on error in Prepare. Patch submitted by Clive George.
Index: lookdbinterfaceoci.cpp
===================================================================
RCS file: /cvsroot/liblookdb/liblookdb/lookdbinterface/lookdbinterfaceoci.cpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** lookdbinterfaceoci.cpp 14 Feb 2003 20:23:45 -0000 1.13
--- lookdbinterfaceoci.cpp 21 Feb 2003 13:15:38 -0000 1.14
***************
*** 1883,1888 ****
LOOK_STMT lookDbPrepare ( LOOK_DBC theSession, const char *theStatement )
{
- IOCIStatement* anInfo = new IOCIStatement;
-
IOCIConnection* aConnection = (IOCIConnection*) theSession;
if( !IOCIEnvironment::ConnectionExists( aConnection ) )
--- 1883,1886 ----
***************
*** 1891,1894 ****
--- 1889,1894 ----
return -1;
}
+
+ IOCIStatement* anInfo = new IOCIStatement;
// need to parse question marks into :type placeholders
|
|
From: Stephen J. <spj...@us...> - 2003-02-14 20:23:48
|
Update of /cvsroot/liblookdb/liblookdb/lookdbinterface In directory sc8-pr-cvs1:/tmp/cvs-serv7258 Modified Files: lookdbinterfaceoci.cpp Log Message: Bug fix for crash on Oracle/Solaris - patch submitted by Stephen Blackheath. Index: lookdbinterfaceoci.cpp =================================================================== RCS file: /cvsroot/liblookdb/liblookdb/lookdbinterface/lookdbinterfaceoci.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** lookdbinterfaceoci.cpp 22 Jan 2002 13:54:29 -0000 1.12 --- lookdbinterfaceoci.cpp 14 Feb 2003 20:23:45 -0000 1.13 *************** *** 1146,1150 **** char* columnName; ub4 colNameLength; ! ub1 colPrecision; sb1 colScale; ub1 isNullable; --- 1146,1154 ---- char* columnName; ub4 colNameLength; ! // Stephen Jackson 2003-02-14. colPrecision changed ! // from ub1 to sb2 because we are using an implicit ! // describe. Patch submitted by Stephen Blackheath. ! // c.f. http://www.csee.umbc.edu/help/oracle8/server.815/a67846/describe.htm ! sb2 colPrecision; sb1 colScale; ub1 isNullable; |
|
From: Stephen J. <spj...@us...> - 2002-11-09 17:38:07
|
Update of /cvsroot/liblookdb/liblookdb/looktypes
In directory usw-pr-cvs1:/tmp/cvs-serv30468/looktypes
Modified Files:
t_list.h
Log Message:
Fix segfault revealed by Redhat 8 / GCC 3.2 build.
Index: t_list.h
===================================================================
RCS file: /cvsroot/liblookdb/liblookdb/looktypes/t_list.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** t_list.h 4 Jul 2001 15:53:22 -0000 1.6
--- t_list.h 9 Nov 2002 17:38:04 -0000 1.7
***************
*** 515,519 ****
while( first != last )
{
! first = erase( first );
}
return first;
--- 515,519 ----
while( first != last )
{
! erase( first++ );
}
return first;
|
|
From: Stephen J. <spj...@us...> - 2002-11-09 17:37:12
|
Update of /cvsroot/liblookdb/liblookdb/lookdbinterface In directory usw-pr-cvs1:/tmp/cvs-serv29581/lookdbinterface Modified Files: Makefile.in Log Message: Fix bugs revealed by Redhat 8 / GCC 3.2 build. Index: Makefile.in =================================================================== RCS file: /cvsroot/liblookdb/liblookdb/lookdbinterface/Makefile.in,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Makefile.in 28 Sep 2001 15:56:39 -0000 1.9 --- Makefile.in 9 Nov 2002 17:37:09 -0000 1.10 *************** *** 7,11 **** # SPJ please make sure ptr this is the last option (because of ../configure) ! CCXXFLAGS=$(LOOK_CXXFLAGS) -I ../looktypes -ptr ../cxx_repository #------------------------------------------------------------------- --- 7,11 ---- # SPJ please make sure ptr this is the last option (because of ../configure) ! CCXXFLAGS=$(LOOK_CXXFLAGS) -I../looktypes -ptr ../cxx_repository #------------------------------------------------------------------- *************** *** 28,31 **** --- 28,32 ---- ../lib/liblookdbms$(DBMS).so: ../lib/liblookdbms$(DBMS).a + mkdir -p ../lib gcc $(GNU_SHARED) -o ../lib/liblookdbms$(DBMS).so $(OBJECTS) $(LOOK_DBMSLIB) $(PERLLDFLAGS) |
|
From: Stephen J. <spj...@us...> - 2002-01-28 14:55:00
|
Update of /cvsroot/liblookdb/liblookdb In directory usw-pr-cvs1:/tmp/cvs-serv28295 Modified Files: ChangeLog Log Message: 0.2.1 Released. Index: ChangeLog =================================================================== RCS file: /cvsroot/liblookdb/liblookdb/ChangeLog,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ChangeLog 2002/01/22 17:05:43 1.4 --- ChangeLog 2002/01/28 14:54:56 1.5 *************** *** 1,3 **** --- 1,13 ---- + 2002-01-28 Stephen Jackson <st...@lo...> + + * liblookdb 0.2.1 Released. + + 2002-01-28 Stephen Jackson <st...@lo...> + + * configure: + Configuration for DBI interface to work with Perl 5.6.0 and above. + 2002-01-22 Clive George <cl...@lo...> + * lookdbinterface/lookdbinterfacedbi.c: Catches connection failure. *************** *** 5,8 **** --- 15,19 ---- 2002-01-22 Clive George <cl...@lo...> + * lookdbinterface/lookdbinterfaceoci.cpp: Need explicit rollback on logoff |
|
From: Stephen J. <spj...@us...> - 2002-01-28 14:28:06
|
Update of /cvsroot/liblookdb/liblookdb/examples/packaging/SPECS
In directory usw-pr-cvs1:/tmp/cvs-serv19949
Modified Files:
lookdbtools.spec
Log Message:
Packaging for 0.2.1.
Correct some of the Header section items.
Index: lookdbtools.spec
===================================================================
RCS file: /cvsroot/liblookdb/liblookdb/examples/packaging/SPECS/lookdbtools.spec,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** lookdbtools.spec 2002/01/08 17:25:01 1.13
--- lookdbtools.spec 2002/01/28 14:28:02 1.14
***************
*** 9,15 ****
%define version 1.2.1
Version: %{version}
! Release: 1
Group: Utilities/Database
! Source: cvs:/u/cvs/lookdbtools-%{version}.tar.gz
Copyright: LGPL
Requires: liblookdb >= 0.2.0
--- 9,15 ----
%define version 1.2.1
Version: %{version}
! Release: 2
Group: Utilities/Database
! Source: http://download.sourceforge.net/liblookdb/liblookdb-0.2.1.tar.gz
Copyright: LGPL
Requires: liblookdb >= 0.2.0
***************
*** 19,28 ****
# Produce the source with
! # mkdir lookdbtools-%{version}
! # cd lookdbtools-%{version}
! # cvs export -rlookdbtools-RELEASE-1_2_1 liblookdb/examples
! # cd ..
! # tar zcvf lookdbtools-%{version}.tar.gz lookdbtools-%{version}
! # rm -r lookdbtools-%{version}
--- 19,26 ----
# Produce the source with
! # mkdir liblookdb-%{version}
! # ( cd liblookdb-%{version} && cvs export -rliblookdb-RELEASE-0_2_1 liblookdb )
! # tar czvf liblookdb-%{version}.tar.gz liblookdb-%{version}
! # rm -r liblookdb-%{version}
***************
*** 31,35 ****
%prep
! %setup
%build
--- 29,33 ----
%prep
! %setup -n liblookdb-0.2.1
%build
|
|
From: Stephen J. <spj...@us...> - 2002-01-28 14:10:07
|
Update of /cvsroot/liblookdb/liblookdb/packaging/SPECS
In directory usw-pr-cvs1:/tmp/cvs-serv14691
Modified Files:
liblookdb-devel.spec liblookdb.spec liblookdbmsdbi.spec
liblookdbmsingres-ii.spec liblookdbmsingres-oi.spec
liblookdbmsoci.spec liblookdbmspostgres.spec
Log Message:
Packaging for 0.2.1.
Correct some of the Header section items.
Index: liblookdb-devel.spec
===================================================================
RCS file: /cvsroot/liblookdb/liblookdb/packaging/SPECS/liblookdb-devel.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** liblookdb-devel.spec 2001/09/28 16:07:42 1.9
--- liblookdb-devel.spec 2002/01/28 14:10:04 1.10
***************
*** 1,11 ****
Summary: Development libraries and headers
Name: liblookdb-devel
! %define version 0.2.0
Version: %{version}
Release: 1
Group: Development/Libraries
! Source: cvs:/u/cvs/liblookdb-%{version}.tar.gz
Copyright: LGPL
! BuildRoot: /tmp/liblookdb
BuildArchitectures: noarch
Requires: liblookdb >= %{version}
--- 1,15 ----
Summary: Development libraries and headers
Name: liblookdb-devel
! %define version 0.2.1
Version: %{version}
Release: 1
Group: Development/Libraries
! Source: http://download.sourceforge.net/liblookdb/liblookdb-%{version}.tar.gz
Copyright: LGPL
! Vendor: LOOK Systems <lib...@lo...>
! BuildRoot: /var/tmp/liblookdb-devel
! URL: http://liblookdb.sourceforge.net
! Packager: Stephen Jackson <Ste...@lo...>
!
BuildArchitectures: noarch
Requires: liblookdb >= %{version}
***************
*** 16,24 ****
# Produce the source with
# mkdir liblookdb-%{version}
! # cd liblookdb-%{version}
! # cvs export -rliblookdb-RELEASE-0_2_0 liblookdb
! # cd ..
! # tar cvf liblookdb-%{version}.tar liblookdb-%{version}
! # gzip liblookdb-%{version}.tar.gz
# rm -r liblookdb-%{version}
--- 20,25 ----
# Produce the source with
# mkdir liblookdb-%{version}
! # ( cd liblookdb-%{version} && cvs export -rliblookdb-RELEASE-0_2_1 liblookdb )
! # tar czvf liblookdb-%{version}.tar.gz liblookdb-%{version}
# rm -r liblookdb-%{version}
Index: liblookdb.spec
===================================================================
RCS file: /cvsroot/liblookdb/liblookdb/packaging/SPECS/liblookdb.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** liblookdb.spec 2001/09/28 16:07:42 1.7
--- liblookdb.spec 2002/01/28 14:10:04 1.8
***************
*** 1,11 ****
Summary: LOOK Database interface libraries
Name: liblookdb
! %define version 0.2.0
Version: %{version}
Release: 1
! Group: Libraries
! Source: cvs:/u/cvs/liblookdb-%{version}.tar.gz
Copyright: LGPL
! BuildRoot: /tmp/liblookdb
Requires: liblookdbms
Conflicts: liblookdbms-ii < 0.2.0
--- 1,14 ----
Summary: LOOK Database interface libraries
Name: liblookdb
! %define version 0.2.1
Version: %{version}
Release: 1
! Group: Development/Libraries
! Source: http://download.sourceforge.net/liblookdb/liblookdb-%{version}.tar.gz
Copyright: LGPL
! Vendor: LOOK Systems <lib...@lo...>
! BuildRoot: /var/tmp/liblookdb-devel
! URL: http://liblookdb.sourceforge.net
! Packager: Stephen Jackson <Ste...@lo...>
Requires: liblookdbms
Conflicts: liblookdbms-ii < 0.2.0
***************
*** 19,28 ****
# Produce the source with
# mkdir liblookdb-%{version}
! # cd liblookdb-%{version}
! # cvs export -rliblookdb-RELEASE-0_2_0 liblookdb
! # cd ..
! # tar cvf liblookdb-%{version}.tar liblookdb-%{version}
! # gzip liblookdb-%{version}.tar.gz
# rm -r liblookdb-%{version}
%prep
--- 22,30 ----
# Produce the source with
# mkdir liblookdb-%{version}
! # ( cd liblookdb-%{version} && cvs export -rliblookdb-RELEASE-0_2_1 liblookdb )
! # tar czvf liblookdb-%{version}.tar.gz liblookdb-%{version}
# rm -r liblookdb-%{version}
+
+
%prep
Index: liblookdbmsdbi.spec
===================================================================
RCS file: /cvsroot/liblookdb/liblookdb/packaging/SPECS/liblookdbmsdbi.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** liblookdbmsdbi.spec 2001/09/28 16:07:42 1.1
--- liblookdbmsdbi.spec 2002/01/28 14:10:04 1.2
***************
*** 1,11 ****
Summary: liblookdb Database interface libraries
Name: liblookdbmsdbi
! %define version 0.2.0
Version: %{version}
Release: 1
! Group: Libraries
! Source: cvs:/u/cvs/liblookdb-%{version}.tar.gz
Copyright: LGPL
! BuildRoot: /tmp/liblookdb
Provides: liblookdbms
--- 1,14 ----
Summary: liblookdb Database interface libraries
Name: liblookdbmsdbi
! %define version 0.2.1
Version: %{version}
Release: 1
! Group: Development/Libraries
! Source: http://download.sourceforge.net/liblookdb/liblookdb-%{version}.tar.gz
Copyright: LGPL
! Vendor: LOOK Systems <lib...@lo...>
! BuildRoot: /var/tmp/liblookdb-devel
! URL: http://liblookdb.sourceforge.net
! Packager: Stephen Jackson <Ste...@lo...>
Provides: liblookdbms
***************
*** 15,23 ****
# Produce the source with
# mkdir liblookdb-%{version}
! # cd liblookdb-%{version}
! # cvs export -rliblookdb-RELEASE-0_2_0 liblookdb
! # cd ..
! # tar cvf liblookdb-%{version}.tar liblookdb-%{version}
! # gzip liblookdb-%{version}.tar.gz
# rm -r liblookdb-%{version}
# You must install the perl and perl-dbi RPMs before building this one.
--- 18,23 ----
# Produce the source with
# mkdir liblookdb-%{version}
! # ( cd liblookdb-%{version} && cvs export -rliblookdb-RELEASE-0_2_1 liblookdb )
! # tar czvf liblookdb-%{version}.tar.gz liblookdb-%{version}
# rm -r liblookdb-%{version}
# You must install the perl and perl-dbi RPMs before building this one.
Index: liblookdbmsingres-ii.spec
===================================================================
RCS file: /cvsroot/liblookdb/liblookdb/packaging/SPECS/liblookdbmsingres-ii.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** liblookdbmsingres-ii.spec 2001/09/28 16:07:42 1.4
--- liblookdbmsingres-ii.spec 2002/01/28 14:10:04 1.5
***************
*** 1,11 ****
Summary: liblookdb Database interface libraries
Name: liblookdbmsingres-ii
! %define version 0.2.0
Version: %{version}
Release: 1
! Group: Libraries
! Source: cvs:/u/cvs/liblookdb-%{version}.tar.gz
Copyright: LGPL
! BuildRoot: /tmp/liblookdb
Provides: liblookdbms
--- 1,14 ----
Summary: liblookdb Database interface libraries
Name: liblookdbmsingres-ii
! %define version 0.2.1
Version: %{version}
Release: 1
! Group: Development/Libraries
! Source: http://download.sourceforge.net/liblookdb/liblookdb-%{version}.tar.gz
Copyright: LGPL
! Vendor: LOOK Systems <lib...@lo...>
! BuildRoot: /var/tmp/liblookdb-devel
! URL: http://liblookdb.sourceforge.net
! Packager: Stephen Jackson <Ste...@lo...>
Provides: liblookdbms
***************
*** 15,23 ****
# Produce the source with
# mkdir liblookdb-%{version}
! # cd liblookdb-%{version}
! # cvs export -rliblookdb-RELEASE-0_2_0 liblookdb
! # cd ..
! # tar cvf liblookdb-%{version}.tar liblookdb-%{version}
! # gzip liblookdb-%{version}.tar.gz
# rm -r liblookdb-%{version}
# You must export the correct II_SYSTEM before building the RPM.
--- 18,23 ----
# Produce the source with
# mkdir liblookdb-%{version}
! # ( cd liblookdb-%{version} && cvs export -rliblookdb-RELEASE-0_2_1 liblookdb )
! # tar czvf liblookdb-%{version}.tar.gz liblookdb-%{version}
# rm -r liblookdb-%{version}
# You must export the correct II_SYSTEM before building the RPM.
Index: liblookdbmsingres-oi.spec
===================================================================
RCS file: /cvsroot/liblookdb/liblookdb/packaging/SPECS/liblookdbmsingres-oi.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** liblookdbmsingres-oi.spec 2001/09/28 16:07:43 1.4
--- liblookdbmsingres-oi.spec 2002/01/28 14:10:04 1.5
***************
*** 1,11 ****
Summary: liblookdb Database interface libraries
Name: liblookdbmsingres-oi
! %define version 0.2.0
Version: %{version}
Release: 1
! Group: Libraries
! Source: cvs:/u/cvs/liblookdb-%{version}.tar.gz
Copyright: LGPL
! BuildRoot: /tmp/liblookdb
Provides: liblookdbms
--- 1,14 ----
Summary: liblookdb Database interface libraries
Name: liblookdbmsingres-oi
! %define version 0.2.1
Version: %{version}
Release: 1
! Group: Development/Libraries
! Source: http://download.sourceforge.net/liblookdb/liblookdb-%{version}.tar.gz
Copyright: LGPL
! Vendor: LOOK Systems <lib...@lo...>
! BuildRoot: /var/tmp/liblookdb-devel
! URL: http://liblookdb.sourceforge.net
! Packager: Stephen Jackson <Ste...@lo...>
Provides: liblookdbms
***************
*** 15,23 ****
# Produce the source with
# mkdir liblookdb-%{version}
! # cd liblookdb-%{version}
! # cvs export -rliblookdb-RELEASE-0_2_0 liblookdb
! # cd ..
! # tar cvf liblookdb-%{version}.tar liblookdb-%{version}
! # gzip liblookdb-%{version}.tar.gz
# rm -r liblookdb-%{version}
# You must export the correct II_SYSTEM before building the RPM.
--- 18,23 ----
# Produce the source with
# mkdir liblookdb-%{version}
! # ( cd liblookdb-%{version} && cvs export -rliblookdb-RELEASE-0_2_1 liblookdb )
! # tar czvf liblookdb-%{version}.tar.gz liblookdb-%{version}
# rm -r liblookdb-%{version}
# You must export the correct II_SYSTEM before building the RPM.
Index: liblookdbmsoci.spec
===================================================================
RCS file: /cvsroot/liblookdb/liblookdb/packaging/SPECS/liblookdbmsoci.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** liblookdbmsoci.spec 2001/09/28 16:07:43 1.5
--- liblookdbmsoci.spec 2002/01/28 14:10:04 1.6
***************
*** 1,11 ****
Summary: liblookdb Database interface libraries
Name: liblookdbmsoci
! %define version 0.2.0
Version: %{version}
Release: 1
! Group: Libraries
! Source: cvs:/u/cvs/liblookdb-%{version}.tar.gz
Copyright: LGPL
! BuildRoot: /tmp/liblookdb
Provides: liblookdbms
--- 1,14 ----
Summary: liblookdb Database interface libraries
Name: liblookdbmsoci
! %define version 0.2.1
Version: %{version}
Release: 1
! Group: Development/Libraries
! Source: http://download.sourceforge.net/liblookdb/liblookdb-%{version}.tar.gz
Copyright: LGPL
! Vendor: LOOK Systems <lib...@lo...>
! BuildRoot: /var/tmp/liblookdb-devel
! URL: http://liblookdb.sourceforge.net
! Packager: Stephen Jackson <Ste...@lo...>
Provides: liblookdbms
***************
*** 15,23 ****
# Produce the source with
# mkdir liblookdb-%{version}
! # cd liblookdb-%{version}
! # cvs export -rliblookdb-RELEASE-0_2_0 liblookdb
! # cd ..
! # tar cvf liblookdb-%{version}.tar liblookdb-%{version}
! # gzip liblookdb-%{version}.tar.gz
# rm -r liblookdb-%{version}
# You must export the correct ORACLE_HOME before building the RPM.
--- 18,23 ----
# Produce the source with
# mkdir liblookdb-%{version}
! # ( cd liblookdb-%{version} && cvs export -rliblookdb-RELEASE-0_2_1 liblookdb )
! # tar czvf liblookdb-%{version}.tar.gz liblookdb-%{version}
# rm -r liblookdb-%{version}
# You must export the correct ORACLE_HOME before building the RPM.
Index: liblookdbmspostgres.spec
===================================================================
RCS file: /cvsroot/liblookdb/liblookdb/packaging/SPECS/liblookdbmspostgres.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** liblookdbmspostgres.spec 2002/01/08 17:17:05 1.8
--- liblookdbmspostgres.spec 2002/01/28 14:10:04 1.9
***************
*** 1,11 ****
Summary: liblookdb Database interface libraries
Name: liblookdbmspostgres
! %define version 0.2.0
Version: %{version}
Release: 1
! Group: Libraries
! Source: cvs:/u/cvs/liblookdb-%{version}.tar.gz
Copyright: LGPL
! BuildRoot: /tmp/liblookdb
Provides: liblookdbms
--- 1,14 ----
Summary: liblookdb Database interface libraries
Name: liblookdbmspostgres
! %define version 0.2.1
Version: %{version}
Release: 1
! Group: Development/Libraries
! Source: http://download.sourceforge.net/liblookdb/liblookdb-%{version}.tar.gz
Copyright: LGPL
! Vendor: LOOK Systems <lib...@lo...>
! BuildRoot: /var/tmp/liblookdb-devel
! URL: http://liblookdb.sourceforge.net
! Packager: Stephen Jackson <Ste...@lo...>
Provides: liblookdbms
***************
*** 15,23 ****
# Produce the source with
# mkdir liblookdb-%{version}
! # cd liblookdb-%{version}
! # cvs export -rliblookdb-RELEASE-0_2_0 liblookdb
! # cd ..
! # tar cvf liblookdb-%{version}.tar liblookdb-%{version}
! # gzip liblookdb-%{version}.tar.gz
# rm -r liblookdb-%{version}
# You must install the postgresql-devel RPM before building this one.
--- 18,23 ----
# Produce the source with
# mkdir liblookdb-%{version}
! # ( cd liblookdb-%{version} && cvs export -rliblookdb-RELEASE-0_2_1 liblookdb )
! # tar czvf liblookdb-%{version}.tar.gz liblookdb-%{version}
# rm -r liblookdb-%{version}
# You must install the postgresql-devel RPM before building this one.
|
|
From: Stephen J. <spj...@us...> - 2002-01-28 14:03:34
|
Update of /cvsroot/liblookdb/liblookdb In directory usw-pr-cvs1:/tmp/cvs-serv13201 Modified Files: configure Log Message: Configuration for DBI interface to work with Perl 5.6.0 and above. Index: configure =================================================================== RCS file: /cvsroot/liblookdb/liblookdb/configure,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** configure 2002/01/15 13:19:06 1.17 --- configure 2002/01/28 14:03:32 1.18 *************** *** 24,27 **** --- 24,30 ---- ## ============ ## $Log$ + ## Revision 1.18 2002/01/28 14:03:32 spjackson + ## Configuration for DBI interface to work with Perl 5.6.0 and above. + ## ## Revision 1.17 2002/01/15 13:19:06 clive ## builds liblookdbmsdbi on alpha with cc rather than gcc. Tidied dbi-specific *************** *** 186,189 **** --- 189,193 ---- PERLLDFLAGS=`perl -MExtUtils::Embed -e ldopts` PERLXSIOBJ=perlxsi.o + PERLCCFLAGS="$PERLCCFLAGS -DPERL_POLLUTE" LOOK_CC=cc ;; |
|
From: Stephen J. <spj...@us...> - 2002-01-22 17:05:47
|
Update of /cvsroot/liblookdb/liblookdb In directory usw-pr-cvs1:/tmp/cvs-serv27689 Modified Files: ChangeLog Log Message: Include Clive's fixes to OCI and DBI interfaces from today. Index: ChangeLog =================================================================== RCS file: /cvsroot/liblookdb/liblookdb/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ChangeLog 2002/01/16 10:37:55 1.3 --- ChangeLog 2002/01/22 17:05:43 1.4 *************** *** 1,2 **** --- 1,11 ---- + 2002-01-22 Clive George <cl...@lo...> + * lookdbinterface/lookdbinterfacedbi.c: + Catches connection failure. + Renames error numbers so they don't get disguised as invalid password. + + 2002-01-22 Clive George <cl...@lo...> + * lookdbinterface/lookdbinterfaceoci.cpp: + Need explicit rollback on logoff + 2002-01-15 Stephen Jackson <st...@lo...> |