Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'v1.19' of git://repo.or.cz/openal-soft into v1.19v1.19 | Sven Gothel | 2019-04-07 | 6 | -24/+672 |
|\ | |||||
| * | Don't cache SDL2_LIBRARY_TEMP with CMake | Chris Robinson | 2018-03-29 | 1 | -11/+9 |
| | | | | | | | | | | Otherwise it keeps prepending and appending the same extra libs and flags with each invocation. | ||||
| * | Handle libossaudio as an optional OSS library | Chris Robinson | 2017-09-15 | 1 | -1/+13 |
| | | |||||
| * | Don't require SDL_sound for alffplay | Chris Robinson | 2017-02-11 | 1 | -0/+6 |
| | | | | | | | | Also explicitly link with libz for alffplay, since static ffmpeg libs need it. | ||||
| * | Update cmake scripts to handle policy 0054 | Chris Robinson | 2016-11-22 | 1 | -2/+2 |
| | | |||||
| * | fixed minor check in FindDSound.cmake | septag | 2016-11-03 | 1 | -4/+6 |
| | | |||||
| * | Added cmake FindWindowsSDK for FindDSound module and fixed FindDSound.cmake | septag | 2016-11-03 | 2 | -53/+639 |
| | | |||||
| * | Added cmake support for dsound and windows 8/10 SDKs | septag | 2016-10-30 | 1 | -8/+52 |
| | | |||||
* | | Bug 1190: Updating glibc-compat-symbols.h ; Fix armv6hf + adding aarch64 ↵ | Sven Gothel | 2019-04-07 | 3 | -10/+24 |
| | | | | | | | | | | | | | | cmake options Note armv6hf won't compile through due to some neon inline argument mismatch errors. aarch64 did produce a native library, despite tons of warnings. | ||||
* | | Merge branch 'UPSTREAM' | Sven Gothel | 2015-11-12 | 7 | -197/+337 |
|\| | |||||
| * | Remove the MIDI code | Chris Robinson | 2015-10-20 | 1 | -19/+0 |
| | | | | | | | | | | | | | | The extension's not going anywhere, and it can't do anything fluidsynth can't. The code maintenance and bloat is not worth keeping around, and ideally the AL API would be able to facilitate MIDI-like behavior anyway (envelopes, start-at- time, etc). | ||||
| * | Search more aggressively for libs needed by SDL_sound | Chris Robinson | 2015-09-30 | 1 | -169/+218 |
| | | |||||
| * | Add a cmake module to find JACK | Chris Robinson | 2014-12-21 | 1 | -0/+60 |
| | | |||||
| * | Use the current binary dir for shared function checks too | Chris Robinson | 2014-08-20 | 1 | -7/+7 |
| | | |||||
| * | Use directories relative to current project in CheckFileOffsetBits.cmake | Jesper Särnesjö | 2014-08-20 | 1 | -4/+4 |
| | | | | | | | | Enables building OpenAL Soft in a subdirectory of another project. | ||||
| * | Search for the correct include and lib directories for the DX SDK | Chris Robinson | 2014-08-15 | 1 | -2/+4 |
| | | | | | | | | And only set them when needed. | ||||
| * | Enable large file support | Chris Robinson | 2014-08-05 | 2 | -0/+48 |
| | | |||||
* | | Fix Android ARM64 Support (commit 83ea6a37435296758d492d8be594ca1fb54acdcb) | Sven Gothel | 2015-07-13 | 1 | -5/+29 |
| | | | | | | | | | | | | | | | | | | For an unknown reason, passing '-Wl,--fix-cortex-a8' to LINKER_FLAGS directly in the dead else branch ('NDK_CPU_ARM64' is 'ON') causes its usage when issuing 'try_compile'. Hence we pass these flags via ARM32_LINKER_OPTS and ARM64_LINKER_OPTS via invocation (JOAL's ant build.xml). | ||||
* | | cmake/clang: Keep using clang; OSX: -mmacosx-version-min=10.5; Inject ↵ | Sven Gothel | 2015-07-11 | 2 | -5/+32 |
| | | | | | | | | additional architectures for fat-binary (macosx) | ||||
* | | Add Android ARM64 Support | Sven Gothel | 2015-07-11 | 1 | -13/+30 |
| | | |||||
* | | glibc-compat-symbols.h: Disable warning for not supported ↵ | Sven Gothel | 2014-06-11 | 1 | -1/+1 |
| | | | | | | | | GLIBC_COMPAT_SYMBOL, since included even for OSX | ||||
* | | Fix glibc-compat-symbols.h: for 32bit use GLIBC 2.0 ; Distinguish clang and gcc. | Sven Gothel | 2014-06-10 | 1 | -8/+21 |
| | | |||||
* | | CMake: Don't use CMAKE_TOOLCHAIN_FILE for non-crosscompilation, use ↵ | Sven Gothel | 2014-06-10 | 4 | -4/+6 |
| | | | | | | | | OPENAL_CUSTOM_CONFIG to inject cmake commands | ||||
* | | Merge branch 'UPSTREAM' into UPSTREAM_MERGE | Sven Gothel | 2014-06-10 | 12 | -292/+941 |
|\| | |||||
| * | Add an ffmpeg-based example player | Chris Robinson | 2014-06-02 | 1 | -0/+173 |
| | | | | | | | | | | | | This example shows proper timing and A/V synchronization with an OpenAL stream. Requires the in-progress AL_SOFTX_source_length extension to avoid manually keeping track of the buffer queue length. | ||||
| * | Update the examples to use SDL2 | Chris Robinson | 2014-05-23 | 2 | -286/+477 |
| | | | | | | | | | | | | This should make it easier to build the examples on 64-bit, where there are no premade dev libs for SDL1 on 64-bit mingw. FindSDL_sound.cmake has been updated to accept SDL or SDL2. | ||||
| * | Don't mix old- and new-style FIND_PACKAGE_HANDLE_STANDARD_ARGS calls | Chris Robinson | 2014-05-10 | 1 | -6/+2 |
| | | | | | | | | | | | | | | Some (all?) versions of cmake seem to get a bit confused when an old-style FIND_PACKAGE_HANDLE_STANDARD_ARGS call fails, and the scripts attempt a new- style call later on. It continues to think it's using old-style, acting as if REQUIRED_VARS is the message and looks for a VERSION_VAR variable. | ||||
| * | Include FindALSA.cmake | Chris Robinson | 2014-04-23 | 1 | -0/+73 |
| | | | | | | | | Older versions of CMake don't seem to have it. | ||||
| * | Use a find module to look for DirectSound | Chris Robinson | 2014-04-19 | 1 | -0/+33 |
| | | |||||
| * | Use find cmake modules for more backends | Chris Robinson | 2014-04-19 | 6 | -0/+183 |
| | | |||||
* | | cmake/toolchain.android.cmake: Add CXX_FLAGS and add ↵ | Sven Gothel | 2014-02-15 | 1 | -1/+3 |
| | | | | | | | | -I${ANDROID_NDK_SYSROOT}/usr/include | ||||
* | | cmake/toolchain*: Add CXX_FLAGS | Sven Gothel | 2014-02-15 | 6 | -6/+12 |
| | | |||||
* | | Merge branch 'UPSTREAM' | Sven Gothel | 2014-01-26 | 3 | -59/+405 |
|\| | |||||
| * | Add an option for FLuidSynth to handle MIDI | Chris Robinson | 2013-11-28 | 1 | -0/+23 |
| | | |||||
| * | Add a custom FindSDL_sound cmake module | Chris Robinson | 2013-06-05 | 1 | -0/+382 |
| | | | | | | | | | | | | The one that comes with CMake is broken, incorrectly setting SDL_SOUND_LIBRARIES, causing warnings, and not even working if the project is C only. | ||||
| * | Don't use a custom CheckCCompilerFlag.cmake | Chris Robinson | 2013-03-13 | 1 | -59/+0 |
| | | |||||
* | | Add clang cmake.toolchain macros; Fix glibc-compat-symbols.h to work w/ ↵ | Sven Gothel | 2013-09-13 | 3 | -6/+44 |
| | | | | | | | | clang (nop) | ||||
* | | Toolchain CMake files for ARM* Cross-Compilation require host include ↵ | Sven Gothel | 2013-04-25 | 2 | -2/+2 |
| | | | | | | | | directory (not in system include path) to pick up pulseaudio/alsa. | ||||
* | | Add cmake toolchain files for armv6 (armv5t-softfp) and armv6hf ↵ | Sven Gothel | 2013-04-23 | 2 | -0/+26 |
| | | | | | | | | (armv6-hardfp), incl. sym-links to cross compiler | ||||
* | | cmake/glibc-compat-symbols.h: Add __arm__ -> GLIBC_2.4 ; default is now ↵ | Sven Gothel | 2013-04-21 | 1 | -3/+13 |
| | | | | | | | | GLIBC_2.2.5 // Still minimum required is GLIBC_2.4! | ||||
* | | Add 'cmake/glibc-compat-symbols.h' to force usage of minimal GLIBC symbols ↵ | Sven Gothel | 2013-04-21 | 3 | -1/+21 |
| | | | | | | | | | | | | | | | | | | | | | | currently for memcpy only, used in our x86_32 and default gcc toolchain cmake file. Note: JogAmp's minimum GLIBC is 2.4 due to '__stack_chk_fail' (stack overflow checking) GLIBC 2.4 - March 2006 - Standard for LSB 4.0, Used in SLES 10 We could add compile/link option '-fno-stack-protector', however stack protection seems reasonable and a pre 2006 distribution a bit too 'far fetched' for our multimedia bindings anyway. | ||||
* | | Add gcc-default w/ link gcc static | Sven Gothel | 2013-04-20 | 2 | -1/+9 |
| | | |||||
* | | Add toolchain.gcc-x86_32.cmake for x86_64 -> x86_32 crosscompilation | Sven Gothel | 2013-04-20 | 1 | -0/+17 |
| | | |||||
* | | Add Windows def for mingw .. not working | Sven Gothel | 2013-02-01 | 1 | -0/+30 |
| | | |||||
* | | Adding howto and cmake config file for Android | Brice Figureau | 2013-01-31 | 1 | -0/+170 |
|/ | |||||
* | Use a better method for determining if shared functions exist | Chris Robinson | 2011-07-23 | 3 | -108/+92 |
| | |||||
* | Define ARGSTACK and CALLSTACK only when needed for testing shared libs | Chris Robinson | 2010-05-16 | 1 | -2/+5 |
| | |||||
* | Properly check for functions in Win32 shared libs | Chris Robinson | 2010-02-16 | 2 | -0/+105 |
| | |||||
* | Prettify CMake checks for compiler switches | Chris Robinson | 2009-12-09 | 1 | -0/+59 |