mirror of https://gitee.com/bigwinds/arangodb
added resolv as library dependency
This commit is contained in:
parent
785a970dec
commit
db333ad30f
|
@ -295,6 +295,13 @@ target_link_libraries(
|
||||||
${MSVC_LIBS}
|
${MSVC_LIBS}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if (NOT MSVC)
|
||||||
|
target_link_libraries(
|
||||||
|
${BIN_ARANGOD}
|
||||||
|
"resolv"
|
||||||
|
)
|
||||||
|
endif ()
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
### @brief install arangod binary
|
### @brief install arangod binary
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
|
@ -53,6 +53,13 @@ target_link_libraries(
|
||||||
${MSVC_LIBS}
|
${MSVC_LIBS}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if (NOT MSVC)
|
||||||
|
target_link_libraries(
|
||||||
|
${BIN_ARANGOB}
|
||||||
|
"resolv"
|
||||||
|
)
|
||||||
|
endif ()
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
### @brief install arangob binary
|
### @brief install arangob binary
|
||||||
################################################################################
|
################################################################################
|
||||||
|
@ -103,6 +110,13 @@ target_link_libraries(
|
||||||
${MSVC_LIBS}
|
${MSVC_LIBS}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if (NOT MSVC)
|
||||||
|
target_link_libraries(
|
||||||
|
${BIN_ARANGODUMP}
|
||||||
|
"resolv"
|
||||||
|
)
|
||||||
|
endif ()
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
### @brief install arangodump binary
|
### @brief install arangodump binary
|
||||||
################################################################################
|
################################################################################
|
||||||
|
@ -154,6 +168,13 @@ target_link_libraries(
|
||||||
${MSVC_LIBS}
|
${MSVC_LIBS}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if (NOT MSVC)
|
||||||
|
target_link_libraries(
|
||||||
|
${BIN_ARANGOIMP}
|
||||||
|
"resolv"
|
||||||
|
)
|
||||||
|
endif ()
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
### @brief install arangoimp binary
|
### @brief install arangoimp binary
|
||||||
################################################################################
|
################################################################################
|
||||||
|
@ -203,6 +224,13 @@ target_link_libraries(
|
||||||
${MSVC_LIBS}
|
${MSVC_LIBS}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if (NOT MSVC)
|
||||||
|
target_link_libraries(
|
||||||
|
${BIN_ARANGORESTORE}
|
||||||
|
"resolv"
|
||||||
|
)
|
||||||
|
endif ()
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
### @brief install arangorestore binary
|
### @brief install arangorestore binary
|
||||||
################################################################################
|
################################################################################
|
||||||
|
@ -256,6 +284,13 @@ target_link_libraries(
|
||||||
${MSVC_LIBS}
|
${MSVC_LIBS}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if (NOT MSVC)
|
||||||
|
target_link_libraries(
|
||||||
|
${BIN_ARANGOSH}
|
||||||
|
"resolv"
|
||||||
|
)
|
||||||
|
endif ()
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
### @brief install arangosh binary
|
### @brief install arangosh binary
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
|
@ -679,6 +679,12 @@ LIB_INFO="$LIB_INFO|ZLIB_CPPFLAGS: ${ZLIB_CPPFLAGS}"
|
||||||
LIB_INFO="$LIB_INFO|ZLIB_LDFLAGS: ${ZLIB_LDFLAGS}"
|
LIB_INFO="$LIB_INFO|ZLIB_LDFLAGS: ${ZLIB_LDFLAGS}"
|
||||||
LIB_INFO="$LIB_INFO|ZLIB_LIBS: ${ZLIB_LIBS}"
|
LIB_INFO="$LIB_INFO|ZLIB_LIBS: ${ZLIB_LIBS}"
|
||||||
|
|
||||||
|
dnl ----------------------------------------------------------------------------
|
||||||
|
dnl resolv
|
||||||
|
dnl ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
LIBS="$LIBS -lresolv"
|
||||||
|
|
||||||
dnl ============================================================================
|
dnl ============================================================================
|
||||||
dnl --SECTION-- GENERATE FILES
|
dnl --SECTION-- GENERATE FILES
|
||||||
dnl ============================================================================
|
dnl ============================================================================
|
||||||
|
|
Loading…
Reference in New Issue