Skip to content
Snippets Groups Projects
Commit 94f514e6 authored by yanmorin's avatar yanmorin
Browse files

RPM spec fixe
Add name to constant, else it won't compile with zeroconf enabled
parent fefef162
Branches
Tags
No related merge requests found
...@@ -12,7 +12,7 @@ License: GPL ...@@ -12,7 +12,7 @@ License: GPL
Group: System Environment/Daemons Group: System Environment/Daemons
URL: http://www.sflphone.org/ URL: http://www.sflphone.org/
Packager: Cyrille Béraud <cyrille.beraud@savoirfairelinux.com> Packager: Cyrille Béraud <cyrille.beraud@savoirfairelinux.com>
Source0: http://www.sflphone.org/releases/%{name}-{%version}.tar.gz Source0: http://www.sflphone.org/releases/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
Requires: commoncpp2 ccrtp libosip2 libeXosip2 portaudio Requires: commoncpp2 ccrtp libosip2 libeXosip2 portaudio
BuildRequires: autoconf BuildRequires: autoconf
......
...@@ -1324,7 +1324,7 @@ ManagerImpl::initVolume() ...@@ -1324,7 +1324,7 @@ ManagerImpl::initVolume()
* Main Thread * Main Thread
*/ */
bool bool
ManagerImpl::getZeroconf(const std::string& ) ManagerImpl::getZeroconf(const std::string& sequenceId)
{ {
bool returnValue = false; bool returnValue = false;
#ifdef USE_ZEROCONF #ifdef USE_ZEROCONF
...@@ -1366,7 +1366,7 @@ ManagerImpl::getZeroconf(const std::string& ) ...@@ -1366,7 +1366,7 @@ ManagerImpl::getZeroconf(const std::string& )
* Main Thread * Main Thread
*/ */
bool bool
ManagerImpl::attachZeroconfEvents(const std::string& , Pattern::Observer& ) ManagerImpl::attachZeroconfEvents(const std::string& sequenceId, Pattern::Observer& observer)
{ {
bool returnValue = false; bool returnValue = false;
// don't need the _gui like getZeroconf function // don't need the _gui like getZeroconf function
...@@ -1382,7 +1382,7 @@ ManagerImpl::attachZeroconfEvents(const std::string& , Pattern::Observer& ) ...@@ -1382,7 +1382,7 @@ ManagerImpl::attachZeroconfEvents(const std::string& , Pattern::Observer& )
return returnValue; return returnValue;
} }
bool bool
ManagerImpl::detachZeroconfEvents(Pattern::Observer& ) ManagerImpl::detachZeroconfEvents(Pattern::Observer& observer)
{ {
bool returnValue = false; bool returnValue = false;
#ifdef USE_ZEROCONF #ifdef USE_ZEROCONF
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment