2021-11-12 18:55:57 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, buildPackages, autoreconfHook }:
|
2006-09-11 08:45:01 +00:00
|
|
|
|
2009-08-07 15:26:13 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-06-20 14:15:21 +00:00
|
|
|
pname = "apr";
|
2023-05-16 04:36:48 +00:00
|
|
|
version = "1.7.4";
|
2010-02-10 13:30:57 +00:00
|
|
|
|
2006-09-11 08:45:01 +00:00
|
|
|
src = fetchurl {
|
2021-06-20 14:15:21 +00:00
|
|
|
url = "mirror://apache/apr/${pname}-${version}.tar.bz2";
|
2023-05-16 04:36:48 +00:00
|
|
|
sha256 = "sha256-/GSN6YPzoqbJ543qHxgGOb0vrWwG1VbUNnpwH+XDVXc=";
|
2008-02-05 11:41:49 +00:00
|
|
|
};
|
|
|
|
|
2021-08-30 11:34:28 +00:00
|
|
|
patches = [
|
2023-02-04 21:13:21 +00:00
|
|
|
./cross-assume-dev-zero-mmappable.patch
|
2022-08-25 20:18:10 +00:00
|
|
|
];
|
2012-06-06 21:44:20 +00:00
|
|
|
|
2018-08-08 18:29:39 +00:00
|
|
|
# This test needs the net
|
|
|
|
postPatch = ''
|
|
|
|
rm test/testsock.*
|
|
|
|
'';
|
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-03 14:41:51 +00:00
|
|
|
outputBin = "dev";
|
2013-06-13 09:32:55 +00:00
|
|
|
|
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
configureFlagsArray+=("--with-installbuilddir=$dev/share/build")
|
|
|
|
'';
|
|
|
|
|
2022-10-06 16:38:53 +00:00
|
|
|
configureFlags = lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
2022-08-24 22:33:29 +00:00
|
|
|
# For cross builds, provide answers to the configure time tests.
|
|
|
|
# These answers are valid on x86_64-linux and aarch64-linux.
|
2020-01-02 16:05:23 +00:00
|
|
|
"ac_cv_file__dev_zero=yes"
|
2022-08-24 22:33:29 +00:00
|
|
|
"ac_cv_func_setpgrp_void=yes"
|
|
|
|
"apr_cv_tcp_nodelay_with_cork=yes"
|
|
|
|
"ac_cv_define_PTHREAD_PROCESS_SHARED=yes"
|
|
|
|
"apr_cv_process_shared_works=yes"
|
|
|
|
"apr_cv_mutex_robust_shared=yes"
|
|
|
|
"ap_cv_atomic_builtins=yes"
|
|
|
|
"apr_cv_mutex_recursive=yes"
|
|
|
|
"apr_cv_epoll=yes"
|
|
|
|
"apr_cv_epoll_create1=yes"
|
|
|
|
"apr_cv_dup3=yes"
|
|
|
|
"apr_cv_accept4=yes"
|
|
|
|
"apr_cv_sock_cloexec=yes"
|
|
|
|
"ac_cv_struct_rlimit=yes"
|
|
|
|
"ac_cv_func_sem_open=yes"
|
|
|
|
"ac_cv_negative_eai=yes"
|
|
|
|
"apr_cv_gai_addrconfig=yes"
|
|
|
|
"ac_cv_o_nonblock_inherited=no"
|
|
|
|
"apr_cv_pthreads_lib=-lpthread"
|
2021-11-12 18:55:57 +00:00
|
|
|
"CC_FOR_BUILD=${buildPackages.stdenv.cc}/bin/cc"
|
2021-01-21 17:00:13 +00:00
|
|
|
] ++ lib.optionals (stdenv.hostPlatform.system == "i686-cygwin") [
|
2010-02-02 16:49:07 +00:00
|
|
|
# Including the Windows headers breaks unistd.h.
|
|
|
|
# Based on ftp://sourceware.org/pub/cygwin/release/libapr1/libapr1-1.3.8-2-src.tar.bz2
|
2020-01-02 16:05:23 +00:00
|
|
|
"ac_cv_header_windows_h=no"
|
|
|
|
];
|
|
|
|
|
2021-11-12 18:55:57 +00:00
|
|
|
# - Update libtool for macOS 11 support
|
|
|
|
# - Regenerate for cross fix patch
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2021-04-19 08:31:20 +00:00
|
|
|
|
2021-11-12 19:44:11 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2013-06-13 09:32:55 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2021-12-29 15:02:51 +00:00
|
|
|
homepage = "https://apr.apache.org/";
|
2008-02-05 11:41:49 +00:00
|
|
|
description = "The Apache Portable Runtime library";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "apr-1-config";
|
2015-10-03 14:41:51 +00:00
|
|
|
platforms = platforms.all;
|
2018-09-30 09:02:17 +00:00
|
|
|
license = licenses.asl20;
|
2015-10-03 14:41:51 +00:00
|
|
|
maintainers = [ maintainers.eelco ];
|
2006-09-11 08:45:01 +00:00
|
|
|
};
|
|
|
|
}
|