svn commit: r502268 - head/graphics/frogr

Piotr Kubaj pkubaj at FreeBSD.org
Wed May 22 13:09:30 UTC 2019


Author: pkubaj
Date: Wed May 22 13:09:29 2019
New Revision: 502268
URL: https://svnweb.freebsd.org/changeset/ports/502268

Log:
  graphics/frogr: fix build with GCC-based architectures
  
  /usr/local/include/libsoup-2.4/libsoup/soup-session-async.h: In function '_soup_session_async_get_type_undeprecated':
  /usr/local/include/libsoup-2.4/libsoup/soup-session-async.h:44: warning: 'soup_session_async_get_type' is deprecated (declared at /usr/local/include/libsoup-2.4/libsoup/soup-session-async.h:38)
  
  With GCC8, it doesn't cause a warning (and error, because -Werror).
  
  Approved by:	mentors (implicit approval)

Modified:
  head/graphics/frogr/Makefile

Modified: head/graphics/frogr/Makefile
==============================================================================
--- head/graphics/frogr/Makefile	Wed May 22 12:53:34 2019	(r502267)
+++ head/graphics/frogr/Makefile	Wed May 22 13:09:29 2019	(r502268)
@@ -18,7 +18,7 @@ LIB_DEPENDS=	libsoup-2.4.so:devel/libsoup \
 		libjson-glib-1.0.so:devel/json-glib \
 		libgcrypt.so:security/libgcrypt
 
-USES=		meson ninja tar:xz pkgconfig gettext-runtime gettext-tools
+USES=		compiler:c++11-lang meson ninja tar:xz pkgconfig gettext-runtime gettext-tools
 USE_GNOME=	libxml2 glib20 gtk30
 
 CFLAGS+=	-I${LOCALBASE}/include


More information about the svn-ports-all mailing list