File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / iperf / config / iperf_config_static_bin.m4
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Mar 17 00:36:45 2021 UTC (3 years, 3 months ago) by misho
Branches: iperf, MAIN
CVS tags: v3_3_9, HEAD
iperf 3.3.9

    1: # Also link binaries as static
    2: AC_ARG_ENABLE([static-bin],
    3:     AS_HELP_STRING([--enable-static-bin], [link iperf3 binary statically]),
    4:     [enable_static=yes
    5:      enable_shared=no
    6:      enable_static_bin=yes],
    7:     [:])
    8: AM_CONDITIONAL([ENABLE_STATIC_BIN], [test x$enable_static_bin = xno])
    9: 
   10: AS_IF([test "x$enable_static_bin" == xyes],
   11:  [LDFLAGS="$LDFLAGS --static"]
   12:  [])

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>