From 998f125c59d520e635fcac67f95389db719ac0be Mon Sep 17 00:00:00 2001 From: Mans Rullgard Date: Tue, 11 Aug 2020 15:34:28 +0100 Subject: [PATCH] build: delete msvc project files The msvc project files are for ancient versions and don't work any more. Delete them. --- INSTALL | 107 ---- Makefile.am | 2 +- configure.ac | 2 +- msvc10/.gitignore | 10 - msvc10/LibFlac.vcxproj | 131 ----- msvc10/LibGsm.vcxproj | 120 ---- msvc10/LibId3Tag.vcxproj | 138 ----- msvc10/LibLpc10.vcxproj | 141 ----- msvc10/LibMad.vcxproj | 150 ----- msvc10/LibMp3Lame.vcxproj | 187 ------ msvc10/LibOgg.vcxproj | 105 ---- msvc10/LibPng.vcxproj | 122 ---- msvc10/LibSndFile.vcxproj | 210 ------- msvc10/LibSndFileG72x.vcxproj | 106 ---- msvc10/LibSndFileGSM610.vcxproj | 116 ---- msvc10/LibSoX.vcxproj | 341 ----------- msvc10/LibSoX.vcxproj.filters | 598 ------------------- msvc10/LibSpeex.vcxproj | 170 ------ msvc10/LibVorbis.vcxproj | 142 ----- msvc10/LibWavPack.vcxproj | 116 ---- msvc10/LibZLib.vcxproj | 125 ---- msvc10/Mad/LibMad.def | 60 -- msvc10/Mad/config.h | 19 - msvc10/Makefile.am | 31 - msvc10/Mp3Lame/config.h | 19 - msvc10/Png/inttypes.h | 18 - msvc10/Png/pnglibconf.h | 18 - msvc10/Readme.txt | 110 ---- msvc10/SndFile/config.h | 303 ---------- msvc10/SndFile/inttypes.h | 18 - msvc10/SndFile/sndfile.h | 19 - msvc10/SndFile/sys/time.h | 18 - msvc10/SoX.sln | 116 ---- msvc10/SoX.vcxproj | 189 ------ msvc10/SoX/soxconfig.h | 113 ---- msvc9/.gitignore | 7 - msvc9/LibFlac.vcproj | 296 ---------- msvc9/LibGsm.vcproj | 246 -------- msvc9/LibId3Tag.vcproj | 328 ----------- msvc9/LibLpc10.vcproj | 324 ----------- msvc9/LibMad.vcproj | 313 ---------- msvc9/LibMp3Lame.vcproj | 467 --------------- msvc9/LibOgg.vcproj | 192 ------- msvc9/LibPng.vcproj | 262 --------- msvc9/LibSndFile.vcproj | 484 ---------------- msvc9/LibSndFileG72x.vcproj | 202 ------- msvc9/LibSndFileGSM610.vcproj | 242 -------- msvc9/LibSoX.vcproj | 1208 --------------------------------------- msvc9/LibSpeex.vcproj | 452 --------------- msvc9/LibVorbis.vcproj | 340 ----------- msvc9/LibWavPack.vcproj | 236 -------- msvc9/LibZLib.vcproj | 264 --------- msvc9/Mad/LibMad.def | 60 -- msvc9/Mad/config.h | 19 - msvc9/Makefile.am | 30 - msvc9/Mp3Lame/config.h | 19 - msvc9/Png/inttypes.h | 18 - msvc9/Png/pnglibconf.h | 18 - msvc9/Readme.txt | 82 --- msvc9/SndFile/config.h | 303 ---------- msvc9/SndFile/inttypes.h | 18 - msvc9/SndFile/sndfile.h | 19 - msvc9/SndFile/sys/time.h | 18 - msvc9/SoX.vcproj | 208 ------- msvc9/Sox.sln | 139 ----- msvc9/Sox/soxconfig.h | 97 ---- 66 files changed, 2 insertions(+), 11099 deletions(-) delete mode 100644 msvc10/.gitignore delete mode 100644 msvc10/LibFlac.vcxproj delete mode 100644 msvc10/LibGsm.vcxproj delete mode 100644 msvc10/LibId3Tag.vcxproj delete mode 100644 msvc10/LibLpc10.vcxproj delete mode 100644 msvc10/LibMad.vcxproj delete mode 100644 msvc10/LibMp3Lame.vcxproj delete mode 100644 msvc10/LibOgg.vcxproj delete mode 100644 msvc10/LibPng.vcxproj delete mode 100644 msvc10/LibSndFile.vcxproj delete mode 100644 msvc10/LibSndFileG72x.vcxproj delete mode 100644 msvc10/LibSndFileGSM610.vcxproj delete mode 100644 msvc10/LibSoX.vcxproj delete mode 100644 msvc10/LibSoX.vcxproj.filters delete mode 100644 msvc10/LibSpeex.vcxproj delete mode 100644 msvc10/LibVorbis.vcxproj delete mode 100644 msvc10/LibWavPack.vcxproj delete mode 100644 msvc10/LibZLib.vcxproj delete mode 100644 msvc10/Mad/LibMad.def delete mode 100644 msvc10/Mad/config.h delete mode 100644 msvc10/Makefile.am delete mode 100644 msvc10/Mp3Lame/config.h delete mode 100644 msvc10/Png/inttypes.h delete mode 100644 msvc10/Png/pnglibconf.h delete mode 100644 msvc10/Readme.txt delete mode 100644 msvc10/SndFile/config.h delete mode 100644 msvc10/SndFile/inttypes.h delete mode 100644 msvc10/SndFile/sndfile.h delete mode 100644 msvc10/SndFile/sys/time.h delete mode 100644 msvc10/SoX.sln delete mode 100644 msvc10/SoX.vcxproj delete mode 100644 msvc10/SoX/soxconfig.h delete mode 100644 msvc9/.gitignore delete mode 100644 msvc9/LibFlac.vcproj delete mode 100644 msvc9/LibGsm.vcproj delete mode 100644 msvc9/LibId3Tag.vcproj delete mode 100644 msvc9/LibLpc10.vcproj delete mode 100644 msvc9/LibMad.vcproj delete mode 100644 msvc9/LibMp3Lame.vcproj delete mode 100644 msvc9/LibOgg.vcproj delete mode 100644 msvc9/LibPng.vcproj delete mode 100644 msvc9/LibSndFile.vcproj delete mode 100644 msvc9/LibSndFileG72x.vcproj delete mode 100644 msvc9/LibSndFileGSM610.vcproj delete mode 100644 msvc9/LibSoX.vcproj delete mode 100644 msvc9/LibSpeex.vcproj delete mode 100644 msvc9/LibVorbis.vcproj delete mode 100644 msvc9/LibWavPack.vcproj delete mode 100644 msvc9/LibZLib.vcproj delete mode 100644 msvc9/Mad/LibMad.def delete mode 100644 msvc9/Mad/config.h delete mode 100644 msvc9/Makefile.am delete mode 100644 msvc9/Mp3Lame/config.h delete mode 100644 msvc9/Png/inttypes.h delete mode 100644 msvc9/Png/pnglibconf.h delete mode 100644 msvc9/Readme.txt delete mode 100644 msvc9/SndFile/config.h delete mode 100644 msvc9/SndFile/inttypes.h delete mode 100644 msvc9/SndFile/sndfile.h delete mode 100644 msvc9/SndFile/sys/time.h delete mode 100644 msvc9/SoX.vcproj delete mode 100644 msvc9/Sox.sln delete mode 100644 msvc9/Sox/soxconfig.h diff --git a/INSTALL b/INSTALL index 479e3977..cd3542f0 100644 --- a/INSTALL +++ b/INSTALL @@ -202,110 +202,3 @@ congratulations! SoX works. If you're adding new features to SoX or want to perform advance tests on a new platform then you can use the scripts "tests.sh" and "testall.sh" to stress SoX. - - - -Compiling using Microsoft's Visual C ------------------------------------- - -To compile a full-featured build of SoX with Visual Studio 2008 (msvc9), -Visual Studio 2010 (msvc10), or the Windows SDK 7.1, you may be able to use the -preconfigured solution found in the sox\msvc9 (VS2008) or sox\msvc10 (VS2010 or -Windows SDK 7.1) folder. See sox\msvc9\readme.txt or sox\msvc10\readme.txt for -details on building using the corresponding Microsoft C compiler. - - - -Appendix: How To Compile SoX with MP3 Support on Win32 ------------------------------------------------------- - -The solution files in msvc9 and msvc10 will build SoX to dynamically load -libmad.dll and libmp3lame.dll at runtime. - -The following text, untested by the SoX team, was originally written -by `Enter AG' and released to the public domain. It includes instructions for -building SoX with MP3 support linked directly into the SoX executable. - -= How To Compile Sox with MP3 Support = - -== Requirements == - -The following requirements have been tested. Nevertheless, other -versions may work as well. - -o Microsoft Windows (Win32, Win2000, XP, Win2003, Vista, etc.). - -o Microsoft Visual Stuio 2008 (earlier versions should also work). - -o SoX source distribution version 14.0.1 - available on [http://sox.sourceforge.net] - -o LAME source distribution version 3.97. LAME 3.98 is required for full ID3 tag - support. Available on [http://lame.sourceforge.net] - -o MAD source distribution version 0.15.1b - available on [http://www.underbit.com/products/mad/] - -== Compilation Procedure == - -=== Compilation of the LAME libraries === - -o Extract the LAME source distribution and open it as a Visual Studio project - using the VS file in the top directory. - -o Set the ''libmp3lame'' "Configuration Properties -> C/C++ -> Code Generation - -> Runtime Library" to Multi-threaded DLL (/MD). - -o Do the same for ''mpglib'' . - -o Build ''libmp3lame'' and ''mpglib.'' - -o Rename the static library libmp3lame.lib to mp3lame.lib. - -o Create a folder somewhere with an arbitrary name. We used the name - "lameforsox". Create in this folder a new folder called "lame" and copy the - lame.h header file into it. Copy mp3lame.lib and mpglib.lib in the lameforsox - folder. Now you should have prepared the lame components for further use like - this: - ...\[somewhere]\lameforsox\ - mp3lame.lib - mpglib.lib - \lame\ - lame.h - -=== Compilation of the MAD library === - -o Compile ''libmad'' with the same "Runtime Library" settings as described for - LAME (previous section Compilation of the LAME libraries). - -o Rename the static library libmad.lib to mad.lib. - -=== Compilation of SoX with the LAME and MAD libraries === - -o Open Visual Studio and add in "Tools -> Options -> Projects and Solutions -> - VC++ Directories" in the "Include Directories" collection the folder - containing the MAD header file mad.h and the folder containing lame/lame.h - (...\[somewhere]\lameforsox). Add in the "Library files" collection the - folder containing mad.lib and the folder containing the lame libraries - mp3lame.lib and mpglib.lib (...\[somewhere]\lameforsox). - -o Open Visual Studio and open the SoX solution file in the SoX top directory - (sox.sln). - -o Rebuild "ALL_BUILD" and confirm all "File Modification Detected" dialogs - with "Reload". - -o Add in the libsox "Preprocessor Definitions" (right click on libsox -> - Properties -> Configuration Properties -> C/C++ -> Preprocessor) HAVE_STRING_H - before the first line. Set the "Runtime Library" to Multi-threaded DLL (/MD) - as described above. - -o Do the same for sox and add in the "Additional Dependencies" (Linker -> Input) - after the last line mpglib.lib. - -o Now build libsox - -o and then sox. - -o Sox now prompts "mp3, mp2" in the usage output in the section "SUPPORTED FILE - FORMATS". diff --git a/Makefile.am b/Makefile.am index 84673036..5e3a19b0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,7 +3,7 @@ ACLOCAL_AMFLAGS = -I m4 SUBDIRS = lpc10 libgsm src -DIST_SUBDIRS = lpc10 libgsm src msvc9 msvc10 +DIST_SUBDIRS = lpc10 libgsm src RM = rm -f diff --git a/configure.ac b/configure.ac index 1d8deb1f..75525bfd 100644 --- a/configure.ac +++ b/configure.ac @@ -665,7 +665,7 @@ AC_SUBST(PLAYRECLINKS) AM_CONDITIONAL(STATIC_LIBSOX_ONLY, test "$enable_shared" = "no" -a "$enable_static" = "yes") dnl Generate output files. -AC_CONFIG_FILES(Makefile src/Makefile libgsm/Makefile lpc10/Makefile msvc9/Makefile msvc10/Makefile sox.pc) +AC_CONFIG_FILES(Makefile src/Makefile libgsm/Makefile lpc10/Makefile sox.pc) AC_OUTPUT if test "$using_gsm" != "no"; then diff --git a/msvc10/.gitignore b/msvc10/.gitignore deleted file mode 100644 index 4abff0f7..00000000 --- a/msvc10/.gitignore +++ /dev/null @@ -1,10 +0,0 @@ -*.user -Debug -ipch -Makefile -Makefile.in -Release -Sox.ncb -Sox.opensdf -Sox.sdf -*.suo diff --git a/msvc10/LibFlac.vcxproj b/msvc10/LibFlac.vcxproj deleted file mode 100644 index 6dbc9f27..00000000 --- a/msvc10/LibFlac.vcxproj +++ /dev/null @@ -1,131 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {38203D05-AF71-4FF2-A183-A7D9CB8D2AE0} - LibFlac - Win32Proj - - - - StaticLibrary - Unicode - true - - - StaticLibrary - Unicode - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - AllRules.ruleset - - - AllRules.ruleset - - - - - - Disabled - ../../flac/src/libFLAC/include;../../flac/include;../../libogg/include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;FLAC__HAS_OGG;FLAC__CPU_IA32;FLAC__USE_3DNOW;VERSION="1.2.0";FLAC__NO_DLL;%(PreprocessorDefinitions) - true - true - - - EnableFastChecks - MultiThreadedDebug - true - Fast - false - - - Level3 - true - true - ProgramDatabase - - - - - MaxSpeed - true - ../../flac/src/libFLAC/include;../../flac/include;../../libogg/include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;FLAC__HAS_OGG;FLAC__CPU_IA32;FLAC__USE_3DNOW;VERSION="1.2.0";FLAC__NO_DLL;%(PreprocessorDefinitions) - true - - - MultiThreaded - true - Fast - false - - - Level3 - true - true - ProgramDatabase - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/msvc10/LibGsm.vcxproj b/msvc10/LibGsm.vcxproj deleted file mode 100644 index 6588ee04..00000000 --- a/msvc10/LibGsm.vcxproj +++ /dev/null @@ -1,120 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {BEE9F57C-384E-4C99-87EB-629BF45C8A89} - LibGsm - Win32Proj - - - - StaticLibrary - Unicode - true - - - StaticLibrary - Unicode - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - AllRules.ruleset - - - AllRules.ruleset - - - - - - Disabled - WIN32;_DEBUG;_LIB;LTP_CUT;FAST;USE_FLOAT_MUL;WAV49;SASR;%(PreprocessorDefinitions) - true - true - - - EnableFastChecks - MultiThreadedDebug - true - Fast - false - - - Level3 - true - true - ProgramDatabase - Cdecl - 4101;4244;%(DisableSpecificWarnings) - - - - - MaxSpeed - true - WIN32;NDEBUG;_LIB;LTP_CUT;FAST;USE_FLOAT_MUL;WAV49;SASR;%(PreprocessorDefinitions) - true - - - MultiThreaded - true - Fast - false - - - Level3 - true - true - ProgramDatabase - Cdecl - 4101;4244;%(DisableSpecificWarnings) - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/msvc10/LibId3Tag.vcxproj b/msvc10/LibId3Tag.vcxproj deleted file mode 100644 index 92055f5e..00000000 --- a/msvc10/LibId3Tag.vcxproj +++ /dev/null @@ -1,138 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {40EA92B6-38AA-4E67-894D-92C37C946402} - LibId3Tag - Win32Proj - - - - StaticLibrary - Unicode - true - - - StaticLibrary - Unicode - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - AllRules.ruleset - - - AllRules.ruleset - - - - - - Disabled - ../../libid3tag/msvc++;../../zlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;HAVE_CONFIG_H;%(PreprocessorDefinitions) - true - true - - - EnableFastChecks - MultiThreadedDebug - true - Fast - false - - - Level3 - true - ProgramDatabase - 4013;4018;4146;4244;%(DisableSpecificWarnings) - - - - - MaxSpeed - true - ../../libid3tag/msvc++;../../zlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;HAVE_CONFIG_H;%(PreprocessorDefinitions) - true - - - MultiThreaded - true - Fast - false - - - Level3 - true - ProgramDatabase - 4013;4018;4146;4244;%(DisableSpecificWarnings) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/msvc10/LibLpc10.vcxproj b/msvc10/LibLpc10.vcxproj deleted file mode 100644 index 24750b4a..00000000 --- a/msvc10/LibLpc10.vcxproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {C588FF17-FB2F-48D9-BB99-40B6D52B9B85} - LibLpc10 - Win32Proj - - - - StaticLibrary - Unicode - true - - - StaticLibrary - Unicode - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - AllRules.ruleset - - - AllRules.ruleset - - - - - - Disabled - SoX;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) - true - true - - - EnableFastChecks - MultiThreadedDebug - true - Fast - false - - - Level3 - true - true - ProgramDatabase - Cdecl - 4146;4244;4723;%(DisableSpecificWarnings) - - - - - MaxSpeed - true - SoX;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) - true - - - MultiThreaded - true - Fast - false - - - Level3 - true - true - ProgramDatabase - Cdecl - 4146;4244;4723;%(DisableSpecificWarnings) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc10/LibMad.vcxproj b/msvc10/LibMad.vcxproj deleted file mode 100644 index 203985d9..00000000 --- a/msvc10/LibMad.vcxproj +++ /dev/null @@ -1,150 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {B7A8AD9A-0D07-4453-B2DE-FEABD9546263} - LibMad - Win32Proj - - - - DynamicLibrary - Unicode - true - - - DynamicLibrary - Unicode - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - $(SolutionDir)$(Configuration)\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - false - AllRules.ruleset - - - AllRules.ruleset - - - - - - Disabled - Mad;../../libmad;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;HAVE_CONFIG_H;%(PreprocessorDefinitions) - true - true - - - EnableFastChecks - MultiThreadedDebug - true - Fast - false - - - Level3 - true - true - ProgramDatabase - Cdecl - 4018;4146;4244;%(DisableSpecificWarnings) - - - $(SolutionDir)$(Configuration)\$(ProjectName).dll - Mad/LibMad.def - true - true - $(OutDir)lib\$(TargetName).lib - - - - - MaxSpeed - true - Mad;../../libmad;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;HAVE_CONFIG_H;%(PreprocessorDefinitions) - true - - - MultiThreaded - true - Fast - false - - - Level3 - true - true - ProgramDatabase - Cdecl - 4018;4146;4244;%(DisableSpecificWarnings) - - - $(SolutionDir)$(Configuration)\$(ProjectName).dll - Mad/LibMad.def - true - true - true - true - $(OutDir)lib\$(TargetName).lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/msvc10/LibMp3Lame.vcxproj b/msvc10/LibMp3Lame.vcxproj deleted file mode 100644 index 181b2e97..00000000 --- a/msvc10/LibMp3Lame.vcxproj +++ /dev/null @@ -1,187 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {4DFD6FD1-96F1-434A-AC69-01783B876354} - LibMp3Lame - Win32Proj - - - - DynamicLibrary - Unicode - true - - - DynamicLibrary - Unicode - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - $(SolutionDir)$(Configuration)\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - false - AllRules.ruleset - - - AllRules.ruleset - - - - - - Disabled - Mp3Lame;../../lame;../../lame/include;../../lame/libmp3lame;../../lame/mpglib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;HAVE_CONFIG_H;%(PreprocessorDefinitions) - true - true - - - EnableFastChecks - MultiThreadedDebug - true - Fast - false - - - Level3 - true - true - ProgramDatabase - Cdecl - - - $(SolutionDir)$(Configuration)\$(ProjectName).dll - ..\..\lame\include\lame.def - true - true - $(OutDir)lib\$(TargetName).lib - - - - - MaxSpeed - true - Mp3Lame;../../lame;../../lame/include;../../lame/libmp3lame;../../lame/mpglib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;HAVE_CONFIG_H;%(PreprocessorDefinitions) - true - - - MultiThreaded - true - Fast - false - - - Level3 - true - true - ProgramDatabase - Cdecl - - - $(SolutionDir)$(Configuration)\$(ProjectName).dll - ..\..\lame\include\lame.def - true - true - true - true - $(OutDir)lib\$(TargetName).lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/msvc10/LibOgg.vcxproj b/msvc10/LibOgg.vcxproj deleted file mode 100644 index a790117a..00000000 --- a/msvc10/LibOgg.vcxproj +++ /dev/null @@ -1,105 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {C5C229AC-316D-42CB-9CA3-329619618972} - LibOgg - Win32Proj - - - - StaticLibrary - Unicode - true - - - StaticLibrary - Unicode - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - AllRules.ruleset - - - AllRules.ruleset - - - - - - Disabled - ../../libogg/include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;LIBOGG_EXPORTS;%(PreprocessorDefinitions) - true - true - - - EnableFastChecks - MultiThreadedDebug - true - Fast - false - - - Level3 - true - true - ProgramDatabase - - - - - MaxSpeed - true - ../../libogg/include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;LIBOGG_EXPORTS;%(PreprocessorDefinitions) - true - - - MultiThreaded - true - Fast - false - - - Level3 - true - true - ProgramDatabase - - - - - - - - - - - - - - \ No newline at end of file diff --git a/msvc10/LibPng.vcxproj b/msvc10/LibPng.vcxproj deleted file mode 100644 index a79e3e32..00000000 --- a/msvc10/LibPng.vcxproj +++ /dev/null @@ -1,122 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {46E7AC9D-3E96-4B34-B493-501BC277D6F9} - LibPng - Win32Proj - - - - StaticLibrary - Unicode - true - - - StaticLibrary - Unicode - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - AllRules.ruleset - - - AllRules.ruleset - - - - - - Disabled - Png;../../zlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - true - true - - - EnableFastChecks - MultiThreadedDebug - true - Fast - false - - - Level3 - true - true - ProgramDatabase - Cdecl - - - - - MaxSpeed - true - Png;../../zlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - true - - - MultiThreaded - true - Fast - false - - - Level3 - true - true - ProgramDatabase - Cdecl - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/msvc10/LibSndFile.vcxproj b/msvc10/LibSndFile.vcxproj deleted file mode 100644 index efb4fa1c..00000000 --- a/msvc10/LibSndFile.vcxproj +++ /dev/null @@ -1,210 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {342BDA83-C83F-4168-8425-E1DF72F47018} - LibSndFile - Win32Proj - - - - DynamicLibrary - true - - - DynamicLibrary - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\$(ProjectName)\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - AllRules.ruleset - - - AllRules.ruleset - - - LibSndFile-1 - LibSndFile-1 - - - - Disabled - SndFile;..\..\libsndfile\src;../../flac/include;../../libogg/include;../../libvorbis/include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_WARNINGS;LIBSNDFILE_EXPORTS;inline=__inline;%(PreprocessorDefinitions) - true - true - - - EnableFastChecks - MultiThreadedDebug - true - Fast - false - - - Level3 - true - ProgramDatabase - 4244;%(DisableSpecificWarnings) - - - ..\..\libsndfile\src\libsndfile-1.def - true - true - $(OutDir)lib\$(TargetName).lib - - - - - MaxSpeed - true - SndFile;..\..\libsndfile\src;../../flac/include;../../libogg/include;../../libvorbis/include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_WARNINGS;LIBSNDFILE_EXPORTS;inline=__inline;%(PreprocessorDefinitions) - true - - - MultiThreaded - true - Fast - false - - - Level3 - true - ProgramDatabase - 4244;%(DisableSpecificWarnings) - - - ..\..\libsndfile\src\libsndfile-1.def - true - true - true - true - $(OutDir)lib\$(TargetName).lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {38203d05-af71-4ff2-a183-a7d9cb8d2ae0} - false - - - {c5c229ac-316d-42cb-9ca3-329619618972} - false - - - {7016d4c2-a0ab-4bfd-9aa1-4ecdccbe6301} - false - - - {d2572de1-610e-46a4-8dd2-8a693347d76a} - false - - - {524a24cd-0973-4733-8eb9-f419dc6f9997} - false - - - - - - \ No newline at end of file diff --git a/msvc10/LibSndFileG72x.vcxproj b/msvc10/LibSndFileG72x.vcxproj deleted file mode 100644 index 66dcb0fa..00000000 --- a/msvc10/LibSndFileG72x.vcxproj +++ /dev/null @@ -1,106 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {7016D4C2-A0AB-4BFD-9AA1-4ECDCCBE6301} - G72x - Win32Proj - - - - StaticLibrary - Unicode - true - - - StaticLibrary - Unicode - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - AllRules.ruleset - - - AllRules.ruleset - - - - - - Disabled - WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) - true - true - - - EnableFastChecks - MultiThreadedDebug - true - Fast - false - - - Level3 - true - ProgramDatabase - 4244;%(DisableSpecificWarnings) - - - - - MaxSpeed - true - WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) - true - - - MultiThreaded - true - Fast - false - - - Level3 - true - ProgramDatabase - 4244;%(DisableSpecificWarnings) - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/msvc10/LibSndFileGSM610.vcxproj b/msvc10/LibSndFileGSM610.vcxproj deleted file mode 100644 index 6eeb2f28..00000000 --- a/msvc10/LibSndFileGSM610.vcxproj +++ /dev/null @@ -1,116 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {D2572DE1-610E-46A4-8DD2-8A693347D76A} - GSM610 - Win32Proj - - - - StaticLibrary - Unicode - true - - - StaticLibrary - Unicode - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - AllRules.ruleset - - - AllRules.ruleset - - - - - - Disabled - WIN32;_DEBUG;_LIB;inline=__inline;%(PreprocessorDefinitions) - true - true - - - EnableFastChecks - MultiThreadedDebug - true - Fast - false - - - Level3 - true - ProgramDatabase - 4244;%(DisableSpecificWarnings) - - - - - MaxSpeed - true - WIN32;NDEBUG;_LIB;inline=__inline;%(PreprocessorDefinitions) - true - - - MultiThreaded - true - Fast - false - - - Level3 - true - ProgramDatabase - 4244;%(DisableSpecificWarnings) - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/msvc10/LibSoX.vcxproj b/msvc10/LibSoX.vcxproj deleted file mode 100644 index e239bbeb..00000000 --- a/msvc10/LibSoX.vcxproj +++ /dev/null @@ -1,341 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {F17BE535-C7E8-4930-A6FD-32498D73A533} - LibSoX - Win32Proj - - - - StaticLibrary - Unicode - true - - - StaticLibrary - Unicode - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - AllRules.ruleset - - - AllRules.ruleset - - - - - - Disabled - SoX;Png;../../flac/include;../../lame/include;../../lame;../../libid3tag;../../libmad;../../libpng;../../libogg/include;sndfile;../../speex/include;../../libvorbis/include;../../wavpack/include;../../wavpack;../../zlib;%(AdditionalIncludeDirectories) - WIN32;_LIB;_CRT_SECURE_NO_WARNINGS;_DEBUG;%(PreprocessorDefinitions) - true - true - - - EnableFastChecks - MultiThreadedDebug - true - Fast - false - - - Level4 - true - ProgramDatabase - Cdecl - 4100;4125;4127;4295;4244;4706 - - - - - MaxSpeed - true - SoX;Png;../../flac/include;../../lame/include;../../lame;../../libid3tag;../../libmad;../../libpng;../../libogg/include;sndfile;../../speex/include;../../libvorbis/include;../../wavpack/include;../../wavpack;../../zlib;%(AdditionalIncludeDirectories) - WIN32;_LIB;_CRT_SECURE_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions) - true - - - MultiThreaded - true - Fast - false - - - Level4 - true - ProgramDatabase - Cdecl - 4100;4125;4127;4295;4244;4706 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - true - true - - - true - true - - - true - true - - - true - true - - - true - true - - - true - true - - - true - true - - - true - true - - - true - true - - - true - true - - - true - true - - - true - true - - - true - true - - - true - true - - - true - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 4142;%(DisableSpecificWarnings) - 4142;%(DisableSpecificWarnings) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc10/LibSoX.vcxproj.filters b/msvc10/LibSoX.vcxproj.filters deleted file mode 100644 index 0206f09d..00000000 --- a/msvc10/LibSoX.vcxproj.filters +++ /dev/null @@ -1,598 +0,0 @@ - - - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {28638e5e-b540-47d4-bee5-296f96ea65d7} - - - {88d3ba5f-c07b-47a6-8d31-2ca7a9890e6d} - - - {2fe3c03a-d755-4882-afbf-c1eb806117c0} - - - {6ad57da4-219f-4dd0-8c47-883521cd0af6} - - - {027d9299-ae71-4cad-8b6c-01d28b65d3d3} - - - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Headers - - - Config Headers - - - - - Excluded Sources - - - Excluded Sources - - - Excluded Sources - - - Excluded Sources - - - Excluded Sources - - - Excluded Sources - - - Excluded Sources - - - Excluded Sources - - - Excluded Sources - - - Excluded Sources - - - Excluded Sources - - - Excluded Sources - - - Excluded Sources - - - Excluded Sources - - - Excluded Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Format Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Shared Sources - - - Effect Sources - - - Effect Sources - - - Effect Sources - - - diff --git a/msvc10/LibSpeex.vcxproj b/msvc10/LibSpeex.vcxproj deleted file mode 100644 index 1fc45642..00000000 --- a/msvc10/LibSpeex.vcxproj +++ /dev/null @@ -1,170 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {60902B83-8B26-4DBD-B635-4CECF5F4744C} - LibSpeex - Win32Proj - - - - StaticLibrary - Unicode - true - - - StaticLibrary - Unicode - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - AllRules.ruleset - - - AllRules.ruleset - - - - - - Disabled - ../../speex/include;../../speex/win32;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;HAVE_CONFIG_H;M_PI=3.14159265358979323846;%(PreprocessorDefinitions) - true - true - - - EnableFastChecks - MultiThreadedDebug - true - Fast - false - - - Level3 - true - ProgramDatabase - 4018;4244;%(DisableSpecificWarnings) - - - - - MaxSpeed - true - ../../speex/include;../../speex/win32;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;HAVE_CONFIG_H;M_PI=3.14159265358979323846;%(PreprocessorDefinitions) - true - - - MultiThreaded - true - Fast - false - - - Level3 - true - ProgramDatabase - 4018;4244;%(DisableSpecificWarnings) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/msvc10/LibVorbis.vcxproj b/msvc10/LibVorbis.vcxproj deleted file mode 100644 index 81d1ebb8..00000000 --- a/msvc10/LibVorbis.vcxproj +++ /dev/null @@ -1,142 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {524A24CD-0973-4733-8EB9-F419DC6F9997} - LibVorbis - Win32Proj - - - - StaticLibrary - Unicode - true - - - StaticLibrary - Unicode - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - AllRules.ruleset - - - AllRules.ruleset - - - - - - Disabled - ../../libogg/include;../../libvorbis/include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;LIBVORBIS_EXPORTS;%(PreprocessorDefinitions) - true - true - - - EnableFastChecks - MultiThreadedDebug - true - Fast - false - - - Level3 - true - ProgramDatabase - 4554;4244;%(DisableSpecificWarnings) - - - - - MaxSpeed - true - ../../libogg/include;../../libvorbis/include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;LIBVORBIS_EXPORTS;%(PreprocessorDefinitions) - true - - - MultiThreaded - true - Fast - false - - - Level3 - true - ProgramDatabase - 4554;4244;%(DisableSpecificWarnings) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc10/LibWavPack.vcxproj b/msvc10/LibWavPack.vcxproj deleted file mode 100644 index d9952f70..00000000 --- a/msvc10/LibWavPack.vcxproj +++ /dev/null @@ -1,116 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {7461CC57-B1CB-4766-B357-F51587449474} - LibWavPack - Win32Proj - - - - StaticLibrary - Unicode - true - - - StaticLibrary - Unicode - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - AllRules.ruleset - - - AllRules.ruleset - - - - - - Disabled - ../include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;OPT_MMX;%(PreprocessorDefinitions) - true - true - - - EnableFastChecks - MultiThreadedDebug - true - Fast - false - - - Level3 - true - true - ProgramDatabase - - - - - MaxSpeed - true - ../include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;OPT_MMX;%(PreprocessorDefinitions) - true - - - MultiThreaded - true - Fast - false - - - Level3 - true - true - ProgramDatabase - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc10/LibZLib.vcxproj b/msvc10/LibZLib.vcxproj deleted file mode 100644 index 64e68c6c..00000000 --- a/msvc10/LibZLib.vcxproj +++ /dev/null @@ -1,125 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {90D19FCF-8560-4396-A250-DDF74D1B0E36} - LibZLib - Win32Proj - - - - StaticLibrary - Unicode - true - - - StaticLibrary - Unicode - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - $(SolutionDir)$(Configuration)\lib\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - AllRules.ruleset - - - AllRules.ruleset - - - - - - Disabled - WIN32;Z_SOLO;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - true - true - - - EnableFastChecks - MultiThreadedDebug - true - Fast - false - - - Level3 - true - true - ProgramDatabase - Cdecl - 4142 - - - - - MaxSpeed - true - WIN32;Z_SOLO;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - true - - - MultiThreaded - true - Fast - false - - - Level3 - true - true - ProgramDatabase - Cdecl - 4142 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc10/Mad/LibMad.def b/msvc10/Mad/LibMad.def deleted file mode 100644 index 1b9c7f3f..00000000 --- a/msvc10/Mad/LibMad.def +++ /dev/null @@ -1,60 +0,0 @@ -; libSoX libmad export definitions for MSVC9: (c) 2009 SoX contributors -; -; This library is free software; you can redistribute it and/or modify it -; under the terms of the GNU Lesser General Public License as published by -; the Free Software Foundation; either version 2.1 of the License, or (at -; your option) any later version. -; -; This library is distributed in the hope that it will be useful, but -; WITHOUT ANY WARRANTY; without even the implied warranty of -; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser -; General Public License for more details. -; -; You should have received a copy of the GNU Lesser General Public License -; along with this library; if not, write to the Free Software Foundation, -; Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -; - -EXPORTS - - mad_bit_crc - mad_bit_init - mad_bit_length - mad_bit_nextbyte - mad_bit_read - mad_bit_skip - - mad_decoder_init - mad_decoder_finish - mad_decoder_message - mad_decoder_run - - mad_frame_decode - mad_frame_finish - mad_frame_init - mad_frame_mute - - mad_header_decode - mad_header_init - - mad_stream_buffer - mad_stream_errorstr - mad_stream_finish - mad_stream_init - mad_stream_skip - mad_stream_sync - - mad_synth_frame - mad_synth_init - mad_synth_mute - - mad_timer_abs - mad_timer_add - mad_timer_compare - mad_timer_count - mad_timer_fraction - mad_timer_multiply - mad_timer_negate - mad_timer_set - mad_timer_string - mad_timer_zero diff --git a/msvc10/Mad/config.h b/msvc10/Mad/config.h deleted file mode 100644 index 8d2cd0d0..00000000 --- a/msvc10/Mad/config.h +++ /dev/null @@ -1,19 +0,0 @@ -/* libSoX libmad config for MSVC9: (c) 2009 SoX contributors - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#include -#define FPM_INTEL diff --git a/msvc10/Makefile.am b/msvc10/Makefile.am deleted file mode 100644 index 4fe89144..00000000 --- a/msvc10/Makefile.am +++ /dev/null @@ -1,31 +0,0 @@ -EXTRA_DIST= \ - LibFlac.vcxproj \ - LibGsm.vcxproj \ - LibId3Tag.vcxproj \ - LibLpc10.vcxproj \ - LibMad.vcxproj \ - LibMp3Lame.vcxproj \ - LibOgg.vcxproj \ - LibPng.vcxproj \ - LibSndFileG72x.vcxproj \ - LibSndFileGSM610.vcxproj \ - LibSndFile.vcxproj \ - LibSoX.vcxproj \ - LibSoX.vcxproj.filters \ - LibSpeex.vcxproj \ - LibVorbis.vcxproj \ - LibWavPack.vcxproj \ - LibZLib.vcxproj \ - Readme.txt \ - SoX.sln \ - SoX.vcxproj \ - Mad/config.h \ - Mad/LibMad.def \ - Mp3Lame/config.h \ - Png/inttypes.h \ - Png/pnglibconf.h \ - SndFile/config.h \ - SndFile/inttypes.h \ - SndFile/sndfile.h \ - SndFile/sys/time.h \ - SoX/soxconfig.h diff --git a/msvc10/Mp3Lame/config.h b/msvc10/Mp3Lame/config.h deleted file mode 100644 index 94ccfc78..00000000 --- a/msvc10/Mp3Lame/config.h +++ /dev/null @@ -1,19 +0,0 @@ -/* libSoX libmp3lame config for MSVC9: (c) 2009 SoX contributors - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#define HAVE_MPGLIB 1 -#include diff --git a/msvc10/Png/inttypes.h b/msvc10/Png/inttypes.h deleted file mode 100644 index cc91d620..00000000 --- a/msvc10/Png/inttypes.h +++ /dev/null @@ -1,18 +0,0 @@ -/* libSoX libpng stub file for MSVC9: (c) 2009 SoX contributors - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -/* Nothing here. */ diff --git a/msvc10/Png/pnglibconf.h b/msvc10/Png/pnglibconf.h deleted file mode 100644 index 6ea71740..00000000 --- a/msvc10/Png/pnglibconf.h +++ /dev/null @@ -1,18 +0,0 @@ -/* libSoX libpng config for MSVC9: (c) 2009 SoX contributors - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#include "../../../libpng/scripts/pnglibconf.h.prebuilt" \ No newline at end of file diff --git a/msvc10/Readme.txt b/msvc10/Readme.txt deleted file mode 100644 index 539d08ec..00000000 --- a/msvc10/Readme.txt +++ /dev/null @@ -1,110 +0,0 @@ -This directory includes hand-crafted project files for building SoX using the -Microsoft Visual C++ 10.0 (or later) compilers, available through Visual Studio -2010, Visual Studio 2012, or by downloading the freely-available Microsoft -Windows SDK 7.1. This is the easiest way to build SoX with MS Visual C++. -The resulting sox.exe has support for all SoX features except magic, ladspa, -and pulseaudio. LAME (libmp3lame.dll or lame_enc.dll), MAD (libmad.dll or -cygmad-0.dll), libsndfile (libsndfile-1.dll), and AMR support (libamrnb-3.dll, -libamrwb-3.dll) are loaded at runtime if they are available. - -How to build: - -1. If you don't already have it, install .NET 4.0 (required for msbuild). - - If you don't already have Visual Studio 2010 (or later) or the Windows SDK - 7.1 (or later) installed, download and install the Windows SDK 7.1 from - Microsoft: - - http://www.microsoft.com/downloads/en/details.aspx?FamilyID=6b6c21d2-2006-4afa-9702-529fa782d63b&displaylang=en - - When installing the Windows SDK, include at least the following features: - * Windows Headers and Libraries - Windows Headers - * Windows Headers and Libraries - x86 Libraries - * Windows Native Code Development - Tools - * Windows Native Code Development - Visual C++ Compilers - -2. Put the SoX code into a directory named sox. - - Extract the source code for the other libraries next to the sox - directory. Remove the version numbers from the directory names. - The following versions were tested and successfully built: - -- flac-1.2.1.tar.gz extracted into directory flac - -- lame-398.4.tar.gz extracted into directory lame - -- libid3tag-0.15.1b.tar.gz extracted into directory libid3tag - -- libmad-0.15.1b.tar.gz extracted into directory libmad - -- libogg-1.2.2.tar.gz extracted into directory libogg - -- libpng-1.5.1.tar.gz extracted into directory libpng - -- libsndfile-1.0.23.tar.gz extracted into directory libsndfile - -- libvorbis-1.3.2.tar.gz extracted into directory libvorbis - -- speex-1.2rc1.tar.gz extracted into directory speex - -- wavpack-4.60.1.tar.bz2 extracted into directory wavpack - -- zlib-1.2.5.tar.gz extracted into directory zlib - -3. If using Visual Studio, open the sox\msvc10\SoX.sln solution in Visual - Studio. - - If using the Windows SDK, open a normal command prompt, then run: -"c:\Program Files\Microsoft SDKs\Windows\v7.1\bin\SetEnv.cmd" /x86 /Release /xp - then CD to the sox\msvc10 folder. - -4. If any of the above libraries are not available or not wanted, adjust the - corresponding HAVE_* settings in the soxconfig.h file and remove the - corresponding project from the SoX.sln solution. - - If using Visual Studio, you will find the soxconfig.h file in the LibSox - project's Config Files folder. - - If using the Windows SDK, you'll have to use a text editor (i.e. notepad) to - edit the soxconfig.h file (sox\msvc10\sox\soxconfig.h), and you'll have to - manually remove the entries for the unwanted projects. - -5. If using Visual Studio, build the solution using the GUI. - - If using the Windows SDK, run: msbuild SoX.sln - -6. The resulting executable files will be in sox\msvc10\Debug or - sox\msvc10\Release. The resulting sox.exe will dynamically link to - libmp3lame.dll, libmad.dll, libsndfile-1.dll, libamrnb-3.dll, and - libamrwb-3.dll if they are available, but will run without them (though the - corresponding features will be unavailable if they are not present). - -Points to note: - -- The libsndfile-1.0.20.tar.gz package does not include the sndfile.h header - file. Normally, before compiling libsndfile, you would create sndfile.h - (either by processing it via autoconf, by downloading a copy, or by renaming - sndfile.h.in). However, this SoX solution includes its own version of - sndfile.h, so you should not create a sndfile.h under the libsndfile folder. - To repeat: you should extract a clean copy of libsndfile-1.0.20.tar.gz, and - should not add, process, or rename any files. - -- The solution includes an experimental effect called speexdsp that uses the - speex DSP library. This does not yet enable any support for the speex file - format or speex codec. The speexdsp effect is simply an experimental effect - to make use of the automatic gain control and noise filtering components that - are part of the speex codec package. Support for the speex codec may be added - later. - -- The included projects do not enable SSE2. You can enable this in the project - properties under Configuration Properties, C/C++, Code Generation, Enable - Enhanced Instruction Set. Note that some editions of Visual Studio might - not include Enhanced Instruction Set support. - -- The included projects set the floating-point model to "fast". This means - that the compiler is free to optimize floating-point operations. For - example, the compiler might optimize the expression (14.0 * x / 7.0) into - (x * 2.0). In addition, the compiler is allowed to leave expression results - in floating-point registers to store temporary values instead of rounding - each intermediate result to a 32-bit or 64-bit value. In some cases, these - optimizations can change the results of floating-point calculations. If you - need more precise results, you can change this optimization setting to one of - the other values. The "precise" setting avoids any optimization that might - possibly produce less-accurate results (it preserves the order of all - operations) but keeps optimizations that might give unexpectedly-accurate - results (for example, it might keep a temporary result in a double-precision - register instead of rounding it to single-precision). The "strict" setting - avoids any optimization that might change the result in any way contrary to - the C/C++ standard and rounds every intermediate result to the requested - precision according to standard floating-point rounding rules. You can change - this setting in the project properties under Configuration Properties, C/C++, - Code Generation, Floating Point Model. diff --git a/msvc10/SndFile/config.h b/msvc10/SndFile/config.h deleted file mode 100644 index 0a0f913b..00000000 --- a/msvc10/SndFile/config.h +++ /dev/null @@ -1,303 +0,0 @@ -/* libSoX libsndfile config for MSVC9: (c) 2009 SoX contributors - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#define inline __inline -typedef __int64 __int64_t; -typedef __int64 int64_t; -typedef __int32 int32_t; -typedef unsigned __int32 uint32_t; -typedef unsigned __int16 uint16_t; -#define ptrdiff_t ssize_t -#define snprintf _snprintf -#define __func__ __FUNCTION__ -#define FLAC__NO_DLL -#define lrint(f) ((long)(f)) -#define lrintf(f) lrint(f) - -/* Set to 1 if the compile is GNU GCC. */ -#undef COMPILER_IS_GCC - -/* Target processor clips on negative float to int conversion. */ -#define CPU_CLIPS_NEGATIVE 0 - -/* Target processor clips on positive float to int conversion. */ -#define CPU_CLIPS_POSITIVE 0 - -/* Target processor is big endian. */ -#define CPU_IS_BIG_ENDIAN 0 - -/* Target processor is little endian. */ -#define CPU_IS_LITTLE_ENDIAN 1 - -/* Set to 1 to enable experimental code. */ -#undef ENABLE_EXPERIMENTAL_CODE - -/* Define to 1 if you have the header file. */ -#undef HAVE_ALSA_ASOUNDLIB_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_BYTESWAP_H - -/* Define to 1 if you have the `calloc' function. */ -#define HAVE_CALLOC 1 - -/* Define to 1 if you have the `ceil' function. */ -#define HAVE_CEIL 1 - -/* Set to 1 if S_IRGRP is defined. */ -#undef HAVE_DECL_S_IRGRP - -/* Define to 1 if you have the header file. */ -#undef HAVE_DLFCN_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_ENDIAN_H - -/* Will be set to 1 if flac, ogg and vorbis are available. */ -#define HAVE_EXTERNAL_LIBS 1 - -/* Set to 1 if the compile supports the struct hack. */ -#define HAVE_FLEXIBLE_ARRAY 1 - -/* Define to 1 if you have the `floor' function. */ -#define HAVE_FLOOR 1 - -/* Define to 1 if you have the `fmod' function. */ -#define HAVE_FMOD 1 - -/* Define to 1 if you have the `free' function. */ -#define HAVE_FREE 1 - -/* Define to 1 if you have the `fstat' function. */ -#define HAVE_FSTAT 1 - -/* Define to 1 if you have the `fsync' function. */ -#undef HAVE_FSYNC - -/* Define to 1 if you have the `ftruncate' function. */ -#undef HAVE_FTRUNCATE - -/* Define to 1 if you have the `getpagesize' function. */ -#undef HAVE_GETPAGESIZE - -/* Define to 1 if you have the `gettimeofday' function. */ -#undef HAVE_GETTIMEOFDAY - -/* Define to 1 if you have the `gmtime' function. */ -#define HAVE_GMTIME 1 - -/* Define to 1 if you have the `gmtime_r' function. */ -#undef HAVE_GMTIME_R - -/* Define to 1 if you have the header file. */ -#undef HAVE_INTTYPES_H - -/* Set to 1 if you have JACK. */ -#undef HAVE_JACK - -/* Define to 1 if you have the `m' library (-lm). */ -#define HAVE_LIBM 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_LOCALE_H 1 - -/* Define to 1 if you have the `localtime' function. */ -#define HAVE_LOCALTIME 1 - -/* Define to 1 if you have the `localtime_r' function. */ -#undef HAVE_LOCALTIME_R - -/* Define to 1 if you have the `lseek' function. */ -#define HAVE_LSEEK 1 - -/* Define to 1 if you have the `malloc' function. */ -#define HAVE_MALLOC 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_MEMORY_H 1 - -/* Define to 1 if you have the `mmap' function. */ -#undef HAVE_MMAP - -/* Define to 1 if you have the `open' function. */ -#define HAVE_OPEN 1 - -/* Define to 1 if you have the `pread' function. */ -#undef HAVE_PREAD - -/* Define to 1 if you have the `pwrite' function. */ -#undef HAVE_PWRITE - -/* Define to 1 if you have the `read' function. */ -#define HAVE_READ 1 - -/* Define to 1 if you have the `realloc' function. */ -#define HAVE_REALLOC 1 - -/* Define to 1 if you have the `setlocale' function. */ -#define HAVE_SETLOCALE 1 - -/* Define to 1 if you have the `snprintf' function. */ -#define HAVE_SNPRINTF 1 - -/* Set to 1 if you have libsqlite3. */ -#undef HAVE_SQLITE3 - -/* Define to 1 if the system has the type `ssize_t'. */ -#undef HAVE_SSIZE_T - -/* Define to 1 if you have the header file. */ -#define HAVE_STDINT_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_STDLIB_H 1 - -/* Define to 1 if you have the header file. */ -#undef HAVE_STRINGS_H - -/* Define to 1 if you have the header file. */ -#define HAVE_STRING_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_TIME_H - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define to 1 if you have that is POSIX.1 compatible. */ -#undef HAVE_SYS_WAIT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_UNISTD_H - -/* Set to 1 if we have vorbis_version_string. */ -#undef HAVE_VORBIS_VERSION_STRING - -/* Define to 1 if you have the `vsnprintf' function. */ -#define HAVE_VSNPRINTF 1 - -/* Define to 1 if you have the `write' function. */ -#define HAVE_WRITE 1 - -/* Define to the sub-directory in which libtool stores uninstalled libraries. - */ -#undef LT_OBJDIR - -/* Define to 1 if your C compiler doesn't accept -c and -o together. */ -#undef NO_MINUS_C_MINUS_O - -/* Set to 1 if compiling for MacOSX */ -#undef OS_IS_MACOSX - -/* Set to 1 if compiling for Win32 */ -#define OS_IS_WIN32 1 - -/* Name of package */ -#define PACKAGE "libsndfile" - -/* Define to the address where bug reports for this package should be sent. */ -#define PACKAGE_BUGREPORT "erikd@mega-nerd.com" - -/* Define to the full name of this package. */ -#define PACKAGE_NAME "libsndfile" - -/* Define to the full name and version of this package. */ -#define PACKAGE_STRING "libsndfile 1.0.20" - -/* Define to the one symbol short name of this package. */ -#define PACKAGE_TARNAME "libsndfile" - -/* Define to the version of this package. */ -#define PACKAGE_VERSION "1.0.20" - -/* Set to maximum allowed value of sf_count_t type. */ -//#define SF_COUNT_MAX (9223372036854775807i64) - -/* The size of `double', as computed by sizeof. */ -#define SIZEOF_DOUBLE (8) - -/* The size of `float', as computed by sizeof. */ -#define SIZEOF_FLOAT (4) - -/* The size of `int', as computed by sizeof. */ -#define SIZEOF_INT (4) - -/* The size of `int64_t', as computed by sizeof. */ -#define SIZEOF_INT64_T (8) - -/* The size of `loff_t', as computed by sizeof. */ -#undef SIZEOF_LOFF_T - -/* The size of `long', as computed by sizeof. */ -#define SIZEOF_LONG (4) - -/* The size of `long long', as computed by sizeof. */ -#define SIZEOF_LONG_LONG (8) - -/* The size of `off64_t', as computed by sizeof. */ -#undef SIZEOF_OFF64_T - -/* The size of `off_t', as computed by sizeof. */ -#define SIZEOF_OFF_T (4) - -/* Set to sizeof (long) if unknown. */ -#define SIZEOF_SF_COUNT_T (8) - -/* The size of `short', as computed by sizeof. */ -#define SIZEOF_SHORT (2) - -/* The size of `size_t', as computed by sizeof. */ -#define SIZEOF_SIZE_T (4) - -/* The size of `ssize_t', as computed by sizeof. */ -#undef SIZEOF_SSIZE_T - -/* The size of `void*', as computed by sizeof. */ -#define SIZEOF_VOIDP (4) - -/* The size of `wchar_t', as computed by sizeof. */ -#define SIZEOF_WCHAR_T (2) - -/* Define to 1 if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Set to long if unknown. */ -#define TYPEOF_SF_COUNT_T __int64 - -/* Set to 1 to use the native windows API */ -#define USE_WINDOWS_API 1 - -/* Version number of package */ -#define VERSION "1.0.20" - -/* Set to 1 if windows DLL is being built. */ -#define WIN32_TARGET_DLL 1 - -/* Target processor is big endian. */ -#undef WORDS_BIGENDIAN - -/* Number of bits in a file offset, on hosts where this is settable. */ -#undef _FILE_OFFSET_BITS - -/* Define to make fseeko etc. visible, on some hosts. */ -#undef _LARGEFILE_SOURCE - -/* Define for large files, on AIX-style hosts. */ -#undef _LARGE_FILES diff --git a/msvc10/SndFile/inttypes.h b/msvc10/SndFile/inttypes.h deleted file mode 100644 index 15b87643..00000000 --- a/msvc10/SndFile/inttypes.h +++ /dev/null @@ -1,18 +0,0 @@ -/* libSoX libpng stub file for MSVC9: (c) 2009 SoX contributors - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#define PRId64 "lld" diff --git a/msvc10/SndFile/sndfile.h b/msvc10/SndFile/sndfile.h deleted file mode 100644 index 641d7526..00000000 --- a/msvc10/SndFile/sndfile.h +++ /dev/null @@ -1,19 +0,0 @@ -/* libSoX libsndfile wrapper for MSVC9: (c) 2009 SoX contributors - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -typedef __int64 __int64_t; -#include "../../libsndfile/src/sndfile.h.in" diff --git a/msvc10/SndFile/sys/time.h b/msvc10/SndFile/sys/time.h deleted file mode 100644 index 9511546f..00000000 --- a/msvc10/SndFile/sys/time.h +++ /dev/null @@ -1,18 +0,0 @@ -/* libSoX libsndfile stub file for MSVC9: (c) 2009 SoX contributors - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -/* Nothing here. */ diff --git a/msvc10/SoX.sln b/msvc10/SoX.sln deleted file mode 100644 index ec3b81c6..00000000 --- a/msvc10/SoX.sln +++ /dev/null @@ -1,116 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 11.00 -# Visual Studio 2010 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibSoX", "LibSoX.vcxproj", "{F17BE535-C7E8-4930-A6FD-32498D73A533}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SoX", "SoX.vcxproj", "{AC136601-504C-4E1A-9DC8-0CC493AA0983}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibFlac", "LibFlac.vcxproj", "{38203D05-AF71-4FF2-A183-A7D9CB8D2AE0}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibGsm", "LibGsm.vcxproj", "{BEE9F57C-384E-4C99-87EB-629BF45C8A89}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibLpc10", "LibLpc10.vcxproj", "{C588FF17-FB2F-48D9-BB99-40B6D52B9B85}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibMad", "LibMad.vcxproj", "{B7A8AD9A-0D07-4453-B2DE-FEABD9546263}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibMp3Lame", "LibMp3Lame.vcxproj", "{4DFD6FD1-96F1-434A-AC69-01783B876354}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibOgg", "LibOgg.vcxproj", "{C5C229AC-316D-42CB-9CA3-329619618972}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibPng", "LibPng.vcxproj", "{46E7AC9D-3E96-4B34-B493-501BC277D6F9}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibWavPack", "LibWavPack.vcxproj", "{7461CC57-B1CB-4766-B357-F51587449474}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibVorbis", "LibVorbis.vcxproj", "{524A24CD-0973-4733-8EB9-F419DC6F9997}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibZLib", "LibZLib.vcxproj", "{90D19FCF-8560-4396-A250-DDF74D1B0E36}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibId3Tag", "LibId3Tag.vcxproj", "{40EA92B6-38AA-4E67-894D-92C37C946402}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibSndFileG72x", "LibSndFileG72x.vcxproj", "{7016D4C2-A0AB-4BFD-9AA1-4ECDCCBE6301}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibSndFileGSM610", "LibSndFileGSM610.vcxproj", "{D2572DE1-610E-46A4-8DD2-8A693347D76A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibSndFile", "LibSndFile.vcxproj", "{342BDA83-C83F-4168-8425-E1DF72F47018}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibSpeex", "LibSpeex.vcxproj", "{60902B83-8B26-4DBD-B635-4CECF5F4744C}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {F17BE535-C7E8-4930-A6FD-32498D73A533}.Debug|Win32.ActiveCfg = Debug|Win32 - {F17BE535-C7E8-4930-A6FD-32498D73A533}.Debug|Win32.Build.0 = Debug|Win32 - {F17BE535-C7E8-4930-A6FD-32498D73A533}.Release|Win32.ActiveCfg = Release|Win32 - {F17BE535-C7E8-4930-A6FD-32498D73A533}.Release|Win32.Build.0 = Release|Win32 - {AC136601-504C-4E1A-9DC8-0CC493AA0983}.Debug|Win32.ActiveCfg = Debug|Win32 - {AC136601-504C-4E1A-9DC8-0CC493AA0983}.Debug|Win32.Build.0 = Debug|Win32 - {AC136601-504C-4E1A-9DC8-0CC493AA0983}.Release|Win32.ActiveCfg = Release|Win32 - {AC136601-504C-4E1A-9DC8-0CC493AA0983}.Release|Win32.Build.0 = Release|Win32 - {38203D05-AF71-4FF2-A183-A7D9CB8D2AE0}.Debug|Win32.ActiveCfg = Debug|Win32 - {38203D05-AF71-4FF2-A183-A7D9CB8D2AE0}.Debug|Win32.Build.0 = Debug|Win32 - {38203D05-AF71-4FF2-A183-A7D9CB8D2AE0}.Release|Win32.ActiveCfg = Release|Win32 - {38203D05-AF71-4FF2-A183-A7D9CB8D2AE0}.Release|Win32.Build.0 = Release|Win32 - {BEE9F57C-384E-4C99-87EB-629BF45C8A89}.Debug|Win32.ActiveCfg = Debug|Win32 - {BEE9F57C-384E-4C99-87EB-629BF45C8A89}.Debug|Win32.Build.0 = Debug|Win32 - {BEE9F57C-384E-4C99-87EB-629BF45C8A89}.Release|Win32.ActiveCfg = Release|Win32 - {BEE9F57C-384E-4C99-87EB-629BF45C8A89}.Release|Win32.Build.0 = Release|Win32 - {C588FF17-FB2F-48D9-BB99-40B6D52B9B85}.Debug|Win32.ActiveCfg = Debug|Win32 - {C588FF17-FB2F-48D9-BB99-40B6D52B9B85}.Debug|Win32.Build.0 = Debug|Win32 - {C588FF17-FB2F-48D9-BB99-40B6D52B9B85}.Release|Win32.ActiveCfg = Release|Win32 - {C588FF17-FB2F-48D9-BB99-40B6D52B9B85}.Release|Win32.Build.0 = Release|Win32 - {B7A8AD9A-0D07-4453-B2DE-FEABD9546263}.Debug|Win32.ActiveCfg = Debug|Win32 - {B7A8AD9A-0D07-4453-B2DE-FEABD9546263}.Debug|Win32.Build.0 = Debug|Win32 - {B7A8AD9A-0D07-4453-B2DE-FEABD9546263}.Release|Win32.ActiveCfg = Release|Win32 - {B7A8AD9A-0D07-4453-B2DE-FEABD9546263}.Release|Win32.Build.0 = Release|Win32 - {4DFD6FD1-96F1-434A-AC69-01783B876354}.Debug|Win32.ActiveCfg = Debug|Win32 - {4DFD6FD1-96F1-434A-AC69-01783B876354}.Debug|Win32.Build.0 = Debug|Win32 - {4DFD6FD1-96F1-434A-AC69-01783B876354}.Release|Win32.ActiveCfg = Release|Win32 - {4DFD6FD1-96F1-434A-AC69-01783B876354}.Release|Win32.Build.0 = Release|Win32 - {C5C229AC-316D-42CB-9CA3-329619618972}.Debug|Win32.ActiveCfg = Debug|Win32 - {C5C229AC-316D-42CB-9CA3-329619618972}.Debug|Win32.Build.0 = Debug|Win32 - {C5C229AC-316D-42CB-9CA3-329619618972}.Release|Win32.ActiveCfg = Release|Win32 - {C5C229AC-316D-42CB-9CA3-329619618972}.Release|Win32.Build.0 = Release|Win32 - {46E7AC9D-3E96-4B34-B493-501BC277D6F9}.Debug|Win32.ActiveCfg = Debug|Win32 - {46E7AC9D-3E96-4B34-B493-501BC277D6F9}.Debug|Win32.Build.0 = Debug|Win32 - {46E7AC9D-3E96-4B34-B493-501BC277D6F9}.Release|Win32.ActiveCfg = Release|Win32 - {46E7AC9D-3E96-4B34-B493-501BC277D6F9}.Release|Win32.Build.0 = Release|Win32 - {7461CC57-B1CB-4766-B357-F51587449474}.Debug|Win32.ActiveCfg = Debug|Win32 - {7461CC57-B1CB-4766-B357-F51587449474}.Debug|Win32.Build.0 = Debug|Win32 - {7461CC57-B1CB-4766-B357-F51587449474}.Release|Win32.ActiveCfg = Release|Win32 - {7461CC57-B1CB-4766-B357-F51587449474}.Release|Win32.Build.0 = Release|Win32 - {524A24CD-0973-4733-8EB9-F419DC6F9997}.Debug|Win32.ActiveCfg = Debug|Win32 - {524A24CD-0973-4733-8EB9-F419DC6F9997}.Debug|Win32.Build.0 = Debug|Win32 - {524A24CD-0973-4733-8EB9-F419DC6F9997}.Release|Win32.ActiveCfg = Release|Win32 - {524A24CD-0973-4733-8EB9-F419DC6F9997}.Release|Win32.Build.0 = Release|Win32 - {90D19FCF-8560-4396-A250-DDF74D1B0E36}.Debug|Win32.ActiveCfg = Debug|Win32 - {90D19FCF-8560-4396-A250-DDF74D1B0E36}.Debug|Win32.Build.0 = Debug|Win32 - {90D19FCF-8560-4396-A250-DDF74D1B0E36}.Release|Win32.ActiveCfg = Release|Win32 - {90D19FCF-8560-4396-A250-DDF74D1B0E36}.Release|Win32.Build.0 = Release|Win32 - {40EA92B6-38AA-4E67-894D-92C37C946402}.Debug|Win32.ActiveCfg = Debug|Win32 - {40EA92B6-38AA-4E67-894D-92C37C946402}.Debug|Win32.Build.0 = Debug|Win32 - {40EA92B6-38AA-4E67-894D-92C37C946402}.Release|Win32.ActiveCfg = Release|Win32 - {40EA92B6-38AA-4E67-894D-92C37C946402}.Release|Win32.Build.0 = Release|Win32 - {7016D4C2-A0AB-4BFD-9AA1-4ECDCCBE6301}.Debug|Win32.ActiveCfg = Debug|Win32 - {7016D4C2-A0AB-4BFD-9AA1-4ECDCCBE6301}.Debug|Win32.Build.0 = Debug|Win32 - {7016D4C2-A0AB-4BFD-9AA1-4ECDCCBE6301}.Release|Win32.ActiveCfg = Release|Win32 - {7016D4C2-A0AB-4BFD-9AA1-4ECDCCBE6301}.Release|Win32.Build.0 = Release|Win32 - {D2572DE1-610E-46A4-8DD2-8A693347D76A}.Debug|Win32.ActiveCfg = Debug|Win32 - {D2572DE1-610E-46A4-8DD2-8A693347D76A}.Debug|Win32.Build.0 = Debug|Win32 - {D2572DE1-610E-46A4-8DD2-8A693347D76A}.Release|Win32.ActiveCfg = Release|Win32 - {D2572DE1-610E-46A4-8DD2-8A693347D76A}.Release|Win32.Build.0 = Release|Win32 - {342BDA83-C83F-4168-8425-E1DF72F47018}.Debug|Win32.ActiveCfg = Debug|Win32 - {342BDA83-C83F-4168-8425-E1DF72F47018}.Debug|Win32.Build.0 = Debug|Win32 - {342BDA83-C83F-4168-8425-E1DF72F47018}.Release|Win32.ActiveCfg = Release|Win32 - {342BDA83-C83F-4168-8425-E1DF72F47018}.Release|Win32.Build.0 = Release|Win32 - {60902B83-8B26-4DBD-B635-4CECF5F4744C}.Debug|Win32.ActiveCfg = Debug|Win32 - {60902B83-8B26-4DBD-B635-4CECF5F4744C}.Debug|Win32.Build.0 = Debug|Win32 - {60902B83-8B26-4DBD-B635-4CECF5F4744C}.Release|Win32.ActiveCfg = Release|Win32 - {60902B83-8B26-4DBD-B635-4CECF5F4744C}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/msvc10/SoX.vcxproj b/msvc10/SoX.vcxproj deleted file mode 100644 index 07a8f581..00000000 --- a/msvc10/SoX.vcxproj +++ /dev/null @@ -1,189 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {AC136601-504C-4E1A-9DC8-0CC493AA0983} - SoX - Win32Proj - - - - Application - Unicode - true - - - Application - Unicode - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - false - $(SolutionDir)$(Configuration)\ - $(SolutionDir)$(Configuration)\$(ProjectName)\ - false - false - AllRules.ruleset - - - AllRules.ruleset - - - - - - Disabled - SoX;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;SOX_IMPORT;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - true - true - - - EnableFastChecks - MultiThreadedDebug - true - Fast - false - - - Level3 - true - ProgramDatabase - Cdecl - 4244;%(DisableSpecificWarnings) - - - winmm.lib;%(AdditionalDependencies) - $(SolutionDir)$(Configuration)\$(ProjectName).exe - winmm.dll;%(DelayLoadDLLs) - true - Console - - - true - MachineX86 - - - - - MaxSpeed - true - SoX;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;SOX_IMPORT;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - true - - - MultiThreaded - true - Fast - false - - - Level3 - true - ProgramDatabase - Cdecl - 4244;%(DisableSpecificWarnings) - - - winmm.lib;%(AdditionalDependencies) - $(SolutionDir)$(Configuration)\$(ProjectName).exe - winmm.dll;%(DelayLoadDLLs) - true - Console - true - true - true - MachineX86 - - - - - - - - - - - - {38203d05-af71-4ff2-a183-a7d9cb8d2ae0} - false - - - {bee9f57c-384e-4c99-87eb-629bf45c8a89} - false - - - {40ea92b6-38aa-4e67-894d-92c37c946402} - false - - - {c588ff17-fb2f-48d9-bb99-40b6d52b9b85} - false - - - {c5c229ac-316d-42cb-9ca3-329619618972} - false - - - {46e7ac9d-3e96-4b34-b493-501bc277d6f9} - false - - - {342bda83-c83f-4168-8425-e1df72f47018} - false - - - {7016d4c2-a0ab-4bfd-9aa1-4ecdccbe6301} - false - - - {d2572de1-610e-46a4-8dd2-8a693347d76a} - false - - - {f17be535-c7e8-4930-a6fd-32498d73a533} - false - - - {60902b83-8b26-4dbd-b635-4cecf5f4744c} - false - - - {524a24cd-0973-4733-8eb9-f419dc6f9997} - false - - - {7461cc57-b1cb-4766-b357-f51587449474} - false - - - {90d19fcf-8560-4396-a250-ddf74d1b0e36} - false - - - - - - diff --git a/msvc10/SoX/soxconfig.h b/msvc10/SoX/soxconfig.h deleted file mode 100644 index f79cd436..00000000 --- a/msvc10/SoX/soxconfig.h +++ /dev/null @@ -1,113 +0,0 @@ -/* libSoX config file for MSVC9: (c) 2009 SoX contributors - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -/* Enable some extra warnings. - Track the number of times each warning has been helpful. */ -#pragma warning(3: 4287) /* 0 - constant sign mismatch */ -#pragma warning(3: 4296) /* 1 - expression is always false */ -#pragma warning(3: 4365) /* 0 - conversion sign mismatch */ -#pragma warning(3: 4431) /* 0 - default int assumed */ -#pragma warning(3: 4545) /* 0 - comma expression */ -#pragma warning(3: 4546) /* 0 - comma expression */ -#pragma warning(3: 4547) /* 0 - comma expression */ -#pragma warning(3: 4548) /* 0 - comma expression */ -#pragma warning(3: 4549) /* 0 - comma expression */ -#pragma warning(3: 4555) /* 0 - expression has no effect */ -#pragma warning(3: 4628) /* 0 - digraph */ -#pragma warning(3: 4826) /* 0 - conversion sign extension */ -#pragma warning(3: 4837) /* 0 - trigraph */ -#pragma warning(3: 4905) /* 0 - string assignment mismatch */ -#pragma warning(3: 4906) /* 0 - string assignment mismatch */ - -/* Used only by sox.c: */ -#define MORE_INTERACTIVE - -#define PACKAGE_EXTRA "msvc" - -/* Special behavior defined by win32-ltdl: "./" is replaced with the name of the - directory containing sox.exe. */ -#define PKGLIBDIR "./soxlib" - -#define HAVE_AMRNB 1 -#define STATIC_AMRNB 1 -#define DL_AMRNB 1 - -#define HAVE_AMRWB 1 -#define STATIC_AMRWB 1 -#define DL_AMRWB 1 - -#define HAVE_FLAC 1 -#define STATIC_FLAC 1 -#define FLAC__NO_DLL - -#define HAVE_GSM 1 -#define STATIC_GSM 1 - -#define HAVE_ID3TAG 1 - -#define DL_LAME 1 - -#define HAVE_LPC10 1 -#define STATIC_LPC10 1 - -#define HAVE_MAD_H 1 -#define DL_MAD 1 - -#define HAVE_MP3 1 -#define STATIC_MP3 1 - -#define HAVE_OGG_VORBIS 1 -#define STATIC_OGG_VORBIS 1 - -#define HAVE_PNG 1 - -#define HAVE_SNDFILE 1 -#define HAVE_SNDFILE_1_0_18 1 -#define HAVE_SFC_SET_SCALE_INT_FLOAT_WRITE 1 -#define STATIC_SNDFILE 1 -#define DL_SNDFILE 1 - -#define HAVE_SPEEXDSP 1 - -#define HAVE_WAVEAUDIO 1 -#define STATIC_WAVEAUDIO 1 - -#define HAVE_WAVPACK 1 -#define HAVE_WAVPACK_H 1 -#define STATIC_WAVPACK 1 - -#define HAVE_CONIO_H 1 -#define HAVE__FSEEKI64 1 -#define HAVE_FCNTL_H 1 -#define HAVE_IO_H 1 -#define HAVE_MEMORY_H 1 -#define HAVE_POPEN 1 -#define HAVE_SPEEXDSP 1 -#define HAVE_STDINT_H 1 -#define HAVE_STDLIB_H 1 -#define HAVE_STRDUP 1 -#define HAVE_STRING_H 1 -#define HAVE_SYS_STAT_H 1 -#define HAVE_SYS_TIMEB_H 1 -#define HAVE_SYS_TYPES_H 1 -#define HAVE_VSNPRINTF 1 -#define HAVE_WIN32_GLOB_H 1 -#define HAVE_WIN32_LTDL_H 1 - -#ifndef __cplusplus -#define inline __inline -#endif diff --git a/msvc9/.gitignore b/msvc9/.gitignore deleted file mode 100644 index 6cb9f2d4..00000000 --- a/msvc9/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -*.user -Debug -Makefile -Makefile.in -Release -Sox.ncb -Sox.suo diff --git a/msvc9/LibFlac.vcproj b/msvc9/LibFlac.vcproj deleted file mode 100644 index 97c2fa91..00000000 --- a/msvc9/LibFlac.vcproj +++ /dev/null @@ -1,296 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc9/LibGsm.vcproj b/msvc9/LibGsm.vcproj deleted file mode 100644 index a7b6cb80..00000000 --- a/msvc9/LibGsm.vcproj +++ /dev/null @@ -1,246 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc9/LibId3Tag.vcproj b/msvc9/LibId3Tag.vcproj deleted file mode 100644 index aaa97f6e..00000000 --- a/msvc9/LibId3Tag.vcproj +++ /dev/null @@ -1,328 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc9/LibLpc10.vcproj b/msvc9/LibLpc10.vcproj deleted file mode 100644 index 7c471484..00000000 --- a/msvc9/LibLpc10.vcproj +++ /dev/null @@ -1,324 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc9/LibMad.vcproj b/msvc9/LibMad.vcproj deleted file mode 100644 index 710f6467..00000000 --- a/msvc9/LibMad.vcproj +++ /dev/null @@ -1,313 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc9/LibMp3Lame.vcproj b/msvc9/LibMp3Lame.vcproj deleted file mode 100644 index 0c6aa211..00000000 --- a/msvc9/LibMp3Lame.vcproj +++ /dev/null @@ -1,467 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc9/LibOgg.vcproj b/msvc9/LibOgg.vcproj deleted file mode 100644 index 6fd1a71f..00000000 --- a/msvc9/LibOgg.vcproj +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc9/LibPng.vcproj b/msvc9/LibPng.vcproj deleted file mode 100644 index 34814f59..00000000 --- a/msvc9/LibPng.vcproj +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc9/LibSndFile.vcproj b/msvc9/LibSndFile.vcproj deleted file mode 100644 index 0f29c3bb..00000000 --- a/msvc9/LibSndFile.vcproj +++ /dev/null @@ -1,484 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc9/LibSndFileG72x.vcproj b/msvc9/LibSndFileG72x.vcproj deleted file mode 100644 index b8fd484d..00000000 --- a/msvc9/LibSndFileG72x.vcproj +++ /dev/null @@ -1,202 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc9/LibSndFileGSM610.vcproj b/msvc9/LibSndFileGSM610.vcproj deleted file mode 100644 index dc8f82e0..00000000 --- a/msvc9/LibSndFileGSM610.vcproj +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc9/LibSoX.vcproj b/msvc9/LibSoX.vcproj deleted file mode 100644 index 22c4a148..00000000 --- a/msvc9/LibSoX.vcproj +++ /dev/null @@ -1,1208 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc9/LibSpeex.vcproj b/msvc9/LibSpeex.vcproj deleted file mode 100644 index d18fecbe..00000000 --- a/msvc9/LibSpeex.vcproj +++ /dev/null @@ -1,452 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc9/LibVorbis.vcproj b/msvc9/LibVorbis.vcproj deleted file mode 100644 index 915778e3..00000000 --- a/msvc9/LibVorbis.vcproj +++ /dev/null @@ -1,340 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc9/LibWavPack.vcproj b/msvc9/LibWavPack.vcproj deleted file mode 100644 index d5a3d635..00000000 --- a/msvc9/LibWavPack.vcproj +++ /dev/null @@ -1,236 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc9/LibZLib.vcproj b/msvc9/LibZLib.vcproj deleted file mode 100644 index 43f5b7a6..00000000 --- a/msvc9/LibZLib.vcproj +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc9/Mad/LibMad.def b/msvc9/Mad/LibMad.def deleted file mode 100644 index 1b9c7f3f..00000000 --- a/msvc9/Mad/LibMad.def +++ /dev/null @@ -1,60 +0,0 @@ -; libSoX libmad export definitions for MSVC9: (c) 2009 SoX contributors -; -; This library is free software; you can redistribute it and/or modify it -; under the terms of the GNU Lesser General Public License as published by -; the Free Software Foundation; either version 2.1 of the License, or (at -; your option) any later version. -; -; This library is distributed in the hope that it will be useful, but -; WITHOUT ANY WARRANTY; without even the implied warranty of -; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser -; General Public License for more details. -; -; You should have received a copy of the GNU Lesser General Public License -; along with this library; if not, write to the Free Software Foundation, -; Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -; - -EXPORTS - - mad_bit_crc - mad_bit_init - mad_bit_length - mad_bit_nextbyte - mad_bit_read - mad_bit_skip - - mad_decoder_init - mad_decoder_finish - mad_decoder_message - mad_decoder_run - - mad_frame_decode - mad_frame_finish - mad_frame_init - mad_frame_mute - - mad_header_decode - mad_header_init - - mad_stream_buffer - mad_stream_errorstr - mad_stream_finish - mad_stream_init - mad_stream_skip - mad_stream_sync - - mad_synth_frame - mad_synth_init - mad_synth_mute - - mad_timer_abs - mad_timer_add - mad_timer_compare - mad_timer_count - mad_timer_fraction - mad_timer_multiply - mad_timer_negate - mad_timer_set - mad_timer_string - mad_timer_zero diff --git a/msvc9/Mad/config.h b/msvc9/Mad/config.h deleted file mode 100644 index 8d2cd0d0..00000000 --- a/msvc9/Mad/config.h +++ /dev/null @@ -1,19 +0,0 @@ -/* libSoX libmad config for MSVC9: (c) 2009 SoX contributors - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#include -#define FPM_INTEL diff --git a/msvc9/Makefile.am b/msvc9/Makefile.am deleted file mode 100644 index 7641ed06..00000000 --- a/msvc9/Makefile.am +++ /dev/null @@ -1,30 +0,0 @@ -EXTRA_DIST= \ - LibFlac.vcproj \ - LibGsm.vcproj \ - LibId3Tag.vcproj \ - LibLpc10.vcproj \ - LibMad.vcproj \ - LibMp3Lame.vcproj \ - LibOgg.vcproj \ - LibPng.vcproj \ - LibSndFileG72x.vcproj \ - LibSndFileGSM610.vcproj \ - LibSndFile.vcproj \ - LibSoX.vcproj \ - LibSpeex.vcproj \ - LibVorbis.vcproj \ - LibWavPack.vcproj \ - LibZLib.vcproj \ - Readme.txt \ - Sox.sln \ - SoX.vcproj \ - Mad/config.h \ - Mad/LibMad.def \ - Mp3Lame/config.h \ - Png/inttypes.h \ - Png/pnglibconf.h \ - SndFile/config.h \ - SndFile/inttypes.h \ - SndFile/sndfile.h \ - SndFile/sys/time.h \ - Sox/soxconfig.h diff --git a/msvc9/Mp3Lame/config.h b/msvc9/Mp3Lame/config.h deleted file mode 100644 index 94ccfc78..00000000 --- a/msvc9/Mp3Lame/config.h +++ /dev/null @@ -1,19 +0,0 @@ -/* libSoX libmp3lame config for MSVC9: (c) 2009 SoX contributors - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#define HAVE_MPGLIB 1 -#include diff --git a/msvc9/Png/inttypes.h b/msvc9/Png/inttypes.h deleted file mode 100644 index cc91d620..00000000 --- a/msvc9/Png/inttypes.h +++ /dev/null @@ -1,18 +0,0 @@ -/* libSoX libpng stub file for MSVC9: (c) 2009 SoX contributors - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -/* Nothing here. */ diff --git a/msvc9/Png/pnglibconf.h b/msvc9/Png/pnglibconf.h deleted file mode 100644 index 6ea71740..00000000 --- a/msvc9/Png/pnglibconf.h +++ /dev/null @@ -1,18 +0,0 @@ -/* libSoX libpng config for MSVC9: (c) 2009 SoX contributors - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#include "../../../libpng/scripts/pnglibconf.h.prebuilt" \ No newline at end of file diff --git a/msvc9/Readme.txt b/msvc9/Readme.txt deleted file mode 100644 index a87079f2..00000000 --- a/msvc9/Readme.txt +++ /dev/null @@ -1,82 +0,0 @@ -This directory includes hand-crafted project files for building SoX under -MSVC9. The project files may be replaced by expanding CMAKE support in the -future, but for now, this is the easiest way to build SoX with MS Visual C++. -The resulting sox.exe has support for all SoX features except magic, and -pulseaudio. LAME (libmp3lame.dll or lame_enc.dll), MAD (libmad.dll or -cygmad-0.dll), libsndfile (libsndfile-1.dll) and AMR support (libamrnb-3.dll, -libamrwb-3.dll) are loaded at runtime if they are available. - -How to build: - -1. Check out the SoX git code into a directory named sox. - -2. Extract the source code for the other libraries next to the sox - directory. Remove the version numbers from the directory names. - The following versions were tested and successfully built: - -- flac-1.2.1.tar.gz extracted into directory flac - -- lame-398.4.tar.gz extracted into directory lame - -- libid3tag-0.15.1b.tar.gz extracted into directory libid3tag - -- libmad-0.15.1b.tar.gz extracted into directory libmad - -- libogg-1.2.2.tar.gz extracted into directory libogg - -- libpng-1.5.1.tar.gz extracted into directory libpng - -- libsndfile-1.0.23.tar.gz extracted into directory libsndfile - -- libvorbis-1.3.2.tar.gz extracted into directory libvorbis - -- speex-1.2rc1.tar.gz extracted into directory speex - -- wavpack-4.60.1.tar.bz2 extracted into directory wavpack - -- zlib-1.2.5.tar.gz extracted into directory zlib - -3. Open the sox\msvc9\SoX.sln solution. - -4. If any of the above libraries are not available or not wanted, adjust the - corresponding settings in the soxconfig.h file (in the LibSoX project inside - the Config Files folder) and remove the corresponding project from the - solution. - -5. Build the solution. - -6. The resulting executable files will be in sox\msvc9\Debug or - sox\msvc9\Release. The resulting sox.exe will dynamically link to - libmp3lame.dll, libmad.dll, libsndfile-1.dll, libamrnb-3.dll, and - libamrwb-3.dll if they are available, but will run without them (though the - corresponding features will be unavailable if they are not present). - -Points to note: - -- The libsndfile-1.0.20.tar.gz package does not include the sndfile.h header - file. Normally, before compiling libsndfile, you would create sndfile.h - (either by processing it via autoconf, by downloading a copy, or by renaming - sndfile.h.in). However, this SoX solution includes its own version of - sndfile.h, so you should not create a sndfile.h under the libsndfile folder. - To repeat: you should extract a clean copy of libsndfile-1.0.20.tar.gz, and - should not add, process, or rename any files. - -- The solution includes an experimental effect called speexdsp that uses the - speex DSP library. This does not yet enable any support for the speex file - format or speex codec. The speexdsp effect is simply an experimental effect - to make use of the automatic gain control and noise filtering components that - are part of the speex codec package. Support for the speex codec may be added - later. - -- The included projects do not enable SSE2. You can enable this in the project - properties under Configuration Properties, C/C++, Code Generation, Enable - Enhanced Instruction Set. Note that some editions of Visual Studio might - not include Enhanced Instruction Set support. - -- The included projects set the floating-point model to "fast". This means - that the compiler is free to optimize floating-point operations. For - example, the compiler might optimize the expression (14.0 * x / 7.0) into - (x * 2.0). In addition, the compiler is allowed to leave expression results - in floating-point registers to store temporary values instead of rounding - each intermediate result to a 32-bit or 64-bit value. In some cases, these - optimizations can change the results of floating-point calculations. If you - need more precise results, you can change this optimization setting can be - changed to one of the other values. The "precise" setting avoids any - optimization that might change the result (preserves the order of all - operations) but keeps optimizations that might give more accurate results - (such as using more precision than necessary for intermediate values if doing - so results in faster code). The "strict" setting avoids any optimization that - might change the result in any way contrary to the C/C++ standard and rounds - every intermediate result to the requested precision according to standard - floating-point rounding rules. You can change this setting in the project - properties under Configuration Properties, C/C++, Code Generation, Floating - Point Model. diff --git a/msvc9/SndFile/config.h b/msvc9/SndFile/config.h deleted file mode 100644 index 4e59126d..00000000 --- a/msvc9/SndFile/config.h +++ /dev/null @@ -1,303 +0,0 @@ -/* libSoX libsndfile config for MSVC9: (c) 2009 SoX contributors - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#define inline __inline -typedef __int64 __int64_t; -typedef __int64 int64_t; -typedef __int32 int32_t; -typedef unsigned __int32 uint32_t; -typedef unsigned __int16 uint16_t; -#define ptrdiff_t ssize_t -#define snprintf _snprintf -#define __func__ __FUNCTION__ -#define FLAC__NO_DLL -#define lrint(f) ((long)(f)) -#define lrintf(f) lrint(f) - -/* Set to 1 if the compile is GNU GCC. */ -#undef COMPILER_IS_GCC - -/* Target processor clips on negative float to int conversion. */ -#define CPU_CLIPS_NEGATIVE 0 - -/* Target processor clips on positive float to int conversion. */ -#define CPU_CLIPS_POSITIVE 0 - -/* Target processor is big endian. */ -#define CPU_IS_BIG_ENDIAN 0 - -/* Target processor is little endian. */ -#define CPU_IS_LITTLE_ENDIAN 1 - -/* Set to 1 to enable experimental code. */ -#undef ENABLE_EXPERIMENTAL_CODE - -/* Define to 1 if you have the header file. */ -#undef HAVE_ALSA_ASOUNDLIB_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_BYTESWAP_H - -/* Define to 1 if you have the `calloc' function. */ -#define HAVE_CALLOC 1 - -/* Define to 1 if you have the `ceil' function. */ -#define HAVE_CEIL 1 - -/* Set to 1 if S_IRGRP is defined. */ -#undef HAVE_DECL_S_IRGRP - -/* Define to 1 if you have the header file. */ -#undef HAVE_DLFCN_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_ENDIAN_H - -/* Will be set to 1 if flac, ogg and vorbis are available. */ -#define HAVE_EXTERNAL_LIBS 1 - -/* Set to 1 if the compile supports the struct hack. */ -#define HAVE_FLEXIBLE_ARRAY 1 - -/* Define to 1 if you have the `floor' function. */ -#define HAVE_FLOOR 1 - -/* Define to 1 if you have the `fmod' function. */ -#define HAVE_FMOD 1 - -/* Define to 1 if you have the `free' function. */ -#define HAVE_FREE 1 - -/* Define to 1 if you have the `fstat' function. */ -#define HAVE_FSTAT 1 - -/* Define to 1 if you have the `fsync' function. */ -#undef HAVE_FSYNC - -/* Define to 1 if you have the `ftruncate' function. */ -#undef HAVE_FTRUNCATE - -/* Define to 1 if you have the `getpagesize' function. */ -#undef HAVE_GETPAGESIZE - -/* Define to 1 if you have the `gettimeofday' function. */ -#undef HAVE_GETTIMEOFDAY - -/* Define to 1 if you have the `gmtime' function. */ -#define HAVE_GMTIME 1 - -/* Define to 1 if you have the `gmtime_r' function. */ -#undef HAVE_GMTIME_R - -/* Define to 1 if you have the header file. */ -#undef HAVE_INTTYPES_H - -/* Set to 1 if you have JACK. */ -#undef HAVE_JACK - -/* Define to 1 if you have the `m' library (-lm). */ -#define HAVE_LIBM 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_LOCALE_H 1 - -/* Define to 1 if you have the `localtime' function. */ -#define HAVE_LOCALTIME 1 - -/* Define to 1 if you have the `localtime_r' function. */ -#undef HAVE_LOCALTIME_R - -/* Define to 1 if you have the `lseek' function. */ -#define HAVE_LSEEK 1 - -/* Define to 1 if you have the `malloc' function. */ -#define HAVE_MALLOC 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_MEMORY_H 1 - -/* Define to 1 if you have the `mmap' function. */ -#undef HAVE_MMAP - -/* Define to 1 if you have the `open' function. */ -#define HAVE_OPEN 1 - -/* Define to 1 if you have the `pread' function. */ -#undef HAVE_PREAD - -/* Define to 1 if you have the `pwrite' function. */ -#undef HAVE_PWRITE - -/* Define to 1 if you have the `read' function. */ -#define HAVE_READ 1 - -/* Define to 1 if you have the `realloc' function. */ -#define HAVE_REALLOC 1 - -/* Define to 1 if you have the `setlocale' function. */ -#define HAVE_SETLOCALE 1 - -/* Define to 1 if you have the `snprintf' function. */ -#define HAVE_SNPRINTF 1 - -/* Set to 1 if you have libsqlite3. */ -#undef HAVE_SQLITE3 - -/* Define to 1 if the system has the type `ssize_t'. */ -#undef HAVE_SSIZE_T - -/* Define to 1 if you have the header file. */ -#undef HAVE_STDINT_H - -/* Define to 1 if you have the header file. */ -#define HAVE_STDLIB_H 1 - -/* Define to 1 if you have the header file. */ -#undef HAVE_STRINGS_H - -/* Define to 1 if you have the header file. */ -#define HAVE_STRING_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_TIME_H - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define to 1 if you have that is POSIX.1 compatible. */ -#undef HAVE_SYS_WAIT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_UNISTD_H - -/* Set to 1 if we have vorbis_version_string. */ -#undef HAVE_VORBIS_VERSION_STRING - -/* Define to 1 if you have the `vsnprintf' function. */ -#define HAVE_VSNPRINTF 1 - -/* Define to 1 if you have the `write' function. */ -#define HAVE_WRITE 1 - -/* Define to the sub-directory in which libtool stores uninstalled libraries. - */ -#undef LT_OBJDIR - -/* Define to 1 if your C compiler doesn't accept -c and -o together. */ -#undef NO_MINUS_C_MINUS_O - -/* Set to 1 if compiling for MacOSX */ -#undef OS_IS_MACOSX - -/* Set to 1 if compiling for Win32 */ -#define OS_IS_WIN32 1 - -/* Name of package */ -#define PACKAGE "libsndfile" - -/* Define to the address where bug reports for this package should be sent. */ -#define PACKAGE_BUGREPORT "erikd@mega-nerd.com" - -/* Define to the full name of this package. */ -#define PACKAGE_NAME "libsndfile" - -/* Define to the full name and version of this package. */ -#define PACKAGE_STRING "libsndfile 1.0.20" - -/* Define to the one symbol short name of this package. */ -#define PACKAGE_TARNAME "libsndfile" - -/* Define to the version of this package. */ -#define PACKAGE_VERSION "1.0.20" - -/* Set to maximum allowed value of sf_count_t type. */ -//#define SF_COUNT_MAX (9223372036854775807i64) - -/* The size of `double', as computed by sizeof. */ -#define SIZEOF_DOUBLE (8) - -/* The size of `float', as computed by sizeof. */ -#define SIZEOF_FLOAT (4) - -/* The size of `int', as computed by sizeof. */ -#define SIZEOF_INT (4) - -/* The size of `int64_t', as computed by sizeof. */ -#define SIZEOF_INT64_T (8) - -/* The size of `loff_t', as computed by sizeof. */ -#undef SIZEOF_LOFF_T - -/* The size of `long', as computed by sizeof. */ -#define SIZEOF_LONG (4) - -/* The size of `long long', as computed by sizeof. */ -#define SIZEOF_LONG_LONG (8) - -/* The size of `off64_t', as computed by sizeof. */ -#undef SIZEOF_OFF64_T - -/* The size of `off_t', as computed by sizeof. */ -#define SIZEOF_OFF_T (4) - -/* Set to sizeof (long) if unknown. */ -#define SIZEOF_SF_COUNT_T (8) - -/* The size of `short', as computed by sizeof. */ -#define SIZEOF_SHORT (2) - -/* The size of `size_t', as computed by sizeof. */ -#define SIZEOF_SIZE_T (4) - -/* The size of `ssize_t', as computed by sizeof. */ -#undef SIZEOF_SSIZE_T - -/* The size of `void*', as computed by sizeof. */ -#define SIZEOF_VOIDP (4) - -/* The size of `wchar_t', as computed by sizeof. */ -#define SIZEOF_WCHAR_T (2) - -/* Define to 1 if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Set to long if unknown. */ -#define TYPEOF_SF_COUNT_T __int64 - -/* Set to 1 to use the native windows API */ -#define USE_WINDOWS_API 1 - -/* Version number of package */ -#define VERSION "1.0.20" - -/* Set to 1 if windows DLL is being built. */ -#define WIN32_TARGET_DLL 1 - -/* Target processor is big endian. */ -#undef WORDS_BIGENDIAN - -/* Number of bits in a file offset, on hosts where this is settable. */ -#undef _FILE_OFFSET_BITS - -/* Define to make fseeko etc. visible, on some hosts. */ -#undef _LARGEFILE_SOURCE - -/* Define for large files, on AIX-style hosts. */ -#undef _LARGE_FILES diff --git a/msvc9/SndFile/inttypes.h b/msvc9/SndFile/inttypes.h deleted file mode 100644 index 15b87643..00000000 --- a/msvc9/SndFile/inttypes.h +++ /dev/null @@ -1,18 +0,0 @@ -/* libSoX libpng stub file for MSVC9: (c) 2009 SoX contributors - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#define PRId64 "lld" diff --git a/msvc9/SndFile/sndfile.h b/msvc9/SndFile/sndfile.h deleted file mode 100644 index 641d7526..00000000 --- a/msvc9/SndFile/sndfile.h +++ /dev/null @@ -1,19 +0,0 @@ -/* libSoX libsndfile wrapper for MSVC9: (c) 2009 SoX contributors - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -typedef __int64 __int64_t; -#include "../../libsndfile/src/sndfile.h.in" diff --git a/msvc9/SndFile/sys/time.h b/msvc9/SndFile/sys/time.h deleted file mode 100644 index 9511546f..00000000 --- a/msvc9/SndFile/sys/time.h +++ /dev/null @@ -1,18 +0,0 @@ -/* libSoX libsndfile stub file for MSVC9: (c) 2009 SoX contributors - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -/* Nothing here. */ diff --git a/msvc9/SoX.vcproj b/msvc9/SoX.vcproj deleted file mode 100644 index 26815f15..00000000 --- a/msvc9/SoX.vcproj +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/msvc9/Sox.sln b/msvc9/Sox.sln deleted file mode 100644 index b1ee855e..00000000 --- a/msvc9/Sox.sln +++ /dev/null @@ -1,139 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibSoX", "LibSoX.vcproj", "{F17BE535-C7E8-4930-A6FD-32498D73A533}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SoX", "SoX.vcproj", "{AC136601-504C-4E1A-9DC8-0CC493AA0983}" - ProjectSection(ProjectDependencies) = postProject - {38203D05-AF71-4FF2-A183-A7D9CB8D2AE0} = {38203D05-AF71-4FF2-A183-A7D9CB8D2AE0} - {C588FF17-FB2F-48D9-BB99-40B6D52B9B85} = {C588FF17-FB2F-48D9-BB99-40B6D52B9B85} - {F17BE535-C7E8-4930-A6FD-32498D73A533} = {F17BE535-C7E8-4930-A6FD-32498D73A533} - {7461CC57-B1CB-4766-B357-F51587449474} = {7461CC57-B1CB-4766-B357-F51587449474} - {BEE9F57C-384E-4C99-87EB-629BF45C8A89} = {BEE9F57C-384E-4C99-87EB-629BF45C8A89} - {60902B83-8B26-4DBD-B635-4CECF5F4744C} = {60902B83-8B26-4DBD-B635-4CECF5F4744C} - {342BDA83-C83F-4168-8425-E1DF72F47018} = {342BDA83-C83F-4168-8425-E1DF72F47018} - {46E7AC9D-3E96-4B34-B493-501BC277D6F9} = {46E7AC9D-3E96-4B34-B493-501BC277D6F9} - {C5C229AC-316D-42CB-9CA3-329619618972} = {C5C229AC-316D-42CB-9CA3-329619618972} - {40EA92B6-38AA-4E67-894D-92C37C946402} = {40EA92B6-38AA-4E67-894D-92C37C946402} - {7016D4C2-A0AB-4BFD-9AA1-4ECDCCBE6301} = {7016D4C2-A0AB-4BFD-9AA1-4ECDCCBE6301} - {524A24CD-0973-4733-8EB9-F419DC6F9997} = {524A24CD-0973-4733-8EB9-F419DC6F9997} - {90D19FCF-8560-4396-A250-DDF74D1B0E36} = {90D19FCF-8560-4396-A250-DDF74D1B0E36} - {D2572DE1-610E-46A4-8DD2-8A693347D76A} = {D2572DE1-610E-46A4-8DD2-8A693347D76A} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibFlac", "LibFlac.vcproj", "{38203D05-AF71-4FF2-A183-A7D9CB8D2AE0}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibGsm", "LibGsm.vcproj", "{BEE9F57C-384E-4C99-87EB-629BF45C8A89}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibLpc10", "LibLpc10.vcproj", "{C588FF17-FB2F-48D9-BB99-40B6D52B9B85}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibMad", "LibMad.vcproj", "{B7A8AD9A-0D07-4453-B2DE-FEABD9546263}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibMp3Lame", "LibMp3Lame.vcproj", "{4DFD6FD1-96F1-434A-AC69-01783B876354}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibOgg", "LibOgg.vcproj", "{C5C229AC-316D-42CB-9CA3-329619618972}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibPng", "LibPng.vcproj", "{46E7AC9D-3E96-4B34-B493-501BC277D6F9}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibWavPack", "LibWavPack.vcproj", "{7461CC57-B1CB-4766-B357-F51587449474}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibVorbis", "LibVorbis.vcproj", "{524A24CD-0973-4733-8EB9-F419DC6F9997}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibZLib", "LibZLib.vcproj", "{90D19FCF-8560-4396-A250-DDF74D1B0E36}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibId3Tag", "LibId3Tag.vcproj", "{40EA92B6-38AA-4E67-894D-92C37C946402}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibSndFileG72x", "LibSndFileG72x.vcproj", "{7016D4C2-A0AB-4BFD-9AA1-4ECDCCBE6301}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibSndFileGSM610", "LibSndFileGSM610.vcproj", "{D2572DE1-610E-46A4-8DD2-8A693347D76A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibSndFile", "LibSndFile.vcproj", "{342BDA83-C83F-4168-8425-E1DF72F47018}" - ProjectSection(ProjectDependencies) = postProject - {38203D05-AF71-4FF2-A183-A7D9CB8D2AE0} = {38203D05-AF71-4FF2-A183-A7D9CB8D2AE0} - {C5C229AC-316D-42CB-9CA3-329619618972} = {C5C229AC-316D-42CB-9CA3-329619618972} - {7016D4C2-A0AB-4BFD-9AA1-4ECDCCBE6301} = {7016D4C2-A0AB-4BFD-9AA1-4ECDCCBE6301} - {524A24CD-0973-4733-8EB9-F419DC6F9997} = {524A24CD-0973-4733-8EB9-F419DC6F9997} - {D2572DE1-610E-46A4-8DD2-8A693347D76A} = {D2572DE1-610E-46A4-8DD2-8A693347D76A} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibSpeex", "LibSpeex.vcproj", "{60902B83-8B26-4DBD-B635-4CECF5F4744C}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {F17BE535-C7E8-4930-A6FD-32498D73A533}.Debug|Win32.ActiveCfg = Debug|Win32 - {F17BE535-C7E8-4930-A6FD-32498D73A533}.Debug|Win32.Build.0 = Debug|Win32 - {F17BE535-C7E8-4930-A6FD-32498D73A533}.Release|Win32.ActiveCfg = Release|Win32 - {F17BE535-C7E8-4930-A6FD-32498D73A533}.Release|Win32.Build.0 = Release|Win32 - {AC136601-504C-4E1A-9DC8-0CC493AA0983}.Debug|Win32.ActiveCfg = Debug|Win32 - {AC136601-504C-4E1A-9DC8-0CC493AA0983}.Debug|Win32.Build.0 = Debug|Win32 - {AC136601-504C-4E1A-9DC8-0CC493AA0983}.Release|Win32.ActiveCfg = Release|Win32 - {AC136601-504C-4E1A-9DC8-0CC493AA0983}.Release|Win32.Build.0 = Release|Win32 - {38203D05-AF71-4FF2-A183-A7D9CB8D2AE0}.Debug|Win32.ActiveCfg = Debug|Win32 - {38203D05-AF71-4FF2-A183-A7D9CB8D2AE0}.Debug|Win32.Build.0 = Debug|Win32 - {38203D05-AF71-4FF2-A183-A7D9CB8D2AE0}.Release|Win32.ActiveCfg = Release|Win32 - {38203D05-AF71-4FF2-A183-A7D9CB8D2AE0}.Release|Win32.Build.0 = Release|Win32 - {BEE9F57C-384E-4C99-87EB-629BF45C8A89}.Debug|Win32.ActiveCfg = Debug|Win32 - {BEE9F57C-384E-4C99-87EB-629BF45C8A89}.Debug|Win32.Build.0 = Debug|Win32 - {BEE9F57C-384E-4C99-87EB-629BF45C8A89}.Release|Win32.ActiveCfg = Release|Win32 - {BEE9F57C-384E-4C99-87EB-629BF45C8A89}.Release|Win32.Build.0 = Release|Win32 - {C588FF17-FB2F-48D9-BB99-40B6D52B9B85}.Debug|Win32.ActiveCfg = Debug|Win32 - {C588FF17-FB2F-48D9-BB99-40B6D52B9B85}.Debug|Win32.Build.0 = Debug|Win32 - {C588FF17-FB2F-48D9-BB99-40B6D52B9B85}.Release|Win32.ActiveCfg = Release|Win32 - {C588FF17-FB2F-48D9-BB99-40B6D52B9B85}.Release|Win32.Build.0 = Release|Win32 - {B7A8AD9A-0D07-4453-B2DE-FEABD9546263}.Debug|Win32.ActiveCfg = Debug|Win32 - {B7A8AD9A-0D07-4453-B2DE-FEABD9546263}.Debug|Win32.Build.0 = Debug|Win32 - {B7A8AD9A-0D07-4453-B2DE-FEABD9546263}.Release|Win32.ActiveCfg = Release|Win32 - {B7A8AD9A-0D07-4453-B2DE-FEABD9546263}.Release|Win32.Build.0 = Release|Win32 - {4DFD6FD1-96F1-434A-AC69-01783B876354}.Debug|Win32.ActiveCfg = Debug|Win32 - {4DFD6FD1-96F1-434A-AC69-01783B876354}.Debug|Win32.Build.0 = Debug|Win32 - {4DFD6FD1-96F1-434A-AC69-01783B876354}.Release|Win32.ActiveCfg = Release|Win32 - {4DFD6FD1-96F1-434A-AC69-01783B876354}.Release|Win32.Build.0 = Release|Win32 - {C5C229AC-316D-42CB-9CA3-329619618972}.Debug|Win32.ActiveCfg = Debug|Win32 - {C5C229AC-316D-42CB-9CA3-329619618972}.Debug|Win32.Build.0 = Debug|Win32 - {C5C229AC-316D-42CB-9CA3-329619618972}.Release|Win32.ActiveCfg = Release|Win32 - {C5C229AC-316D-42CB-9CA3-329619618972}.Release|Win32.Build.0 = Release|Win32 - {46E7AC9D-3E96-4B34-B493-501BC277D6F9}.Debug|Win32.ActiveCfg = Debug|Win32 - {46E7AC9D-3E96-4B34-B493-501BC277D6F9}.Debug|Win32.Build.0 = Debug|Win32 - {46E7AC9D-3E96-4B34-B493-501BC277D6F9}.Release|Win32.ActiveCfg = Release|Win32 - {46E7AC9D-3E96-4B34-B493-501BC277D6F9}.Release|Win32.Build.0 = Release|Win32 - {7461CC57-B1CB-4766-B357-F51587449474}.Debug|Win32.ActiveCfg = Debug|Win32 - {7461CC57-B1CB-4766-B357-F51587449474}.Debug|Win32.Build.0 = Debug|Win32 - {7461CC57-B1CB-4766-B357-F51587449474}.Release|Win32.ActiveCfg = Release|Win32 - {7461CC57-B1CB-4766-B357-F51587449474}.Release|Win32.Build.0 = Release|Win32 - {524A24CD-0973-4733-8EB9-F419DC6F9997}.Debug|Win32.ActiveCfg = Debug|Win32 - {524A24CD-0973-4733-8EB9-F419DC6F9997}.Debug|Win32.Build.0 = Debug|Win32 - {524A24CD-0973-4733-8EB9-F419DC6F9997}.Release|Win32.ActiveCfg = Release|Win32 - {524A24CD-0973-4733-8EB9-F419DC6F9997}.Release|Win32.Build.0 = Release|Win32 - {90D19FCF-8560-4396-A250-DDF74D1B0E36}.Debug|Win32.ActiveCfg = Debug|Win32 - {90D19FCF-8560-4396-A250-DDF74D1B0E36}.Debug|Win32.Build.0 = Debug|Win32 - {90D19FCF-8560-4396-A250-DDF74D1B0E36}.Release|Win32.ActiveCfg = Release|Win32 - {90D19FCF-8560-4396-A250-DDF74D1B0E36}.Release|Win32.Build.0 = Release|Win32 - {40EA92B6-38AA-4E67-894D-92C37C946402}.Debug|Win32.ActiveCfg = Debug|Win32 - {40EA92B6-38AA-4E67-894D-92C37C946402}.Debug|Win32.Build.0 = Debug|Win32 - {40EA92B6-38AA-4E67-894D-92C37C946402}.Release|Win32.ActiveCfg = Release|Win32 - {40EA92B6-38AA-4E67-894D-92C37C946402}.Release|Win32.Build.0 = Release|Win32 - {7016D4C2-A0AB-4BFD-9AA1-4ECDCCBE6301}.Debug|Win32.ActiveCfg = Debug|Win32 - {7016D4C2-A0AB-4BFD-9AA1-4ECDCCBE6301}.Debug|Win32.Build.0 = Debug|Win32 - {7016D4C2-A0AB-4BFD-9AA1-4ECDCCBE6301}.Release|Win32.ActiveCfg = Release|Win32 - {7016D4C2-A0AB-4BFD-9AA1-4ECDCCBE6301}.Release|Win32.Build.0 = Release|Win32 - {D2572DE1-610E-46A4-8DD2-8A693347D76A}.Debug|Win32.ActiveCfg = Debug|Win32 - {D2572DE1-610E-46A4-8DD2-8A693347D76A}.Debug|Win32.Build.0 = Debug|Win32 - {D2572DE1-610E-46A4-8DD2-8A693347D76A}.Release|Win32.ActiveCfg = Release|Win32 - {D2572DE1-610E-46A4-8DD2-8A693347D76A}.Release|Win32.Build.0 = Release|Win32 - {342BDA83-C83F-4168-8425-E1DF72F47018}.Debug|Win32.ActiveCfg = Debug|Win32 - {342BDA83-C83F-4168-8425-E1DF72F47018}.Debug|Win32.Build.0 = Debug|Win32 - {342BDA83-C83F-4168-8425-E1DF72F47018}.Release|Win32.ActiveCfg = Release|Win32 - {342BDA83-C83F-4168-8425-E1DF72F47018}.Release|Win32.Build.0 = Release|Win32 - {60902B83-8B26-4DBD-B635-4CECF5F4744C}.Debug|Win32.ActiveCfg = Debug|Win32 - {60902B83-8B26-4DBD-B635-4CECF5F4744C}.Debug|Win32.Build.0 = Debug|Win32 - {60902B83-8B26-4DBD-B635-4CECF5F4744C}.Release|Win32.ActiveCfg = Release|Win32 - {60902B83-8B26-4DBD-B635-4CECF5F4744C}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/msvc9/Sox/soxconfig.h b/msvc9/Sox/soxconfig.h deleted file mode 100644 index 5d60f554..00000000 --- a/msvc9/Sox/soxconfig.h +++ /dev/null @@ -1,97 +0,0 @@ -/* libSoX config file for MSVC9: (c) 2009 SoX contributors - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation; either version 2.1 of the License, or (at - * your option) any later version. - * - * This library is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - * General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -/* Used only by sox.c: */ -#define MORE_INTERACTIVE - -#define PACKAGE_EXTRA "msvc" - -/* Special behavior defined by win32-ltdl: "./" is replaced with the name of the - directory containing sox.exe. */ -#define PKGLIBDIR "./soxlib" - -#define HAVE_AMRNB 1 -#define STATIC_AMRNB 1 -#define DL_AMRNB 1 - -#define HAVE_AMRWB 1 -#define STATIC_AMRWB 1 -#define DL_AMRWB 1 - -#define HAVE_FLAC 1 -#define STATIC_FLAC 1 -#define FLAC__NO_DLL - -#define HAVE_GSM 1 -#define STATIC_GSM 1 - -#define HAVE_ID3TAG 1 - -#define DL_LAME 1 - -#define HAVE_LPC10 1 -#define STATIC_LPC10 1 - -#define HAVE_MAD_H 1 -#define DL_MAD 1 - -#define HAVE_MP3 1 -#define STATIC_MP3 1 - -#define HAVE_OGG_VORBIS 1 -#define STATIC_OGG_VORBIS 1 - -#define HAVE_PNG 1 - -#define HAVE_SNDFILE 1 -#define HAVE_SNDFILE_1_0_12 1 -#define HAVE_SNDFILE_1_0_18 1 -#define HAVE_SNDFILE_H 1 -#define HAVE_SFC_SET_SCALE_FLOAT_INT_READ 1 -#define HAVE_SFC_SET_SCALE_INT_FLOAT_WRITE 1 -#define STATIC_SNDFILE 1 -#define DL_SNDFILE 1 - -#define HAVE_SPEEXDSP 1 - -#define HAVE_WAVEAUDIO 1 -#define STATIC_WAVEAUDIO 1 - -#define HAVE_WAVPACK 1 -#define HAVE_WAVPACK_H 1 -#define STATIC_WAVPACK 1 - -#define HAVE_CONIO_H 1 -#define HAVE__FSEEKI64 1 -#define HAVE_FCNTL_H 1 -#define HAVE_IO_H 1 -#define HAVE_MEMORY_H 1 -#define HAVE_POPEN 1 -#define HAVE_SPEEXDSP 1 -#define HAVE_STDLIB_H 1 -#define HAVE_STRDUP 1 -#define HAVE_STRING_H 1 -#define HAVE_SYS_STAT_H 1 -#define HAVE_SYS_TIMEB_H 1 -#define HAVE_SYS_TYPES_H 1 -#define HAVE_VSNPRINTF 1 -#define HAVE_WIN32_GLOB_H 1 -#define HAVE_WIN32_LTDL_H 1 - -#ifndef __cplusplus -#define inline __inline -#endif -- 2.11.4.GIT