From: Andre Noll Date: Fri, 16 Oct 2009 13:35:00 +0000 (+0200) Subject: Fix error message in case of missing sys/soundcard.h. X-Git-Tag: v0.4.0~9^2 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=6b3bf403b8f4a47c239062d175b520d710a91057;hp=ac6cf1cb1b7013422360f703f82c92716376de3a Fix error message in case of missing sys/soundcard.h. The error message still printed linux/soundcard.h which might confuse non-linux users. --- diff --git a/configure.ac b/configure.ac index 85a32729..74a3c742 100644 --- a/configure.ac +++ b/configure.ac @@ -498,7 +498,7 @@ AC_CHECK_HEADER(sys/soundcard.h, [ ], [ have_oss="no" - AC_MSG_WARN([no linux/soundcard.h $msg]) + AC_MSG_WARN([no sys/soundcard.h $msg]) ] ) CPPFLAGS="$OLD_CPPFLAGS"