aboutsummaryrefslogtreecommitdiff
path: root/configure
AgeCommit message (Collapse)Author
2013-05-08NEVERHOOD: First code with basic detection, nothing else so farjohndoe123
2011-06-22Merge pull request #26 from Littleboy/taskbarEugene Sandulenko
Taskbar integration
2011-06-18CONFIGURE: Use = to test for string equality, not ==eriktorbjorn
I think this is correct. It's consistent with how it's done in other places in the configure script, and it silences a bunch of "unexpected operator" warnings for me.
2011-06-16CONFIGURE: Add minimum version of UnityJulien
2011-06-16CONFIGURE: Only add linking to ole32 and uuid when taskbar support is ↵Julien
compiled for Win32 We also show the type of taskbar integration being compiled.
2011-06-16CONFIGURE: Disable check for unity when compiling with mingw (pkg-config is ↵Julien
not available)
2011-06-16CONFIGURE: Update internal libunity handling and add support for disabling ↵Littleboy
taskbar support entirely - Rename internal _unity var to _libunity - Disable libunity support when taskbar integration support is disabled
2011-06-16CONFIGURE: Update libunity detection by adding a call to one of unity ↵Littleboy
functions in the cc_check test Some older compilers might not error out on missing headers and will compile (with warnings) unless a symbol is missing
2011-06-16CONFIGURE: Disable Unity on non-unix systems and add taskbar support when ↵Littleboy
compiling with mingw - Mingw now links with 2 additional libraries: ole32 and uuid
2011-06-16BACKENDS: Add define for Unity-specific taskbar codeLittleboy
2011-06-16CONFIGURE: add warning for building WIP/unstable enginesTarek Soliman
Also, If any unstable/wip engine is enabled, #define TAINTED_BUILD
2011-06-16BACKENDS: Only update unity libs and cflags in auto modeLittleboy
2011-06-16BACKENDS: Add WIP Unity supportLittleboy
2011-06-16BACKENDS: Add use flag for taskbar integrationLittleboy
2011-06-15CONFIGURE: Fix cxx test linking for Androiddhewg
Libraries are now properly detected by configure again.
2011-06-15DREAMWEB: added autogenerated sourceVladimir
2011-06-14WINCE: Add support for language auto-detection in WinCECeRiAl
2011-06-02BUILD: Enable Lands of Lore by default.Johannes Schickel
2011-06-01ALL: Removed last traces of the MPEG2 codeMax Horn
2011-06-01DC: Use 'noserial' for release buildsMax Horn
2011-06-01Merge pull request #20 from scott-t/t7g-iosclone2727
T7G iOS support
2011-06-01Merge branch 'branch-1-3-0' into masterMax Horn
I manually resolved all conflicts, and inspected every single change. Many were due to the version string mismatch and thus easily resolved. The MSVC project files add in the 1-3-0 branch were not merged, neither where the changes to gui/themes/translations.dat. Conflicts: NEWS backends/base-backend.cpp backends/graphics/samsungtvsdl/samsungtvsdl-graphics.cpp backends/module.mk backends/platform/ds/arm9/makefile backends/platform/psp/README.PSP backends/platform/samsungtv/main.cpp backends/platform/samsungtv/samsungtv.cpp backends/saves/posix/posix-saves.cpp base/commandLine.cpp base/internal_version.h base/main.cpp common/array.h configure devtools/create_project/create_project.cpp dists/android/AndroidManifest.xml dists/android/plugin-manifest.xml dists/iphone/Info.plist dists/irix/scummvm.spec dists/macosx/Info.plist dists/redhat/scummvm-tools.spec dists/redhat/scummvm.spec dists/scummvm.rc dists/slackware/scummvm.SlackBuild dists/wii/meta.xml engines/sci/parser/vocabulary.cpp engines/tinsel/handle.cpp gui/themes/translations.dat
2011-05-31Merge remote branch 'upstream/master' into t7g-iosMatthew Hoops
Conflicts: engines/groovie/script.cpp
2011-05-31CONFIGURE: move some libs required by n64 portFabio Battaglia
Some system libs weren't found during link stage, this should fix it
2011-05-31BUILD: Fix typo which broke WebOS buildsMax Horn
2011-05-31BUILD: Compile more files only when necessaryMax Horn
2011-05-31BUILD: Add SDL_BACKEND=1 to config.mk for all SDL based backendsMax Horn
2011-05-30WINCE: Remove unnecessary -I flagsMax Horn
2011-05-30BUILD: Only add one option per line to INCLUDES/CXXFLAGS/LDFLAGSMax Horn
This improves (IMHO) readability, and makes it easier to diff for changes in compiler options.
2011-05-26DC: Don't set a lib search path for pluginsMax Horn
Plugins may not rely on external libs, so there is no point in specifying a custom library search path for them.
2011-05-26BUILD: Make endianess check stricterMax Horn
2011-05-26BUILD: Reorder configure some moreMax Horn
2011-05-26ANDROID: Trying to fix the recent linker failuresMax Horn
2011-05-26BUILD: Reorder plugin stuff in configure some moreMax Horn
2011-05-25BUILD: Unify plugin prefix/suffix handling, unify setting DYNAMIC_MODULESMax Horn
2011-05-25BUILD: Minor configure cleanupMax Horn
2011-05-25BUILD: Do not define LUA_USE_POSIXMax Horn
It doesn't really do anything useful anymore anyway (except make linux builds use _setjmp instead of setjmp, but both are equally bad for us and need to replaced anyway).
2011-05-25BUILD: Update commentsMax Horn
2011-05-25BUILD: Declare RELEASE_BUILD in DEFINES, not CXXFLAGSMax Horn
2011-05-25BUILD: Replace _need_memalign runtime test by hardcoded listMax Horn
According to a discussion on -devel, this test cannot work reliably in general: It cannot determine when unaligned access really works reliably in all situations, nor on all implementations of the target CPU arch; nor does it determine whether unaligned access is supported effectively (as opposed to say supported via super-slow fault handler mechanism).
2011-05-25BUILD: Rename USE_TEXT_CONSOLE -> USE_TEXT_CONSOLE_FOR_DEBUGGERMax Horn
This reduces the similarity in name to the otherwise mostly unrelated DISABLE_TEXT_CONSOLE #define.
2011-05-25BUILD: Always enable indeo3 codecMax Horn
2011-05-25BUILD: Add only one -D to DEFINES per line; add FIXMEs to -D in CXXFLAGSMax Horn
2011-05-25BUILD: Unify how _posix is computedMax Horn
However, the current approach of determining _posix based on _host_os is flawed and should be replaced by feature detection; added a TODO about this.
2011-05-25BUILD: Rename UNIX #define to POSIXMax Horn
2011-05-25BUILD: Move some Android 'hack' back to near end of configureMax Horn
2011-05-25BUILD: Rearrange some PSP stuffMax Horn
Cursory testing shows no regressions caused by this, but proper testing of this change is recommended.
2011-05-25BUILD: Unify how debug/release mode defaults are determinedMax Horn
2011-05-25BUILD: Overhaul how we determine the need for aligned mem accessMax Horn
Also add some comments explaining what is going on and why.
2011-05-25BUILD: Enable ARM asm only based on _host_cpuMax Horn
Also moved x86 and ARM recognition code in configure to be next to each other; and print whether ARM specific code is going to be used or not.