- Allow slave ports to turn off some options - Add modular renderer support for slaves - Add WITH_DEBUG support - Always check against non-default options so that they can be overridden (e.g. for BATCH mode) - Add pkg-config build dependency ioquake3-devel, iourbanterror, openarena: - Fix CURL support - Link libraries instead of using dlopen ioquake3-devel, iourbanterror: - Update SVN snapshot r2064 to r2194 - Improved UDP download speed - New protocol version 71 - Reduced VOIP latency - Modular rendering system - Added r_mode -2 for using display resolution - Clang support openarena: - Switch from engine src dist 21 to 22 (both r1910 based) openarena-oax: - Update to B50 iourbanterror, openarena: - Clean up plist - Disable GAMELIBS option PR: ports/162301 Submitted by: Dominic Fandrey <kamikaze@bsdforen.de> (maintainer) Feature safe: yes
12 lines
379 B
C
12 lines
379 B
C
--- code/client/cl_curl.h.orig 2011-11-03 10:16:32.000000000 +0100
|
|
+++ code/client/cl_curl.h 2011-11-03 10:16:56.000000000 +0100
|
|
@@ -34,8 +34,7 @@
|
|
#elif defined(MACOS_X)
|
|
#define DEFAULT_CURL_LIB "libcurl.dylib"
|
|
#else
|
|
-#define DEFAULT_CURL_LIB "libcurl.so.4"
|
|
-#define ALTERNATE_CURL_LIB "libcurl.so.3"
|
|
+#define DEFAULT_CURL_LIB "libcurl.so"
|
|
#endif
|
|
|
|
#ifdef USE_LOCAL_HEADERS
|