089acff6fe
+ switch from using system sqlite to the bundled one because they have many modifications that are needed + add a new mirror for the distfile because the google one is utterly slow
39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
$OpenBSD: patch-base_base_gypi,v 1.5 2011/04/29 13:18:01 robert Exp $
|
|
--- base/base.gypi.orig Tue Apr 26 10:01:34 2011
|
|
+++ base/base.gypi Thu Apr 28 11:17:48 2011
|
|
@@ -169,6 +169,7 @@
|
|
'process_util.h',
|
|
'process_util_linux.cc',
|
|
'process_util_mac.mm',
|
|
+ 'process_util_openbsd.cc',
|
|
'process_util_posix.cc',
|
|
'process_util_win.cc',
|
|
'process_win.cc',
|
|
@@ -355,12 +356,11 @@
|
|
'message_pump_glib_x.cc',
|
|
],
|
|
}],
|
|
- [ 'OS != "linux"', {
|
|
+ [ 'OS != "linux" or OS != "openbsd"', {
|
|
'sources!': [
|
|
# Not automatically excluded by the *linux.cc rules.
|
|
'gtk_util.cc',
|
|
'gtk_util.h',
|
|
- 'linux_util.cc',
|
|
],
|
|
},
|
|
],
|
|
@@ -474,6 +474,12 @@
|
|
],
|
|
}],
|
|
[ 'OS == "freebsd" or OS == "openbsd"', {
|
|
+ 'sources!': [
|
|
+ 'file_util_linux.cc',
|
|
+ 'process_linux.cc',
|
|
+ 'process_util_linux.cc',
|
|
+ ],
|
|
+ 'include_dirs': [ '/usr/local/include' ],
|
|
'link_settings': {
|
|
'libraries': [
|
|
'-L/usr/local/lib -lexecinfo',
|