aboutsummaryrefslogtreecommitdiffstats
path: root/japanese
diff options
context:
space:
mode:
authordaichi <daichi@FreeBSD.org>2012-05-02 12:18:31 +0800
committerdaichi <daichi@FreeBSD.org>2012-05-02 12:18:31 +0800
commit1773856a261016ec8115dd7bcacb8de0b0be3f61 (patch)
tree447fe4983a886a2852e50defc05815ef4642437e /japanese
parentfcf96d38bdd273d6e2116e1cd16463337d1067e3 (diff)
downloadfreebsd-ports-gnome-1773856a261016ec8115dd7bcacb8de0b0be3f61.tar.gz
freebsd-ports-gnome-1773856a261016ec8115dd7bcacb8de0b0be3f61.tar.zst
freebsd-ports-gnome-1773856a261016ec8115dd7bcacb8de0b0be3f61.zip
added a new patch of the openssl build handling
Diffstat (limited to 'japanese')
-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',
+ ],
+ },
+ }],