3cfbe1
%global advanced_branch		1
3cfbe1
%global svnrev			2451
3cfbe1
3cfbe1
%{!?release_func:%global release_func() %%{?prerelease:0.}%1%%{?prerelease:.%%prerelease}%%{?dist}}
3cfbe1
3cfbe1
Summary:	A lightweight RPC library based on XML and HTTP
3cfbe1
Name:		xmlrpc-c
3cfbe1
Version:	1.32.5
2fd857
Release:	%release_func 1905.svn%svnrev
3cfbe1
# See COPYING for details.
3cfbe1
# The Python 1.5.2 license used by a few files is just BSD.
3cfbe1
# GPL+: lib/util/getoptx.{c,h}
3cfbe1
# Public Domain: grep -Ri "public domain" *
3cfbe1
License:	BSD and MIT and GPL+ and Public Domain
3cfbe1
Group:		System Environment/Libraries
3cfbe1
URL:		http://xmlrpc-c.sourceforge.net/
3cfbe1
%{!?advanced_branch:Source0:	http://dl.sourceforge.net/sourceforge/xmlrpc-c/xmlrpc-%version.tgz}
3cfbe1
# generated by 'make svn-sources [SVN_VER=%version SVN_REV=%svnrev]'. Unfortunately,
3cfbe1
# upstream does not tag versions so we must fetch from the branch and
3cfbe1
# check which version was used for it
3cfbe1
%{?advanced_branch:Source0:	xmlrpc-c-%version.tar.xz}
3cfbe1
3cfbe1
Source100:	dfs.cc
3cfbe1
Source101:	dso-fixup
3cfbe1
3cfbe1
Patch100:	xmlrpc-c-cmake.patch
3cfbe1
Patch102:	xmlrpc-c-printf-size_t.patch
3cfbe1
Patch105:	xmlrpc-c-longlong.patch
3cfbe1
Patch107:	xmlrpc-c-uninit-curl.patch
3cfbe1
Patch108:	xmlrpc-c-30x-redirect.patch
3cfbe1
Patch109:	xmlrpc-c-check-vasprintf-return-value.patch
3cfbe1
Patch110:	xmlrpc-c-include-string_int.h.patch
3cfbe1
3cfbe1
3cfbe1
BuildRoot:	%_tmppath/%name-%version-%release-root
3cfbe1
BuildRequires:	cmake
3cfbe1
BuildRequires:	curl-devel libxml2-devel readline-devel ncurses-devel
3cfbe1
3cfbe1
%package c++
3cfbe1
Summary:	C++ libraries for xmlrpc-c
3cfbe1
Group:		System Environment/Libraries
3cfbe1
Requires:	%name%{?_isa} = %version-%release
3cfbe1
3cfbe1
%package client
3cfbe1
Summary:	C client libraries for xmlrpc-c
3cfbe1
Group:		System Environment/Libraries
3cfbe1
Requires:	%name%{?_isa} = %version-%release
3cfbe1
3cfbe1
%package client++
3cfbe1
Summary:	C++ client libraries for xmlrpc-c
3cfbe1
Group:		System Environment/Libraries
3cfbe1
Requires:	%name%{?_isa} = %version-%release
3cfbe1
Requires:	%name-c++%{?_isa} = %version-%release
3cfbe1
Requires:	%name-client%{?_isa} = %version-%release
3cfbe1
3cfbe1
%package devel
3cfbe1
Summary:	Development files for xmlrpc-c based programs
3cfbe1
Group:		Development/Libraries
3cfbe1
Requires:	%name%{?_isa} = %version-%release
3cfbe1
Requires:	%name-c++%{?_isa} = %version-%release
3cfbe1
Requires:	%name-client%{?_isa} = %version-%release
3cfbe1
Requires:	%name-client++%{?_isa} = %version-%release
3cfbe1
3cfbe1
%package apps
3cfbe1
Summary:	Sample XML-RPC applications
3cfbe1
Group:		Applications/Internet
3cfbe1
Requires:	%name%{?_isa} = %version-%release
3cfbe1
Requires:	%name-c++%{?_isa} = %version-%release
3cfbe1
Requires:	%name-client%{?_isa} = %version-%release
3cfbe1
Requires:	%name-client++%{?_isa} = %version-%release
3cfbe1
3cfbe1
3cfbe1
%description
3cfbe1
XML-RPC is a quick-and-easy way to make procedure calls over the
3cfbe1
Internet. It converts the procedure call into XML document, sends it
3cfbe1
to a remote server using HTTP, and gets back the response as XML.
3cfbe1
3cfbe1
This library provides a modular implementation of XML-RPC for C.
3cfbe1
3cfbe1
3cfbe1
%description c++
3cfbe1
XML-RPC is a quick-and-easy way to make procedure calls over the
3cfbe1
Internet. It converts the procedure call into XML document, sends it
3cfbe1
to a remote server using HTTP, and gets back the response as XML.
3cfbe1
3cfbe1
This library provides a modular implementation of XML-RPC for C++.
3cfbe1
3cfbe1
3cfbe1
%description client
3cfbe1
XML-RPC is a quick-and-easy way to make procedure calls over the
3cfbe1
Internet. It converts the procedure call into XML document, sends it
3cfbe1
to a remote server using HTTP, and gets back the response as XML.
3cfbe1
3cfbe1
This library provides a modular implementation of XML-RPC for C
3cfbe1
clients.
3cfbe1
3cfbe1
%description client++
3cfbe1
XML-RPC is a quick-and-easy way to make procedure calls over the
3cfbe1
Internet. It converts the procedure call into XML document, sends it
3cfbe1
to a remote server using HTTP, and gets back the response as XML.
3cfbe1
3cfbe1
This library provides a modular implementation of XML-RPC for C++
3cfbe1
clients.
3cfbe1
3cfbe1
3cfbe1
%description devel
3cfbe1
Static libraries and header files for writing XML-RPC applications in
3cfbe1
C and C++.
3cfbe1
3cfbe1
3cfbe1
%description apps
3cfbe1
XML-RPC is a quick-and-easy way to make procedure calls over the
3cfbe1
Internet. It converts the procedure call into XML document, sends it
3cfbe1
to a remote server using HTTP, and gets back the response as XML.
3cfbe1
3cfbe1
This package contains some handy XML-RPC demo applications.
3cfbe1
3cfbe1
3cfbe1
%prep
3cfbe1
%setup -q
3cfbe1
%patch100 -p1
3cfbe1
%patch102 -p1
3cfbe1
%patch105 -p1
3cfbe1
%patch107 -p1
3cfbe1
%patch108 -p1
3cfbe1
%patch109 -p1
3cfbe1
%patch110 -p1
3cfbe1
3cfbe1
## not needed...
3cfbe1
rm doc/{INSTALL,configure_doc}
3cfbe1
3cfbe1
3cfbe1
%build
3cfbe1
mkdir -p build
3cfbe1
cd build
3cfbe1
export CFLAGS="$RPM_OPT_FLAGS -Wno-uninitialized -Wno-unknown-pragmas"
3cfbe1
export CXXFLAGS="$RPM_OPT_FLAGS"
3cfbe1
export LDFLAGS="-Wl,-as-needed"
3cfbe1
cmake .. \
3cfbe1
	-D_lib:STRING=%_lib			\
3cfbe1
	-DMUST_BUILD_CURL_CLIENT:BOOL=ON	\
3cfbe1
	-DMUST_BUILD_LIBWWW_CLIENT:BOOL=OFF	\
3cfbe1
        -DCMAKE_INSTALL_PREFIX:PATH=%_prefix	\
3cfbe1
        -DBUILD_SHARED_LIBS:BOOL=ON		\
3cfbe1
	-DENABLE_TOOLS:BOOL=ON
3cfbe1
make VERBOSE=1 %{?_smp_mflags}
3cfbe1
3cfbe1
%__cxx $RPM_OPT_FLAGS %SOURCE100 -o depsort
3cfbe1
3cfbe1
3cfbe1
%install
3cfbe1
rm -rf $RPM_BUILD_ROOT
3cfbe1
cd build
3cfbe1
make install DESTDIR=$RPM_BUILD_ROOT
3cfbe1
3cfbe1
chmod +x $RPM_BUILD_ROOT%_libdir/*.so
3cfbe1
3cfbe1
%SOURCE101 "$RPM_BUILD_ROOT" "%_libdir" 'libxmlrpc' $RPM_BUILD_ROOT%_libdir/libxmlrpc*.so.[0-9]
3cfbe1
3cfbe1
3cfbe1
%check
3cfbe1
unset PKG_CONFIG_PATH
3cfbe1
export PKG_CONFIG_LIBDIR=$RPM_BUILD_ROOT%_libdir/pkgconfig:%_libdir/pkgconfig:%_datadir/pkgconfig
3cfbe1
PATH=$RPM_BUILD_ROOT%_bindir:$PATH
3cfbe1
3cfbe1
_e() {
3cfbe1
     echo "\$ $@"
3cfbe1
     "$@"
3cfbe1
}
3cfbe1
3cfbe1
set +x
3cfbe1
_e xmlrpc-c-config --help
3cfbe1
for comp in c++ cgi-server server-util abyss-server client libwww-client; do
3cfbe1
	for opt in '--version' '--libs' 'c++2 --libs' 'c++ --libs --static'; do
3cfbe1
		_e xmlrpc-c-config "$comp" $opt
3cfbe1
	done
3cfbe1
done
3cfbe1
set -x
3cfbe1
3cfbe1
3cfbe1
%clean
3cfbe1
rm -rf $RPM_BUILD_ROOT
3cfbe1
3cfbe1
3cfbe1
%post   -p /sbin/ldconfig
3cfbe1
%postun -p /sbin/ldconfig
3cfbe1
3cfbe1
%post client   -p /sbin/ldconfig
3cfbe1
%postun client -p /sbin/ldconfig
3cfbe1
3cfbe1
%post c++   -p /sbin/ldconfig
3cfbe1
%postun c++ -p /sbin/ldconfig
3cfbe1
3cfbe1
%post client++   -p /sbin/ldconfig
3cfbe1
%postun client++ -p /sbin/ldconfig
3cfbe1
3cfbe1
3cfbe1
3cfbe1
%files
3cfbe1
%defattr(-,root,root,-)
3cfbe1
%doc doc/*
3cfbe1
%_libdir/*.so.3*
3cfbe1
%exclude %_libdir/libxmlrpc_client.so*
3cfbe1
3cfbe1
3cfbe1
%files client
3cfbe1
%defattr(-,root,root,-)
3cfbe1
%_libdir/libxmlrpc_client.so.*
3cfbe1
3cfbe1
3cfbe1
%files c++
3cfbe1
%defattr(-,root,root,-)
3cfbe1
%_libdir/*.so.8*
3cfbe1
%exclude %_libdir/libxmlrpc_client++.so*
3cfbe1
3cfbe1
3cfbe1
%files client++
3cfbe1
%defattr(-,root,root,-)
3cfbe1
%_libdir/libxmlrpc_client++.so.*
3cfbe1
3cfbe1
3cfbe1
%files devel
3cfbe1
%defattr(-,root,root,-)
3cfbe1
%_bindir/xmlrpc-c-config
3cfbe1
%_includedir/xmlrpc-c
3cfbe1
%_includedir/*.h
3cfbe1
%_libdir/pkgconfig/*.pc
3cfbe1
%_libdir/*.so
3cfbe1
3cfbe1
3cfbe1
%files apps
3cfbe1
%defattr(-,root,root,-)
3cfbe1
%doc tools/xmlrpc/xmlrpc.html
3cfbe1
%doc tools/xmlrpc_transport/xmlrpc_transport.html
3cfbe1
%_mandir/man1/*
3cfbe1
%_bindir/xmlrpc
3cfbe1
%_bindir/xmlrpc_transport
3cfbe1
%_bindir/xml-rpc-api2cpp
3cfbe1
%_bindir/xmlrpc_cpp_proxy
3cfbe1
%_bindir/xmlrpc_pstream
3cfbe1
%_bindir/xmlrpc_parsecall
3cfbe1
3cfbe1
%exclude %_bindir/xml-rpc-api2txt
3cfbe1
3cfbe1
3cfbe1
%changelog
2fd857
* Tue Jan 28 2014 Daniel Mach <dmach@redhat.com> - 1.32.5-1905.svn2451
2fd857
- Mass rebuild 2014-01-24
2fd857
2fd857
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.32.5-1904.svn2451
2fd857
- Mass rebuild 2013-12-27
2fd857
3cfbe1
* Wed Jul 31 2013 Michal Srb <msrb@redhat.com> - 1.32.5-1903.svn2451
3cfbe1
- Fix license tag
3cfbe1
3cfbe1
* Thu Apr 25 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.32.5-1902.svn2451
3cfbe1
- Add missing inter-package dependencies
3cfbe1
- Rename fedora directory to build
3cfbe1
3cfbe1
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.32.5-1901.svn2451
3cfbe1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
3cfbe1
3cfbe1
* Sun Dec  9 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.32.5-1900.svn2451
3cfbe1
- updated to 1.32.5
3cfbe1
3cfbe1
* Sun Oct 21 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.32.2-1900.svn2434
3cfbe1
- updated to 1.32.2
3cfbe1
3cfbe1
* Sat Oct  6 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.32.1-1900.svn2413
3cfbe1
- updated to 1.32.1
3cfbe1
3cfbe1
* Sun Aug 26 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.31.4-1900.svn2386
3cfbe1
- updated to 1.31.4
3cfbe1
3cfbe1
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.31.0-1801.svn2365
3cfbe1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
3cfbe1
3cfbe1
* Sun Jul  1 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.31.0-1800.svn2365
3cfbe1
- updated to 1.31.0
3cfbe1
3cfbe1
* Wed Jun  6 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.30.6-1800.svn2328
3cfbe1
- updated to 1.30.6
3cfbe1
3cfbe1
* Sat May 26 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.30.5-1800.svn2324
3cfbe1
- updated to 1.30.5 (IPv6 server fixes)
3cfbe1
3cfbe1
* Sat May 12 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.30.4-1800.svn2318
3cfbe1
- updated to 1.30.4
3cfbe1
3cfbe1
* Thu Apr  5 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.30.1-1800.svn2298
3cfbe1
- updated to 1.30.1
3cfbe1
3cfbe1
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.29.0-1701.svn2233
3cfbe1
- Rebuilt for c++ ABI breakage
3cfbe1
3cfbe1
* Wed Jan  4 2012 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.29.0-1700.svn2233
3cfbe1
- updated to 1.29.0
3cfbe1
3cfbe1
* Mon Oct  3 2011 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.28.1-1700.svn2203
3cfbe1
- updated to 1.28.1
3cfbe1
3cfbe1
* Mon Oct  3 2011 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.27.5-1701.svn2185
3cfbe1
- fixed error handling when transfering too large files (#741980)
3cfbe1
3cfbe1
* Sat Aug 27 2011 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.27.5-1700.svn2185
3cfbe1
- updated to 1.27.5
3cfbe1
3cfbe1
* Sun Aug  7 2011 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.27.4-1700.svn2171
3cfbe1
- updated to 1.27.4
3cfbe1
3cfbe1
* Sun Aug  7 2011 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.27.3-1700.svn2145
3cfbe1
- updated to 1.27.3
3cfbe1
3cfbe1
* Mon Jun 27 2011 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.27.0-1600.svn2145
3cfbe1
- updated to 1.27.0
3cfbe1
- made it build with recent curl
3cfbe1
3cfbe1
* Mon Jun 13 2011 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.26.3-1600.svn2134
3cfbe1
- updated to 1.26.3
3cfbe1
- removed default-constructor patch; issue is solved upstream
3cfbe1
3cfbe1
* Sat Apr  2 2011 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.26.0-1600.svn2188
3cfbe1
- updated to 1.26.0
3cfbe1
3cfbe1
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.25.1-1501.svn2077
3cfbe1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
3cfbe1
3cfbe1
* Thu Jan  6 2011 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.25.1-1500.svn2077
3cfbe1
- updated to 1.25.1
3cfbe1
3cfbe1
* Thu Dec 30 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.25.0-1500.svn2074
3cfbe1
- updated to 1.25.0
3cfbe1
3cfbe1
* Sun Nov  7 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.24.4-1500.svn2042
3cfbe1
- updated to 1.24.4
3cfbe1
3cfbe1
* Sat Oct  9 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.24.1-1500.svn1987
3cfbe1
- updated to 1.24.1
3cfbe1
- set -Wno-uninitialized CFLAGS; code contains lot of constructs
3cfbe1
  triggering this warning and the 'int a=a' defeaters have been
3cfbe1
  removed in this version
3cfbe1
3cfbe1
* Fri Aug 27 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.23.02-1500.svn1968
3cfbe1
- updated to 1.23.02 (note: this breaks C++ ABI)
3cfbe1
- added vasprintf patch
3cfbe1
3cfbe1
* Thu Jul 29 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.23.01-1400.svn1958
3cfbe1
- updated to 1.23.01
3cfbe1
- added patch to make curl follow HTTP POST 301 redirects (#618504)
3cfbe1
3cfbe1
* Sun Apr 18 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.22.01-1400.svn1907
3cfbe1
- updated to 1.22.01 (svn 1907)
3cfbe1
3cfbe1
* Tue Feb 23 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.21.00-1401.1851
3cfbe1
- require the various subpackages explicitly for -devel; the ld linker
3cfbe1
  scripts broke rpm's autodetection (#567400)
3cfbe1
- removed -devel Requires: which are covered by pkgconfig autodeps
3cfbe1
- added %%{?_isa} annotations
3cfbe1
3cfbe1
* Sun Feb 21 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.21.00-1400.1851
3cfbe1
- made linker scripts more 'ldconfig' friendly
3cfbe1
3cfbe1
* Mon Feb 15 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.21.00-1301.1851
3cfbe1
- replaced .so symlinks by linker scripts which add all implicit
3cfbe1
  dependencies in AS_NEEDED() commands (#564607, #565577)
3cfbe1
3cfbe1
* Thu Jan 14 2010 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.21.00-1300.1851
3cfbe1
- updated to 1.21.00 (rev 1851)
3cfbe1
- removed curl-trace patch as applied upstream
3cfbe1
- rediffed patches
3cfbe1
3cfbe1
* Sat Nov 21 2009 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.20.3-1.1841
3cfbe1
- updated to rev1841
3cfbe1
- rediffed patches
3cfbe1
- added patch to fix handling of wrong certificates (Nikola Pajkovsky)
3cfbe1
- added support for $XMLRPC_TRACE_CURL env (John Dennis)
3cfbe1
3cfbe1
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.16.6-3.1582
3cfbe1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
3cfbe1
3cfbe1
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.16.6-2.1582
3cfbe1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
3cfbe1
3cfbe1
* Thu Dec 11 2008 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.16.6-1.1582
3cfbe1
- updated to 1.16.6; rediffed patches
3cfbe1
- fixed client headers (bug #475887)
3cfbe1
3cfbe1
* Sat Nov 15 2008 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.16.4.1567-2
3cfbe1
- updated to 1.16.4
3cfbe1
- rediffed/updated patches
3cfbe1
- splitted some subpackages (c++, client) out of main package as they
3cfbe1
  introduce additional dependencies (c++, curl)
3cfbe1
3cfbe1
* Sat Sep  6 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.14.8-2
3cfbe1
- fix license tag
3cfbe1
3cfbe1
* Sat Jun 21 2008 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.14.8-1
3cfbe1
- updated to 1.14.8
3cfbe1
3cfbe1
* Sun May 25 2008 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.14.6-1
3cfbe1
- updated to 1.14.6
3cfbe1
3cfbe1
* Sat Apr 12 2008 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.14.2-1
3cfbe1
- updated to 1.14.2
3cfbe1
- rediffed patches
3cfbe1
- added patch to fix broken usage of 'long long' datatype
3cfbe1
3cfbe1
* Mon Mar 17 2008 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.13.8-2
3cfbe1
- fixed cmake quoting so that pkgconfig files get correct version number
3cfbe1
- fixed handling of 'server-util' and '--cflags' within xmlrpc-c-config
3cfbe1
3cfbe1
* Sun Mar 16 2008 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.13.8-1
3cfbe1
- updated to 1.13.8
3cfbe1
- removed some patches which were applied upstream
3cfbe1
3cfbe1
* Tue Feb 26 2008 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.13.07-2
3cfbe1
- moved to advanced branched; rediffed/updated existing cmake patch
3cfbe1
  and fixed other compilation issues (#369841)
3cfbe1
3cfbe1
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.06.23-2
3cfbe1
- Autorebuild for GCC 4.3
3cfbe1
3cfbe1
* Wed Jan  2 2008 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.23-1
3cfbe1
- use correct pkg-config script for 'xmlrpc-config abyss-server'
3cfbe1
  output (#355411)
3cfbe1
- updated to 1.06.23 (#355411)
3cfbe1
3cfbe1
* Tue Sep  4 2007 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.18-1
3cfbe1
- updated to 1.06.18
3cfbe1
3cfbe1
* Thu Aug 16 2007 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.17-1
3cfbe1
- updated to 1.06.17
3cfbe1
3cfbe1
* Sun Jul 22 2007 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.16-1
3cfbe1
- updated to 1.06.16
3cfbe1
3cfbe1
* Thu Jun 14 2007 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.14-1
3cfbe1
- updated to 1.06.14
3cfbe1
3cfbe1
* Sun Apr  1 2007 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.11-2
3cfbe1
- rediffed cmake patch against current version
3cfbe1
- made the xmlrpc-c-config compatible to the upstream version
3cfbe1
- added compatibility symlinks for some header files (thx to Robert de
3cfbe1
  Vries for reporting these two issues)
3cfbe1
3cfbe1
* Sat Mar 17 2007 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.11-1
3cfbe1
- updated to 1.06.11
3cfbe1
3cfbe1
* Sat Feb  3 2007 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.09-1
3cfbe1
- updated to 1.06.09
3cfbe1
- removed -typo patch since applied upstream
3cfbe1
3cfbe1
* Mon Nov  6 2006 Jindrich Novy <jnovy@redhat.com> - 1.06.05-3
3cfbe1
- rebuild against the new curl
3cfbe1
3cfbe1
* Mon Oct  2 2006 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.05-2
3cfbe1
- updated cmake patch
3cfbe1
- strip installed libraries
3cfbe1
3cfbe1
* Wed Sep 20 2006 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.05-1
3cfbe1
- updated to 1.06.05
3cfbe1
- merged + updated patches
3cfbe1
3cfbe1
* Sat Sep 16 2006 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.06.04-1
3cfbe1
- updated to 1.06.04
3cfbe1
- patched the broken buildsystem
3cfbe1
- disabled libwww backend explicitely
3cfbe1
3cfbe1
* Sun Jun  4 2006 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.05-1
3cfbe1
- updated to 1.05
3cfbe1
- updated patches
3cfbe1
3cfbe1
* Sat Feb 18 2006 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.04-2
3cfbe1
- rebuilt for FC5
3cfbe1
3cfbe1
* Sun Dec 18 2005 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.04-1
3cfbe1
- added libxml2-devel and openssl-devel Requires: for the -devel
3cfbe1
  subpackage
3cfbe1
- ship doc/* instead of doc
3cfbe1
- initial Fedora Extras package (review 175840)
3cfbe1
3cfbe1
* Thu Dec 15 2005 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.04-0.1
3cfbe1
- disabled w3c-libwww because it does not exist anymore in FC5 and
3cfbe1
  seems to be unmaintained upstream
3cfbe1
- added missing libxml2-devel
3cfbe1
- cleaned up list of %%doc files
3cfbe1
- fixed gcc4.1 build issues
3cfbe1
- removed static libraries when there exists a corresponding dynamic one
3cfbe1
3cfbe1
* Tue Aug  2 2005 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> - 1.03.02-1
3cfbe1
- Initial build.