-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a platform file for Ubuntu 24.04.
- Loading branch information
Showing
3 changed files
with
55 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
if [ -z "${INSPIRCD_ROOT_DIR}" ] | ||
then | ||
>&2 echo 'This script should not be used directly!' | ||
exit 1 | ||
fi | ||
|
||
export PLATFORM_NAME="Ubuntu 24.04 (Noble Numbat)" | ||
export PLATFORM_CONTAINER="ubuntu:noble" | ||
export PLATFORM_SUFFIX="ubuntu24.04." | ||
|
||
declare -Ax MODULE_BUILD_DEPS=( | ||
["argon2"]="libargon2-dev pkg-config" | ||
["geo_maxmind"]="libmaxminddb-dev pkg-config" | ||
["ldap"]="libldap2-dev" | ||
["mysql"]="default-libmysqlclient-dev" | ||
["pgsql"]="libpq-dev" | ||
["regex_pcre"]="libpcre3-dev" | ||
["regex_pcre2"]="libpcre2-dev" | ||
["regex_posix"]="" | ||
["regex_re2"]="libre2-dev pkg-config" | ||
["regex_stdlib"]="" | ||
["regex_tre"]="libtre-dev pkg-config" | ||
["sqlite3"]="libsqlite3-dev pkg-config" | ||
["ssl_gnutls"]="libgnutls28-dev pkg-config" | ||
["ssl_mbedtls"]="libmbedtls-dev" | ||
["ssl_openssl"]="libssl-dev pkg-config" | ||
["sslrehashsignal"]="" | ||
) | ||
|
||
# Note: ${shlibs:Depends} takes care of runtime libraries. | ||
declare -Ax MODULE_RUNTIME_DEPS=( | ||
["argon2"]="" | ||
["geo_maxmind"]="" | ||
["ldap"]="" | ||
["mysql"]="" | ||
["pgsql"]="" | ||
["regex_pcre"]="" | ||
["regex_pcre2"]="" | ||
["regex_posix"]="" | ||
["regex_re2"]="" | ||
["regex_stdlib"]="" | ||
["regex_tre"]="" | ||
["sqlite3"]="" | ||
["ssl_gnutls"]="gnutls-bin libio-socket-ssl-perl" | ||
["ssl_mbedtls"]="libio-socket-ssl-perl" | ||
["ssl_openssl"]="libio-socket-ssl-perl openssl" | ||
["sslrehashsignal"]="" | ||
) | ||
|
||
declare -Ax MODULE_ERRORS=() | ||
|
||
declare -Ax MODULE_WARNINGS=() |