1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/audio/xamp/files/patch-ab
Vanilla I. Shu 8eff868e1f The audio/xamp port currently installs an xamp binary with
balance and volume controls that do nothing. This is because
BSD audio support seems to have been added to the software
as an afterthought.
PR:		ports/9472
Submitted by:	Sheldon Hearn <axl@iafrica.com>
1999-01-24 08:14:53 +00:00

15 lines
338 B
Plaintext

--- configure.orig Mon Oct 27 00:55:34 1997
+++ configure Sun Jan 24 15:54:23 1999
@@ -992,9 +992,9 @@
qt_libdir=NO
for i in $qt_libdirs;
do
- for j in libqt.so libqt.a libqt.sl;
+ for j in $i/libqt.so* $i/libqt.a $i/libqt.sl;
do
- if test -r "$i/$j"; then
+ if test -r "$j"; then
qt_libdir=$i
break 2
fi