Update of /cvsroot/alpp/openalpp/src
In directory sc8-pr-cvs1:/tmp/cvs-serv23117/src
Modified Files:
deviceupdater.cpp inputdevice.cpp
Log Message:
Updated .dsw and .dsp files for VC6
Added a config.h for various configuration switches.
Added ALPP_USE_PORTAUDIO to reflect if PortAudio is available or not.
Changed libraryname under windows to open++al.lib/.dll due to clash with
wrapper search algorithm for OpenAL
Index: deviceupdater.cpp
===================================================================
RCS file: /cvsroot/alpp/openalpp/src/deviceupdater.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** deviceupdater.cpp 18 Oct 2002 07:50:13 -0000 1.7
--- deviceupdater.cpp 11 Dec 2003 09:32:49 -0000 1.8
***************
*** 22,25 ****
--- 22,26 ----
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
+ #ifdef ALPP_USE_PORTAUDIO
#include "openalpp/deviceupdater.h"
***************
*** 138,139 ****
--- 139,141 ----
}
+ #endif // ifdef ALPP_USE_PORTAUDIO
\ No newline at end of file
Index: inputdevice.cpp
===================================================================
RCS file: /cvsroot/alpp/openalpp/src/inputdevice.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** inputdevice.cpp 7 Mar 2003 20:30:07 -0000 1.8
--- inputdevice.cpp 11 Dec 2003 09:32:49 -0000 1.9
***************
*** 26,29 ****
--- 26,32 ----
#include "openalpp/inputdevice.h"
#include "openalpp/sample.h"
+
+ #ifdef ALPP_USE_PORTAUDIO
+
#include <portaudio.h>
***************
*** 72,73 ****
--- 75,77 ----
}
+ #endif
\ No newline at end of file
|