ports/audio/cmus/files/patch-configure
Daniel Engberg 89849e0159 audio/cmus: Fix detection using pkg-config with libmad 0.16
Filename for libmad's pc file is now libmad.pc, this broke pkg-config
check however fallback detection code still worked.

Approved by:	portmgr (blanket)
2022-05-09 03:07:57 +02:00

11 lines
204 B
Text

--- configure.orig 2022-05-09 00:59:25 UTC
+++ configure
@@ -229,7 +229,7 @@ check_flac()
check_mad()
{
- pkg_config MAD "mad" "" "-lmad -lm"
+ pkg_config MAD "libmad" "" "-lmad -lm"
return $?
}