pkgsrc-wip/libcerror/options.mk
Blue Rats 2b83160654 Import libcerror-20120507 as wip/libcerror.
Several libraries for cross-platform C functions:

 * libcerror; error functions
 * libclocale; locale functions
 * libcnotify; notification functions
 * libcfile; file functions
 * libcpath; path functions
 * libcsplit; split string functions

These libraries were initially build to be used within other libraries and are
currently in the process of being turned into stand-alone versions.
2012-12-08 22:41:37 +00:00

17 lines
430 B
Makefile

# $NetBSD: options.mk,v 1.1 2012/12/08 22:41:37 othyro Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.libcerror
PKG_SUPPORTED_OPTIONS= nls wide-curses
PKG_SUGGESTED_OPTIONS+= nls wide-curses
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mnls)
.include "../../devel/gettext-lib/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-nls
.endif
.if !empty(PKG_OPTIONS:Mwide-curses)
CONFIGURE_ARGS+= --enable-wide-character-type
.endif