mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
Merge pull request #357 from AMDmi3/conditional-miniupnp
Do not try to use miniupnp if upnp support is disabled
This commit is contained in:
@@ -247,11 +247,9 @@ if(NOT DEFINED OPENSSL_INCLUDE_DIR)
|
|||||||
message(SEND_ERROR "Could not find OpenSSL. Please download and install it first!")
|
message(SEND_ERROR "Could not find OpenSSL. Please download and install it first!")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
find_package ( MiniUPnPc )
|
if (WITH_UPNP)
|
||||||
if (MINIUPNPC_FOUND)
|
find_package ( MiniUPnPc REQUIRED )
|
||||||
include_directories( ${MINIUPNPC_INCLUDE_DIR} )
|
include_directories( SYSTEM ${MINIUPNPC_INCLUDE_DIR} )
|
||||||
else ()
|
|
||||||
set(WITH_UPNP OFF)
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
find_package ( ZLIB )
|
find_package ( ZLIB )
|
||||||
|
|||||||
Reference in New Issue
Block a user