summaryrefslogtreecommitdiffstats
path: root/platform/x11/detect.py
Commit message (Collapse)AuthorAgeFilesLines
...
* | style: Fix PEP8 blank lines issues in Python filesRémi Verschelde2016-11-011-7/+3
| | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E3,W3`, fixes: - E301 - Add missing blank line. - E302 - Add missing 2 blank lines. - E303 - Remove extra blank lines. - E304 - Remove blank line following function decorator. - E309 - Add missing blank line. - W391 - Remove trailing blank lines.
* | style: Fix PEP8 whitespace issues in Python filesRémi Verschelde2016-11-011-55/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E2,W2`, fixes: - E201 - Remove extraneous whitespace. - E202 - Remove extraneous whitespace. - E203 - Remove extraneous whitespace. - E211 - Remove extraneous whitespace. - E221 - Fix extraneous whitespace around keywords. - E222 - Fix extraneous whitespace around keywords. - E223 - Fix extraneous whitespace around keywords. - E224 - Remove extraneous whitespace around operator. - E225 - Fix missing whitespace around operator. - E226 - Fix missing whitespace around operator. - E227 - Fix missing whitespace around operator. - E228 - Fix missing whitespace around operator. - E231 - Add missing whitespace. - E231 - Fix various deprecated code (via lib2to3). - E241 - Fix extraneous whitespace around keywords. - E242 - Remove extraneous whitespace around operator. - E251 - Remove whitespace around parameter '=' sign. - E261 - Fix spacing after comment hash. - E262 - Fix spacing after comment hash. - E265 - Format block comments. - E271 - Fix extraneous whitespace around keywords. - E272 - Fix extraneous whitespace around keywords. - E273 - Fix extraneous whitespace around keywords. - E274 - Fix extraneous whitespace around keywords. - W291 - Remove trailing whitespace. - W293 - Remove trailing whitespace.
* | style: Start applying PEP8 to Python files, indentation issuesRémi Verschelde2016-11-011-163/+163
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E1`, fixes: - E101 - Reindent all lines. - E112 - Fix under-indented comments. - E113 - Fix over-indented comments. - E115 - Fix under-indented comments. - E116 - Fix over-indented comments. - E121 - Fix a badly indented line. - E122 - Fix a badly indented line. - E123 - Fix a badly indented line. - E124 - Fix a badly indented line. - E125 - Fix indentation undistinguish from the next logical line. - E126 - Fix a badly indented line. - E127 - Fix a badly indented line. - E128 - Fix a badly indented line. - E129 - Fix a badly indented line.
* | Merge pull request #6490 from zaps166/webm-prRémi Verschelde2016-10-301-0/+3
|\ \ | | | | | | Add WebM support
| * | Add WebM moduleBłażej Szczygieł2016-10-231-0/+3
| | | | | | | | | | | | | | | Use already existing libraries: libvorbis and libopus. Also use newly added libraries: libvpx, libwebm, libsimplewebm.
* | | SCons: Use colored output if available, change "colored"->"verbose"Błażej Szczygieł2016-10-171-4/+0
|/ /
* | Theora: Don't compile unnecessary files, rename "x86_opt_*"Błażej Szczygieł2016-10-161-1/+1
| |
* | freetype: Make it a module and split thirdparty libraryRémi Verschelde2016-10-151-5/+6
| | | | | | | | | | Comment out the weird workaround for building on Windows at it might not be needed anymore. Testing needed to confirm.
* | zlib: Split thirdparty files, simplify scons optionRémi Verschelde2016-10-151-1/+0
| |
* | glew: Split thirdparty files and isolate envRémi Verschelde2016-10-151-1/+3
| | | | | | | | | | | | Not fully happy about the way this one interacts with the various platforms. Maybe the platform_config.h should be generated by the SCsub instead of passing a define just to know where is the header.
* | squish: Move to a module and split thirdparty libRémi Verschelde2016-10-151-0/+3
| |
* | theora: Move to a module and split thirdparty libRémi Verschelde2016-10-151-5/+12
| | | | | | | | Same rationale as the previous commits.
* | openssl: Move to a module and split thirdparty libRémi Verschelde2016-10-151-2/+2
| | | | | | | | Same rationale as the previous commits.
* | ogg/vorbis/opus: Make them modules and unbundle thirdparty libsRémi Verschelde2016-10-151-0/+11
| | | | | | | | | | | | | | | | | | Took the opportunity to undo the Godot changed made to the opus source. The opus module should eventually be built in its own environment to avoid polluting others with too many include dirs and defines. TODO: Fix the platform/ stuff for opus.
* | webp: Make it a module and unbundle libwebp thirdparty filesRémi Verschelde2016-10-151-0/+3
| | | | | | | | | | | | Note that there are two Godot-specific changes made to libwebp for the javascript/HTML5 platform. They are documented in the README.md.
* | enet: Split enet thirdparty files and allow unbundlingRémi Verschelde2016-10-151-1/+2
| | | | | | | | | | Building against shared libraries only implemented for Linux X11 so far. TODO: Document Godot's modifications of upstream enet.
* | png: Split library to thirdparty dir and allow unbundlingRémi Verschelde2016-10-151-3/+5
|/ | | | | | | | | | | | Uses the new structure agreed upon in #6157, but the thirdparty/ folder does not behave following a logic similar to that of modules/ yet. The png driver can't be moved to a module as discussed in #6157, as it's required by core together with a few other ImageLoader implementations (see drivers/register_driver_types.cpp:register_core_driver_types()) Dropped the possibility to disable PNG support, it's a core component of Godot.
* Use pkgconfig to locate ALSA libs (#6119)romeojulietthotel2016-09-231-1/+1
| | | | | | * This allows building when ALSA libs are in a non-standard location. PKG_CONFIG_PATH alone is not enough as the final link fails. Adding this makes the final link succeed. * The extra LIBS flag for alsa is not needed so removing.
* Code cleanup in platform/x11Mario Schlack2016-07-211-5/+0
|
* remove GLU dependency, closes #3787Juan Linietsky2016-07-181-1/+1
|
* Link libdl only on Linux, fix BSD buildeska2016-07-041-1/+3
|
* Fix compiling for X11 on non-86, this fixes #5444Ferdinand Thiessen2016-06-271-1/+3
|
* Merge pull request #4905 from Hinsbart/x11_dpiJuan Linietsky2016-06-111-1/+7
|\ | | | | x11: Implemented dpi detection
| * x11: Implemented dpi detectionAndreas Haas2016-06-091-1/+7
| | | | | | | | | | | | depends on XRandR. Had to dynamically load `XRRGetMonitors` as Ubuntu 12.04 doesn't have it. Also removed libudev from travis install list.
* | -make freetype build for all platforms the same, default as builtin except ↵Juan Linietsky2016-06-091-5/+2
|/ | | | | | on x11. closes #5119
* GLEW: Define static + enabled and includes via SConsRémi Verschelde2016-06-081-1/+2
| | | | | | | | This allows us not to have to hack our definitions in the upstream files, making it easier to upgrade to newer versions in the future. For the include paths to work, the headers are moved to a GL subfolder to match their upstream location.
* Finalized DynamicFont implementationJuan Linietsky2016-05-291-2/+2
| | | | | | -DynamicFont uses Freetype by default -Editor fonts are now scalable thanks to this -Cleaned up documentation browser and added fonts for this
* Remove trailing spacesRémi Verschelde2016-04-021-8/+8
|
* x11: make dependancy on libudev optionalhondres2016-02-141-10/+8
|
* added option to link libstdc++ staticallyJuan Linietsky2016-02-041-0/+4
|
* remove dependancy on libevdevhondres2016-01-261-8/+4
|
* Enable ALSA driver in non-linux X11 when availableeska2016-01-101-1/+5
|
* Make joydev build using udev and evdev opt-out but blocking (linux)Rémi Verschelde2016-01-061-11/+18
| | | | It is enabled by default, users have to specifically ask for it if they don't want gamepad support. If libudev or libevdev are missing, the build aborts and tells the user the reason and that they can disable gamepad support with the "gamepad=no" option.
* Check pkg-config for libudev and enable gamepad code only if found. Linux ↵hondres2015-12-211-6/+12
| | | | only for now
* -fixed build system to use pkg-config for evdevJuan Linietsky2015-12-211-2/+7
|
* Better gamepad supporthondres2015-12-181-1/+1
|
* changed a bit to use system()Juan Linietsky2015-12-081-1/+1
|
* improve detection of linux, fixes #3201Juan Linietsky2015-12-081-1/+1
|
* Merge pull request #2849 from a12n/compobsd2Juan Linietsky2015-12-081-2/+5
|\ | | | | Compile on OpenBSD
| * Enable ALSA only for LinuxAnton Yabchinskiy2015-11-201-2/+5
| |
* | Enabled debug symbols for x11 when using platform=release_debug and ↵koalefant2015-11-291-0/+2
| | | | | | | | debug_release=yes together
* | 0theora compilation fixesJuan Linietsky2015-11-251-0/+2
|/
* Revert "libao audio driver"Juan Linietsky2015-11-191-9/+4
|
* Merge branch 'master' of github.com:okamstudio/godotAnton Yabchinskiy2015-11-021-4/+15
|\
| * Fixed theora playback. Removed theoraplayer.Juan Linietsky2015-09-261-1/+1
| | | | | | | | Still need to get proper audio output latency in some platforms.
| * fix to builtin freetype defines on linuxJuan Linietsky2015-09-101-0/+6
| |
| * fix to freetype detectionJuan Linietsky2015-09-101-2/+5
| |
| * fix build issue with ssl, closes #2384Juan Linietsky2015-08-231-0/+1
| |
| * damn github built-in editorJuan Linietsky2015-08-211-1/+1
| |
| * fix for built-in ssl (easier to build 32 bits export)Juan Linietsky2015-08-211-1/+2
| |