From 6ecb0cd65d2f818a35adb80d23261555b63528ca Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 24 Dec 2012 16:00:24 +0100 Subject: [PATCH] openssl: clean up openssl.gyp Remove obsolete build configuration that escaped the purge in 7eaea7f. --- deps/openssl/openssl.gyp | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/deps/openssl/openssl.gyp b/deps/openssl/openssl.gyp index 93a5fd92a77..d2caaace9fb 100644 --- a/deps/openssl/openssl.gyp +++ b/deps/openssl/openssl.gyp @@ -897,18 +897,9 @@ ['OS=="solaris"', { 'defines': ['__EXTENSIONS__'], }], - ['target_arch=="ia32"', { - 'variables': {'openssl_config_path': 'config/piii'}, - }], - ['target_arch=="x64"', { - 'variables': {'openssl_config_path': 'config/k8'}, - }], ['target_arch=="arm"', { - 'variables': {'openssl_config_path': 'config/android'}, - 'sources': [ - 'openssl/crypto/armcap.c', - ] - }] + 'sources': ['openssl/crypto/armcap.c'], + }], ], 'include_dirs': [ '.', @@ -920,13 +911,9 @@ 'openssl/crypto/modes', 'openssl/crypto/store', 'openssl/include', - '<@(openssl_config_path)', ], 'direct_dependent_settings': { - 'include_dirs': [ - 'openssl/include', - '<@(openssl_config_path)', - ], + 'include_dirs': ['openssl/include'], }, }, ],