You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ns...@apache.org on 2008/05/09 22:10:07 UTC

svn commit: r654927 - in /incubator/qpid/trunk/qpid/cpp: configure.ac qpidc.spec.in

Author: nsantos
Date: Fri May  9 13:10:07 2008
New Revision: 654927

URL: http://svn.apache.org/viewvc?rev=654927&view=rev
Log:
QPID-1047: Qpidc.spec.in is missing dependencies and has misplaced files -- applied patch from Matt Farrellee

Modified:
    incubator/qpid/trunk/qpid/cpp/configure.ac
    incubator/qpid/trunk/qpid/cpp/qpidc.spec.in

Modified: incubator/qpid/trunk/qpid/cpp/configure.ac
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/configure.ac?rev=654927&r1=654926&r2=654927&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/configure.ac (original)
+++ incubator/qpid/trunk/qpid/cpp/configure.ac Fri May  9 13:10:07 2008
@@ -216,6 +216,7 @@
 if test $use_xml != no; then
   # Then see if XQilla is available
   AC_CHECK_LIB([xerces-c], [_init], , [use_xml=no])
+  AC_CHECK_HEADER([xercesc/framework/MemBufInputSource.hpp], , [use_xml=no])
   AC_CHECK_HEADER([xqilla/xqilla-simple.hpp], , [use_xml=no])
   AC_CHECK_LIB([xqilla], [canonicalCombiningClassTable], , [use_xml=no])
   

Modified: incubator/qpid/trunk/qpid/cpp/qpidc.spec.in
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/qpidc.spec.in?rev=654927&r1=654926&r2=654927&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/qpidc.spec.in (original)
+++ incubator/qpid/trunk/qpid/cpp/qpidc.spec.in Fri May  9 13:10:07 2008
@@ -7,7 +7,7 @@
 
 Name:           @PACKAGE@
 Version:        @VERSION@
-Release:        32%{?dist}
+Release:        33%{?dist}
 Summary:        Libraries for Qpid C++ client applications
 Group:          System Environment/Libraries
 License:        Apache Software License
@@ -60,6 +60,9 @@
 Requires: xerces-c
 Requires: cyrus-sasl
 BuildRequires: cyrus-sasl-devel
+BuildRequires: xqilla-devel
+BuildRequires: xerces-c-devel
+BuildRequires: openais-devel
 
 %description -n %{qpidd}
 A message broker daemon that receives stores and routes messages using
@@ -71,6 +74,8 @@
 Requires: %name-devel = %version-%release
 Requires: %{qpidd} = %version-%release
 Requires: openais-devel
+Requires: boost-devel
+Requires: xqilla-devel
 
 %description -n %{qpidd}-devel
 Libraries and header files for developing extensions to the
@@ -114,7 +119,6 @@
 %_libdir/libqpidcommon.so.0.1.0
 %_libdir/libqpidclient.so.0
 %_libdir/libqpidclient.so.0.1.0
-%config(noreplace) %_sysconfdir/qpidd.conf
 
 %files devel
 %defattr(-,root,root,-)
@@ -139,6 +143,7 @@
 %_libdir/libqpidcluster.so.0
 %_libdir/libqpidcluster.so.0.1.0
 %_sbindir/%{qpidd}
+%config(noreplace) %_sysconfdir/qpidd.conf
 %config(noreplace) %_sysconfdir/sasl2/qpidd.conf
 %{_initrddir}/%{qpidd}
 %attr(755, qpidd, qpidd) %_localstatedir/lib/qpidd
@@ -176,6 +181,12 @@
 /sbin/ldconfig
 
 %changelog
+* Fri May  9 2008 Matthew Farrellee <mf...@redhat> - 0.2-33
+- Moved qpidd.conf from qpidc package to qpidd package
+- Added BuildRequires xqilla-devel and xerces-c-devel to qpidd for XML Exchange
+- Added BuildRequires openais-devel to qpidd for CPG
+- Added missing Requires xqilla-devel to qpidd-devel
+
 * Thu May  8 2008 Matthew Farrellee <mf...@redhat> - 0.2-32
 - Added sasl2 config file for qpidd
 - Added cyrus-sasl dependencies