aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-20 03:18:35 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-20 03:18:35 +0000
commit6fcde5d8bfd1338dfedc9b3a6cef9af34e7a9234 (patch)
treed4f35106ab41d2fd11f27ae1bbd0ef0c27434f18 /res
parentc2ac8d62f9538611a67086e3c25293e5ad6dc63f (diff)
fix Solaris compatibility issues (bug #4339)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5747 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rwxr-xr-xres/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/res/Makefile b/res/Makefile
index df06973c1..0e8d3ae6a 100755
--- a/res/Makefile
+++ b/res/Makefile
@@ -58,14 +58,16 @@ endif
depend: .depend
.depend:
- @if ! which mpg123 &>/dev/null ; then \
- echo "*** You don't have mpg123 installed. You're going to need ***";\
- echo "*** it if you want MusicOnHold ***";\
- elif ! mpg123 --longhelp 2>&1 | grep .59r &>/dev/null ; then \
+ @if [ x`which mpg123 2>/dev/null | grep -v '^no'` != x ] ; then \
+ if mpg123 --longhelp 2>&1 | grep -q .59r 2>&1 >/dev/null ; then echo ; else \
echo "*************************************************************";\
echo "*** You have the WRONG version of mpg123... you need .59r ***";\
echo "*** Use 'make mpg123' to get the right verison ***";\
echo "*************************************************************";\
+ fi ;\
+ else \
+ echo "*** You don't have mpg123 installed. You're going to need ***";\
+ echo "*** it if you want MusicOnHold ***";\
fi
../mkdep $(CFLAGS) `ls *.c`