blob: 70c3d55dc5ab2f5739043427cdac9cae6ec7cd6a (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | --- ./chrome/plugin/plugin_main_linux.cc.orig	2010-12-16 02:11:58.000000000 +0100
+++ ./chrome/plugin/plugin_main_linux.cc	2010-12-20 20:15:08.000000000 +0100
@@ -5,13 +5,13 @@
 #include <signal.h>
 #include <string.h>
 #include <sys/types.h>
-#include <syscall.h>
+#include <sys/syscall.h>
 #include <unistd.h>
 
 #include "build/build_config.h"
 
 // This whole file is only useful on 64-bit architectures.
-#if defined(ARCH_CPU_64_BITS)
+#if defined(ARCH_CPU_64_BITS) && !defined(OS_FREEBSD)
 
 namespace {
 
 |