Update to libcurl-8.0.1

This commit is contained in:
casey langen 2023-03-26 11:29:46 -07:00
parent 81c5ab44f0
commit 53b2c789d0
5 changed files with 5 additions and 7 deletions

View File

@ -24,7 +24,4 @@ if (CMAKE_SYSTEM_NAME MATCHES "Darwin" OR CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR
"${BSD_PATH_PREFIX}/lib"
"${BSD_PATH_PREFIX}/opt/openssl/lib"
"${BSD_PATH_PREFIX}/opt/ncurses/lib")
include_directories("${BSD_PATH_PREFIX}/include")
link_directories("${BSD_PATH_PREFIX}/lib")
endif ()

View File

@ -18,11 +18,11 @@ include(Colors)
include(CMakeToolsHelpers OPTIONAL)
include(CheckAtomic)
include(AddPlugin)
include(ConfigureRpath)
include(ConfigureBsdPaths)
if (${BUILD_STANDALONE} MATCHES "true")
include(ConfigureStandalone)
endif()
include(ConfigureRpath)
include(ConfigureBsdPaths)
include(AddDarwinSystemLibs)
include(AddLinuxSystemLibs)
include(ConfigureCurses)

View File

@ -28,7 +28,7 @@ OS=$(uname)
ARCH=$(uname -m)
SCRIPTDIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
OPENSSL_VERSION="3.1.0"
CURL_VERSION="7.88.1"
CURL_VERSION="8.0.1"
LIBMICROHTTPD_VERSION="0.9.76"
FFMPEG_VERSION="6.0"
LAME_VERSION="3.100"

View File

@ -5,7 +5,7 @@ set (ffmpegdecoder_SOURCES
add_library(ffmpegdecoder SHARED ${ffmpegdecoder_SOURCES})
if (${BUILD_STANDALONE} MATCHES "true")
include_directories(BEFORE ${VENDOR_INCLUDE_DIRECTORIES})
include_directories(AFTER ${VENDOR_INCLUDE_DIRECTORIES})
message(STATUS "[ffmpegdecoder] using include dirs: ${VENDOR_INCLUDE_DIRECTORIES}")
find_vendor_library(AVCODEC avcodec-musikcube)
find_vendor_library(AVUTIL avutil-musikcube)

View File

@ -9,6 +9,7 @@ if ("${LIBPORTAUDIO}" STREQUAL "LIBPORTAUDIO-NOTFOUND")
disable_plugin(portaudioout)
else()
add_library(portaudioout SHARED ${portaudioout_SOURCES})
include_directories("${BSD_PATH_PREFIX}/include")
target_link_libraries(portaudioout ${LIBPORTAUDIO})
message(STATUS "[portaudioout] using libportaudio at: ${LIBPORTAUDIO}")
endif()