|
From: <pst...@us...> - 2008-05-19 01:00:01
|
Revision: 544
http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=544&view=rev
Author: pstieber
Date: 2008-05-18 17:59:59 -0700 (Sun, 18 May 2008)
Log Message:
-----------
Added some literals to conditional tests to prevent complaints on the Mac.
Modified Paths:
--------------
trunk/jazz/configure.ac
Modified: trunk/jazz/configure.ac
===================================================================
--- trunk/jazz/configure.ac 2008-05-18 23:32:38 UTC (rev 543)
+++ trunk/jazz/configure.ac 2008-05-19 00:59:59 UTC (rev 544)
@@ -81,7 +81,7 @@
;;
*-*-linux* )
AC_CHECK_LIB(asound, snd_pcm_open, have_alsa=yes, have_alsa=no)
- if [[ $have_alsa = "yes" ]] ; then
+ if [[ x$have_alsa = x"yes" ]] ; then
LIBS="$LIBS -lasound"
fi
;;
@@ -91,7 +91,7 @@
AM_CONDITIONAL(USE_ALSA, test "$have_alsa" = yes)
-if [[ $have_alsa = "yes" ]] ; then
+if [[ x$have_alsa = x"yes" ]] ; then
dnl ---------------------------------------
dnl check if we are to enable alsa support
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|