aboutsummaryrefslogtreecommitdiff
path: root/configure
AgeCommit message (Collapse)Author
2016-06-27CONFIGURE: Only open config.log after showing helpWillem Jan Palenstijn
This prevents ./configure --help from clearing config.log.
2016-05-30CONFIGURE: Add support for building with WinSparkleThierry Crozat
2016-05-19ANDROIDSDL: add androidsdl backendlubomyr
2016-05-16Merge pull request #745 from Cruel/3dsEugene Sandulenko
3DS: New Backend
2016-04-143DS: Maintain alphabetical order in configure fileThomas Edvalson
2016-04-113DS: Add CIA format build, add timer handler thread, fix APT service ↵Thomas Edvalson
suspending/sleeping/exiting
2016-04-10GCW0: Enable building with all scalers disabledEugene Sandulenko
2016-04-10GCW0: Disable Timidity by defaultEugene Sandulenko
2016-04-10GCW0: GCW0 is fullscreen-only deviceEugene Sandulenko
2016-04-063DS: Add to backend configuration listThomas Edvalson
2016-04-063DS: Initial commitThomas Edvalson
2016-03-27BUILD: Fix creating OS X application bundle when Sparkle is enabledThierry Crozat
2016-03-25CONFIGURE: Only check Sparkle and NSDockTilePlugIn availability on OS XThierry Crozat
2016-03-25OS X: Implement a Dock Tile Plugin to display recent games menu in dockThierry Crozat
This allows to start a recently played game directly from the dock. The ScummVM.app application should have been permanently added to the dock and the menu is only present when ScummVM is not running. The list of recently played game is written by the taskbar code in ScummVM. The Dock Tile Plugin only reads that list to populate the menu.
2016-03-23Merge pull request #711 from lordhoto/opengl-revampJohannes Schickel
OpenGLGraphicsManager: Revamp
2016-03-21CONFIGURE: Extend Linux CD check and run it on Linux only.Johannes Schickel
2016-03-16CONFIGURE: Abort configure stage when invalid OpenGL mode is specified.Johannes Schickel
2016-03-16OPENGL: Support GLES2 contexts.Johannes Schickel
2016-03-16OPENGL: Allow runtime specification of OpenGL mode.Johannes Schickel
Formerly, we required that the OpenGL mode was fixed at compile time. Now we allow the code to work with whatever it is given at runtime. It is still possible to force a context type on compile time.
2016-03-16OPENGL: Resolve OpenGL functions on run-time.Johannes Schickel
Formerly we relied on static linkage. However, in the presense of modern OpenGL (ES) implementations it is not easily identifable which library to link against. For example, on Linux amd64 with nVidia drivers and SDL2 setup to create a GLES 1.1 context one would need to link against libGL.so. However, traditionally GLES 1.1 required to link against libGLESv1_CM.so. To prevent a huge mess we simply resolve the OpenGL functions on run-time now and stop linking against a static library (in most cases). GLES support needs to be enabled manually on configure time for now. Tizen changes have NOT been tested.
2016-03-13BACKENDS: Add a Linux CD-ROM audio playerMatthew Hoops
2016-03-09CONFIGURE: Fix options for GCW0Eugene Sandulenko
2016-03-08CONFIGURE: Remove out dated comment for MinGW.Kirben
2016-03-08CONFIGURE: Update FluidSynth libraries for MinGW.Kirben
2016-03-06CONFIGURE: Don't use abbreviations in feature list.Johannes Schickel
2016-03-05BUILD: Fix comment for how we get the path to the Xcode ToolsThierry Crozat
2016-03-05BUILD: Use xcode-select to determine the path to the Xcode tools on OS XThierry Crozat
We hardcoded the path as /Developer/Tools, but that path changed with more recent versions of Xcode. There is actually a command line tool to get this path, so use that. But also add an undocumented configure option to allow specifying the path manually.
2016-03-05CONFIGURE: Error out when host-os is msys.Willem Jan Palenstijn
The msys shell can be run in both msys and in mingw mode. We don't support it when in msys mode, as this mode seems to be intended as a cygwin-like compatibility layer, instead of for native Windows applications.
2016-03-05CONFIGURE: Introduced new engine dependency: highresEugene Sandulenko
Some backends like GCW0 do no support graphics >320x240 due to the hardware limitation (downscaling is possible but it will ruin the pixel hunting which is often part of the gameplay). Instead of manually updating the list of engines, we now introduce a new dependency. I marked all relevant engines, but some, like tinsel, require more work with putting their relevant high-res games under USE_HIGHRES define.
2016-02-24CONFIGURE: Fix for latest gcw0 toolchainEugene Sandulenko
2016-02-24CONFIGURE: Remove trailing spacesEugene Sandulenko
2016-02-15CONFIGURE: Update host alias for raspberrypi for new toolchain.Johannes Schickel
On request of Vanfanel.
2016-02-15CONFIGURE: Enable MT-32 for iOS7 and enable shift count warnings again.Johannes Schickel
2016-02-12CONFIGURE: Allow to override ronindir through RONINDIR env variable.Johannes Schickel
2016-02-03CONFIGURE: Log cmdline and envvars to config.logWillem Jan Palenstijn
2016-01-13CONFIGURE: Update dependency list for fluidsynth on OS XThierry Crozat
Also add missing cc_check_clean after fluid synth check.
2016-01-13CONFIGURE: Update note about Fluidsynth in Windows builds.Kirben
2016-01-12CONFIGURE: Make FluidSynth detection more reliable.Johannes Schickel
1. We use actual FluidSynth symbols in our test program now. This assures that linking actually checks for presence of symbols. Which in turn checks that the library linked can be used with our link configuration. 2. Add simple hardcoded list of FluidSynth dependencies. This helps detection of statically built FluidSynth.
2016-01-10CONFIGURE: Fix missing variable access.Johannes Schickel
Ooops.
2016-01-10CONFIGURE: Allow detection of static FreeType2 builds.Johannes Schickel
This is actually a bit abusive of the --static option. However, it works and prevents a lot of hassle to setup building when FreeType2 was built with --disable-shared.
2016-01-09CONFIGURE: Disable ARM assembly for iOS targets with Apple's as.Johannes Schickel
2016-01-07Merge pull request #643 from raziel-/patch-2Johannes Schickel
AMIGAOS: Static builds preferred
2016-01-06IOS: Merge branch 'master' into ios-fixVincent Bénony
2016-01-06IOS: Merge masterVincent Bénony
2016-01-06IOS: Fixes compilation under LinuxVincent Bénony
2016-01-06IOS: Create two targets for old iPhone (iOS <= 6) and new one (iOS >= 7)Vincent Bénony
The "iphone" backend is the support for the old iPhones. The "ios7" backend is for the new iPhones.
2016-01-06IOS: Uses the SDKROOT variable only if providedVincent Bénony
2016-01-06IOS: Once again, changes the iOS deployment targetVincent Bénony
2016-01-06IOS: Changes the deployment target to iOS 7.0Vincent Bénony
2016-01-06IOS: Fixes configure scriptVincent Bénony