blob: e2e781aac364724522fe2ec32a6a5157f495c166 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $NetBSD: options.mk,v 1.1 2006/09/24 16:28:49 salo Exp $
# this should use the same gecko option as epiphany
PKG_OPTIONS_VAR= PKG_OPTIONS.epiphany
.include "../../www/seamonkey/gecko-options.mk"
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mfirefox)
CPPFLAGS+= -I${BUILDLINK_PREFIX.firefox}/include/firefox/dom
CPPFLAGS+= -I${BUILDLINK_PREFIX.firefox}/include/firefox/pref
CPPFLAGS+= -I${BUILDLINK_PREFIX.firefox}/include/firefox/webbrwsr
.else
BROKEN= seamonkey backend is currently not supported
.endif
|