projects
/
paraslash.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac6cf1c
)
Fix error message in case of missing sys/soundcard.h.
author
Andre Noll
<maan@systemlinux.org>
Fri, 16 Oct 2009 13:35:00 +0000
(15:35 +0200)
committer
Andre Noll
<maan@systemlinux.org>
Fri, 16 Oct 2009 13:35:00 +0000
(15:35 +0200)
The error message still printed linux/soundcard.h which might
confuse non-linux users.
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index
85a3272
..
74a3c74
100644
(file)
--- 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"