seal 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.yardopts +1 -0
- data/LICENSE +13 -0
- data/README.md +265 -0
- data/ext/seal/extconf.rb +45 -0
- data/include/al/al.h +724 -0
- data/include/al/alc.h +277 -0
- data/include/al/efx-presets.h +402 -0
- data/include/al/efx.h +758 -0
- data/include/mpg123/mpg123.h +1034 -0
- data/include/ogg/config_types.h +25 -0
- data/include/ogg/ogg.h +210 -0
- data/include/ogg/os_types.h +147 -0
- data/include/seal.h +23 -0
- data/include/seal/buf.h +143 -0
- data/include/seal/core.h +95 -0
- data/include/seal/efs.h +112 -0
- data/include/seal/err.h +93 -0
- data/include/seal/fmt.h +58 -0
- data/include/seal/listener.h +103 -0
- data/include/seal/raw.h +86 -0
- data/include/seal/rvb.h +520 -0
- data/include/seal/src.h +413 -0
- data/include/seal/stream.h +81 -0
- data/include/vorbis/codec.h +243 -0
- data/include/vorbis/vorbisfile.h +206 -0
- data/mpg123/AUTHORS +150 -0
- data/mpg123/COPYING +773 -0
- data/mpg123/ChangeLog +3 -0
- data/mpg123/INSTALL +111 -0
- data/mpg123/Makefile.am +99 -0
- data/mpg123/Makefile.in +1043 -0
- data/mpg123/NEWS +1200 -0
- data/mpg123/NEWS.libmpg123 +133 -0
- data/mpg123/README +203 -0
- data/mpg123/TODO +38 -0
- data/mpg123/aclocal.m4 +1168 -0
- data/mpg123/build/config.guess +1530 -0
- data/mpg123/build/config.sub +1782 -0
- data/mpg123/build/depcomp +707 -0
- data/mpg123/build/install-sh +527 -0
- data/mpg123/build/ltmain.sh +9655 -0
- data/mpg123/build/missing +330 -0
- data/mpg123/configure +20267 -0
- data/mpg123/configure.ac +2178 -0
- data/mpg123/doc/ACCURACY +2 -0
- data/mpg123/doc/BENCHMARKING +110 -0
- data/mpg123/doc/BUGS +3 -0
- data/mpg123/doc/CONTACT +17 -0
- data/mpg123/doc/LICENSE +22 -0
- data/mpg123/doc/Makefile.am +32 -0
- data/mpg123/doc/Makefile.in +490 -0
- data/mpg123/doc/PATENTS +39 -0
- data/mpg123/doc/README.3DNOW +56 -0
- data/mpg123/doc/README.gain +171 -0
- data/mpg123/doc/README.remote +218 -0
- data/mpg123/doc/ROAD_TO_LGPL +270 -0
- data/mpg123/doc/THANKS +13 -0
- data/mpg123/doc/TODO +63 -0
- data/mpg123/doc/doxy_examples.c +21 -0
- data/mpg123/doc/doxygen.conf +41 -0
- data/mpg123/doc/doxyhead.xhtml +12 -0
- data/mpg123/doc/examples/dump_seekindex.c +41 -0
- data/mpg123/doc/examples/extract_frames.c +92 -0
- data/mpg123/doc/examples/feedseek.c +238 -0
- data/mpg123/doc/examples/id3dump.c +178 -0
- data/mpg123/doc/examples/mpg123_to_wav.c +118 -0
- data/mpg123/doc/examples/mpglib.c +92 -0
- data/mpg123/doc/examples/scan.c +47 -0
- data/mpg123/doc/libmpg123_speed.txt +84 -0
- data/mpg123/equalize.dat +37 -0
- data/mpg123/libmpg123.pc.in +11 -0
- data/mpg123/m4/addrconfig.m4 +34 -0
- data/mpg123/m4/libtool.m4 +7982 -0
- data/mpg123/m4/ltoptions.m4 +384 -0
- data/mpg123/m4/ltsugar.m4 +123 -0
- data/mpg123/m4/ltversion.m4 +23 -0
- data/mpg123/m4/lt~obsolete.m4 +98 -0
- data/mpg123/makedll.sh +19 -0
- data/mpg123/man1/mpg123.1 +512 -0
- data/mpg123/mpg123.spec +68 -0
- data/mpg123/mpg123.spec.in +68 -0
- data/mpg123/ports/MSVC++/2005/libmpg123/libmpg123.vcproj +741 -0
- data/mpg123/ports/MSVC++/2008/dump_seekindex/dump_seekindex.vcproj +194 -0
- data/mpg123/ports/MSVC++/2008/feedseek/feedseek.vcproj +195 -0
- data/mpg123/ports/MSVC++/2008/libmpg123/libmpg123.vcproj +1357 -0
- data/mpg123/ports/MSVC++/2008/mpg123.sln +44 -0
- data/mpg123/ports/MSVC++/2008/mpglib/mpglib.vcproj +191 -0
- data/mpg123/ports/MSVC++/2008/scan/scan.vcproj +195 -0
- data/mpg123/ports/MSVC++/2008clr/2008clr.sln +81 -0
- data/mpg123/ports/MSVC++/2008clr/examples/ReplaceReaderclr/Program.cs +435 -0
- data/mpg123/ports/MSVC++/2008clr/examples/ReplaceReaderclr/Properties/AssemblyInfo.cs +36 -0
- data/mpg123/ports/MSVC++/2008clr/examples/ReplaceReaderclr/ReplaceReaderclr.csproj +72 -0
- data/mpg123/ports/MSVC++/2008clr/examples/feedseekclr/Program.cs +331 -0
- data/mpg123/ports/MSVC++/2008clr/examples/feedseekclr/Properties/AssemblyInfo.cs +36 -0
- data/mpg123/ports/MSVC++/2008clr/examples/feedseekclr/feedseekclr.csproj +71 -0
- data/mpg123/ports/MSVC++/2008clr/examples/scanclr/Program.cs +79 -0
- data/mpg123/ports/MSVC++/2008clr/examples/scanclr/Properties/AssemblyInfo.cs +36 -0
- data/mpg123/ports/MSVC++/2008clr/examples/scanclr/scanclr.csproj +70 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/AssemblyInfo.cpp +76 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/ReadMe.txt +165 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/advanced.cpp +91 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/advanced.h +130 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/dllmain.cpp +19 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/enum.h +218 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/error.cpp +48 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/error.h +134 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v1.cpp +92 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v1.h +132 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v2.cpp +138 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v2.h +152 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.cpp +896 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.h +953 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.rc +102 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.vcproj +328 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/resource.h +14 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/stdafx.cpp +8 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/stdafx.h +38 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/string.cpp +166 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/string.h +265 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/targetver.h +24 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/text.cpp +67 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/text.h +111 -0
- data/mpg123/ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj +90 -0
- data/mpg123/ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj.filters +6 -0
- data/mpg123/ports/MSVC++/2010/feedseek/feedseek.vcxproj +95 -0
- data/mpg123/ports/MSVC++/2010/feedseek/feedseek.vcxproj.filters +6 -0
- data/mpg123/ports/MSVC++/2010/libmpg123/libmpg123.vcxproj +960 -0
- data/mpg123/ports/MSVC++/2010/libmpg123/libmpg123.vcxproj.user +3 -0
- data/mpg123/ports/MSVC++/2010/libmpg123/yasm.exe +0 -0
- data/mpg123/ports/MSVC++/2010/mpg123.sln +38 -0
- data/mpg123/ports/MSVC++/2010/scan/scan.vcxproj +93 -0
- data/mpg123/ports/MSVC++/2010/scan/scan.vcxproj.filters +6 -0
- data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/CORE/CORE_FileIn.H +15 -0
- data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/CORE/SourceFilter_MP3.H +139 -0
- data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/IIEP_Def.H +206 -0
- data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/IIEP_FileIn.H +167 -0
- data/mpg123/ports/MSVC++/CMP3Stream/README +4 -0
- data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/CORE_FileIn.CPP +462 -0
- data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/CORE_Log.CPP +122 -0
- data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/CORE_Mutex.CPP +35 -0
- data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/SourceFilter_MP3Stream.CPP +586 -0
- data/mpg123/ports/MSVC++/CMP3Stream/libMPG123/PLACE_LIBMPG123_SOURCES_HERE +0 -0
- data/mpg123/ports/MSVC++/CMP3Stream/libMPG123/libMPG123.vcproj +245 -0
- data/mpg123/ports/MSVC++/config.h +35 -0
- data/mpg123/ports/MSVC++/examples/feedseek.c +240 -0
- data/mpg123/ports/MSVC++/examples/scan.c +47 -0
- data/mpg123/ports/MSVC++/mpg123.h +46 -0
- data/mpg123/ports/MSVC++/msvc.c +59 -0
- data/mpg123/ports/README +26 -0
- data/mpg123/ports/Sony_PSP/Makefile.psp +38 -0
- data/mpg123/ports/Sony_PSP/README +11 -0
- data/mpg123/ports/Sony_PSP/config.h +368 -0
- data/mpg123/ports/Sony_PSP/readers.c.patch +2 -0
- data/mpg123/ports/Xcode/config.h +197 -0
- data/mpg123/ports/Xcode/mpg123.h +17 -0
- data/mpg123/ports/Xcode/mpg123.xcodeproj/project.pbxproj +670 -0
- data/mpg123/ports/mpg123_.pas +478 -0
- data/mpg123/scripts/benchmark-cpu.pl +56 -0
- data/mpg123/scripts/tag_lyrics.py +76 -0
- data/mpg123/src/Makefile.am +186 -0
- data/mpg123/src/Makefile.in +1097 -0
- data/mpg123/src/audio.c +725 -0
- data/mpg123/src/audio.h +106 -0
- data/mpg123/src/buffer.c +312 -0
- data/mpg123/src/buffer.h +45 -0
- data/mpg123/src/common.c +240 -0
- data/mpg123/src/common.h +29 -0
- data/mpg123/src/config.h.in +436 -0
- data/mpg123/src/control_generic.c +809 -0
- data/mpg123/src/equalizer.c +48 -0
- data/mpg123/src/genre.c +271 -0
- data/mpg123/src/genre.h +15 -0
- data/mpg123/src/getlopt.c +148 -0
- data/mpg123/src/getlopt.h +77 -0
- data/mpg123/src/httpget.c +700 -0
- data/mpg123/src/httpget.h +66 -0
- data/mpg123/src/legacy_module.c +74 -0
- data/mpg123/src/libmpg123/Makefile.am +141 -0
- data/mpg123/src/libmpg123/Makefile.in +919 -0
- data/mpg123/src/libmpg123/compat.c +138 -0
- data/mpg123/src/libmpg123/compat.h +178 -0
- data/mpg123/src/libmpg123/dct36_3dnow.S +505 -0
- data/mpg123/src/libmpg123/dct36_3dnowext.S +512 -0
- data/mpg123/src/libmpg123/dct64.c +174 -0
- data/mpg123/src/libmpg123/dct64_3dnow.S +712 -0
- data/mpg123/src/libmpg123/dct64_3dnowext.S +714 -0
- data/mpg123/src/libmpg123/dct64_altivec.c +315 -0
- data/mpg123/src/libmpg123/dct64_i386.c +336 -0
- data/mpg123/src/libmpg123/dct64_i486.c +342 -0
- data/mpg123/src/libmpg123/dct64_mmx.S +811 -0
- data/mpg123/src/libmpg123/dct64_neon.S +297 -0
- data/mpg123/src/libmpg123/dct64_neon_float.S +270 -0
- data/mpg123/src/libmpg123/dct64_sse.S +454 -0
- data/mpg123/src/libmpg123/dct64_sse_float.S +401 -0
- data/mpg123/src/libmpg123/dct64_x86_64.S +464 -0
- data/mpg123/src/libmpg123/dct64_x86_64_float.S +426 -0
- data/mpg123/src/libmpg123/debug.h +171 -0
- data/mpg123/src/libmpg123/decode.h +268 -0
- data/mpg123/src/libmpg123/dither.c +119 -0
- data/mpg123/src/libmpg123/dither.h +23 -0
- data/mpg123/src/libmpg123/equalizer.c +17 -0
- data/mpg123/src/libmpg123/equalizer_3dnow.S +70 -0
- data/mpg123/src/libmpg123/feature.c +106 -0
- data/mpg123/src/libmpg123/format.c +521 -0
- data/mpg123/src/libmpg123/frame.c +1046 -0
- data/mpg123/src/libmpg123/frame.h +410 -0
- data/mpg123/src/libmpg123/gapless.h +119 -0
- data/mpg123/src/libmpg123/getbits.h +100 -0
- data/mpg123/src/libmpg123/getcpuflags.S +91 -0
- data/mpg123/src/libmpg123/getcpuflags.h +47 -0
- data/mpg123/src/libmpg123/huffman.h +340 -0
- data/mpg123/src/libmpg123/icy.c +32 -0
- data/mpg123/src/libmpg123/icy.h +38 -0
- data/mpg123/src/libmpg123/icy2utf8.c +438 -0
- data/mpg123/src/libmpg123/icy2utf8.h +10 -0
- data/mpg123/src/libmpg123/id3.c +999 -0
- data/mpg123/src/libmpg123/id3.h +43 -0
- data/mpg123/src/libmpg123/index.c +134 -0
- data/mpg123/src/libmpg123/index.h +59 -0
- data/mpg123/src/libmpg123/intsym.h +256 -0
- data/mpg123/src/libmpg123/l12_integer_tables.h +278 -0
- data/mpg123/src/libmpg123/l2tables.h +164 -0
- data/mpg123/src/libmpg123/l3_integer_tables.h +1002 -0
- data/mpg123/src/libmpg123/layer1.c +155 -0
- data/mpg123/src/libmpg123/layer2.c +371 -0
- data/mpg123/src/libmpg123/layer3.c +2053 -0
- data/mpg123/src/libmpg123/lfs_alias.c +252 -0
- data/mpg123/src/libmpg123/lfs_wrap.c +751 -0
- data/mpg123/src/libmpg123/libmpg123.c +1607 -0
- data/mpg123/src/libmpg123/mangle.h +74 -0
- data/mpg123/src/libmpg123/mpeghead.h +87 -0
- data/mpg123/src/libmpg123/mpg123.h.in +1075 -0
- data/mpg123/src/libmpg123/mpg123lib_intern.h +338 -0
- data/mpg123/src/libmpg123/ntom.c +148 -0
- data/mpg123/src/libmpg123/optimize.c +964 -0
- data/mpg123/src/libmpg123/optimize.h +219 -0
- data/mpg123/src/libmpg123/parse.c +1179 -0
- data/mpg123/src/libmpg123/parse.h +25 -0
- data/mpg123/src/libmpg123/reader.h +137 -0
- data/mpg123/src/libmpg123/readers.c +1235 -0
- data/mpg123/src/libmpg123/sample.h +152 -0
- data/mpg123/src/libmpg123/stringbuf.c +163 -0
- data/mpg123/src/libmpg123/synth.c +816 -0
- data/mpg123/src/libmpg123/synth.h +196 -0
- data/mpg123/src/libmpg123/synth_3dnow.S +318 -0
- data/mpg123/src/libmpg123/synth_3dnowext.S +6 -0
- data/mpg123/src/libmpg123/synth_8bit.c +142 -0
- data/mpg123/src/libmpg123/synth_8bit.h +86 -0
- data/mpg123/src/libmpg123/synth_altivec.c +1057 -0
- data/mpg123/src/libmpg123/synth_arm.S +271 -0
- data/mpg123/src/libmpg123/synth_arm_accurate.S +287 -0
- data/mpg123/src/libmpg123/synth_i486.c +252 -0
- data/mpg123/src/libmpg123/synth_i586.S +336 -0
- data/mpg123/src/libmpg123/synth_i586_dither.S +375 -0
- data/mpg123/src/libmpg123/synth_mmx.S +125 -0
- data/mpg123/src/libmpg123/synth_mono.h +64 -0
- data/mpg123/src/libmpg123/synth_neon.S +123 -0
- data/mpg123/src/libmpg123/synth_neon_accurate.S +173 -0
- data/mpg123/src/libmpg123/synth_neon_float.S +149 -0
- data/mpg123/src/libmpg123/synth_neon_s32.S +168 -0
- data/mpg123/src/libmpg123/synth_ntom.h +213 -0
- data/mpg123/src/libmpg123/synth_real.c +404 -0
- data/mpg123/src/libmpg123/synth_s32.c +411 -0
- data/mpg123/src/libmpg123/synth_sse.S +6 -0
- data/mpg123/src/libmpg123/synth_sse3d.h +246 -0
- data/mpg123/src/libmpg123/synth_sse_accurate.S +294 -0
- data/mpg123/src/libmpg123/synth_sse_float.S +241 -0
- data/mpg123/src/libmpg123/synth_sse_s32.S +306 -0
- data/mpg123/src/libmpg123/synth_stereo_neon.S +175 -0
- data/mpg123/src/libmpg123/synth_stereo_neon_accurate.S +262 -0
- data/mpg123/src/libmpg123/synth_stereo_neon_float.S +220 -0
- data/mpg123/src/libmpg123/synth_stereo_neon_s32.S +247 -0
- data/mpg123/src/libmpg123/synth_stereo_sse_accurate.S +508 -0
- data/mpg123/src/libmpg123/synth_stereo_sse_float.S +416 -0
- data/mpg123/src/libmpg123/synth_stereo_sse_s32.S +540 -0
- data/mpg123/src/libmpg123/synth_stereo_x86_64.S +335 -0
- data/mpg123/src/libmpg123/synth_stereo_x86_64_accurate.S +454 -0
- data/mpg123/src/libmpg123/synth_stereo_x86_64_float.S +396 -0
- data/mpg123/src/libmpg123/synth_stereo_x86_64_s32.S +473 -0
- data/mpg123/src/libmpg123/synth_x86_64.S +244 -0
- data/mpg123/src/libmpg123/synth_x86_64_accurate.S +301 -0
- data/mpg123/src/libmpg123/synth_x86_64_float.S +259 -0
- data/mpg123/src/libmpg123/synth_x86_64_s32.S +312 -0
- data/mpg123/src/libmpg123/synths.h +52 -0
- data/mpg123/src/libmpg123/tabinit.c +294 -0
- data/mpg123/src/libmpg123/tabinit_mmx.S +210 -0
- data/mpg123/src/libmpg123/testcpu.c +35 -0
- data/mpg123/src/libmpg123/true.h +14 -0
- data/mpg123/src/local.c +63 -0
- data/mpg123/src/local.h +21 -0
- data/mpg123/src/metaprint.c +373 -0
- data/mpg123/src/metaprint.h +17 -0
- data/mpg123/src/module.c +306 -0
- data/mpg123/src/module.h +48 -0
- data/mpg123/src/mpg123.c +1405 -0
- data/mpg123/src/mpg123app.h +171 -0
- data/mpg123/src/output/Makefile.am +213 -0
- data/mpg123/src/output/Makefile.in +1238 -0
- data/mpg123/src/output/aix.c +300 -0
- data/mpg123/src/output/alib.c +209 -0
- data/mpg123/src/output/alsa.c +297 -0
- data/mpg123/src/output/arts.c +117 -0
- data/mpg123/src/output/coreaudio.c +370 -0
- data/mpg123/src/output/dummy.c +78 -0
- data/mpg123/src/output/esd.c +167 -0
- data/mpg123/src/output/hp.c +184 -0
- data/mpg123/src/output/jack.c +450 -0
- data/mpg123/src/output/mint.c +197 -0
- data/mpg123/src/output/nas.c +335 -0
- data/mpg123/src/output/openal.c +197 -0
- data/mpg123/src/output/os2.c +665 -0
- data/mpg123/src/output/oss.c +319 -0
- data/mpg123/src/output/portaudio.c +255 -0
- data/mpg123/src/output/pulse.c +164 -0
- data/mpg123/src/output/sdl.c +206 -0
- data/mpg123/src/output/sgi.c +213 -0
- data/mpg123/src/output/sndio.c +161 -0
- data/mpg123/src/output/sun.c +281 -0
- data/mpg123/src/output/win32.c +229 -0
- data/mpg123/src/playlist.c +596 -0
- data/mpg123/src/playlist.h +52 -0
- data/mpg123/src/resolver.c +319 -0
- data/mpg123/src/resolver.h +25 -0
- data/mpg123/src/sfifo.c +146 -0
- data/mpg123/src/sfifo.h +95 -0
- data/mpg123/src/streamdump.c +74 -0
- data/mpg123/src/streamdump.h +20 -0
- data/mpg123/src/term.c +479 -0
- data/mpg123/src/term.h +81 -0
- data/mpg123/src/tests/noise.c +52 -0
- data/mpg123/src/tests/plain_id3.c +109 -0
- data/mpg123/src/tests/seek_accuracy.c +261 -0
- data/mpg123/src/tests/seek_whence.c +56 -0
- data/mpg123/src/tests/testtext.h +34 -0
- data/mpg123/src/tests/text.c +80 -0
- data/mpg123/src/wav.c +464 -0
- data/mpg123/src/wavhead.h +68 -0
- data/mpg123/src/win32_net.c +599 -0
- data/mpg123/src/win32_support.c +191 -0
- data/mpg123/src/win32_support.h +152 -0
- data/mpg123/src/xfermem.c +321 -0
- data/mpg123/src/xfermem.h +74 -0
- data/mpg123/windows-builds.sh +137 -0
- data/msvc/lib/OpenAL32.lib +0 -0
- data/spec/fixtures/heal.ogg +0 -0
- data/spec/fixtures/tone_up.wav +0 -0
- data/spec/seal/buffer_spec.rb +37 -0
- data/spec/seal/core_spec.rb +29 -0
- data/spec/seal/effect_slot_spec.rb +38 -0
- data/spec/seal/listener_spec.rb +33 -0
- data/spec/seal/reverb_spec.rb +51 -0
- data/spec/seal/source_spec.rb +370 -0
- data/spec/seal/stream_spec.rb +38 -0
- data/spec/spec_helper.rb +45 -0
- data/spec/support/attribute_examples.rb +75 -0
- data/spec/support/audio_object_with_format.rb +27 -0
- data/spec/support/movable_object.rb +22 -0
- data/src/libogg/bitwise.c +857 -0
- data/src/libogg/framing.c +2093 -0
- data/src/libvorbis/backends.h +144 -0
- data/src/libvorbis/bitrate.c +253 -0
- data/src/libvorbis/bitrate.h +59 -0
- data/src/libvorbis/block.c +1046 -0
- data/src/libvorbis/codebook.c +484 -0
- data/src/libvorbis/codebook.h +119 -0
- data/src/libvorbis/codec_internal.h +167 -0
- data/src/libvorbis/envelope.c +375 -0
- data/src/libvorbis/envelope.h +80 -0
- data/src/libvorbis/floor0.c +221 -0
- data/src/libvorbis/floor1.c +1100 -0
- data/src/libvorbis/highlevel.h +58 -0
- data/src/libvorbis/info.c +668 -0
- data/src/libvorbis/lookup.c +94 -0
- data/src/libvorbis/lookup.h +32 -0
- data/src/libvorbis/lookup_data.h +192 -0
- data/src/libvorbis/lpc.c +160 -0
- data/src/libvorbis/lpc.h +29 -0
- data/src/libvorbis/lsp.c +456 -0
- data/src/libvorbis/lsp.h +28 -0
- data/src/libvorbis/mapping0.c +816 -0
- data/src/libvorbis/masking.h +785 -0
- data/src/libvorbis/mdct.c +563 -0
- data/src/libvorbis/mdct.h +71 -0
- data/src/libvorbis/misc.h +57 -0
- data/src/libvorbis/os.h +186 -0
- data/src/libvorbis/psy.c +1206 -0
- data/src/libvorbis/psy.h +154 -0
- data/src/libvorbis/registry.c +45 -0
- data/src/libvorbis/registry.h +32 -0
- data/src/libvorbis/res0.c +889 -0
- data/src/libvorbis/scales.h +90 -0
- data/src/libvorbis/sharedbook.c +579 -0
- data/src/libvorbis/smallft.c +1255 -0
- data/src/libvorbis/smallft.h +34 -0
- data/src/libvorbis/synthesis.c +184 -0
- data/src/libvorbis/vorbisfile.c +2337 -0
- data/src/libvorbis/window.c +2135 -0
- data/src/libvorbis/window.h +26 -0
- data/src/rubyext.c +2329 -0
- data/src/seal/buf.c +124 -0
- data/src/seal/core.c +283 -0
- data/src/seal/efs.c +74 -0
- data/src/seal/err.c +118 -0
- data/src/seal/fmt.c +86 -0
- data/src/seal/listener.c +111 -0
- data/src/seal/mpg.c +174 -0
- data/src/seal/mpg.h +24 -0
- data/src/seal/ov.c +180 -0
- data/src/seal/ov.h +22 -0
- data/src/seal/raw.c +59 -0
- data/src/seal/reader.c +102 -0
- data/src/seal/reader.h +59 -0
- data/src/seal/rvb.c +368 -0
- data/src/seal/src.c +654 -0
- data/src/seal/stream.c +109 -0
- data/src/seal/threading.c +66 -0
- data/src/seal/threading.h +20 -0
- data/src/seal/wav.c +297 -0
- data/src/seal/wav.h +23 -0
- data/src/win32api.rb +29 -0
- metadata +563 -0
@@ -0,0 +1,707 @@
|
|
1
|
+
#! /bin/sh
|
2
|
+
# depcomp - compile a program generating dependencies as side-effects
|
3
|
+
|
4
|
+
scriptversion=2012-03-27.16; # UTC
|
5
|
+
|
6
|
+
# Copyright (C) 1999-2012 Free Software Foundation, Inc.
|
7
|
+
|
8
|
+
# This program is free software; you can redistribute it and/or modify
|
9
|
+
# it under the terms of the GNU General Public License as published by
|
10
|
+
# the Free Software Foundation; either version 2, or (at your option)
|
11
|
+
# any later version.
|
12
|
+
|
13
|
+
# This program is distributed in the hope that it will be useful,
|
14
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
+
# GNU General Public License for more details.
|
17
|
+
|
18
|
+
# You should have received a copy of the GNU General Public License
|
19
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
20
|
+
|
21
|
+
# As a special exception to the GNU General Public License, if you
|
22
|
+
# distribute this file as part of a program that contains a
|
23
|
+
# configuration script generated by Autoconf, you may include it under
|
24
|
+
# the same distribution terms that you use for the rest of that program.
|
25
|
+
|
26
|
+
# Originally written by Alexandre Oliva <oliva@dcc.unicamp.br>.
|
27
|
+
|
28
|
+
case $1 in
|
29
|
+
'')
|
30
|
+
echo "$0: No command. Try '$0 --help' for more information." 1>&2
|
31
|
+
exit 1;
|
32
|
+
;;
|
33
|
+
-h | --h*)
|
34
|
+
cat <<\EOF
|
35
|
+
Usage: depcomp [--help] [--version] PROGRAM [ARGS]
|
36
|
+
|
37
|
+
Run PROGRAMS ARGS to compile a file, generating dependencies
|
38
|
+
as side-effects.
|
39
|
+
|
40
|
+
Environment variables:
|
41
|
+
depmode Dependency tracking mode.
|
42
|
+
source Source file read by 'PROGRAMS ARGS'.
|
43
|
+
object Object file output by 'PROGRAMS ARGS'.
|
44
|
+
DEPDIR directory where to store dependencies.
|
45
|
+
depfile Dependency file to output.
|
46
|
+
tmpdepfile Temporary file to use when outputting dependencies.
|
47
|
+
libtool Whether libtool is used (yes/no).
|
48
|
+
|
49
|
+
Report bugs to <bug-automake@gnu.org>.
|
50
|
+
EOF
|
51
|
+
exit $?
|
52
|
+
;;
|
53
|
+
-v | --v*)
|
54
|
+
echo "depcomp $scriptversion"
|
55
|
+
exit $?
|
56
|
+
;;
|
57
|
+
esac
|
58
|
+
|
59
|
+
# A tabulation character.
|
60
|
+
tab=' '
|
61
|
+
# A newline character.
|
62
|
+
nl='
|
63
|
+
'
|
64
|
+
|
65
|
+
if test -z "$depmode" || test -z "$source" || test -z "$object"; then
|
66
|
+
echo "depcomp: Variables source, object and depmode must be set" 1>&2
|
67
|
+
exit 1
|
68
|
+
fi
|
69
|
+
|
70
|
+
# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po.
|
71
|
+
depfile=${depfile-`echo "$object" |
|
72
|
+
sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
|
73
|
+
tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
|
74
|
+
|
75
|
+
rm -f "$tmpdepfile"
|
76
|
+
|
77
|
+
# Some modes work just like other modes, but use different flags. We
|
78
|
+
# parameterize here, but still list the modes in the big case below,
|
79
|
+
# to make depend.m4 easier to write. Note that we *cannot* use a case
|
80
|
+
# here, because this file can only contain one case statement.
|
81
|
+
if test "$depmode" = hp; then
|
82
|
+
# HP compiler uses -M and no extra arg.
|
83
|
+
gccflag=-M
|
84
|
+
depmode=gcc
|
85
|
+
fi
|
86
|
+
|
87
|
+
if test "$depmode" = dashXmstdout; then
|
88
|
+
# This is just like dashmstdout with a different argument.
|
89
|
+
dashmflag=-xM
|
90
|
+
depmode=dashmstdout
|
91
|
+
fi
|
92
|
+
|
93
|
+
cygpath_u="cygpath -u -f -"
|
94
|
+
if test "$depmode" = msvcmsys; then
|
95
|
+
# This is just like msvisualcpp but w/o cygpath translation.
|
96
|
+
# Just convert the backslash-escaped backslashes to single forward
|
97
|
+
# slashes to satisfy depend.m4
|
98
|
+
cygpath_u='sed s,\\\\,/,g'
|
99
|
+
depmode=msvisualcpp
|
100
|
+
fi
|
101
|
+
|
102
|
+
if test "$depmode" = msvc7msys; then
|
103
|
+
# This is just like msvc7 but w/o cygpath translation.
|
104
|
+
# Just convert the backslash-escaped backslashes to single forward
|
105
|
+
# slashes to satisfy depend.m4
|
106
|
+
cygpath_u='sed s,\\\\,/,g'
|
107
|
+
depmode=msvc7
|
108
|
+
fi
|
109
|
+
|
110
|
+
if test "$depmode" = xlc; then
|
111
|
+
# IBM C/C++ Compilers xlc/xlC can output gcc-like dependency informations.
|
112
|
+
gccflag=-qmakedep=gcc,-MF
|
113
|
+
depmode=gcc
|
114
|
+
fi
|
115
|
+
|
116
|
+
case "$depmode" in
|
117
|
+
gcc3)
|
118
|
+
## gcc 3 implements dependency tracking that does exactly what
|
119
|
+
## we want. Yay! Note: for some reason libtool 1.4 doesn't like
|
120
|
+
## it if -MD -MP comes after the -MF stuff. Hmm.
|
121
|
+
## Unfortunately, FreeBSD c89 acceptance of flags depends upon
|
122
|
+
## the command line argument order; so add the flags where they
|
123
|
+
## appear in depend2.am. Note that the slowdown incurred here
|
124
|
+
## affects only configure: in makefiles, %FASTDEP% shortcuts this.
|
125
|
+
for arg
|
126
|
+
do
|
127
|
+
case $arg in
|
128
|
+
-c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
|
129
|
+
*) set fnord "$@" "$arg" ;;
|
130
|
+
esac
|
131
|
+
shift # fnord
|
132
|
+
shift # $arg
|
133
|
+
done
|
134
|
+
"$@"
|
135
|
+
stat=$?
|
136
|
+
if test $stat -eq 0; then :
|
137
|
+
else
|
138
|
+
rm -f "$tmpdepfile"
|
139
|
+
exit $stat
|
140
|
+
fi
|
141
|
+
mv "$tmpdepfile" "$depfile"
|
142
|
+
;;
|
143
|
+
|
144
|
+
gcc)
|
145
|
+
## There are various ways to get dependency output from gcc. Here's
|
146
|
+
## why we pick this rather obscure method:
|
147
|
+
## - Don't want to use -MD because we'd like the dependencies to end
|
148
|
+
## up in a subdir. Having to rename by hand is ugly.
|
149
|
+
## (We might end up doing this anyway to support other compilers.)
|
150
|
+
## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
|
151
|
+
## -MM, not -M (despite what the docs say).
|
152
|
+
## - Using -M directly means running the compiler twice (even worse
|
153
|
+
## than renaming).
|
154
|
+
if test -z "$gccflag"; then
|
155
|
+
gccflag=-MD,
|
156
|
+
fi
|
157
|
+
"$@" -Wp,"$gccflag$tmpdepfile"
|
158
|
+
stat=$?
|
159
|
+
if test $stat -eq 0; then :
|
160
|
+
else
|
161
|
+
rm -f "$tmpdepfile"
|
162
|
+
exit $stat
|
163
|
+
fi
|
164
|
+
rm -f "$depfile"
|
165
|
+
echo "$object : \\" > "$depfile"
|
166
|
+
alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
|
167
|
+
## The second -e expression handles DOS-style file names with drive letters.
|
168
|
+
sed -e 's/^[^:]*: / /' \
|
169
|
+
-e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
|
170
|
+
## This next piece of magic avoids the "deleted header file" problem.
|
171
|
+
## The problem is that when a header file which appears in a .P file
|
172
|
+
## is deleted, the dependency causes make to die (because there is
|
173
|
+
## typically no way to rebuild the header). We avoid this by adding
|
174
|
+
## dummy dependencies for each header file. Too bad gcc doesn't do
|
175
|
+
## this for us directly.
|
176
|
+
tr ' ' "$nl" < "$tmpdepfile" |
|
177
|
+
## Some versions of gcc put a space before the ':'. On the theory
|
178
|
+
## that the space means something, we add a space to the output as
|
179
|
+
## well. hp depmode also adds that space, but also prefixes the VPATH
|
180
|
+
## to the object. Take care to not repeat it in the output.
|
181
|
+
## Some versions of the HPUX 10.20 sed can't process this invocation
|
182
|
+
## correctly. Breaking it into two sed invocations is a workaround.
|
183
|
+
sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
|
184
|
+
| sed -e 's/$/ :/' >> "$depfile"
|
185
|
+
rm -f "$tmpdepfile"
|
186
|
+
;;
|
187
|
+
|
188
|
+
hp)
|
189
|
+
# This case exists only to let depend.m4 do its work. It works by
|
190
|
+
# looking at the text of this script. This case will never be run,
|
191
|
+
# since it is checked for above.
|
192
|
+
exit 1
|
193
|
+
;;
|
194
|
+
|
195
|
+
sgi)
|
196
|
+
if test "$libtool" = yes; then
|
197
|
+
"$@" "-Wp,-MDupdate,$tmpdepfile"
|
198
|
+
else
|
199
|
+
"$@" -MDupdate "$tmpdepfile"
|
200
|
+
fi
|
201
|
+
stat=$?
|
202
|
+
if test $stat -eq 0; then :
|
203
|
+
else
|
204
|
+
rm -f "$tmpdepfile"
|
205
|
+
exit $stat
|
206
|
+
fi
|
207
|
+
rm -f "$depfile"
|
208
|
+
|
209
|
+
if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files
|
210
|
+
echo "$object : \\" > "$depfile"
|
211
|
+
|
212
|
+
# Clip off the initial element (the dependent). Don't try to be
|
213
|
+
# clever and replace this with sed code, as IRIX sed won't handle
|
214
|
+
# lines with more than a fixed number of characters (4096 in
|
215
|
+
# IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines;
|
216
|
+
# the IRIX cc adds comments like '#:fec' to the end of the
|
217
|
+
# dependency line.
|
218
|
+
tr ' ' "$nl" < "$tmpdepfile" \
|
219
|
+
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \
|
220
|
+
tr "$nl" ' ' >> "$depfile"
|
221
|
+
echo >> "$depfile"
|
222
|
+
|
223
|
+
# The second pass generates a dummy entry for each header file.
|
224
|
+
tr ' ' "$nl" < "$tmpdepfile" \
|
225
|
+
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
|
226
|
+
>> "$depfile"
|
227
|
+
else
|
228
|
+
# The sourcefile does not contain any dependencies, so just
|
229
|
+
# store a dummy comment line, to avoid errors with the Makefile
|
230
|
+
# "include basename.Plo" scheme.
|
231
|
+
echo "#dummy" > "$depfile"
|
232
|
+
fi
|
233
|
+
rm -f "$tmpdepfile"
|
234
|
+
;;
|
235
|
+
|
236
|
+
xlc)
|
237
|
+
# This case exists only to let depend.m4 do its work. It works by
|
238
|
+
# looking at the text of this script. This case will never be run,
|
239
|
+
# since it is checked for above.
|
240
|
+
exit 1
|
241
|
+
;;
|
242
|
+
|
243
|
+
aix)
|
244
|
+
# The C for AIX Compiler uses -M and outputs the dependencies
|
245
|
+
# in a .u file. In older versions, this file always lives in the
|
246
|
+
# current directory. Also, the AIX compiler puts '$object:' at the
|
247
|
+
# start of each line; $object doesn't have directory information.
|
248
|
+
# Version 6 uses the directory in both cases.
|
249
|
+
dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
|
250
|
+
test "x$dir" = "x$object" && dir=
|
251
|
+
base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
|
252
|
+
if test "$libtool" = yes; then
|
253
|
+
tmpdepfile1=$dir$base.u
|
254
|
+
tmpdepfile2=$base.u
|
255
|
+
tmpdepfile3=$dir.libs/$base.u
|
256
|
+
"$@" -Wc,-M
|
257
|
+
else
|
258
|
+
tmpdepfile1=$dir$base.u
|
259
|
+
tmpdepfile2=$dir$base.u
|
260
|
+
tmpdepfile3=$dir$base.u
|
261
|
+
"$@" -M
|
262
|
+
fi
|
263
|
+
stat=$?
|
264
|
+
|
265
|
+
if test $stat -eq 0; then :
|
266
|
+
else
|
267
|
+
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
268
|
+
exit $stat
|
269
|
+
fi
|
270
|
+
|
271
|
+
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
272
|
+
do
|
273
|
+
test -f "$tmpdepfile" && break
|
274
|
+
done
|
275
|
+
if test -f "$tmpdepfile"; then
|
276
|
+
# Each line is of the form 'foo.o: dependent.h'.
|
277
|
+
# Do two passes, one to just change these to
|
278
|
+
# '$object: dependent.h' and one to simply 'dependent.h:'.
|
279
|
+
sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
|
280
|
+
sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
|
281
|
+
else
|
282
|
+
# The sourcefile does not contain any dependencies, so just
|
283
|
+
# store a dummy comment line, to avoid errors with the Makefile
|
284
|
+
# "include basename.Plo" scheme.
|
285
|
+
echo "#dummy" > "$depfile"
|
286
|
+
fi
|
287
|
+
rm -f "$tmpdepfile"
|
288
|
+
;;
|
289
|
+
|
290
|
+
icc)
|
291
|
+
# Intel's C compiler anf tcc (Tiny C Compiler) understand '-MD -MF file'.
|
292
|
+
# However on
|
293
|
+
# $CC -MD -MF foo.d -c -o sub/foo.o sub/foo.c
|
294
|
+
# ICC 7.0 will fill foo.d with something like
|
295
|
+
# foo.o: sub/foo.c
|
296
|
+
# foo.o: sub/foo.h
|
297
|
+
# which is wrong. We want
|
298
|
+
# sub/foo.o: sub/foo.c
|
299
|
+
# sub/foo.o: sub/foo.h
|
300
|
+
# sub/foo.c:
|
301
|
+
# sub/foo.h:
|
302
|
+
# ICC 7.1 will output
|
303
|
+
# foo.o: sub/foo.c sub/foo.h
|
304
|
+
# and will wrap long lines using '\':
|
305
|
+
# foo.o: sub/foo.c ... \
|
306
|
+
# sub/foo.h ... \
|
307
|
+
# ...
|
308
|
+
# tcc 0.9.26 (FIXME still under development at the moment of writing)
|
309
|
+
# will emit a similar output, but also prepend the continuation lines
|
310
|
+
# with horizontal tabulation characters.
|
311
|
+
"$@" -MD -MF "$tmpdepfile"
|
312
|
+
stat=$?
|
313
|
+
if test $stat -eq 0; then :
|
314
|
+
else
|
315
|
+
rm -f "$tmpdepfile"
|
316
|
+
exit $stat
|
317
|
+
fi
|
318
|
+
rm -f "$depfile"
|
319
|
+
# Each line is of the form 'foo.o: dependent.h',
|
320
|
+
# or 'foo.o: dep1.h dep2.h \', or ' dep3.h dep4.h \'.
|
321
|
+
# Do two passes, one to just change these to
|
322
|
+
# '$object: dependent.h' and one to simply 'dependent.h:'.
|
323
|
+
sed -e "s/^[ $tab][ $tab]*/ /" -e "s,^[^:]*:,$object :," \
|
324
|
+
< "$tmpdepfile" > "$depfile"
|
325
|
+
sed '
|
326
|
+
s/[ '"$tab"'][ '"$tab"']*/ /g
|
327
|
+
s/^ *//
|
328
|
+
s/ *\\*$//
|
329
|
+
s/^[^:]*: *//
|
330
|
+
/^$/d
|
331
|
+
/:$/d
|
332
|
+
s/$/ :/
|
333
|
+
' < "$tmpdepfile" >> "$depfile"
|
334
|
+
rm -f "$tmpdepfile"
|
335
|
+
;;
|
336
|
+
|
337
|
+
hp2)
|
338
|
+
# The "hp" stanza above does not work with aCC (C++) and HP's ia64
|
339
|
+
# compilers, which have integrated preprocessors. The correct option
|
340
|
+
# to use with these is +Maked; it writes dependencies to a file named
|
341
|
+
# 'foo.d', which lands next to the object file, wherever that
|
342
|
+
# happens to be.
|
343
|
+
# Much of this is similar to the tru64 case; see comments there.
|
344
|
+
dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
|
345
|
+
test "x$dir" = "x$object" && dir=
|
346
|
+
base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
|
347
|
+
if test "$libtool" = yes; then
|
348
|
+
tmpdepfile1=$dir$base.d
|
349
|
+
tmpdepfile2=$dir.libs/$base.d
|
350
|
+
"$@" -Wc,+Maked
|
351
|
+
else
|
352
|
+
tmpdepfile1=$dir$base.d
|
353
|
+
tmpdepfile2=$dir$base.d
|
354
|
+
"$@" +Maked
|
355
|
+
fi
|
356
|
+
stat=$?
|
357
|
+
if test $stat -eq 0; then :
|
358
|
+
else
|
359
|
+
rm -f "$tmpdepfile1" "$tmpdepfile2"
|
360
|
+
exit $stat
|
361
|
+
fi
|
362
|
+
|
363
|
+
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2"
|
364
|
+
do
|
365
|
+
test -f "$tmpdepfile" && break
|
366
|
+
done
|
367
|
+
if test -f "$tmpdepfile"; then
|
368
|
+
sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile"
|
369
|
+
# Add 'dependent.h:' lines.
|
370
|
+
sed -ne '2,${
|
371
|
+
s/^ *//
|
372
|
+
s/ \\*$//
|
373
|
+
s/$/:/
|
374
|
+
p
|
375
|
+
}' "$tmpdepfile" >> "$depfile"
|
376
|
+
else
|
377
|
+
echo "#dummy" > "$depfile"
|
378
|
+
fi
|
379
|
+
rm -f "$tmpdepfile" "$tmpdepfile2"
|
380
|
+
;;
|
381
|
+
|
382
|
+
tru64)
|
383
|
+
# The Tru64 compiler uses -MD to generate dependencies as a side
|
384
|
+
# effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'.
|
385
|
+
# At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
|
386
|
+
# dependencies in 'foo.d' instead, so we check for that too.
|
387
|
+
# Subdirectories are respected.
|
388
|
+
dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
|
389
|
+
test "x$dir" = "x$object" && dir=
|
390
|
+
base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
|
391
|
+
|
392
|
+
if test "$libtool" = yes; then
|
393
|
+
# With Tru64 cc, shared objects can also be used to make a
|
394
|
+
# static library. This mechanism is used in libtool 1.4 series to
|
395
|
+
# handle both shared and static libraries in a single compilation.
|
396
|
+
# With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d.
|
397
|
+
#
|
398
|
+
# With libtool 1.5 this exception was removed, and libtool now
|
399
|
+
# generates 2 separate objects for the 2 libraries. These two
|
400
|
+
# compilations output dependencies in $dir.libs/$base.o.d and
|
401
|
+
# in $dir$base.o.d. We have to check for both files, because
|
402
|
+
# one of the two compilations can be disabled. We should prefer
|
403
|
+
# $dir$base.o.d over $dir.libs/$base.o.d because the latter is
|
404
|
+
# automatically cleaned when .libs/ is deleted, while ignoring
|
405
|
+
# the former would cause a distcleancheck panic.
|
406
|
+
tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4
|
407
|
+
tmpdepfile2=$dir$base.o.d # libtool 1.5
|
408
|
+
tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5
|
409
|
+
tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504
|
410
|
+
"$@" -Wc,-MD
|
411
|
+
else
|
412
|
+
tmpdepfile1=$dir$base.o.d
|
413
|
+
tmpdepfile2=$dir$base.d
|
414
|
+
tmpdepfile3=$dir$base.d
|
415
|
+
tmpdepfile4=$dir$base.d
|
416
|
+
"$@" -MD
|
417
|
+
fi
|
418
|
+
|
419
|
+
stat=$?
|
420
|
+
if test $stat -eq 0; then :
|
421
|
+
else
|
422
|
+
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4"
|
423
|
+
exit $stat
|
424
|
+
fi
|
425
|
+
|
426
|
+
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4"
|
427
|
+
do
|
428
|
+
test -f "$tmpdepfile" && break
|
429
|
+
done
|
430
|
+
if test -f "$tmpdepfile"; then
|
431
|
+
sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
|
432
|
+
sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
|
433
|
+
else
|
434
|
+
echo "#dummy" > "$depfile"
|
435
|
+
fi
|
436
|
+
rm -f "$tmpdepfile"
|
437
|
+
;;
|
438
|
+
|
439
|
+
msvc7)
|
440
|
+
if test "$libtool" = yes; then
|
441
|
+
showIncludes=-Wc,-showIncludes
|
442
|
+
else
|
443
|
+
showIncludes=-showIncludes
|
444
|
+
fi
|
445
|
+
"$@" $showIncludes > "$tmpdepfile"
|
446
|
+
stat=$?
|
447
|
+
grep -v '^Note: including file: ' "$tmpdepfile"
|
448
|
+
if test "$stat" = 0; then :
|
449
|
+
else
|
450
|
+
rm -f "$tmpdepfile"
|
451
|
+
exit $stat
|
452
|
+
fi
|
453
|
+
rm -f "$depfile"
|
454
|
+
echo "$object : \\" > "$depfile"
|
455
|
+
# The first sed program below extracts the file names and escapes
|
456
|
+
# backslashes for cygpath. The second sed program outputs the file
|
457
|
+
# name when reading, but also accumulates all include files in the
|
458
|
+
# hold buffer in order to output them again at the end. This only
|
459
|
+
# works with sed implementations that can handle large buffers.
|
460
|
+
sed < "$tmpdepfile" -n '
|
461
|
+
/^Note: including file: *\(.*\)/ {
|
462
|
+
s//\1/
|
463
|
+
s/\\/\\\\/g
|
464
|
+
p
|
465
|
+
}' | $cygpath_u | sort -u | sed -n '
|
466
|
+
s/ /\\ /g
|
467
|
+
s/\(.*\)/'"$tab"'\1 \\/p
|
468
|
+
s/.\(.*\) \\/\1:/
|
469
|
+
H
|
470
|
+
$ {
|
471
|
+
s/.*/'"$tab"'/
|
472
|
+
G
|
473
|
+
p
|
474
|
+
}' >> "$depfile"
|
475
|
+
rm -f "$tmpdepfile"
|
476
|
+
;;
|
477
|
+
|
478
|
+
msvc7msys)
|
479
|
+
# This case exists only to let depend.m4 do its work. It works by
|
480
|
+
# looking at the text of this script. This case will never be run,
|
481
|
+
# since it is checked for above.
|
482
|
+
exit 1
|
483
|
+
;;
|
484
|
+
|
485
|
+
#nosideeffect)
|
486
|
+
# This comment above is used by automake to tell side-effect
|
487
|
+
# dependency tracking mechanisms from slower ones.
|
488
|
+
|
489
|
+
dashmstdout)
|
490
|
+
# Important note: in order to support this mode, a compiler *must*
|
491
|
+
# always write the preprocessed file to stdout, regardless of -o.
|
492
|
+
"$@" || exit $?
|
493
|
+
|
494
|
+
# Remove the call to Libtool.
|
495
|
+
if test "$libtool" = yes; then
|
496
|
+
while test "X$1" != 'X--mode=compile'; do
|
497
|
+
shift
|
498
|
+
done
|
499
|
+
shift
|
500
|
+
fi
|
501
|
+
|
502
|
+
# Remove '-o $object'.
|
503
|
+
IFS=" "
|
504
|
+
for arg
|
505
|
+
do
|
506
|
+
case $arg in
|
507
|
+
-o)
|
508
|
+
shift
|
509
|
+
;;
|
510
|
+
$object)
|
511
|
+
shift
|
512
|
+
;;
|
513
|
+
*)
|
514
|
+
set fnord "$@" "$arg"
|
515
|
+
shift # fnord
|
516
|
+
shift # $arg
|
517
|
+
;;
|
518
|
+
esac
|
519
|
+
done
|
520
|
+
|
521
|
+
test -z "$dashmflag" && dashmflag=-M
|
522
|
+
# Require at least two characters before searching for ':'
|
523
|
+
# in the target name. This is to cope with DOS-style filenames:
|
524
|
+
# a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise.
|
525
|
+
"$@" $dashmflag |
|
526
|
+
sed 's:^['"$tab"' ]*[^:'"$tab"' ][^:][^:]*\:['"$tab"' ]*:'"$object"'\: :' > "$tmpdepfile"
|
527
|
+
rm -f "$depfile"
|
528
|
+
cat < "$tmpdepfile" > "$depfile"
|
529
|
+
tr ' ' "$nl" < "$tmpdepfile" | \
|
530
|
+
## Some versions of the HPUX 10.20 sed can't process this invocation
|
531
|
+
## correctly. Breaking it into two sed invocations is a workaround.
|
532
|
+
sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
|
533
|
+
rm -f "$tmpdepfile"
|
534
|
+
;;
|
535
|
+
|
536
|
+
dashXmstdout)
|
537
|
+
# This case only exists to satisfy depend.m4. It is never actually
|
538
|
+
# run, as this mode is specially recognized in the preamble.
|
539
|
+
exit 1
|
540
|
+
;;
|
541
|
+
|
542
|
+
makedepend)
|
543
|
+
"$@" || exit $?
|
544
|
+
# Remove any Libtool call
|
545
|
+
if test "$libtool" = yes; then
|
546
|
+
while test "X$1" != 'X--mode=compile'; do
|
547
|
+
shift
|
548
|
+
done
|
549
|
+
shift
|
550
|
+
fi
|
551
|
+
# X makedepend
|
552
|
+
shift
|
553
|
+
cleared=no eat=no
|
554
|
+
for arg
|
555
|
+
do
|
556
|
+
case $cleared in
|
557
|
+
no)
|
558
|
+
set ""; shift
|
559
|
+
cleared=yes ;;
|
560
|
+
esac
|
561
|
+
if test $eat = yes; then
|
562
|
+
eat=no
|
563
|
+
continue
|
564
|
+
fi
|
565
|
+
case "$arg" in
|
566
|
+
-D*|-I*)
|
567
|
+
set fnord "$@" "$arg"; shift ;;
|
568
|
+
# Strip any option that makedepend may not understand. Remove
|
569
|
+
# the object too, otherwise makedepend will parse it as a source file.
|
570
|
+
-arch)
|
571
|
+
eat=yes ;;
|
572
|
+
-*|$object)
|
573
|
+
;;
|
574
|
+
*)
|
575
|
+
set fnord "$@" "$arg"; shift ;;
|
576
|
+
esac
|
577
|
+
done
|
578
|
+
obj_suffix=`echo "$object" | sed 's/^.*\././'`
|
579
|
+
touch "$tmpdepfile"
|
580
|
+
${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
|
581
|
+
rm -f "$depfile"
|
582
|
+
# makedepend may prepend the VPATH from the source file name to the object.
|
583
|
+
# No need to regex-escape $object, excess matching of '.' is harmless.
|
584
|
+
sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile"
|
585
|
+
sed '1,2d' "$tmpdepfile" | tr ' ' "$nl" | \
|
586
|
+
## Some versions of the HPUX 10.20 sed can't process this invocation
|
587
|
+
## correctly. Breaking it into two sed invocations is a workaround.
|
588
|
+
sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
|
589
|
+
rm -f "$tmpdepfile" "$tmpdepfile".bak
|
590
|
+
;;
|
591
|
+
|
592
|
+
cpp)
|
593
|
+
# Important note: in order to support this mode, a compiler *must*
|
594
|
+
# always write the preprocessed file to stdout.
|
595
|
+
"$@" || exit $?
|
596
|
+
|
597
|
+
# Remove the call to Libtool.
|
598
|
+
if test "$libtool" = yes; then
|
599
|
+
while test "X$1" != 'X--mode=compile'; do
|
600
|
+
shift
|
601
|
+
done
|
602
|
+
shift
|
603
|
+
fi
|
604
|
+
|
605
|
+
# Remove '-o $object'.
|
606
|
+
IFS=" "
|
607
|
+
for arg
|
608
|
+
do
|
609
|
+
case $arg in
|
610
|
+
-o)
|
611
|
+
shift
|
612
|
+
;;
|
613
|
+
$object)
|
614
|
+
shift
|
615
|
+
;;
|
616
|
+
*)
|
617
|
+
set fnord "$@" "$arg"
|
618
|
+
shift # fnord
|
619
|
+
shift # $arg
|
620
|
+
;;
|
621
|
+
esac
|
622
|
+
done
|
623
|
+
|
624
|
+
"$@" -E |
|
625
|
+
sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
|
626
|
+
-e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' |
|
627
|
+
sed '$ s: \\$::' > "$tmpdepfile"
|
628
|
+
rm -f "$depfile"
|
629
|
+
echo "$object : \\" > "$depfile"
|
630
|
+
cat < "$tmpdepfile" >> "$depfile"
|
631
|
+
sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
|
632
|
+
rm -f "$tmpdepfile"
|
633
|
+
;;
|
634
|
+
|
635
|
+
msvisualcpp)
|
636
|
+
# Important note: in order to support this mode, a compiler *must*
|
637
|
+
# always write the preprocessed file to stdout.
|
638
|
+
"$@" || exit $?
|
639
|
+
|
640
|
+
# Remove the call to Libtool.
|
641
|
+
if test "$libtool" = yes; then
|
642
|
+
while test "X$1" != 'X--mode=compile'; do
|
643
|
+
shift
|
644
|
+
done
|
645
|
+
shift
|
646
|
+
fi
|
647
|
+
|
648
|
+
IFS=" "
|
649
|
+
for arg
|
650
|
+
do
|
651
|
+
case "$arg" in
|
652
|
+
-o)
|
653
|
+
shift
|
654
|
+
;;
|
655
|
+
$object)
|
656
|
+
shift
|
657
|
+
;;
|
658
|
+
"-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
|
659
|
+
set fnord "$@"
|
660
|
+
shift
|
661
|
+
shift
|
662
|
+
;;
|
663
|
+
*)
|
664
|
+
set fnord "$@" "$arg"
|
665
|
+
shift
|
666
|
+
shift
|
667
|
+
;;
|
668
|
+
esac
|
669
|
+
done
|
670
|
+
"$@" -E 2>/dev/null |
|
671
|
+
sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile"
|
672
|
+
rm -f "$depfile"
|
673
|
+
echo "$object : \\" > "$depfile"
|
674
|
+
sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
|
675
|
+
echo "$tab" >> "$depfile"
|
676
|
+
sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile"
|
677
|
+
rm -f "$tmpdepfile"
|
678
|
+
;;
|
679
|
+
|
680
|
+
msvcmsys)
|
681
|
+
# This case exists only to let depend.m4 do its work. It works by
|
682
|
+
# looking at the text of this script. This case will never be run,
|
683
|
+
# since it is checked for above.
|
684
|
+
exit 1
|
685
|
+
;;
|
686
|
+
|
687
|
+
none)
|
688
|
+
exec "$@"
|
689
|
+
;;
|
690
|
+
|
691
|
+
*)
|
692
|
+
echo "Unknown depmode $depmode" 1>&2
|
693
|
+
exit 1
|
694
|
+
;;
|
695
|
+
esac
|
696
|
+
|
697
|
+
exit 0
|
698
|
+
|
699
|
+
# Local Variables:
|
700
|
+
# mode: shell-script
|
701
|
+
# sh-indentation: 2
|
702
|
+
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
703
|
+
# time-stamp-start: "scriptversion="
|
704
|
+
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
705
|
+
# time-stamp-time-zone: "UTC"
|
706
|
+
# time-stamp-end: "; # UTC"
|
707
|
+
# End:
|