summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorGary Scavone <gary@music.mcgill.ca>2014-03-31 16:46:04 -0400
committerGary Scavone <gary@music.mcgill.ca>2014-03-31 16:46:04 -0400
commita71027332b636913443e66f6af4566dd86983f24 (patch)
tree5441e537b9708184bcb637b0ee7bd93c42b0d865 /configure.ac
parent12516be654cafb0f681174d1fd99b5f61e254307 (diff)
Fix for ALSA runnable flag update mistake; moved streamname declaration in PULSE code to avoid compiler complaint.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index df34d03..6d6474d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -45,7 +45,7 @@ AC_ARG_ENABLE(debug,
AC_CHECK_FUNC(gettimeofday, [cppflag="$cppflag -DHAVE_GETTIMEOFDAY"], )
# Set paths if prefix is defined
-if test x"$prefix" != x && test x$prefix != xNONE; then
+if test "x$prefix" != "x" && test "x$prefix" != "xNONE"; then
LIBS="$LIBS -L$prefix/lib"
CPPFLAGS="$CPPFLAGS -I$prefix/include"
fi
@@ -59,7 +59,7 @@ CXXFLAGS="$cxxflag"
# Check compiler and use -Wall if gnu.
if [test $GXX = "yes" ;] then
- AC_SUBST( cxxflag, [-Wall] )
+ AC_SUBST( cxxflag, ["-Wall -Wextra"] )
fi
CXXFLAGS="$CXXFLAGS $cxxflag"