summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-04-07Effectively revert c2e146c1Tim Angus
2016-04-07Search for mods in steam path as well as home and base paths.SmileTheory
2016-04-07Don't quote me.Zachary J. Slater
2016-04-07Fixed the os x path and now both scripts will take argumentsZachary J. Slater
2016-04-07A mac dedicated server scriptZachary J. Slater
2016-04-07Early out of Cmd_CompleteArgument and Cmd_SetCommandCompletionFuncZack Middleton
Reported by Ensiform.
2016-04-07Use correct array size for facets in cm_patch.cZack Middleton
2016-04-07Make add bots menu use standard menu drawingZack Middleton
Made add bots menu draw banner and background like remove bots menu.
2016-04-07Fix glyph width calculation in Text_Paint_LimitZack Middleton
Text_Width's scale argument will be multiplied by glyphScale, so don't pass useScale that is already multiplied by glyphScale as this makes the scale too big.
2016-04-07Fix the wonky fix to the wonky va_list usageTim Angus
2016-04-07Fix wonky va_list usageTim Angus
2016-04-07Ensure reads from /dev/urandom are unbufferedDion Williams
Upstream: JACoders/OpenJK@de6a9dfd40065ae9a5a2b0b3ef701feee8dac867
2016-04-07Fix Cvar_Unset not notifying cvar_modifiedFlagsDion Williams
Upstream: JACoders/OpenJK@9a5e9e87ff2d1302261978fa3f1adafb851bd6d6
2016-04-07Better language, less tenseZachary J. Slater
2016-04-07more helpful error messageZachary J. Slater
Can’t find your pak0.pk3? Here’s where we tried looking.
2016-04-07Remove unused define CG_FONT_THRESHOLDZack Middleton
2016-04-07Update headers in VS (10 and 11) projectsZack Middleton
So VS doesn't always want to rebuild. Reported by @shearer12345.
2016-04-07Make msvc10/11 x86_64 copy SDL264.dllZack Middleton
2016-04-07add post-build event for msvc10/11 to copy SDL2.dll to build foldershearer12345
2016-04-07Update msvc10/11 for SDL2shearer12345
update AdditionalIncludeDirectories to use SDL2 update AdditionalDependencies to use SDL2 add AdditionalLibraryDirectory to SDL2 libs set sub-system as console
2016-04-07Make msvc10/11 use UseOfMfc false and CharacterSet "NotSet"shearer12345
2016-04-07Copy msvc11 build changes to msvc10Zack Middleton
2016-04-07Fix mscv11 libcurl include pathZack Middleton
2016-04-07Fix msvc11 x86_64 runtimeZack Middleton
2016-04-07Update msvc10 renderer filenames (copied from msvc11)Zack Middleton
2016-04-07Ignore MSVC non-project filesZack Middleton
Ignore auto generated or user configuration for MSVC projects. Note: .user is ignored in Xcode section but applies to MSVC too. Patch by @shearer12345.
2016-04-07Remove MSVC user configuation filesZack Middleton
2016-04-07Fix (unused) watertype checks in PM_WaterMoveTobias Kuehnhammer
2016-04-07Fix va_list warningPan7
2016-04-07Add missing qcurl handle cleanupPan7
2016-04-07Return the result from qcurl_easy_setopt_warnTim Angus
2016-04-07qcurl_multi_cleanup checkPan7
2016-04-07qcurl_easy_setopt dev warningPan7
2016-04-07qcurl_multi_strerror not curl_multi_strerrorPan7
2016-04-07qcurl_multi_remove_handle checkPan7
2016-04-07Fix 'Invalid architecture' message in make-macosx-app.shZack Middleton
2016-04-07SDL_GL_SetSwapInterval() checkPan7
2016-04-07SDL_GetWindowDisplayIndex() check2Pan7
2016-04-07Added SDL_GetError()Pan7
2016-04-07Added SDL_GetError()Pan7
2016-04-07SDL_CreateWindow NULL checkPan7
2016-04-07SDL_GetWindowDisplayIndex checkPan7
2016-04-07SDL_SetWindowGammaRamp checkPan7
2016-04-07SDL_FALSE/TRUE for SDL_SetWindowGrabPan7
2016-04-07SDL_Init zero checkPan7
2016-04-07build: if tput fails, fall back to a reasonable text widthSimon McVittie
If TERM is not set (which can happen in autobuilders and other batch environments), or if tput cannot determine the number of columns for some other reason, then it can fail and not produce any output. Prior to this change, that would result in passing field width -4 to fmt, which is an error and causes fmt to produce no output.
2016-04-07build: define ARCH_STRING in Makefile on Linux and other GNU platformsSimon McVittie
GNU platforms (Linux, kFreeBSD, Hurd) have endian.h to determine endianness, so all architectures except x86_64 are in fact treated identically, except that their ARCH_STRING is different. The ARCH_STRING must always be identical to the ARCH from the Makefile, otherwise the engine will not find its cgame, game and ui plugins under their expected names and startup will fail. If we pass it in from the Makefile, then an identical value is guaranteed, and we can get rid of an increasingly long list of defined(__some_cpu__) tests. The one remaining quirk is that we test __x86_64__ to determine whether to define idx64; I've kept that, but separated it from the ARCH_STRING. On non-Linux platforms we only support a few architectures anyway, so keeping the list up to date is less of a burden; *BSD porters could probably use the same technique to get support for lots of architectures with little effort, but I have not done that here, because I cannot test it. Windows must continue to support preprocessor-based architecture tests in any case, so that the MSVC solutions (which do not use the Makefile) can continue to work. However, Windows only runs on a few CPU families, so this shouldn't be a significant burden in practice. When cross-compiling, the tools are compiled for the build architecture (COMPILE_PLATFORM, COMPILE_ARCH) rather than the host architecture (PLATFORM, ARCH), so define ARCH_STRING to COMPILE_ARCH on a GNU COMPILE_PLATFORM.
2016-04-07build: canonicalize all ARM variants to "arm", matching q_platform.hSimon McVittie
The ARCH in the Makefile must match the ARCH_STRING in q_platform.h; otherwise, ioquake3 will install (for instance) uiARCH.so but look for uiARCH_STRING.so, which isn't going to go well (particularly for the modular renderer). Like i386, but unlike most (all?) other Linux platforms, uname -m on 32-bit ARM machines can have various results starting with "arm", depending on the specific CPU version (e.g. Raspberry Pi is armv6l, RPi2 is armv7l). Again similar to the x86 family, it's appropriate for them to share an architecture suffix; q_platform.h has traditionally used "arm" so let's use that. 64-bit ARM makes a clean break from this, much like 64-bit x86 does: uname -m produces a string not starting with arm (specifically "aarch64"), and gcc predefines __aarch64__ instead of __arm__. As a result, it is unaffected by this change.
2016-04-07Makefile: confine $(LIB) to the one platform that needs it, namely irix64Simon McVittie
It isn't mentioned anywhere else, and deleting it from the Linux code path means we don't need to maintain an exhaustive list of 64-bit architectures.
2016-04-07Fix handling too many teams in Team Arena UIZack Middleton