pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-trx/+/42253?usp=email )
Change subject: configure.ac: Avoid building shared libraries by default ......................................................................
configure.ac: Avoid building shared libraries by default
Those libraries are internal to osmo-trx and won't be installed, so there's no use in building them.
Change-Id: I93c8ace45008b6ab8fba070c174bcec11e3b106e --- M configure.ac 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: Jenkins Builder: Verified laforge: Looks good to me, but someone else must approve osmith: Looks good to me, approved
diff --git a/configure.ac b/configure.ac index b7fea08..62eb625 100644 --- a/configure.ac +++ b/configure.ac @@ -66,8 +66,8 @@ PKG_PROG_PKG_CONFIG([0.20])
AC_LIBTOOL_WIN32_DLL -AC_ENABLE_SHARED dnl do build shared libraries -AC_DISABLE_STATIC dnl don't build static libraries +AC_DISABLE_SHARED dnl don't build shared libraries +AC_ENABLE_STATIC dnl do build static libraries LT_INIT
dnl Checks for header files.