GNOME Bugzilla – Bug 720369
Build failure on 0.20.8 with --enable-debug
Last modified: 2013-12-14 14:59:15 UTC
Seeing the following build failure when building gupnp with --enable-debug on commit 78b3f02d: CC gupnp-service-proxy.lo gupnp-service-proxy.c: In function 'gupnp_service_proxy_send_action_hash': gupnp-service-proxy.c:658:9: error: 'gupnp_service_proxy_begin_action_hash' is deprecated (declared at gupnp-service-proxy.h:181) [-Werror=deprecated-declarations] Building is successful without --enable-debug Let me know if you need more info...
Created attachment 264139 [details] [review] Ignore deprecation warning when in a deprecated function The deprecated call is inside another deprecated function, so we can use G_GNUC_*_IGNORE_DEPRECATIONS if we want to. Looks ugly but works.
Created attachment 264152 [details] [review] Ignore deprecation warning when in a deprecated function ...I guess normal indentation makes sense for a macro.
Review of attachment 264152 [details] [review]: +1
Attachment 264152 [details] pushed as 135a7de - Ignore deprecation warning when in a deprecated function