# HG changeset patch # User diego # Date 1153996239 0 # Node ID 727c334a1c44852dc9984a213a494161a0cd5226 # Parent 1ea5c31932fd1375039286dfe7dcec352ce2c67a Rename _inc_soundcard to _include_soundcard, _inc variables are used for include paths, not #include preprocessor directives. diff -r 1ea5c31932fd -r 727c334a1c44 configure --- a/configure Thu Jul 27 10:08:17 2006 +0000 +++ b/configure Thu Jul 27 10:30:39 2006 +0000 @@ -3040,7 +3040,7 @@ cc_check && _sys_soundcard=yes if test "$_sys_soundcard" = yes ; then _def_sys_soundcard='#define HAVE_SYS_SOUNDCARD_H 1' - _inc_soundcard='#include ' + _include_soundcard='#include ' else _def_sys_soundcard='#undef HAVE_SYS_SOUNDCARD_H' fi @@ -3065,7 +3065,7 @@ fi if test "$_soundcard" = yes ; then _def_soundcard='#define HAVE_SOUNDCARD_H 1' - _inc_soundcard='#include ' + _include_soundcard='#include ' else _def_soundcard='#undef HAVE_SOUNDCARD_H' fi @@ -4759,7 +4759,7 @@ if test "$_ossaudio" = auto ; then cat > $TMPC << EOF #include -$_inc_soundcard +$_include_soundcard int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; } EOF _ossaudio=no @@ -4775,7 +4775,7 @@ else cat > $TMPC << EOF #include -$_inc_soundcard +$_include_soundcard #ifdef OPEN_SOUND_SYSTEM int main(void) { return 0; } #else