File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,13 @@ stdenv.mkDerivation rec {
3131 } )
3232 ] ;
3333
34+ # clang > 17 dropped support for `-export-dynamic` but `-rdynamic` does the
35+ # same thing
36+ postPatch = ''
37+ substituteInPlace platform.m4 \
38+ --replace-fail -export-dynamic -rdynamic
39+ '' ;
40+
3441 nativeBuildInputs = [
3542 autoreconfHook
3643 gnustep . base
Original file line number Diff line number Diff line change @@ -4550,7 +4550,7 @@ with pkgs;
45504550 openvpn_learnaddress = callPackage ../tools/networking/openvpn/openvpn_learnaddress.nix { };
45514551
45524552 openvpn-auth-ldap = callPackage ../tools/networking/openvpn/openvpn-auth-ldap.nix {
4553- inherit (llvmPackages_17 ) stdenv;
4553+ inherit (llvmPackages ) stdenv;
45544554 };
45554555
45564556 namespaced-openvpn = python3Packages.callPackage ../tools/networking/namespaced-openvpn { };
You can’t perform that action at this time.
0 commit comments