From: <vr-...@us...> - 2003-12-11 09:32:52
|
Update of /cvsroot/alpp/openalpp/include/openalpp In directory sc8-pr-cvs1:/tmp/cvs-serv23117/include/openalpp Modified Files: Makefile.am deviceupdater.h positionedobject.h Added Files: config.h 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 --- NEW FILE: config.h --- (This appears to be a binary file; contents omitted.) Index: Makefile.am =================================================================== RCS file: /cvsroot/alpp/openalpp/include/openalpp/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile.am 16 Apr 2003 11:39:42 -0000 1.3 --- Makefile.am 11 Dec 2003 09:32:49 -0000 1.4 *************** *** 22,24 **** filestreamupdater.h \ export.h \ ! windowsstuff.h --- 22,25 ---- filestreamupdater.h \ export.h \ ! windowsstuff.h \ ! config.h Index: deviceupdater.h =================================================================== RCS file: /cvsroot/alpp/openalpp/include/openalpp/deviceupdater.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** deviceupdater.h 16 Apr 2003 11:15:01 -0000 1.2 --- deviceupdater.h 11 Dec 2003 09:32:49 -0000 1.3 *************** *** 29,35 **** #include "openalpp/streamupdater.h" #include "openalpp/error.h" - #include <portaudio.h> #include "openalpp/export.h" namespace openalpp { --- 29,37 ---- #include "openalpp/streamupdater.h" #include "openalpp/error.h" #include "openalpp/export.h" + #ifdef ALPP_USE_PORT_AUDIO + #include <portaudio.h> + namespace openalpp { *************** *** 89,92 **** --- 91,95 ---- } + #endif // ifdef ALPP_USE_PORTAUDIO #endif /* DEVICEUPDATER_H_INCLUDED_C419EA9C */ Index: positionedobject.h =================================================================== RCS file: /cvsroot/alpp/openalpp/include/openalpp/positionedobject.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** positionedobject.h 16 Apr 2003 11:15:01 -0000 1.3 --- positionedobject.h 11 Dec 2003 09:32:49 -0000 1.4 *************** *** 39,42 **** --- 39,43 ---- public: + PositionedObject() {} virtual ~PositionedObject() {} |