Hello community, here is the log from the commit of package psqlODBC checked in at Thu Dec 14 02:05:55 CET 2006. -------- --- psqlODBC/psqlODBC.changes 2006-01-25 21:40:40.000000000 +0100 +++ /mounts/work_src_done/STABLE/psqlODBC/psqlODBC.changes 2006-12-13 15:55:08.000000000 +0100 @@ -1,0 +2,9 @@ +Wed Dec 13 15:34:15 CET 2006 - max@suse.de + +- Avoid literal string comparison (#228225) +- New version: 08.02.0200 + - Added support for SSL and Kerberos + - Reduce compiler warnings on x86_64 + - Many more improvements + +------------------------------------------------------------------- Old: ---- psqlodbc-08.01.0102.tar.bz2 New: ---- psqlODBC-literal.patch psqlodbc-08.02.0200.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ psqlODBC.spec ++++++ --- /var/tmp/diff_new_pack.0UXEC5/_old 2006-12-14 02:05:42.000000000 +0100 +++ /var/tmp/diff_new_pack.0UXEC5/_new 2006-12-14 02:05:42.000000000 +0100 @@ -1,25 +1,26 @@ # -# spec file for package psqlODBC (Version 08.01.0102) +# spec file for package psqlODBC (Version 08.02.0200) # # Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine # package are under the same license as the package itself. # -# Please submit bugfixes or comments via http://bugs.opensuse.org +# Please submit bugfixes or comments via http://bugs.opensuse.org/ # # norootforbuild Name: psqlODBC -BuildRequires: postgresql-devel unixODBC-devel +BuildRequires: openssl-devel postgresql-devel unixODBC-devel URL: http://pgfoundry.org/projects/psqlodbc %define tarname psqlodbc Summary: ODBC Driver for PostgreSQL -Version: 08.01.0102 +Version: 08.02.0200 Release: 1 -License: LGPL +License: GNU Library General Public License v. 2.0 and 2.1 (LGPL) Group: Productivity/Databases/Clients Source0: %tarname-%{version}.tar.bz2 +Patch1: psqlODBC-literal.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build Obsoletes: pg_odbc postgresql-odbc Provides: pg_odbc postgresql-odbc pg_iface:/usr/lib/pgsql/odbcinst.ini @@ -42,11 +43,13 @@ %prep %setup -q -n %tarname-%version +%patch1 %build +# they don't ship configure.in, so we have to patch configure :( +sed -i '/LDFLAGS=/s/\$pg_libs//' configure export CFLAGS="%optflags -fno-strict-aliasing -I/usr/include/pgsql" %configure --with-unixodbc -make %install make DESTDIR=%buildroot install @@ -67,6 +70,12 @@ %_libdir/psql* %changelog -n psqlODBC +* Wed Dec 13 2006 - max@suse.de +- Avoid literal string comparison (#228225) +- New version: 08.02.0200 + - Added support for SSL and Kerberos + - Reduce compiler warnings on x86_64 + - Many more improvements * Wed Jan 25 2006 - mls@suse.de - converted neededforbuild to BuildRequires * Fri Jan 13 2006 - max@suse.de ++++++ psqlODBC-literal.patch ++++++ --- dlg_specific.c +++ dlg_specific.c @@ -876,7 +876,7 @@ { char tmp[128]; - if (ODBCINST_INI == fileName && NULL == sectionName) + if ((strcmp( ODBCINST_INI, fileName) == 0) && NULL == sectionName) sectionName = DBMS_NAME; sprintf(tmp, "%d", comval->fetch_max); ++++++ psqlodbc-08.01.0102.tar.bz2 -> psqlodbc-08.02.0200.tar.bz2 ++++++ ++++ 55455 lines of diff (skipped) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@suse.de