Tue Mar 17 03:19:08 2015 UTC ()
Add comment to SSE2 under i386.


(ryoon)
diff -r1.50 -r1.51 pkgsrc/www/firefox/mozilla-common.mk

cvs diff -r1.50 -r1.51 pkgsrc/www/firefox/mozilla-common.mk (switch to unified diff)

--- pkgsrc/www/firefox/mozilla-common.mk 2015/03/05 13:29:41 1.50
+++ pkgsrc/www/firefox/mozilla-common.mk 2015/03/17 03:19:08 1.51
@@ -1,239 +1,240 @@ @@ -1,239 +1,240 @@
1# $NetBSD: mozilla-common.mk,v 1.50 2015/03/05 13:29:41 ryoon Exp $ 1# $NetBSD: mozilla-common.mk,v 1.51 2015/03/17 03:19:08 ryoon Exp $
2# 2#
3# common Makefile fragment for mozilla packages based on gecko 2.0. 3# common Makefile fragment for mozilla packages based on gecko 2.0.
4# 4#
5# used by www/firefox/Makefile 5# used by www/firefox/Makefile
6# used by www/seamonkey/Makefile 6# used by www/seamonkey/Makefile
7 7
8GNU_CONFIGURE= yes 8GNU_CONFIGURE= yes
9USE_TOOLS+= pkg-config perl gmake autoconf213 unzip zip 9USE_TOOLS+= pkg-config perl gmake autoconf213 unzip zip
10USE_LANGUAGES+= c99 c++ 10USE_LANGUAGES+= c99 c++
11UNLIMIT_RESOURCES+= datasize 11UNLIMIT_RESOURCES+= datasize
12 12
13.include "../../mk/bsd.prefs.mk" 13.include "../../mk/bsd.prefs.mk"
14# tar(1) of OpenBSD 5.5 has no --exclude command line option. 14# tar(1) of OpenBSD 5.5 has no --exclude command line option.
15.if ${OPSYS} == "OpenBSD" 15.if ${OPSYS} == "OpenBSD"
16TOOLS_PLATFORM.tar= ${TOOLS_PREFIX.bsdtar}/bin/bsdtar 16TOOLS_PLATFORM.tar= ${TOOLS_PREFIX.bsdtar}/bin/bsdtar
17USE_TOOLS+= bsdtar 17USE_TOOLS+= bsdtar
18.endif 18.endif
19# GCC 4.6 is required to support nullptr. 19# GCC 4.6 is required to support nullptr.
20GCC_REQD+= 4.6 20GCC_REQD+= 4.6
21.if ${MACHINE_ARCH} == "i386" 21.if ${MACHINE_ARCH} == "i386"
22# Fix for PR pkg/48152. 22# Fix for PR pkg/48152.
23CPPFLAGS+= -march=i486 23CPPFLAGS+= -march=i486
 24# This is required for SSE2 code under i386.
24CPPFLAGS+= -mstackrealign 25CPPFLAGS+= -mstackrealign
25.endif 26.endif
26 27
27CHECK_PORTABILITY_SKIP+=${MOZILLA_DIR}security/nss/tests/libpkix/libpkix.sh 28CHECK_PORTABILITY_SKIP+=${MOZILLA_DIR}security/nss/tests/libpkix/libpkix.sh
28CHECK_PORTABILITY_SKIP+=${MOZILLA_DIR}security/nss/tests/multinit/multinit.sh 29CHECK_PORTABILITY_SKIP+=${MOZILLA_DIR}security/nss/tests/multinit/multinit.sh
29CHECK_PORTABILITY_SKIP+=${MOZILLA_DIR}js/src/tests/update-test262.sh 30CHECK_PORTABILITY_SKIP+=${MOZILLA_DIR}js/src/tests/update-test262.sh
30CHECK_PORTABILITY_SKIP+=${MOZILLA_DIR}intl/icu/source/configure 31CHECK_PORTABILITY_SKIP+=${MOZILLA_DIR}intl/icu/source/configure
31 32
32CONFIGURE_ARGS+= --disable-tests 33CONFIGURE_ARGS+= --disable-tests
33CONFIGURE_ARGS+= --disable-pedantic 34CONFIGURE_ARGS+= --disable-pedantic
34CONFIGURE_ARGS+= --enable-crypto 35CONFIGURE_ARGS+= --enable-crypto
35CONFIGURE_ARGS+= --with-pthreads 36CONFIGURE_ARGS+= --with-pthreads
36CONFIGURE_ARGS+= --disable-javaxpcom 37CONFIGURE_ARGS+= --disable-javaxpcom
37CONFIGURE_ARGS+= --enable-default-toolkit=cairo-gtk2 38CONFIGURE_ARGS+= --enable-default-toolkit=cairo-gtk2
38CONFIGURE_ARGS+= --enable-gstreamer=1.0 39CONFIGURE_ARGS+= --enable-gstreamer=1.0
39#CONFIGURE_ARGS+= --disable-gstreamer 40#CONFIGURE_ARGS+= --disable-gstreamer
40CONFIGURE_ARGS+= --enable-svg 41CONFIGURE_ARGS+= --enable-svg
41CONFIGURE_ARGS+= --enable-mathml 42CONFIGURE_ARGS+= --enable-mathml
42CONFIGURE_ARGS+= --enable-pango 43CONFIGURE_ARGS+= --enable-pango
43CONFIGURE_ARGS+= --enable-system-cairo 44CONFIGURE_ARGS+= --enable-system-cairo
44CONFIGURE_ARGS+= --enable-system-pixman 45CONFIGURE_ARGS+= --enable-system-pixman
45CONFIGURE_ARGS+= --with-system-libvpx 46CONFIGURE_ARGS+= --with-system-libvpx
46CONFIGURE_ARGS+= --enable-system-hunspell 47CONFIGURE_ARGS+= --enable-system-hunspell
47CONFIGURE_ARGS+= --enable-system-ffi 48CONFIGURE_ARGS+= --enable-system-ffi
48CONFIGURE_ARGS+= --with-system-icu 49CONFIGURE_ARGS+= --with-system-icu
49CONFIGURE_ARGS+= --with-system-nss 50CONFIGURE_ARGS+= --with-system-nss
50CONFIGURE_ARGS+= --with-system-nspr 51CONFIGURE_ARGS+= --with-system-nspr
51CONFIGURE_ARGS+= --with-system-jpeg 52CONFIGURE_ARGS+= --with-system-jpeg
52CONFIGURE_ARGS+= --with-system-zlib 53CONFIGURE_ARGS+= --with-system-zlib
53CONFIGURE_ARGS+= --with-system-bz2 54CONFIGURE_ARGS+= --with-system-bz2
54# 1.2 or later is required. 55# 1.2 or later is required.
55#CONFIGURE_ARGS+= --with-system-theora 56#CONFIGURE_ARGS+= --with-system-theora
56#CONFIGURE_ARGS+= --with-system-ogg 57#CONFIGURE_ARGS+= --with-system-ogg
57#CONFIGURE_ARGS+= --with-system-tremor 58#CONFIGURE_ARGS+= --with-system-tremor
58#CONFIGURE_ARGS+= --with-system-vorbis 59#CONFIGURE_ARGS+= --with-system-vorbis
59# opus support requires Ogg Theora support 60# opus support requires Ogg Theora support
60#CONFIGURE_ARGS+= --with-system-opus 61#CONFIGURE_ARGS+= --with-system-opus
61CONFIGURE_ARGS+= --with-system-graphite2 62CONFIGURE_ARGS+= --with-system-graphite2
62CONFIGURE_ARGS+= --with-system-harfbuzz 63CONFIGURE_ARGS+= --with-system-harfbuzz
63CONFIGURE_ARGS+= --with-system-libevent=${BUILDLINK_PREFIX.libevent} 64CONFIGURE_ARGS+= --with-system-libevent=${BUILDLINK_PREFIX.libevent}
64CONFIGURE_ARGS+= --enable-system-sqlite 65CONFIGURE_ARGS+= --enable-system-sqlite
65CONFIGURE_ARGS+= --disable-crashreporter 66CONFIGURE_ARGS+= --disable-crashreporter
66CONFIGURE_ARGS+= --disable-libnotify 67CONFIGURE_ARGS+= --disable-libnotify
67CONFIGURE_ARGS+= --disable-necko-wifi 68CONFIGURE_ARGS+= --disable-necko-wifi
68CONFIGURE_ARGS+= --enable-chrome-format=flat 69CONFIGURE_ARGS+= --enable-chrome-format=flat
69CONFIGURE_ARGS+= --disable-libjpeg-turbo 70CONFIGURE_ARGS+= --disable-libjpeg-turbo
70 71
71CONFIGURE_ARGS+= --disable-elf-hack 72CONFIGURE_ARGS+= --disable-elf-hack
72CONFIGURE_ARGS+= --disable-elf-dynstr-gc 73CONFIGURE_ARGS+= --disable-elf-dynstr-gc
73CONFIGURE_ARGS+= --disable-gconf 74CONFIGURE_ARGS+= --disable-gconf
74CONFIGURE_ARGS+= --enable-gio 75CONFIGURE_ARGS+= --enable-gio
75CONFIGURE_ARGS+= --enable-extensions=gio 76CONFIGURE_ARGS+= --enable-extensions=gio
76CONFIGURE_ARGS+= --disable-mochitest 77CONFIGURE_ARGS+= --disable-mochitest
77CONFIGURE_ARGS+= --enable-canvas 78CONFIGURE_ARGS+= --enable-canvas
78#CONFIGURE_ARGS+= --enable-readline 79#CONFIGURE_ARGS+= --enable-readline
79CONFIGURE_ARGS+= --disable-installer 80CONFIGURE_ARGS+= --disable-installer
80CONFIGURE_ARGS+= --enable-url-classifier 81CONFIGURE_ARGS+= --enable-url-classifier
81#CONFIGURE_ARGS+= --enable-startup-notification 82#CONFIGURE_ARGS+= --enable-startup-notification
82# Disabled from https://bugzilla.mozilla.org/show_bug.cgi?id=977400 83# Disabled from https://bugzilla.mozilla.org/show_bug.cgi?id=977400
83CONFIGURE_ARGS+= --enable-shared-js 84CONFIGURE_ARGS+= --enable-shared-js
84CONFIGURE_ARGS+= --with-system-ply 85CONFIGURE_ARGS+= --with-system-ply
85CONFIGURE_ARGS+= --disable-icf 86CONFIGURE_ARGS+= --disable-icf
86CONFIGURE_ARGS+= --disable-necko-wifi 87CONFIGURE_ARGS+= --disable-necko-wifi
87CONFIGURE_ARGS+= --disable-updater 88CONFIGURE_ARGS+= --disable-updater
88 89
89SUBST_CLASSES+= fix-paths 90SUBST_CLASSES+= fix-paths
90SUBST_STAGE.fix-paths= pre-configure 91SUBST_STAGE.fix-paths= pre-configure
91SUBST_MESSAGE.fix-paths= Fixing absolute paths. 92SUBST_MESSAGE.fix-paths= Fixing absolute paths.
92SUBST_FILES.fix-paths= ${MOZILLA_DIR}xpcom/build/nsXPCOMPrivate.h 93SUBST_FILES.fix-paths= ${MOZILLA_DIR}xpcom/build/nsXPCOMPrivate.h
93SUBST_FILES.fix-paths+= ${MOZILLA_DIR}xpcom/io/nsAppFileLocationProvider.cpp 94SUBST_FILES.fix-paths+= ${MOZILLA_DIR}xpcom/io/nsAppFileLocationProvider.cpp
94SUBST_SED.fix-paths+= -e 's,/usr/lib/mozilla/plugins,${PREFIX}/lib/netscape/plugins,g' 95SUBST_SED.fix-paths+= -e 's,/usr/lib/mozilla/plugins,${PREFIX}/lib/netscape/plugins,g'
95 96
96CONFIG_GUESS_OVERRIDE+= ${MOZILLA_DIR}build/autoconf/config.guess 97CONFIG_GUESS_OVERRIDE+= ${MOZILLA_DIR}build/autoconf/config.guess
97CONFIG_GUESS_OVERRIDE+= ${MOZILLA_DIR}js/src/build/autoconf/config.guess 98CONFIG_GUESS_OVERRIDE+= ${MOZILLA_DIR}js/src/build/autoconf/config.guess
98CONFIG_GUESS_OVERRIDE+= ${MOZILLA_DIR}nsprpub/build/autoconf/config.guess 99CONFIG_GUESS_OVERRIDE+= ${MOZILLA_DIR}nsprpub/build/autoconf/config.guess
99CONFIG_GUESS_OVERRIDE+= ${MOZILLA_DIR}/js/ctypes/libffi/config.guess 100CONFIG_GUESS_OVERRIDE+= ${MOZILLA_DIR}/js/ctypes/libffi/config.guess
100CONFIG_SUB_OVERRIDE+= ${MOZILLA_DIR}build/autoconf/config.sub 101CONFIG_SUB_OVERRIDE+= ${MOZILLA_DIR}build/autoconf/config.sub
101CONFIG_SUB_OVERRIDE+= ${MOZILLA_DIR}js/src/build/autoconf/config.sub 102CONFIG_SUB_OVERRIDE+= ${MOZILLA_DIR}js/src/build/autoconf/config.sub
102CONFIG_SUB_OVERRIDE+= ${MOZILLA_DIR}nsprpub/build/autoconf/config.sub 103CONFIG_SUB_OVERRIDE+= ${MOZILLA_DIR}nsprpub/build/autoconf/config.sub
103CONFIG_SUB_OVERRIDE+= ${MOZILLA_DIR}/js/ctypes/libffi/config.sub 104CONFIG_SUB_OVERRIDE+= ${MOZILLA_DIR}/js/ctypes/libffi/config.sub
104 105
105PYTHON_VERSIONS_ACCEPTED= 27 106PYTHON_VERSIONS_ACCEPTED= 27
106PYTHON_FOR_BUILD_ONLY= yes 107PYTHON_FOR_BUILD_ONLY= yes
107PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # py-sqlite2 108PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # py-sqlite2
108.include "../../lang/python/application.mk" 109.include "../../lang/python/application.mk"
109CONFIGURE_ENV+= PYTHON=${PYTHONBIN:Q} 110CONFIGURE_ENV+= PYTHON=${PYTHONBIN:Q}
110 111
111#BUILD_MAKE_FLAGS+= MOZ_WEBRTC_IN_LIBXUL=1 112#BUILD_MAKE_FLAGS+= MOZ_WEBRTC_IN_LIBXUL=1
112 113
113SUBST_CLASSES+= python 114SUBST_CLASSES+= python
114SUBST_STAGE.python= pre-configure 115SUBST_STAGE.python= pre-configure
115SUBST_MESSAGE.python= Fixing path to python. 116SUBST_MESSAGE.python= Fixing path to python.
116SUBST_FILES.python+= media/webrtc/trunk/build/common.gypi 117SUBST_FILES.python+= media/webrtc/trunk/build/common.gypi
117SUBST_SED.python+= -e 's,<!(python,<!(${PYTHONBIN},' 118SUBST_SED.python+= -e 's,<!(python,<!(${PYTHONBIN},'
118 119
119# Build outside ${WRKSRC} 120# Build outside ${WRKSRC}
120# Try to avoid conflict with config/makefiles/xpidl/Makefile.in 121# Try to avoid conflict with config/makefiles/xpidl/Makefile.in
121OBJDIR= ../build 122OBJDIR= ../build
122CONFIGURE_DIRS= ${OBJDIR} 123CONFIGURE_DIRS= ${OBJDIR}
123CONFIGURE_SCRIPT= ${WRKSRC}/configure 124CONFIGURE_SCRIPT= ${WRKSRC}/configure
124 125
125PLIST_VARS+= sps vorbis tremor glskia throwwrapper mozglue 126PLIST_VARS+= sps vorbis tremor glskia throwwrapper mozglue
126 127
127.include "../../mk/endian.mk" 128.include "../../mk/endian.mk"
128.if ${MACHINE_ENDIAN} == "little" 129.if ${MACHINE_ENDIAN} == "little"
129PLIST.glskia= yes 130PLIST.glskia= yes
130.endif 131.endif
131 132
132.if ${MACHINE_ARCH} != "sparc64" 133.if ${MACHINE_ARCH} != "sparc64"
133# For some reasons the configure test for GCC bug 26905 still triggers on 134# For some reasons the configure test for GCC bug 26905 still triggers on
134# sparc64, which makes mozilla skip the installation of a few wrapper headers. 135# sparc64, which makes mozilla skip the installation of a few wrapper headers.
135# Other archs end up with one additional file in the SDK headers 136# Other archs end up with one additional file in the SDK headers
136PLIST.throwwrapper= yes 137PLIST.throwwrapper= yes
137.endif 138.endif
138 139
139.if !empty(MACHINE_PLATFORM:S/i386/x86/:MLinux-*-x86*) 140.if !empty(MACHINE_PLATFORM:S/i386/x86/:MLinux-*-x86*)
140PLIST.sps= yes 141PLIST.sps= yes
141.endif 142.endif
142 143
143.if !empty(MACHINE_PLATFORM:MLinux-*-arm*) 144.if !empty(MACHINE_PLATFORM:MLinux-*-arm*)
144PLIST.tremor= yes 145PLIST.tremor= yes
145.else 146.else
146PLIST.vorbis= yes 147PLIST.vorbis= yes
147.endif 148.endif
148 149
149# See ${WRKSRC}/mozglue/build/moz.build: libmozglue is built and 150# See ${WRKSRC}/mozglue/build/moz.build: libmozglue is built and
150# installed as a shared library on these platforms. 151# installed as a shared library on these platforms.
151.if ${OPSYS} == "Cygwin" || ${OPSYS} == "Darwin" # or Android 152.if ${OPSYS} == "Cygwin" || ${OPSYS} == "Darwin" # or Android
152PLIST.mozglue= yes 153PLIST.mozglue= yes
153.endif 154.endif
154 155
155# See ${WRKSRC}/security/sandbox/mac/Sandbox.mm: On Darwin, sandboxing 156# See ${WRKSRC}/security/sandbox/mac/Sandbox.mm: On Darwin, sandboxing
156# support is only available when the toolkit is cairo-cocoa. 157# support is only available when the toolkit is cairo-cocoa.
157.if ${OPSYS} == "Darwin" 158.if ${OPSYS} == "Darwin"
158CONFIGURE_ARGS+= --disable-sandbox 159CONFIGURE_ARGS+= --disable-sandbox
159.endif 160.endif
160 161
161# See ${WRKSRC}/configure.in: It tries to use MacOS X 10.6 SDK by 162# See ${WRKSRC}/configure.in: It tries to use MacOS X 10.6 SDK by
162# default, which is not always possible. 163# default, which is not always possible.
163.if !empty(MACHINE_PLATFORM:MDarwin-8.*-*) 164.if !empty(MACHINE_PLATFORM:MDarwin-8.*-*)
164CONFIGURE_ARGS+= --enable-macos-target=10.4 165CONFIGURE_ARGS+= --enable-macos-target=10.4
165.elif !empty(MACHINE_PLATFORM:MDarwin-9.*-*) 166.elif !empty(MACHINE_PLATFORM:MDarwin-9.*-*)
166CONFIGURE_ARGS+= --enable-macos-target=10.5 167CONFIGURE_ARGS+= --enable-macos-target=10.5
167.endif 168.endif
168 169
169# 170#
170# pysqlite2 is used by xulrunner's Python virtualenv. If pysqlite2 isn't 171# pysqlite2 is used by xulrunner's Python virtualenv. If pysqlite2 isn't
171# installed at build time it will attempt to download it instead, so the 172# installed at build time it will attempt to download it instead, so the
172# problem is stealthy in a networked environment, and obvious in an 173# problem is stealthy in a networked environment, and obvious in an
173# offline environment. 174# offline environment.
174# 175#
175BUILD_DEPENDS+= ${PYPKGPREFIX}-sqlite2-[0-9]*:../../databases/py-sqlite2 176BUILD_DEPENDS+= ${PYPKGPREFIX}-sqlite2-[0-9]*:../../databases/py-sqlite2
176 177
177# Makefiles sometimes call "rm -f" without more arguments. Kludge around ... 178# Makefiles sometimes call "rm -f" without more arguments. Kludge around ...
178.PHONY: create-rm-wrapper 179.PHONY: create-rm-wrapper
179pre-configure: create-rm-wrapper 180pre-configure: create-rm-wrapper
180create-rm-wrapper: 181create-rm-wrapper:
181 printf '#!/bin/sh\n[ "$$*" = "-f" ] && exit 0\nexec /bin/rm $$@\n' > \ 182 printf '#!/bin/sh\n[ "$$*" = "-f" ] && exit 0\nexec /bin/rm $$@\n' > \
182 ${WRAPPER_DIR}/bin/rm 183 ${WRAPPER_DIR}/bin/rm
183 chmod +x ${WRAPPER_DIR}/bin/rm 184 chmod +x ${WRAPPER_DIR}/bin/rm
184 185
185.include "../../mk/bsd.prefs.mk" 186.include "../../mk/bsd.prefs.mk"
186 187
187.if ${OPSYS} == "NetBSD" 188.if ${OPSYS} == "NetBSD"
188# The configure test for __thread succeeds, but later we end up with: 189# The configure test for __thread succeeds, but later we end up with:
189# dist/bin/libxul.so: undefined reference to `__tls_get_addr' 190# dist/bin/libxul.so: undefined reference to `__tls_get_addr'
190CONFIGURE_ENV+= ac_cv_thread_keyword=no 191CONFIGURE_ENV+= ac_cv_thread_keyword=no
191.endif 192.endif
192 193
193.if ${OPSYS} == "SunOS" 194.if ${OPSYS} == "SunOS"
194# native libbz2.so hides BZ2_crc32Table 195# native libbz2.so hides BZ2_crc32Table
195PREFER.bzip2?= pkgsrc 196PREFER.bzip2?= pkgsrc
196.endif 197.endif
197 198
198.if ${OPSYS} == "OpenBSD" 199.if ${OPSYS} == "OpenBSD"
199PLIST_SUBST+= DLL_SUFFIX=".so.1.0" 200PLIST_SUBST+= DLL_SUFFIX=".so.1.0"
200.elif ${OPSYS} == "Darwin" 201.elif ${OPSYS} == "Darwin"
201PLIST_SUBST+= DLL_SUFFIX=".dylib" 202PLIST_SUBST+= DLL_SUFFIX=".dylib"
202.else 203.else
203PLIST_SUBST+= DLL_SUFFIX=".so" 204PLIST_SUBST+= DLL_SUFFIX=".so"
204.endif 205.endif
205 206
206.include "../../archivers/bzip2/buildlink3.mk" 207.include "../../archivers/bzip2/buildlink3.mk"
207#.include "../../audio/libopus/buildlink3.mk" 208#.include "../../audio/libopus/buildlink3.mk"
208#.include "../../audio/tremor/buildlink3.mk" 209#.include "../../audio/tremor/buildlink3.mk"
209#.include "../../audio/libvorbis/buildlink3.mk" 210#.include "../../audio/libvorbis/buildlink3.mk"
210BUILDLINK_API_DEPENDS.sqlite3+= sqlite3>=3.8.7.4 211BUILDLINK_API_DEPENDS.sqlite3+= sqlite3>=3.8.7.4
211CONFIGURE_ENV+= ac_cv_sqlite_secure_delete=yes # c.f. patches/patch-al 212CONFIGURE_ENV+= ac_cv_sqlite_secure_delete=yes # c.f. patches/patch-al
212.include "../../databases/sqlite3/buildlink3.mk" 213.include "../../databases/sqlite3/buildlink3.mk"
213BUILDLINK_API_DEPENDS.libevent+= libevent>=1.1 214BUILDLINK_API_DEPENDS.libevent+= libevent>=1.1
214.include "../../devel/libevent/buildlink3.mk" 215.include "../../devel/libevent/buildlink3.mk"
215.include "../../devel/libffi/buildlink3.mk" 216.include "../../devel/libffi/buildlink3.mk"
216BUILDLINK_API_DEPENDS.nspr+= nspr>=4.10.6 217BUILDLINK_API_DEPENDS.nspr+= nspr>=4.10.6
217.include "../../devel/nspr/buildlink3.mk" 218.include "../../devel/nspr/buildlink3.mk"
218.include "../../textproc/icu/buildlink3.mk" 219.include "../../textproc/icu/buildlink3.mk"
219BUILDLINK_API_DEPENDS.nss+= nss>=3.17.4 220BUILDLINK_API_DEPENDS.nss+= nss>=3.17.4
220.include "../../devel/nss/buildlink3.mk" 221.include "../../devel/nss/buildlink3.mk"
221.include "../../devel/zlib/buildlink3.mk" 222.include "../../devel/zlib/buildlink3.mk"
222.include "../../mk/jpeg.buildlink3.mk" 223.include "../../mk/jpeg.buildlink3.mk"
223.include "../../graphics/MesaLib/buildlink3.mk" 224.include "../../graphics/MesaLib/buildlink3.mk"
224BUILDLINK_API_DEPENDS.cairo+= cairo>=1.10.2nb4 225BUILDLINK_API_DEPENDS.cairo+= cairo>=1.10.2nb4
225.include "../../graphics/cairo/buildlink3.mk" 226.include "../../graphics/cairo/buildlink3.mk"
226.include "../../graphics/graphite2/buildlink3.mk" 227.include "../../graphics/graphite2/buildlink3.mk"
227#.include "../../multimedia/libogg/buildlink3.mk" 228#.include "../../multimedia/libogg/buildlink3.mk"
228#.include "../../multimedia/libtheora/buildlink3.mk" 229#.include "../../multimedia/libtheora/buildlink3.mk"
229BUILDLINK_API_DEPENDS.libvpx+= libvpx>=1.3.0 230BUILDLINK_API_DEPENDS.libvpx+= libvpx>=1.3.0
230.include "../../multimedia/libvpx/buildlink3.mk" 231.include "../../multimedia/libvpx/buildlink3.mk"
231.include "../../net/libIDL/buildlink3.mk" 232.include "../../net/libIDL/buildlink3.mk"
232.include "../../textproc/hunspell/buildlink3.mk" 233.include "../../textproc/hunspell/buildlink3.mk"
233BUILDLINK_API_DEPENDS.gtk2+= gtk2+>=2.18.3nb1 234BUILDLINK_API_DEPENDS.gtk2+= gtk2+>=2.18.3nb1
234.include "../../x11/gtk2/buildlink3.mk" 235.include "../../x11/gtk2/buildlink3.mk"
235.include "../../multimedia/gstreamer1/buildlink3.mk" 236.include "../../multimedia/gstreamer1/buildlink3.mk"
236.include "../../multimedia/gst-plugins1-base/buildlink3.mk" 237.include "../../multimedia/gst-plugins1-base/buildlink3.mk"
237.include "../../x11/libXt/buildlink3.mk" 238.include "../../x11/libXt/buildlink3.mk"
238BUILDLINK_API_DEPENDS.pixman+= pixman>=0.25.2 239BUILDLINK_API_DEPENDS.pixman+= pixman>=0.25.2
239.include "../../x11/pixman/buildlink3.mk" 240.include "../../x11/pixman/buildlink3.mk"