67ed5fb298
1. Infrastructure upgrades: Autoconf 2.69, Automake 1.12.6, bison 2.7. 2. `fflush()', `nextfile', and `delete array' are all now part of POSIX. 3. fflush() behavior changed to match BWK awk and for POSIX - now both fflush() and fflush("") flush all open output redirections. 4. Various minor bug fixes and documentation updates.
17 lines
407 B
Makefile
17 lines
407 B
Makefile
# $NetBSD: options.mk,v 1.3 2013/01/31 22:01:43 adam Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.gawk
|
|
PKG_SUPPORTED_OPTIONS= portals readline
|
|
PKG_SUGGESTED_OPTIONS= readline
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mportals)
|
|
CONFIGURE_ARGS+= --enable-portals
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mreadline)
|
|
.include "../../devel/readline/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-readline
|
|
.endif
|