summaryrefslogtreecommitdiff
path: root/japanese/mozc-server
diff options
context:
space:
mode:
authorDaichi GOTO <daichi@FreeBSD.org>2012-05-02 04:18:31 +0000
committerDaichi GOTO <daichi@FreeBSD.org>2012-05-02 04:18:31 +0000
commita76795c61a432db3721d7f46d9cdb2a53a613881 (patch)
tree7c873da605bf2751df89f9aaa03b7dead2aa290f /japanese/mozc-server
parentimproved the openssl relative handling (diff)
added a new patch of the openssl build handling
Notes
Notes: svn path=/head/; revision=295844
Diffstat (limited to 'japanese/mozc-server')
-rw-r--r--japanese/mozc-server/files/patch-base_base.gyp27
1 files changed, 27 insertions, 0 deletions
diff --git a/japanese/mozc-server/files/patch-base_base.gyp b/japanese/mozc-server/files/patch-base_base.gyp
new file mode 100644
index 000000000000..50ab433bc0ef
--- /dev/null
+++ b/japanese/mozc-server/files/patch-base_base.gyp
@@ -0,0 +1,27 @@
+--- base/base.gyp.orig 2012-04-26 15:05:41.000000000 +0900
++++ base/base.gyp 2012-05-02 00:42:12.000000000 +0900
+@@ -228,20 +228,20 @@
+ }],
+ ['OS=="linux" and target_platform!="Android"', {
+ 'cflags': [
+- '<!@(<(pkg_config_command) --cflags-only-other openssl)',
++ '%%OPENSSL_CFLAGS%%',
+ ],
+ 'defines': [
+ 'HAVE_OPENSSL=1',
+ ],
+ 'include_dirs': [
+- '<!@(<(pkg_config_command) --cflags-only-I openssl)',
++ '-I%%OPENSSLINC%%/openssl',
+ ],
+ 'link_settings': {
+ 'ldflags': [
+- '<!@(<(pkg_config_command) --libs-only-L openssl)',
++ '%%OPENSSL_LDFLAGS%% -L%%OPENSSLLIB%%',
+ ],
+ 'libraries': [
+- '<!@(<(pkg_config_command) --libs-only-l openssl)',
++ '-lssl',
+ ],
+ },
+ }],