a18cc9f996
statically linked package. Buildlink pthread. Simplify HOMEPAGE. USE .bz2 distfile. From NEWS: Version 3.4.2 (2013.3.1) ------------------------ * Bug fix release. (Thanks to chisj, vlad417, Petr and Viona) Release Note: Micro QR Code encoder had a bug that caused incorrect output (issue #25). Now the bug has been fixed. Memory leak bug (#24) and insufficient string splitting bug have been fixed.
13 lines
324 B
Makefile
13 lines
324 B
Makefile
# $NetBSD: options.mk,v 1.1 2013/06/09 13:48:50 rodent Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.qrencode
|
|
PKG_SUPPORTED_OPTIONS= static
|
|
PKG_SUGGESTED_OPTIONS+= # blank
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mstatic)
|
|
CONFIGURE_ARGS+= --enable-static=yes
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-static=no
|
|
.endif
|