From tkato432@yahoo.com  Mon Dec 16 18:01:01 2013
Return-Path: <tkato432@yahoo.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by hub.freebsd.org (Postfix) with ESMTPS id 8B99D26D
	for <FreeBSD-gnats-submit@FreeBSD.org>; Mon, 16 Dec 2013 18:00:40 +0000 (UTC)
Received: from omta01.auone-net.jp (mail-or1-f17.auone-net.jp [106.187.231.17])
	by mx1.freebsd.org (Postfix) with ESMTP id 4B51517E3
	for <FreeBSD-gnats-submit@FreeBSD.org>; Mon, 16 Dec 2013 18:00:40 +0000 (UTC)
Received: from coppermine.my.domain (ZT030106.ppp.dion.ne.jp [59.128.30.106])
	by omta01.auone-net.jp (au one net mail) with ESMTP id DA581980010
	for <FreeBSD-gnats-submit@FreeBSD.org>; Tue, 17 Dec 2013 03:00:37 +0900 (JST)
Message-Id: <20131217024619.845a09ecaef6bf351a3d8b6c@yahoo.com>
Date: Tue, 17 Dec 2013 02:46:19 +0900
From: KATO Tsuguru <tkato432@yahoo.com>
To: FreeBSD-gnats-submit@FreeBSD.org
Subject: audio/osd-lyrics: Fix build on -current

>Number:         184909
>Category:       ports
>Synopsis:       audio/osd-lyrics: Fix build on -current
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    pawel
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Dec 16 18:10:31 UTC 2013
>Closed-Date:    Tue Dec 24 16:03:54 UTC 2013
>Last-Modified:  Tue Dec 24 16:10:03 UTC 2013
>Originator:     KATO Tsuguru
>Release:        FreeBSD 8.4-RELEASE-p4 i386
>Organization:
>Environment:
>Description:
- Fix build on -current
- Support CXXFLAGS properly
- Support desktop-file-utils/pathfix

New file:
files/patch-lib__chardetect__src__entry__impl.cpp
files/patch-lib__chardetect__src__prmem.h
Remove file:
files/patch-free-visibility

>How-To-Repeat:
>Fix:

diff -urN /usr/ports/audio/osd-lyrics/Makefile audio/osd-lyrics/Makefile
--- /usr/ports/audio/osd-lyrics/Makefile	2013-12-12 02:41:42.000000000 +0900
+++ audio/osd-lyrics/Makefile	2013-12-17 00:00:00.000000000 +0900
@@ -3,7 +3,7 @@
 
 PORTNAME=	osdlyrics
 PORTVERSION=	0.4.3
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	audio deskutils
 MASTER_SITES=	GOOGLE_CODE
 PROJECTHOST=	osd-lyrics
@@ -17,18 +17,17 @@
 		libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \
 		libcurl.so:${PORTSDIR}/ftp/curl
 
+USES=		desktop-file-utils gettext gmake iconv pathfix pkgconfig
+USE_GNOME=	gtk20
+USE_SQLITE=	yes
 GNU_CONFIGURE=	yes
-CONFIGURE_ENV=	DATADIRNAME=share
 # Cannot enable -Werror yet: Clang does not like the code `printf(_("..."))',
 # see this bug for details: http://llvm.org/bugs/show_bug.cgi?id=3814
 #CONFIGURE_ARGS=	--with-werror
-USES=		gettext gmake iconv pkgconfig
-NO_STAGE=	yes
-USE_GNOME=	gtk20
-USE_SQLITE=	yes
 INSTALLS_ICONS=	yes
-PORTDOCS=	AUTHORS ChangeLog NEWS README
-LDFLAGS=	-L${LOCALBASE}/lib ${ICONV_LIB}
+
+CPPFLAGS+=	-I${LOCALBASE}/include
+LDFLAGS+=	-L${LOCALBASE}/lib ${ICONV_LIB}
 
 OPTIONS_DEFINE=	DOCS MPD XMMS2 AMAROK
 MPD_DESC=	Enable MPD support
@@ -37,16 +36,28 @@
 
 MPD_LIB_DEPENDS=	libmpd.so:${PORTSDIR}/audio/libmpd
 MPD_CONFIGURE_OFF=	--disable-mpd
+
 XMMS2_LIB_DEPENDS=	libxmmsclient.so:${PORTSDIR}/audio/xmms2
 XMMS2_CONFIGURE_OFF=	--disable-xmms2
+
 AMAROK_CONFIGURE_ENABLE=	amarok1
 
 .include <bsd.port.options.mk>
 
+post-patch:
+.for i in src/Makefile.in src/tests/Makefile.in
+	@${REINPLACE_CMD} -e \
+		'/-lstdc++/d' ${WRKSRC}/${i}
+.endfor
+.for i in lib/chardetect/Makefile.in
+	@${REINPLACE_CMD} -e \
+		'/-O2/d' ${WRKSRC}/${i}
+.endfor
+
 post-install:
-.if ${PORT_OPTIONS:MDOCS}
-	@${MKDIR} ${DOCSDIR}
-	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
-.endif
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+.for i in AUTHORS ChangeLog NEWS README
+	(cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DOCSDIR})
+.endfor
 
 .include <bsd.port.mk>
diff -urN /usr/ports/audio/osd-lyrics/files/patch-free-visibility audio/osd-lyrics/files/patch-free-visibility
--- /usr/ports/audio/osd-lyrics/files/patch-free-visibility	2013-11-06 21:52:21.000000000 +0900
+++ audio/osd-lyrics/files/patch-free-visibility	1970-01-01 09:00:00.000000000 +0900
@@ -1,24 +0,0 @@
---- lib/chardetect/src/entry/impl.cpp.orig
-+++ lib/chardetect/src/entry/impl.cpp
-@@ -42,7 +42,9 @@
- #include "nscore.h"
- #include "nsUniversalDetector.h"
- #include <string.h>
-+#pragma GCC visibility push(default)
- #include <stdlib.h>
-+#pragma GCC visibility pop
- 
- #ifdef _WIN32
- #   include <windows.h>
---- lib/chardetect/src/prmem.h.orig
-+++ lib/chardetect/src/prmem.h
-@@ -37,7 +37,9 @@
- #ifndef nsDummyPrmem_h__
- #define nsDummyPrmem_h__
- 
-+#pragma GCC visibility push(default)
- #include <stdlib.h>
-+#pragma GCC visibility pop
- 
- inline void* PR_Malloc(size_t len)
- {
diff -urN /usr/ports/audio/osd-lyrics/files/patch-lib__chardetect__src__entry__impl.cpp audio/osd-lyrics/files/patch-lib__chardetect__src__entry__impl.cpp
--- /usr/ports/audio/osd-lyrics/files/patch-lib__chardetect__src__entry__impl.cpp	1970-01-01 09:00:00.000000000 +0900
+++ audio/osd-lyrics/files/patch-lib__chardetect__src__entry__impl.cpp	2013-12-17 00:00:00.000000000 +0900
@@ -0,0 +1,13 @@
+--- lib/chardetect/src/entry/impl.cpp.orig
++++ lib/chardetect/src/entry/impl.cpp
+@@ -41,8 +41,10 @@
+ #include "chardetect.h"
+ #include "nscore.h"
+ #include "nsUniversalDetector.h"
++#pragma GCC visibility push(default)
+ #include <string.h>
+ #include <stdlib.h>
++#pragma GCC visibility pop
+ 
+ #ifdef _WIN32
+ #   include <windows.h>
diff -urN /usr/ports/audio/osd-lyrics/files/patch-lib__chardetect__src__prmem.h audio/osd-lyrics/files/patch-lib__chardetect__src__prmem.h
--- /usr/ports/audio/osd-lyrics/files/patch-lib__chardetect__src__prmem.h	1970-01-01 09:00:00.000000000 +0900
+++ audio/osd-lyrics/files/patch-lib__chardetect__src__prmem.h	2013-12-17 00:00:00.000000000 +0900
@@ -0,0 +1,12 @@
+--- lib/chardetect/src/prmem.h.orig
++++ lib/chardetect/src/prmem.h
+@@ -37,7 +37,9 @@
+ #ifndef nsDummyPrmem_h__
+ #define nsDummyPrmem_h__
+ 
++#pragma GCC visibility push(default)
+ #include <stdlib.h>
++#pragma GCC visibility pop
+ 
+ inline void* PR_Malloc(size_t len)
+ {
diff -urN /usr/ports/audio/osd-lyrics/pkg-plist audio/osd-lyrics/pkg-plist
--- /usr/ports/audio/osd-lyrics/pkg-plist	2013-11-06 21:52:21.000000000 +0900
+++ audio/osd-lyrics/pkg-plist	2013-12-17 00:00:00.000000000 +0900
@@ -1,5 +1,9 @@
 bin/osdlyrics
 share/applications/osdlyrics.desktop
+%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
+%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
+%%PORTDOCS%%%%DOCSDIR%%/NEWS
+%%PORTDOCS%%%%DOCSDIR%%/README
 share/icons/hicolor/16x16/animations/osdlyrics-loading.png
 share/icons/hicolor/64x64/apps/osdlyrics-trayicon.png
 share/icons/hicolor/64x64/apps/osdlyrics.png
@@ -27,3 +31,4 @@
 %%DATADIR%%/icons/osdlyrics.png
 @dirrm %%DATADIR%%/icons
 @dirrm %%DATADIR%%
+%%PORTDOCS%%@dirrm %%DOCSDIR%%
>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->pawel 
Responsible-Changed-By: pawel 
Responsible-Changed-When: Tue Dec 24 15:40:45 UTC 2013 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=184909 
State-Changed-From-To: open->closed 
State-Changed-By: pawel 
State-Changed-When: Tue Dec 24 16:03:54 UTC 2013 
State-Changed-Why:  
Committed, with minor changes. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=184909 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/184909: commit references a PR
Date: Tue, 24 Dec 2013 16:07:30 +0000 (UTC)

 Author: mat
 Date: Tue Dec 24 16:07:21 2013
 New Revision: 337370
 URL: http://svnweb.freebsd.org/changeset/ports/337370
 
 Log:
   MFH: r337367
   
   - Fix build on -current
   - Rescpect CXXFLAGS
   - Use desktop-file-utils/pathfix
   - Support staging
   
   PR:		ports/184909
   Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
   Approved by:	portmgr (implicit)
 
 Added:
   branches/2014Q1/audio/osd-lyrics/files/patch-lib__chardetect__src__entry__impl.cpp
      - copied unchanged from r337367, head/audio/osd-lyrics/files/patch-lib__chardetect__src__entry__impl.cpp
   branches/2014Q1/audio/osd-lyrics/files/patch-lib__chardetect__src__prmem.h
      - copied unchanged from r337367, head/audio/osd-lyrics/files/patch-lib__chardetect__src__prmem.h
 Deleted:
   branches/2014Q1/audio/osd-lyrics/files/patch-free-visibility
 Modified:
   branches/2014Q1/audio/osd-lyrics/Makefile
 Directory Properties:
   branches/2014Q1/   (props changed)
 
 Modified: branches/2014Q1/audio/osd-lyrics/Makefile
 ==============================================================================
 --- branches/2014Q1/audio/osd-lyrics/Makefile	Tue Dec 24 16:05:54 2013	(r337369)
 +++ branches/2014Q1/audio/osd-lyrics/Makefile	Tue Dec 24 16:07:21 2013	(r337370)
 @@ -3,7 +3,7 @@
  
  PORTNAME=	osdlyrics
  PORTVERSION=	0.4.3
 -PORTREVISION=	1
 +PORTREVISION=	2
  CATEGORIES=	audio deskutils
  MASTER_SITES=	GOOGLE_CODE
  PROJECTHOST=	osd-lyrics
 @@ -17,36 +17,48 @@ LIB_DEPENDS=	libnotify.so:${PORTSDIR}/de
  		libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \
  		libcurl.so:${PORTSDIR}/ftp/curl
  
 +USES=		desktop-file-utils gettext gmake iconv pathfix pkgconfig
 +USE_GNOME=	gtk20
 +USE_SQLITE=	yes
  GNU_CONFIGURE=	yes
 -CONFIGURE_ENV=	DATADIRNAME=share
  # Cannot enable -Werror yet: Clang does not like the code `printf(_("..."))',
  # see this bug for details: http://llvm.org/bugs/show_bug.cgi?id=3814
  #CONFIGURE_ARGS=	--with-werror
 -USES=		gettext gmake iconv pkgconfig
 -NO_STAGE=	yes
 -USE_GNOME=	gtk20
 -USE_SQLITE=	yes
  INSTALLS_ICONS=	yes
  PORTDOCS=	AUTHORS ChangeLog NEWS README
 -LDFLAGS=	-L${LOCALBASE}/lib ${ICONV_LIB}
 +
 +CPPFLAGS+=	-I${LOCALBASE}/include
 +LDFLAGS+=	-L${LOCALBASE}/lib ${ICONV_LIB}
  
  OPTIONS_DEFINE=	DOCS MPD XMMS2 AMAROK
 -MPD_DESC=	Enable MPD support
 -XMMS2_DESC=	Enable XMMS2 support
 -AMAROK_DESC=	Enable Amarok 1.4 support
 +MPD_DESC=	MPD support
 +XMMS2_DESC=	XMMS2 support
 +AMAROK_DESC=	Amarok 1.4 support
  
  MPD_LIB_DEPENDS=	libmpd.so:${PORTSDIR}/audio/libmpd
  MPD_CONFIGURE_OFF=	--disable-mpd
 +
  XMMS2_LIB_DEPENDS=	libxmmsclient.so:${PORTSDIR}/audio/xmms2
  XMMS2_CONFIGURE_OFF=	--disable-xmms2
 +
  AMAROK_CONFIGURE_ENABLE=	amarok1
  
  .include <bsd.port.options.mk>
  
 +post-patch:
 +.for i in src/Makefile.in src/tests/Makefile.in
 +	@${REINPLACE_CMD} -e \
 +		'/-lstdc++/d' ${WRKSRC}/${i}
 +.endfor
 +.for i in lib/chardetect/Makefile.in
 +	@${REINPLACE_CMD} -e \
 +		'/-O2/d' ${WRKSRC}/${i}
 +.endfor
 +
  post-install:
 -.if ${PORT_OPTIONS:MDOCS}
 -	@${MKDIR} ${DOCSDIR}
 -	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
 -.endif
 +	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 +.for i in AUTHORS ChangeLog NEWS README
 +	(cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DOCSDIR})
 +.endfor
  
  .include <bsd.port.mk>
 
 Copied: branches/2014Q1/audio/osd-lyrics/files/patch-lib__chardetect__src__entry__impl.cpp (from r337367, head/audio/osd-lyrics/files/patch-lib__chardetect__src__entry__impl.cpp)
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ branches/2014Q1/audio/osd-lyrics/files/patch-lib__chardetect__src__entry__impl.cpp	Tue Dec 24 16:07:21 2013	(r337370, copy of r337367, head/audio/osd-lyrics/files/patch-lib__chardetect__src__entry__impl.cpp)
 @@ -0,0 +1,13 @@
 +--- lib/chardetect/src/entry/impl.cpp.orig
 ++++ lib/chardetect/src/entry/impl.cpp
 +@@ -41,8 +41,10 @@
 + #include "chardetect.h"
 + #include "nscore.h"
 + #include "nsUniversalDetector.h"
 ++#pragma GCC visibility push(default)
 + #include <string.h>
 + #include <stdlib.h>
 ++#pragma GCC visibility pop
 + 
 + #ifdef _WIN32
 + #   include <windows.h>
 
 Copied: branches/2014Q1/audio/osd-lyrics/files/patch-lib__chardetect__src__prmem.h (from r337367, head/audio/osd-lyrics/files/patch-lib__chardetect__src__prmem.h)
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ branches/2014Q1/audio/osd-lyrics/files/patch-lib__chardetect__src__prmem.h	Tue Dec 24 16:07:21 2013	(r337370, copy of r337367, head/audio/osd-lyrics/files/patch-lib__chardetect__src__prmem.h)
 @@ -0,0 +1,12 @@
 +--- lib/chardetect/src/prmem.h.orig
 ++++ lib/chardetect/src/prmem.h
 +@@ -37,7 +37,9 @@
 + #ifndef nsDummyPrmem_h__
 + #define nsDummyPrmem_h__
 + 
 ++#pragma GCC visibility push(default)
 + #include <stdlib.h>
 ++#pragma GCC visibility pop
 + 
 + inline void* PR_Malloc(size_t len)
 + {
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/184909: commit references a PR
Date: Tue, 24 Dec 2013 16:03:51 +0000 (UTC)

 Author: pawel
 Date: Tue Dec 24 16:03:44 2013
 New Revision: 337367
 URL: http://svnweb.freebsd.org/changeset/ports/337367
 
 Log:
   - Fix build on -current
   - Rescpect CXXFLAGS
   - Use desktop-file-utils/pathfix
   - Support staging
   
   PR:		ports/184909
   Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
 
 Added:
   head/audio/osd-lyrics/files/patch-lib__chardetect__src__entry__impl.cpp   (contents, props changed)
   head/audio/osd-lyrics/files/patch-lib__chardetect__src__prmem.h   (contents, props changed)
 Deleted:
   head/audio/osd-lyrics/files/patch-free-visibility
 Modified:
   head/audio/osd-lyrics/Makefile
 
 Modified: head/audio/osd-lyrics/Makefile
 ==============================================================================
 --- head/audio/osd-lyrics/Makefile	Tue Dec 24 15:58:58 2013	(r337366)
 +++ head/audio/osd-lyrics/Makefile	Tue Dec 24 16:03:44 2013	(r337367)
 @@ -3,7 +3,7 @@
  
  PORTNAME=	osdlyrics
  PORTVERSION=	0.4.3
 -PORTREVISION=	1
 +PORTREVISION=	2
  CATEGORIES=	audio deskutils
  MASTER_SITES=	GOOGLE_CODE
  PROJECTHOST=	osd-lyrics
 @@ -17,36 +17,48 @@ LIB_DEPENDS=	libnotify.so:${PORTSDIR}/de
  		libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \
  		libcurl.so:${PORTSDIR}/ftp/curl
  
 +USES=		desktop-file-utils gettext gmake iconv pathfix pkgconfig
 +USE_GNOME=	gtk20
 +USE_SQLITE=	yes
  GNU_CONFIGURE=	yes
 -CONFIGURE_ENV=	DATADIRNAME=share
  # Cannot enable -Werror yet: Clang does not like the code `printf(_("..."))',
  # see this bug for details: http://llvm.org/bugs/show_bug.cgi?id=3814
  #CONFIGURE_ARGS=	--with-werror
 -USES=		gettext gmake iconv pkgconfig
 -NO_STAGE=	yes
 -USE_GNOME=	gtk20
 -USE_SQLITE=	yes
  INSTALLS_ICONS=	yes
  PORTDOCS=	AUTHORS ChangeLog NEWS README
 -LDFLAGS=	-L${LOCALBASE}/lib ${ICONV_LIB}
 +
 +CPPFLAGS+=	-I${LOCALBASE}/include
 +LDFLAGS+=	-L${LOCALBASE}/lib ${ICONV_LIB}
  
  OPTIONS_DEFINE=	DOCS MPD XMMS2 AMAROK
 -MPD_DESC=	Enable MPD support
 -XMMS2_DESC=	Enable XMMS2 support
 -AMAROK_DESC=	Enable Amarok 1.4 support
 +MPD_DESC=	MPD support
 +XMMS2_DESC=	XMMS2 support
 +AMAROK_DESC=	Amarok 1.4 support
  
  MPD_LIB_DEPENDS=	libmpd.so:${PORTSDIR}/audio/libmpd
  MPD_CONFIGURE_OFF=	--disable-mpd
 +
  XMMS2_LIB_DEPENDS=	libxmmsclient.so:${PORTSDIR}/audio/xmms2
  XMMS2_CONFIGURE_OFF=	--disable-xmms2
 +
  AMAROK_CONFIGURE_ENABLE=	amarok1
  
  .include <bsd.port.options.mk>
  
 +post-patch:
 +.for i in src/Makefile.in src/tests/Makefile.in
 +	@${REINPLACE_CMD} -e \
 +		'/-lstdc++/d' ${WRKSRC}/${i}
 +.endfor
 +.for i in lib/chardetect/Makefile.in
 +	@${REINPLACE_CMD} -e \
 +		'/-O2/d' ${WRKSRC}/${i}
 +.endfor
 +
  post-install:
 -.if ${PORT_OPTIONS:MDOCS}
 -	@${MKDIR} ${DOCSDIR}
 -	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
 -.endif
 +	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 +.for i in AUTHORS ChangeLog NEWS README
 +	(cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DOCSDIR})
 +.endfor
  
  .include <bsd.port.mk>
 
 Added: head/audio/osd-lyrics/files/patch-lib__chardetect__src__entry__impl.cpp
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/audio/osd-lyrics/files/patch-lib__chardetect__src__entry__impl.cpp	Tue Dec 24 16:03:44 2013	(r337367)
 @@ -0,0 +1,13 @@
 +--- lib/chardetect/src/entry/impl.cpp.orig
 ++++ lib/chardetect/src/entry/impl.cpp
 +@@ -41,8 +41,10 @@
 + #include "chardetect.h"
 + #include "nscore.h"
 + #include "nsUniversalDetector.h"
 ++#pragma GCC visibility push(default)
 + #include <string.h>
 + #include <stdlib.h>
 ++#pragma GCC visibility pop
 + 
 + #ifdef _WIN32
 + #   include <windows.h>
 
 Added: head/audio/osd-lyrics/files/patch-lib__chardetect__src__prmem.h
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/audio/osd-lyrics/files/patch-lib__chardetect__src__prmem.h	Tue Dec 24 16:03:44 2013	(r337367)
 @@ -0,0 +1,12 @@
 +--- lib/chardetect/src/prmem.h.orig
 ++++ lib/chardetect/src/prmem.h
 +@@ -37,7 +37,9 @@
 + #ifndef nsDummyPrmem_h__
 + #define nsDummyPrmem_h__
 + 
 ++#pragma GCC visibility push(default)
 + #include <stdlib.h>
 ++#pragma GCC visibility pop
 + 
 + inline void* PR_Malloc(size_t len)
 + {
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
>Unformatted:
