2010-12-28 00:09:22 +01:00
|
|
|
# $NetBSD: options.mk,v 1.2 2010/12/27 23:09:22 fhajny Exp $
|
2010-12-23 13:36:01 +01:00
|
|
|
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.spidermonkey
|
|
|
|
PKG_SUPPORTED_OPTIONS= threads unicode
|
2010-12-28 00:09:22 +01:00
|
|
|
PKG_SUGGESTED_OPTIONS= # empty
|
2010-12-23 13:36:01 +01:00
|
|
|
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
|
|
|
|
###
|
|
|
|
### Threads support
|
|
|
|
###
|
|
|
|
.if !empty(PKG_OPTIONS:Mthreads)
|
|
|
|
PTHREAD_AUTO_VARS= yes
|
|
|
|
CFLAGS+= -DJS_THREADSAFE
|
|
|
|
.include "../../devel/nspr/buildlink3.mk"
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
|
|
.endif
|
|
|
|
|
|
|
|
###
|
|
|
|
### UTF8 string support
|
|
|
|
###
|
|
|
|
.if !empty(PKG_OPTIONS:Municode)
|
|
|
|
CFLAGS+= -DJS_C_STRINGS_ARE_UTF8
|
|
|
|
.endif
|