[MPlayer-cvslog] r19196 - trunk/configure

diego subversion at mplayerhq.hu
Thu Jul 27 12:30:39 CEST 2006


Author: diego
Date: Thu Jul 27 12:30:39 2006
New Revision: 19196

Modified:
   trunk/configure

Log:
Rename _inc_soundcard to _include_soundcard, _inc variables are used
for include paths, not #include preprocessor directives.


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Thu Jul 27 12:30:39 2006
@@ -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 <sys/soundcard.h>'
+  _include_soundcard='#include <sys/soundcard.h>'
 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 <soundcard.h>'
+  _include_soundcard='#include <soundcard.h>'
 else
   _def_soundcard='#undef HAVE_SOUNDCARD_H'
 fi
@@ -4759,7 +4759,7 @@
 if test "$_ossaudio" = auto ; then
   cat > $TMPC << EOF
 #include <sys/ioctl.h>
-$_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 <sys/ioctl.h>
-$_inc_soundcard
+$_include_soundcard
 #ifdef OPEN_SOUND_SYSTEM
 int main(void) { return 0; }
 #else



More information about the MPlayer-cvslog mailing list