pkgsrc/x11/x3270/options.mk
rhialto fe8692168f x11/x3270: update to 4.0ga14.
Known issues

    * When running on Cygwin, child scripts (the Script() action, Execute() action and Prompt() action) fail with a bind error.

Improvements

    None.

Bug fixes

    The last screenful of NVT mode text is no longer lost when scrolling backwards.
    The programs ar and ranlib are resolved dynamically now when building.
    Numeric fields no longer ignore non-numeric characters and commas, when the NumericLock resource is false. When it is true, commas are considered valid numeric characters.
    Proxy connections did not initialize TELNET state properly (courtesy of Andreas Krebbel).
2021-06-26 13:51:20 +00:00

38 lines
947 B
Makefile

# $NetBSD: options.mk,v 1.3 2021/06/26 13:51:20 rhialto Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.x3270
PKG_SUPPORTED_OPTIONS= curses x11 tcl
PKG_SUGGESTED_OPTIONS+= curses x11
PLIST_VARS= curses x11 tcl
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mcurses)
.include "../../mk/curses.buildlink3.mk"
CONFIGURE_ARGS+= --enable-c3270
PLIST.curses= yes
.else
CONFIGURE_ARGS+= --disable-c3270
.endif
.if !empty(PKG_OPTIONS:Mx11)
.include "../../x11/libXaw/buildlink3.mk"
.include "../../x11/libXt/buildlink3.mk"
.include "../../x11/xbitmaps/buildlink3.mk"
CONFIGURE_ARGS+= --enable-x3270
CONFIGURE_ARGS+= --enable-x3270if
PLIST.x11= yes
REPLACE_BASH+= x3270/x3270a.in
USE_TOOLS+= bash:run
.else
CONFIGURE_ARGS+= --disable-x3270
CONFIGURE_ARGS+= --disable-x3270if
.endif
.if !empty(PKG_OPTIONS:Mtcl)
.include "../../lang/tcl/buildlink3.mk"
CONFIGURE_ARGS+= --enable-tcl3270
PLIST.tcl= yes
.else
CONFIGURE_ARGS+= --disable-tcl3270
.endif