summaryrefslogtreecommitdiffstats
path: root/config/iperf_config_static_bin.m4
blob: 2ad20c105375b7cabf12f933c3757557a54b9eff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Also link binaries as static
AC_ARG_ENABLE([static-bin],
    AS_HELP_STRING([--enable-static-bin], [link iperf3 binary statically]),
    [enable_static=yes
     enable_shared=no
     enable_static_bin=yes],
    [:])
AM_CONDITIONAL([ENABLE_STATIC_BIN], [test x$enable_static_bin = xno])

AS_IF([test "x$enable_static_bin" = xyes],
 [LDFLAGS="$LDFLAGS --static"]
 [])