diff options
author | martin <martin> | 2013-08-29 14:14:34 +0000 |
---|---|---|
committer | martin <martin> | 2013-08-29 14:14:34 +0000 |
commit | c24063ece724b60366d27dd103f4d6cc4e416530 (patch) | |
tree | d413d88d7f88be3595e4098472b7bb2df8674136 /www | |
parent | 1f9dd966f3bd74e1ed25df89cf9d13f8c6bb643a (diff) | |
download | pkgsrc-c24063ece724b60366d27dd103f4d6cc4e416530.tar.gz |
Skia does not support GL on big endian machines yet - so adjust PLIST
by conditionalizing it.
Diffstat (limited to 'www')
-rw-r--r-- | www/firefox/PLIST | 4 | ||||
-rw-r--r-- | www/firefox/mozilla-common.mk | 9 |
2 files changed, 9 insertions, 4 deletions
diff --git a/www/firefox/PLIST b/www/firefox/PLIST index 4c2b5e885d1..0af99386688 100644 --- a/www/firefox/PLIST +++ b/www/firefox/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.68 2013/08/07 12:17:54 ryoon Exp $ +@comment $NetBSD: PLIST,v 1.69 2013/08/29 14:14:34 martin Exp $ bin/firefox include/firefox/AbstractMediaDecoder.h include/firefox/AccEvent.h @@ -58,7 +58,7 @@ include/firefox/FramePropertyTable.h include/firefox/GLContext.h include/firefox/GLContextProvider.h include/firefox/GLContextProviderImpl.h -include/firefox/GLContextSkia.h +${PLIST.glskia}include/firefox/GLContextSkia.h include/firefox/GLContextSymbols.h include/firefox/GLContextTypes.h include/firefox/GLDefs.h diff --git a/www/firefox/mozilla-common.mk b/www/firefox/mozilla-common.mk index f13805a367a..cb90556af23 100644 --- a/www/firefox/mozilla-common.mk +++ b/www/firefox/mozilla-common.mk @@ -1,4 +1,4 @@ -# $NetBSD: mozilla-common.mk,v 1.11 2013/08/25 01:41:08 ryoon Exp $ +# $NetBSD: mozilla-common.mk,v 1.12 2013/08/29 14:14:34 martin Exp $ # # common Makefile fragment for mozilla packages based on gecko 2.0. # @@ -13,6 +13,7 @@ USE_LANGUAGES+= c99 c++ UNLIMIT_RESOURCES+= datasize .include "../../mk/bsd.prefs.mk" +.include "../../mk/endian.mk" # gcc45-4.5.3 of lang/gcc45 does not generate proper binary, # but gcc 4.5.4 of NetBSD 7 generates working binary. .if !empty(MACHINE_PLATFORM:MNetBSD-5.*) @@ -97,7 +98,11 @@ SUBST_MESSAGE.python= Fixing path to python. SUBST_FILES.python+= media/webrtc/trunk/build/common.gypi SUBST_SED.python+= -e 's,<!(python,<!(${PYTHONBIN},' -PLIST_VARS+= sps vorbis tremor +PLIST_VARS+= sps vorbis tremor glskia + +.if ${MACHINE_ENDIAN} == "1234" +PLIST.glskia= yes +.endif .if !empty(MACHINE_PLATFORM:S/i386/x86/:MLinux-*-x86*) PLIST.sps= yes |