mkvtoolnix/ac/static.m4

17 lines
420 B
Plaintext
Raw Normal View History

dnl
dnl Check for static
dnl
2015-02-19 12:33:06 +00:00
AC_ARG_ENABLE([static], AC_HELP_STRING([--enable-static],[make a static build of the applications (no)]), [], [enable_static=no])
STATIC_LIBS=""
if test x"$enable_static" = xyes ; then
STATIC_LIBS=" -lpthread -static "
opt_features_yes="$opt_features_yes\n * build static libraries"
else
opt_features_no="$opt_features_no\n * build static libraries"
fi
AC_SUBST(STATIC_LIBS)