-
Notifications
You must be signed in to change notification settings - Fork 208
/
Copy pathcares.sh
executable file
·85 lines (64 loc) · 2.59 KB
/
cares.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/usr/bin/env bash
# Copyright (C) Viktor Szakats. See LICENSE.md
# SPDX-License-Identifier: MIT
# Issues (as of 1.34.4):
# - Windows build stomps to the `_WIN32_WINNT` value set via `CPPFLAGS`.
# Projects are not supposed to override a value set by the builder.
# Instead it should either fail or resolve the new calls/functionality
# dynamically or by other means.
# FIXED upstream: https://github.com/c-ares/c-ares/commit/5d7abd1f8c0626445026712082e7e4b7835263a4
# - `-DCARES_SYMBOL_HIDING=ON` does not seem to work on macOS with clang for
# example. The issue seems to be that CARES_EXTERN is set unconditionally
# to default visibility and -fvisibility=hidden does not override that.
# - Compiler warnings when building for macOS with GCC.
# - `bool` type is undeclared in <notify.h> when building for macOS with GCC.
# shellcheck disable=SC3040,SC2039
set -o xtrace -o errexit -o nounset; [ -n "${BASH:-}${ZSH_NAME:-}" ] && set -o pipefail
export _NAM _VER _OUT _BAS _DST
_NAM="$(basename "$0" | cut -f 1 -d '.')"
_VER="$1"
(
cd "${_NAM}" || exit 0
rm -r -f "${_PKGDIR:?}" "${_BLDDIR:?}"
options=''
if [ "${_OS}" = 'mac' ]; then
if [ "${_CC}" = 'gcc' ]; then
options+=' -DHAVE__Wpedantic=0 -DHAVE__Wsign_conversion=0 -DHAVE__Wconversion=0'
fi
if [ "${_OSVER}" -lt '1011' ]; then
options+=' -DHAVE_CONNECTX=0' # connectx() requires 10.11
fi
fi
# shellcheck disable=SC2086
cmake -B "${_BLDDIR}" ${_CMAKE_GLOBAL} ${options} \
-DCARES_SYMBOL_HIDING=ON \
-DCARES_STATIC=ON \
-DCARES_STATIC_PIC=ON \
-DCARES_SHARED=OFF \
-DCARES_BUILD_TESTS=OFF \
-DCARES_BUILD_CONTAINER_TESTS=OFF \
-DCARES_BUILD_TOOLS=OFF \
-DCMAKE_C_FLAGS="${_CFLAGS_GLOBAL_CMAKE} ${_CFLAGS_GLOBAL} ${_CPPFLAGS_GLOBAL} ${_LDFLAGS_GLOBAL}"
cmake --build "${_BLDDIR}"
cmake --install "${_BLDDIR}" --prefix "${_PP}"
# Delete .pc files
rm -r -f "${_PP}"/lib/pkgconfig
# Make steps for determinism
readonly _ref='RELEASE-NOTES.md'
# shellcheck disable=SC2086
"${_STRIP_LIB}" ${_STRIPFLAGS_LIB} "${_PP}"/lib/*.a
touch -c -r "${_ref}" "${_PP}"/include/*.h
touch -c -r "${_ref}" "${_PP}"/lib/*.a
# Create package
_OUT="${_NAM}-${_VER}${_REVSUFFIX}${_PKGSUFFIX}"
_BAS="${_NAM}-${_VER}${_PKGSUFFIX}"
_DST="$(pwd)/_pkg"; rm -r -f "${_DST}"
mkdir -p "${_DST}/include"
mkdir -p "${_DST}/lib"
cp -f -p "${_PP}"/include/*.h "${_DST}/include/"
cp -f -p "${_PP}"/lib/*.a "${_DST}/lib/"
cp -f -p README.md "${_DST}/"
cp -f -p RELEASE-NOTES.md "${_DST}/"
cp -f -p LICENSE.md "${_DST}/"
../_pkg.sh "$(pwd)/${_ref}"
)