pkgsrc/net/libquic/patches/patch-src__base__base_paths_posix.cc
agc 4ecc1f7ac4 Add libquic-0.0.3 to the packages collection.
QUIC is an experimental protocol aimed at reducing web latency over
	that of TCP.  On the surface, QUIC is very similar to TCP+TLS+SPDY
	implemented on UDP.  Because TCP is implement in operating system
	kernels, and middlebox firmware, making significant changes to TCP is
	next to impossible.  However, since QUIC is built on top of UDP, it
	suffers from no such limitations.

	Key features of QUIC over existing TCP+TLS+SPDY include

	+ Dramatically reduced connection establishment time
	+ Improved congestion control
	+ Multiplexing without head of line blocking
	+ Forward error correction
	+ Connection migration
2016-07-01 20:32:35 +00:00

22 lines
719 B
C++

$NetBSD: patch-src__base__base_paths_posix.cc,v 1.1 2016/07/01 20:32:35 agc Exp $
Portability fixes
--- src/base/base_paths_posix.cc 2015/12/30 22:26:32 1.1
+++ src/base/base_paths_posix.cc 2015/12/30 22:28:31
@@ -63,13 +63,13 @@
}
*result = FilePath(bin_dir);
return true;
-#elif defined(OS_OPENBSD)
+#elif defined(OS_OPENBSD) || defined(OS_NETBSD)
// There is currently no way to get the executable path on OpenBSD
char* cpath;
if ((cpath = getenv("CHROME_EXE_PATH")) != NULL)
*result = FilePath(cpath);
else
- *result = FilePath("/usr/local/chrome/chrome");
+ *result = FilePath(@PREFIX@ "/chrome/chrome");
return true;
#endif
}