Merge pull request #259300 from viraptor/audiofile-clang

audiofile: fix build with clang 16

authored by

toonn and committed by
GitHub
114236d1 89d2107b

+3
+3
pkgs/development/libraries/audiofile/default.nix
··· 28 28 29 29 outputs = [ "out" "dev" "man" ]; 30 30 31 + # std::unary_function has been removed in c++17 32 + makeFlags = [ "CXXFLAGS=-std=c++11" ]; 33 + 31 34 # Even when statically linking, libstdc++.la is put in dependency_libs here, 32 35 # and hence libstdc++.so passed to the linker, just pass -lstdc++ and let the 33 36 # compiler do what it does best. (libaudiofile.la is a generated file, so we