mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 15:40:32 -04:00
Use devel/ninja instead of gmake as a build tool. Submitted by: George Liaskos Security: http://vuxml.org/freebsd/ae651a4b-0a42-11e3-ba52-00262d5ed8ee.html
12 lines
530 B
C++
12 lines
530 B
C++
--- content/browser/download/base_file.cc.orig 2013-08-18 21:43:48.000000000 +0300
|
|
+++ content/browser/download/base_file.cc 2013-08-18 21:44:22.000000000 +0300
|
|
@@ -212,7 +212,8 @@
|
|
}
|
|
|
|
// OS_WIN, OS_MACOSX and OS_LINUX have specialized implementations.
|
|
-#if !defined(OS_WIN) && !defined(OS_MACOSX) && !defined(OS_LINUX)
|
|
+#if !defined(OS_WIN) && !defined(OS_MACOSX) && !defined(OS_LINUX) && \
|
|
+ !defined(OS_BSD)
|
|
DownloadInterruptReason BaseFile::AnnotateWithSourceInformation() {
|
|
return DOWNLOAD_INTERRUPT_REASON_NONE;
|
|
}
|