From 524eae58cce1ce22d8a2b0aacbdb567fca75de72 Mon Sep 17 00:00:00 2001 From: Riccardo Spagni Date: Wed, 24 Sep 2014 20:57:09 +0200 Subject: [PATCH] never use the baked-in miniupnpc on FreeBSD because explosions --- CMakeLists.txt | 2 -- external/CMakeLists.txt | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fcbd64ce..5655bfc8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -212,7 +212,5 @@ else() include_directories(${UPNP_INCLUDE}) endif() - - add_subdirectory(src) add_subdirectory(tests) diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt index 177c2115..f75c420e 100755 --- a/external/CMakeLists.txt +++ b/external/CMakeLists.txt @@ -216,7 +216,7 @@ MARK_AS_ADVANCED(MINIUPNP_INCLUDE_DIR MINIUPNP_LIBRARY) # And now on to the Monero part of things -if(MINIUPNP_FOUND AND MINIUPNPC_VERSION_1_7_OR_HIGHER AND !STATIC) +if(MINIUPNP_FOUND AND MINIUPNPC_VERSION_1_7_OR_HIGHER AND !STATIC AND !FREEBSD) message(STATUS "Using shared miniupnpc found at ${MINIUPNP_INCLUDE_DIR}") set(UPNP_STATIC false PARENT_SCOPE)