2015-02-18 10:44:45 +00:00
|
|
|
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])
|
2015-02-18 10:44:45 +00:00
|
|
|
|
2015-02-19 12:36:40 +00:00
|
|
|
LINK_STATICALLY=""
|
2015-02-18 10:44:45 +00:00
|
|
|
|
|
|
|
if test x"$enable_static" = xyes ; then
|
2015-02-23 15:37:17 +00:00
|
|
|
LINK_STATICALLY=" -static "
|
2015-02-19 12:34:44 +00:00
|
|
|
opt_features_yes="$opt_features_yes\n * make a static build of the applications"
|
2015-02-18 10:44:45 +00:00
|
|
|
else
|
2015-02-19 12:34:44 +00:00
|
|
|
opt_features_no="$opt_features_no\n * make a static build of the applications"
|
2015-02-18 10:44:45 +00:00
|
|
|
fi
|
|
|
|
|
2015-02-19 12:36:40 +00:00
|
|
|
AC_SUBST(LINK_STATICALLY)
|