Searched +full:libidn2 +full:- +full:dev (Results 1 – 12 of 12) sorted by relevance
| /external/sandboxed-api/contrib/libidn2/ |
| D | CMakeLists.txt | 7 # https://www.apache.org/licenses/LICENSE-2.0 17 project(libidn2-sapi CXX C) 27 "${CMAKE_BINARY_DIR}/sandboxed-api-build" 32 # Use pkg-config for the libidn2 include paths 34 pkg_check_modules(libidn2 REQUIRED IMPORTED_TARGET libidn2) 36 # System libidn2 needs to have the libidn2-dev and libunistring-dev packages 37 # installed. We cannot use pkg-config here, as libidn2's pkg-config file does 39 find_library(libidn2 NAMES libidn2.a idn2) 42 # Combine libidn2 and its dependency into a single static library 47 "-Wl,--whole-archive,${libidn2},--no-whole-archive" [all …]
|
| /external/sandboxed-api/.github/workflows/ |
| D | ubuntu-cmake-contrib.yml | 1 name: ubuntu-cmake-contrib 11 fail-fast: false 13 os: [ubuntu-22.04] 15 - brotli 16 - c-blosc 17 - jsonnet 18 - libidn2 19 - libraw 20 - libtiff 21 - libxls [all …]
|
| /external/curl/docs/ |
| D | INTERNALS.md | 1 <!-- 4 SPDX-License-Identifier: curl 5 --> 10 curl](https://everything.curl.dev/internals) book. This file lists supported 15 We write curl and libcurl to compile with C89 compilers on 32-bit and up 27 - OpenSSL 0.9.7 28 - GnuTLS 3.1.10 29 - zlib 1.1.4 30 - libssh2 1.0 31 - c-ares 1.16.0 [all …]
|
| D | INSTALL.md | 1 <!-- 4 SPDX-License-Identifier: curl 5 --> 22 ./bootstrap-vcpkg.sh 33 the `GIT-INFO.md` file in the root directory for specific instructions on how 41 ./configure --with-openssl [--with-gnutls --with-wolfssl] 52 ./configure --help 57 ./configure --prefix=/path/to/curl/tree 63 ./configure --prefix=$HOME 72 ./configure --with-openssl [all …]
|
| /external/oss-fuzz/projects/wget2/ |
| D | Dockerfile | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 FROM gcr.io/oss-fuzz-base/base-builder 18 RUN apt-get update && apt-get install -y \ 20 pkg-config \ 38 libmicrohttpd-dev 40 ENV GNULIB_TOOL $SRC/gnulib/gnulib-tool 42 RUN git clone --depth=1 --recursive https://git.savannah.gnu.org/git/libunistring.git 43 RUN git clone --depth=1 --recursive https://gitlab.com/libidn/libidn2.git 44 RUN git clone --depth=1 --recursive https://github.com/rockdaboot/libpsl.git 45 RUN git clone --depth=1 https://git.lysator.liu.se/nettle/nettle.git [all …]
|
| /external/curl/.github/workflows/ |
| D | linux.yml | 3 # SPDX-License-Identifier: curl 10 - master 11 - '*/ci' 12 paths-ignore: 13 - '**/*.md' 14 - '.azure-pipelines.yml' 15 - '.circleci/**' 16 - '.cirrus.yml' 17 - 'appveyor.*' 18 - 'packages/**' [all …]
|
| D | osslq-linux.yml | 3 # SPDX-License-Identifier: curl 5 name: osslq-linux 10 - master 11 - '*/ci' 12 paths-ignore: 13 - '**/*.md' 14 - '**/CMakeLists.txt' 15 - '.azure-pipelines.yml' 16 - '.circleci/**' 17 - '.cirrus.yml' [all …]
|
| D | ngtcp2-linux.yml | 3 # SPDX-License-Identifier: curl 5 name: ngtcp2-linux 10 - master 11 - '*/ci' 12 paths-ignore: 13 - '**/*.md' 14 - '**/CMakeLists.txt' 15 - '.azure-pipelines.yml' 16 - '.circleci/**' 17 - '.cirrus.yml' [all …]
|
| /external/curl/ |
| D | configure.ac | 21 # SPDX-License-Identifier: curl 29 AC_INIT([curl], [-], [a suitable curl mailing list: https://curl.se/mail/]) 67 if test -z "$SED"; then 71 if test -z "$SED" || test "$SED" = "not_found"; then 79 if test -z "$GREP"; then 83 if test -z "$GREP" || test "$GREP" = "not_found"; then 89 dnl 'grep -E' is mandatory for configure process and libtool. 91 if test -z "$EGREP"; then 93 AC_MSG_CHECKING([that grep -E works]) 94 if echo a | ($GREP -E '(a|b)') >/dev/null 2>&1; then [all …]
|
| D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2.71 for curl -. 8 # Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation, 19 ## -------------------------------- ## 21 ## -------------------------------- ## 60 (`echo "$xc_tst_str" >/dev/null 2>&1`) && xc_tst_str='success' 66 # Try built-in echo, and fail. 77 (`test -n "$xc_tst_str" >/dev/null 2>&1`) && xc_tst_str='success' 93 (`test -n "$PATH" >/dev/null 2>&1`) && xc_tst_str='success' 109 xc_tst_str=`expr "$xc_tst_str" : '.*' 2>/dev/null` [all …]
|
| D | CMakeLists.txt | 21 # SPDX-License-Identifier: curl 29 # sub-projects in a larger build using `FetchContent`. To support 32 # https://cmake.org/cmake/help/latest/module/FetchContent.html#integrating-with-find-package 61 string(REGEX MATCH "#define LIBCURL_VERSION_NUM 0x[0-9a-fA-F]+" 66 # Setup package meta-data 71 # SET(PACKAGE_VERSION "-") 72 # SET(PACKAGE_STRING "curl-") 91 option(ENABLE_ARES "Set to ON to enable c-ares support" OFF) 99 add_definitions(-D_WIN32_WINNT=${CURL_TARGET_WINDOWS_VERSION}) 100 list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_WIN32_WINNT=${CURL_TARGET_WINDOWS_VERSION}) [all …]
|
| /external/curl/.circleci/ |
| D | config.yml | 21 # SPDX-License-Identifier: curl 28 # See https://circleci.com/docs/configuration-reference/#macos-execution-environment 30 …ion of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference 36 - run: 38 autoreconf -fi 39 … ./configure --enable-warnings --enable-werror --with-openssl || { tail -1000 config.log; false; } 41 configure-openssl-no-verbose: 43 - run: 45 autoreconf -fi 46 … ./configure --disable-verbose --enable-werror --with-openssl || { tail -1000 config.log; false; } [all …]
|