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,384 @@
|
|
1
|
+
# Helper functions for option handling. -*- Autoconf -*-
|
2
|
+
#
|
3
|
+
# Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation,
|
4
|
+
# Inc.
|
5
|
+
# Written by Gary V. Vaughan, 2004
|
6
|
+
#
|
7
|
+
# This file is free software; the Free Software Foundation gives
|
8
|
+
# unlimited permission to copy and/or distribute it, with or without
|
9
|
+
# modifications, as long as this notice is preserved.
|
10
|
+
|
11
|
+
# serial 7 ltoptions.m4
|
12
|
+
|
13
|
+
# This is to help aclocal find these macros, as it can't see m4_define.
|
14
|
+
AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
|
15
|
+
|
16
|
+
|
17
|
+
# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
|
18
|
+
# ------------------------------------------
|
19
|
+
m4_define([_LT_MANGLE_OPTION],
|
20
|
+
[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])])
|
21
|
+
|
22
|
+
|
23
|
+
# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)
|
24
|
+
# ---------------------------------------
|
25
|
+
# Set option OPTION-NAME for macro MACRO-NAME, and if there is a
|
26
|
+
# matching handler defined, dispatch to it. Other OPTION-NAMEs are
|
27
|
+
# saved as a flag.
|
28
|
+
m4_define([_LT_SET_OPTION],
|
29
|
+
[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl
|
30
|
+
m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]),
|
31
|
+
_LT_MANGLE_DEFUN([$1], [$2]),
|
32
|
+
[m4_warning([Unknown $1 option `$2'])])[]dnl
|
33
|
+
])
|
34
|
+
|
35
|
+
|
36
|
+
# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
|
37
|
+
# ------------------------------------------------------------
|
38
|
+
# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
|
39
|
+
m4_define([_LT_IF_OPTION],
|
40
|
+
[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])])
|
41
|
+
|
42
|
+
|
43
|
+
# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
|
44
|
+
# -------------------------------------------------------
|
45
|
+
# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
|
46
|
+
# are set.
|
47
|
+
m4_define([_LT_UNLESS_OPTIONS],
|
48
|
+
[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
|
49
|
+
[m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option),
|
50
|
+
[m4_define([$0_found])])])[]dnl
|
51
|
+
m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3
|
52
|
+
])[]dnl
|
53
|
+
])
|
54
|
+
|
55
|
+
|
56
|
+
# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
|
57
|
+
# ----------------------------------------
|
58
|
+
# OPTION-LIST is a space-separated list of Libtool options associated
|
59
|
+
# with MACRO-NAME. If any OPTION has a matching handler declared with
|
60
|
+
# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about
|
61
|
+
# the unknown option and exit.
|
62
|
+
m4_defun([_LT_SET_OPTIONS],
|
63
|
+
[# Set options
|
64
|
+
m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
|
65
|
+
[_LT_SET_OPTION([$1], _LT_Option)])
|
66
|
+
|
67
|
+
m4_if([$1],[LT_INIT],[
|
68
|
+
dnl
|
69
|
+
dnl Simply set some default values (i.e off) if boolean options were not
|
70
|
+
dnl specified:
|
71
|
+
_LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no
|
72
|
+
])
|
73
|
+
_LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no
|
74
|
+
])
|
75
|
+
dnl
|
76
|
+
dnl If no reference was made to various pairs of opposing options, then
|
77
|
+
dnl we run the default mode handler for the pair. For example, if neither
|
78
|
+
dnl `shared' nor `disable-shared' was passed, we enable building of shared
|
79
|
+
dnl archives by default:
|
80
|
+
_LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED])
|
81
|
+
_LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC])
|
82
|
+
_LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC])
|
83
|
+
_LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install],
|
84
|
+
[_LT_ENABLE_FAST_INSTALL])
|
85
|
+
])
|
86
|
+
])# _LT_SET_OPTIONS
|
87
|
+
|
88
|
+
|
89
|
+
## --------------------------------- ##
|
90
|
+
## Macros to handle LT_INIT options. ##
|
91
|
+
## --------------------------------- ##
|
92
|
+
|
93
|
+
# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
|
94
|
+
# -----------------------------------------
|
95
|
+
m4_define([_LT_MANGLE_DEFUN],
|
96
|
+
[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])])
|
97
|
+
|
98
|
+
|
99
|
+
# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE)
|
100
|
+
# -----------------------------------------------
|
101
|
+
m4_define([LT_OPTION_DEFINE],
|
102
|
+
[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl
|
103
|
+
])# LT_OPTION_DEFINE
|
104
|
+
|
105
|
+
|
106
|
+
# dlopen
|
107
|
+
# ------
|
108
|
+
LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes
|
109
|
+
])
|
110
|
+
|
111
|
+
AU_DEFUN([AC_LIBTOOL_DLOPEN],
|
112
|
+
[_LT_SET_OPTION([LT_INIT], [dlopen])
|
113
|
+
AC_DIAGNOSE([obsolete],
|
114
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
115
|
+
put the `dlopen' option into LT_INIT's first parameter.])
|
116
|
+
])
|
117
|
+
|
118
|
+
dnl aclocal-1.4 backwards compatibility:
|
119
|
+
dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], [])
|
120
|
+
|
121
|
+
|
122
|
+
# win32-dll
|
123
|
+
# ---------
|
124
|
+
# Declare package support for building win32 dll's.
|
125
|
+
LT_OPTION_DEFINE([LT_INIT], [win32-dll],
|
126
|
+
[enable_win32_dll=yes
|
127
|
+
|
128
|
+
case $host in
|
129
|
+
*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)
|
130
|
+
AC_CHECK_TOOL(AS, as, false)
|
131
|
+
AC_CHECK_TOOL(DLLTOOL, dlltool, false)
|
132
|
+
AC_CHECK_TOOL(OBJDUMP, objdump, false)
|
133
|
+
;;
|
134
|
+
esac
|
135
|
+
|
136
|
+
test -z "$AS" && AS=as
|
137
|
+
_LT_DECL([], [AS], [1], [Assembler program])dnl
|
138
|
+
|
139
|
+
test -z "$DLLTOOL" && DLLTOOL=dlltool
|
140
|
+
_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl
|
141
|
+
|
142
|
+
test -z "$OBJDUMP" && OBJDUMP=objdump
|
143
|
+
_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl
|
144
|
+
])# win32-dll
|
145
|
+
|
146
|
+
AU_DEFUN([AC_LIBTOOL_WIN32_DLL],
|
147
|
+
[AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
148
|
+
_LT_SET_OPTION([LT_INIT], [win32-dll])
|
149
|
+
AC_DIAGNOSE([obsolete],
|
150
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
151
|
+
put the `win32-dll' option into LT_INIT's first parameter.])
|
152
|
+
])
|
153
|
+
|
154
|
+
dnl aclocal-1.4 backwards compatibility:
|
155
|
+
dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [])
|
156
|
+
|
157
|
+
|
158
|
+
# _LT_ENABLE_SHARED([DEFAULT])
|
159
|
+
# ----------------------------
|
160
|
+
# implement the --enable-shared flag, and supports the `shared' and
|
161
|
+
# `disable-shared' LT_INIT options.
|
162
|
+
# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
|
163
|
+
m4_define([_LT_ENABLE_SHARED],
|
164
|
+
[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl
|
165
|
+
AC_ARG_ENABLE([shared],
|
166
|
+
[AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
|
167
|
+
[build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])],
|
168
|
+
[p=${PACKAGE-default}
|
169
|
+
case $enableval in
|
170
|
+
yes) enable_shared=yes ;;
|
171
|
+
no) enable_shared=no ;;
|
172
|
+
*)
|
173
|
+
enable_shared=no
|
174
|
+
# Look at the argument we got. We use all the common list separators.
|
175
|
+
lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
|
176
|
+
for pkg in $enableval; do
|
177
|
+
IFS="$lt_save_ifs"
|
178
|
+
if test "X$pkg" = "X$p"; then
|
179
|
+
enable_shared=yes
|
180
|
+
fi
|
181
|
+
done
|
182
|
+
IFS="$lt_save_ifs"
|
183
|
+
;;
|
184
|
+
esac],
|
185
|
+
[enable_shared=]_LT_ENABLE_SHARED_DEFAULT)
|
186
|
+
|
187
|
+
_LT_DECL([build_libtool_libs], [enable_shared], [0],
|
188
|
+
[Whether or not to build shared libraries])
|
189
|
+
])# _LT_ENABLE_SHARED
|
190
|
+
|
191
|
+
LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])])
|
192
|
+
LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])])
|
193
|
+
|
194
|
+
# Old names:
|
195
|
+
AC_DEFUN([AC_ENABLE_SHARED],
|
196
|
+
[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
|
197
|
+
])
|
198
|
+
|
199
|
+
AC_DEFUN([AC_DISABLE_SHARED],
|
200
|
+
[_LT_SET_OPTION([LT_INIT], [disable-shared])
|
201
|
+
])
|
202
|
+
|
203
|
+
AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
|
204
|
+
AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
|
205
|
+
|
206
|
+
dnl aclocal-1.4 backwards compatibility:
|
207
|
+
dnl AC_DEFUN([AM_ENABLE_SHARED], [])
|
208
|
+
dnl AC_DEFUN([AM_DISABLE_SHARED], [])
|
209
|
+
|
210
|
+
|
211
|
+
|
212
|
+
# _LT_ENABLE_STATIC([DEFAULT])
|
213
|
+
# ----------------------------
|
214
|
+
# implement the --enable-static flag, and support the `static' and
|
215
|
+
# `disable-static' LT_INIT options.
|
216
|
+
# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
|
217
|
+
m4_define([_LT_ENABLE_STATIC],
|
218
|
+
[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl
|
219
|
+
AC_ARG_ENABLE([static],
|
220
|
+
[AS_HELP_STRING([--enable-static@<:@=PKGS@:>@],
|
221
|
+
[build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])],
|
222
|
+
[p=${PACKAGE-default}
|
223
|
+
case $enableval in
|
224
|
+
yes) enable_static=yes ;;
|
225
|
+
no) enable_static=no ;;
|
226
|
+
*)
|
227
|
+
enable_static=no
|
228
|
+
# Look at the argument we got. We use all the common list separators.
|
229
|
+
lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
|
230
|
+
for pkg in $enableval; do
|
231
|
+
IFS="$lt_save_ifs"
|
232
|
+
if test "X$pkg" = "X$p"; then
|
233
|
+
enable_static=yes
|
234
|
+
fi
|
235
|
+
done
|
236
|
+
IFS="$lt_save_ifs"
|
237
|
+
;;
|
238
|
+
esac],
|
239
|
+
[enable_static=]_LT_ENABLE_STATIC_DEFAULT)
|
240
|
+
|
241
|
+
_LT_DECL([build_old_libs], [enable_static], [0],
|
242
|
+
[Whether or not to build static libraries])
|
243
|
+
])# _LT_ENABLE_STATIC
|
244
|
+
|
245
|
+
LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])])
|
246
|
+
LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])])
|
247
|
+
|
248
|
+
# Old names:
|
249
|
+
AC_DEFUN([AC_ENABLE_STATIC],
|
250
|
+
[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
|
251
|
+
])
|
252
|
+
|
253
|
+
AC_DEFUN([AC_DISABLE_STATIC],
|
254
|
+
[_LT_SET_OPTION([LT_INIT], [disable-static])
|
255
|
+
])
|
256
|
+
|
257
|
+
AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
|
258
|
+
AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
|
259
|
+
|
260
|
+
dnl aclocal-1.4 backwards compatibility:
|
261
|
+
dnl AC_DEFUN([AM_ENABLE_STATIC], [])
|
262
|
+
dnl AC_DEFUN([AM_DISABLE_STATIC], [])
|
263
|
+
|
264
|
+
|
265
|
+
|
266
|
+
# _LT_ENABLE_FAST_INSTALL([DEFAULT])
|
267
|
+
# ----------------------------------
|
268
|
+
# implement the --enable-fast-install flag, and support the `fast-install'
|
269
|
+
# and `disable-fast-install' LT_INIT options.
|
270
|
+
# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
|
271
|
+
m4_define([_LT_ENABLE_FAST_INSTALL],
|
272
|
+
[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl
|
273
|
+
AC_ARG_ENABLE([fast-install],
|
274
|
+
[AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],
|
275
|
+
[optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],
|
276
|
+
[p=${PACKAGE-default}
|
277
|
+
case $enableval in
|
278
|
+
yes) enable_fast_install=yes ;;
|
279
|
+
no) enable_fast_install=no ;;
|
280
|
+
*)
|
281
|
+
enable_fast_install=no
|
282
|
+
# Look at the argument we got. We use all the common list separators.
|
283
|
+
lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
|
284
|
+
for pkg in $enableval; do
|
285
|
+
IFS="$lt_save_ifs"
|
286
|
+
if test "X$pkg" = "X$p"; then
|
287
|
+
enable_fast_install=yes
|
288
|
+
fi
|
289
|
+
done
|
290
|
+
IFS="$lt_save_ifs"
|
291
|
+
;;
|
292
|
+
esac],
|
293
|
+
[enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT)
|
294
|
+
|
295
|
+
_LT_DECL([fast_install], [enable_fast_install], [0],
|
296
|
+
[Whether or not to optimize for fast installation])dnl
|
297
|
+
])# _LT_ENABLE_FAST_INSTALL
|
298
|
+
|
299
|
+
LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])])
|
300
|
+
LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])])
|
301
|
+
|
302
|
+
# Old names:
|
303
|
+
AU_DEFUN([AC_ENABLE_FAST_INSTALL],
|
304
|
+
[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
|
305
|
+
AC_DIAGNOSE([obsolete],
|
306
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
307
|
+
the `fast-install' option into LT_INIT's first parameter.])
|
308
|
+
])
|
309
|
+
|
310
|
+
AU_DEFUN([AC_DISABLE_FAST_INSTALL],
|
311
|
+
[_LT_SET_OPTION([LT_INIT], [disable-fast-install])
|
312
|
+
AC_DIAGNOSE([obsolete],
|
313
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
314
|
+
the `disable-fast-install' option into LT_INIT's first parameter.])
|
315
|
+
])
|
316
|
+
|
317
|
+
dnl aclocal-1.4 backwards compatibility:
|
318
|
+
dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], [])
|
319
|
+
dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], [])
|
320
|
+
|
321
|
+
|
322
|
+
# _LT_WITH_PIC([MODE])
|
323
|
+
# --------------------
|
324
|
+
# implement the --with-pic flag, and support the `pic-only' and `no-pic'
|
325
|
+
# LT_INIT options.
|
326
|
+
# MODE is either `yes' or `no'. If omitted, it defaults to `both'.
|
327
|
+
m4_define([_LT_WITH_PIC],
|
328
|
+
[AC_ARG_WITH([pic],
|
329
|
+
[AS_HELP_STRING([--with-pic@<:@=PKGS@:>@],
|
330
|
+
[try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
|
331
|
+
[lt_p=${PACKAGE-default}
|
332
|
+
case $withval in
|
333
|
+
yes|no) pic_mode=$withval ;;
|
334
|
+
*)
|
335
|
+
pic_mode=default
|
336
|
+
# Look at the argument we got. We use all the common list separators.
|
337
|
+
lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
|
338
|
+
for lt_pkg in $withval; do
|
339
|
+
IFS="$lt_save_ifs"
|
340
|
+
if test "X$lt_pkg" = "X$lt_p"; then
|
341
|
+
pic_mode=yes
|
342
|
+
fi
|
343
|
+
done
|
344
|
+
IFS="$lt_save_ifs"
|
345
|
+
;;
|
346
|
+
esac],
|
347
|
+
[pic_mode=default])
|
348
|
+
|
349
|
+
test -z "$pic_mode" && pic_mode=m4_default([$1], [default])
|
350
|
+
|
351
|
+
_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl
|
352
|
+
])# _LT_WITH_PIC
|
353
|
+
|
354
|
+
LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])])
|
355
|
+
LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])])
|
356
|
+
|
357
|
+
# Old name:
|
358
|
+
AU_DEFUN([AC_LIBTOOL_PICMODE],
|
359
|
+
[_LT_SET_OPTION([LT_INIT], [pic-only])
|
360
|
+
AC_DIAGNOSE([obsolete],
|
361
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
362
|
+
put the `pic-only' option into LT_INIT's first parameter.])
|
363
|
+
])
|
364
|
+
|
365
|
+
dnl aclocal-1.4 backwards compatibility:
|
366
|
+
dnl AC_DEFUN([AC_LIBTOOL_PICMODE], [])
|
367
|
+
|
368
|
+
## ----------------- ##
|
369
|
+
## LTDL_INIT Options ##
|
370
|
+
## ----------------- ##
|
371
|
+
|
372
|
+
m4_define([_LTDL_MODE], [])
|
373
|
+
LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive],
|
374
|
+
[m4_define([_LTDL_MODE], [nonrecursive])])
|
375
|
+
LT_OPTION_DEFINE([LTDL_INIT], [recursive],
|
376
|
+
[m4_define([_LTDL_MODE], [recursive])])
|
377
|
+
LT_OPTION_DEFINE([LTDL_INIT], [subproject],
|
378
|
+
[m4_define([_LTDL_MODE], [subproject])])
|
379
|
+
|
380
|
+
m4_define([_LTDL_TYPE], [])
|
381
|
+
LT_OPTION_DEFINE([LTDL_INIT], [installable],
|
382
|
+
[m4_define([_LTDL_TYPE], [installable])])
|
383
|
+
LT_OPTION_DEFINE([LTDL_INIT], [convenience],
|
384
|
+
[m4_define([_LTDL_TYPE], [convenience])])
|
@@ -0,0 +1,123 @@
|
|
1
|
+
# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*-
|
2
|
+
#
|
3
|
+
# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
|
4
|
+
# Written by Gary V. Vaughan, 2004
|
5
|
+
#
|
6
|
+
# This file is free software; the Free Software Foundation gives
|
7
|
+
# unlimited permission to copy and/or distribute it, with or without
|
8
|
+
# modifications, as long as this notice is preserved.
|
9
|
+
|
10
|
+
# serial 6 ltsugar.m4
|
11
|
+
|
12
|
+
# This is to help aclocal find these macros, as it can't see m4_define.
|
13
|
+
AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
|
14
|
+
|
15
|
+
|
16
|
+
# lt_join(SEP, ARG1, [ARG2...])
|
17
|
+
# -----------------------------
|
18
|
+
# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their
|
19
|
+
# associated separator.
|
20
|
+
# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
|
21
|
+
# versions in m4sugar had bugs.
|
22
|
+
m4_define([lt_join],
|
23
|
+
[m4_if([$#], [1], [],
|
24
|
+
[$#], [2], [[$2]],
|
25
|
+
[m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])])
|
26
|
+
m4_define([_lt_join],
|
27
|
+
[m4_if([$#$2], [2], [],
|
28
|
+
[m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])])
|
29
|
+
|
30
|
+
|
31
|
+
# lt_car(LIST)
|
32
|
+
# lt_cdr(LIST)
|
33
|
+
# ------------
|
34
|
+
# Manipulate m4 lists.
|
35
|
+
# These macros are necessary as long as will still need to support
|
36
|
+
# Autoconf-2.59 which quotes differently.
|
37
|
+
m4_define([lt_car], [[$1]])
|
38
|
+
m4_define([lt_cdr],
|
39
|
+
[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])],
|
40
|
+
[$#], 1, [],
|
41
|
+
[m4_dquote(m4_shift($@))])])
|
42
|
+
m4_define([lt_unquote], $1)
|
43
|
+
|
44
|
+
|
45
|
+
# lt_append(MACRO-NAME, STRING, [SEPARATOR])
|
46
|
+
# ------------------------------------------
|
47
|
+
# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'.
|
48
|
+
# Note that neither SEPARATOR nor STRING are expanded; they are appended
|
49
|
+
# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked).
|
50
|
+
# No SEPARATOR is output if MACRO-NAME was previously undefined (different
|
51
|
+
# than defined and empty).
|
52
|
+
#
|
53
|
+
# This macro is needed until we can rely on Autoconf 2.62, since earlier
|
54
|
+
# versions of m4sugar mistakenly expanded SEPARATOR but not STRING.
|
55
|
+
m4_define([lt_append],
|
56
|
+
[m4_define([$1],
|
57
|
+
m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])])
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...])
|
62
|
+
# ----------------------------------------------------------
|
63
|
+
# Produce a SEP delimited list of all paired combinations of elements of
|
64
|
+
# PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list
|
65
|
+
# has the form PREFIXmINFIXSUFFIXn.
|
66
|
+
# Needed until we can rely on m4_combine added in Autoconf 2.62.
|
67
|
+
m4_define([lt_combine],
|
68
|
+
[m4_if(m4_eval([$# > 3]), [1],
|
69
|
+
[m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl
|
70
|
+
[[m4_foreach([_Lt_prefix], [$2],
|
71
|
+
[m4_foreach([_Lt_suffix],
|
72
|
+
]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[,
|
73
|
+
[_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])])
|
74
|
+
|
75
|
+
|
76
|
+
# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ])
|
77
|
+
# -----------------------------------------------------------------------
|
78
|
+
# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited
|
79
|
+
# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ.
|
80
|
+
m4_define([lt_if_append_uniq],
|
81
|
+
[m4_ifdef([$1],
|
82
|
+
[m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1],
|
83
|
+
[lt_append([$1], [$2], [$3])$4],
|
84
|
+
[$5])],
|
85
|
+
[lt_append([$1], [$2], [$3])$4])])
|
86
|
+
|
87
|
+
|
88
|
+
# lt_dict_add(DICT, KEY, VALUE)
|
89
|
+
# -----------------------------
|
90
|
+
m4_define([lt_dict_add],
|
91
|
+
[m4_define([$1($2)], [$3])])
|
92
|
+
|
93
|
+
|
94
|
+
# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE)
|
95
|
+
# --------------------------------------------
|
96
|
+
m4_define([lt_dict_add_subkey],
|
97
|
+
[m4_define([$1($2:$3)], [$4])])
|
98
|
+
|
99
|
+
|
100
|
+
# lt_dict_fetch(DICT, KEY, [SUBKEY])
|
101
|
+
# ----------------------------------
|
102
|
+
m4_define([lt_dict_fetch],
|
103
|
+
[m4_ifval([$3],
|
104
|
+
m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]),
|
105
|
+
m4_ifdef([$1($2)], [m4_defn([$1($2)])]))])
|
106
|
+
|
107
|
+
|
108
|
+
# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE])
|
109
|
+
# -----------------------------------------------------------------
|
110
|
+
m4_define([lt_if_dict_fetch],
|
111
|
+
[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4],
|
112
|
+
[$5],
|
113
|
+
[$6])])
|
114
|
+
|
115
|
+
|
116
|
+
# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...])
|
117
|
+
# --------------------------------------------------------------
|
118
|
+
m4_define([lt_dict_filter],
|
119
|
+
[m4_if([$5], [], [],
|
120
|
+
[lt_join(m4_quote(m4_default([$4], [[, ]])),
|
121
|
+
lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]),
|
122
|
+
[lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl
|
123
|
+
])
|