build: delete unused `REQUIRE_LIB_DEPS`

Unused since 97aca0971d #5808

Closes #14671
This commit is contained in:
Viktor Szakats 2024-08-24 11:29:12 +02:00
Родитель 573e7e827e
Коммит c190338e0f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5ABD165E2AEF201
2 изменённых файлов: 3 добавлений и 6 удалений

Просмотреть файл

@ -2036,8 +2036,6 @@ if(NOT CURL_DISABLE_INSTALL)
else() else()
set(ENABLE_STATIC "no") set(ENABLE_STATIC "no")
endif() endif()
# Set this to "yes" to append all libraries on which -lcurl is dependent
set(REQUIRE_LIB_DEPS "no")
# Finally generate a "curl-config" matching this config. # Finally generate a "curl-config" matching this config.
# Consumed variables: # Consumed variables:

Просмотреть файл

@ -503,12 +503,11 @@ AC_SUBST([LIBCURL_PC_CFLAGS])
# Determine whether all dependent libraries must be specified when linking # Determine whether all dependent libraries must be specified when linking
if test "X$enable_shared" = "Xyes" -a "X$link_all_deplibs" = "Xno"; then if test "X$enable_shared" = "Xyes" -a "X$link_all_deplibs" = "Xno"; then
REQUIRE_LIB_DEPS=no require_lib_deps=no
else else
REQUIRE_LIB_DEPS=yes require_lib_deps=yes
fi fi
AC_SUBST(REQUIRE_LIB_DEPS) AM_CONDITIONAL(USE_EXPLICIT_LIB_DEPS, test x$require_lib_deps = xyes)
AM_CONDITIONAL(USE_EXPLICIT_LIB_DEPS, test x$REQUIRE_LIB_DEPS = xyes)
dnl ********************************************************************** dnl **********************************************************************
dnl platform/compiler/architecture specific checks/flags dnl platform/compiler/architecture specific checks/flags