pkgsrc/multimedia/x264/options.mk
adam d21dec5d6b x264: added version 20220601
x264 is a free software library and application for encoding video streams into
the H.264/MPEG-4 AVC compression format.
2022-09-26 17:00:21 +00:00

16 lines
380 B
Makefile

# $NetBSD: options.mk,v 1.1 2022/09/26 17:00:21 adam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.x264
PKG_SUPPORTED_OPTIONS= threads
.if !empty(X264_BUILD_THREADS_SUPPORT:M[Yy][Ee][Ss])
PKG_SUGGESTED_OPTIONS+= threads
.endif
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mthreads)
. include "../../mk/pthread.buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-pthread
.endif