SF Bug Tracker id 3511149 - --disable-ssdp has no effect

Submitted: Yoichi NAKAYAMA ( yoichi ) - 2012-03-25 18:14:34 PDT

There are typos in upnp/src/inc/config.h "EXCLUDE_SSSDP" (shold be
EXCLUDE_SSDP), therefore EXCLUDE_SSDP is always 0, and --disable-ssdp
has no effect.
(cherry picked from commit 02afbb09c9)
This commit is contained in:
Fabrice Fontaine 2012-03-26 14:07:52 +02:00 committed by Marcelo Roberto Jimenez
parent f99dba3967
commit cc99e6e865
2 changed files with 12 additions and 2 deletions

View File

@ -332,6 +332,16 @@ Version 1.8.0
Version 1.6.17
*******************************************************************************
2012-03-26 Fabrice Fontaine <fabrice.fontaine(at)orange.com>
SF Bug Tracker id 3511149 - --disable-ssdp has no effect
Submitted: Yoichi NAKAYAMA ( yoichi ) - 2012-03-25 18:14:34 PDT
There are typos in upnp/src/inc/config.h "EXCLUDE_SSSDP" (shold be
EXCLUDE_SSDP), therefore EXCLUDE_SSDP is always 0, and --disable-ssdp
has no effect.
2012-03-24 Fabrice Fontaine <fabrice.fontaine(at)orange.com>
Remove implicit casts

View File

@ -444,9 +444,9 @@
/* configure --enable-ssdp */
#undef EXCLUDE_SSDP
#if UPNP_HAVE_SSDP
# define EXCLUDE_SSSDP 0
# define EXCLUDE_SSDP 0
#else
# define EXCLUDE_SSSDP 1
# define EXCLUDE_SSDP 1
#endif
/* configure --enable-soap */