pespin has uploaded this change for review. ( 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(-) git pull ssh://gerrit.osmocom.org:29418/osmo-trx refs/changes/53/42253/1 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. -- To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/42253?usp=email To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email Gerrit-MessageType: newchange Gerrit-Project: osmo-trx Gerrit-Branch: master Gerrit-Change-Id: I93c8ace45008b6ab8fba070c174bcec11e3b106e Gerrit-Change-Number: 42253 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <[email protected]>
