Update to version 08.03.0100
This commit is contained in:
parent
5bf9ab54d0
commit
e2833741c3
@ -1 +1 @@
|
|||||||
psqlodbc-08.02.0500.tar.gz
|
psqlodbc-08.03.0100.tar.gz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Name: postgresql-odbc
|
Name: postgresql-odbc
|
||||||
Summary: PostgreSQL ODBC driver
|
Summary: PostgreSQL ODBC driver
|
||||||
Version: 08.02.0500
|
Version: 08.03.0100
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
Group: Applications/Databases
|
Group: Applications/Databases
|
||||||
@ -47,13 +47,9 @@ autoheader
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
|
|
||||||
# Note: we choose to build only the Unicode version of the driver, which
|
%configure --with-unixodbc --with-odbcinst=%{_sysconfdir} \
|
||||||
# we then install under the old library name "psqlodbc.so". We are not
|
--disable-dependency-tracking
|
||||||
# adopting the "psqlodbcw.so" naming convention because current upstream
|
|
||||||
# plans are to revert back to the old name in the next release. We can
|
|
||||||
# always track the name change later if they change their minds ...
|
|
||||||
|
|
||||||
%configure --with-unixodbc --with-odbcinst=%{_sysconfdir}
|
|
||||||
make
|
make
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -61,9 +57,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
%makeinstall
|
%makeinstall
|
||||||
|
|
||||||
# rename as per above note, and remove the rather useless .la file
|
# Provide the old library name "psqlodbc.so" as a symlink,
|
||||||
|
# and remove the rather useless .la file
|
||||||
pushd ${RPM_BUILD_ROOT}%{_libdir}
|
pushd ${RPM_BUILD_ROOT}%{_libdir}
|
||||||
mv psqlodbcw.so psqlodbc.so
|
ln -s psqlodbcw.so psqlodbc.so
|
||||||
rm psqlodbcw.la
|
rm psqlodbcw.la
|
||||||
popd
|
popd
|
||||||
|
|
||||||
@ -75,10 +72,17 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%attr(755,root,root) %{_libdir}/psqlodbc.so
|
%attr(755,root,root) %{_libdir}/psqlodbcw.so
|
||||||
|
%{_libdir}/psqlodbc.so
|
||||||
%doc license.txt readme.txt docs/*
|
%doc license.txt readme.txt docs/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Feb 12 2008 Tom Lane <tgl@redhat.com> 08.03.0100-1
|
||||||
|
- Update to version 08.03.0100
|
||||||
|
- Since it looks like upstream has decided to stick with psqlodbcw.so
|
||||||
|
permanently, allow the library to have that name. But continue to
|
||||||
|
provide psqlodbc.so as a symlink.
|
||||||
|
|
||||||
* Fri Nov 2 2007 Tom Lane <tgl@redhat.com> 08.02.0500-1
|
* Fri Nov 2 2007 Tom Lane <tgl@redhat.com> 08.02.0500-1
|
||||||
- Update to version 08.02.0500
|
- Update to version 08.02.0500
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user