mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
c9e5178f3c
Use HAVE_HIDDEN when compiling zlib so it's internal symbols have __attribute__((visibility ("hidden"))). PR-URL: https://github.com/nodejs/node/pull/11082 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Shigeki Ohtsu <ohtsu@iij.ad.jp>
90 lines
2.1 KiB
Python
90 lines
2.1 KiB
Python
# Copyright (c) 2009 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
{
|
|
'variables': {
|
|
'use_system_zlib%': 0
|
|
},
|
|
'conditions': [
|
|
['use_system_zlib==0', {
|
|
'targets': [
|
|
{
|
|
'target_name': 'zlib',
|
|
'type': 'static_library',
|
|
'sources': [
|
|
'adler32.c',
|
|
'compress.c',
|
|
'crc32.c',
|
|
'crc32.h',
|
|
'deflate.c',
|
|
'deflate.h',
|
|
'gzclose.c',
|
|
'gzguts.h',
|
|
'gzlib.c',
|
|
'gzread.c',
|
|
'gzwrite.c',
|
|
'infback.c',
|
|
'inffast.c',
|
|
'inffast.h',
|
|
'inffixed.h',
|
|
'inflate.c',
|
|
'inflate.h',
|
|
'inftrees.c',
|
|
'inftrees.h',
|
|
'trees.c',
|
|
'trees.h',
|
|
'uncompr.c',
|
|
'zconf.h',
|
|
'zlib.h',
|
|
'zutil.c',
|
|
'zutil.h',
|
|
],
|
|
'include_dirs': [
|
|
'.',
|
|
],
|
|
'direct_dependent_settings': {
|
|
'include_dirs': [
|
|
'.',
|
|
],
|
|
},
|
|
'conditions': [
|
|
['OS!="win"', {
|
|
'cflags!': [ '-ansi' ],
|
|
'defines': [ 'Z_HAVE_UNISTD_H', 'HAVE_HIDDEN' ],
|
|
}],
|
|
['OS=="mac" or OS=="ios" or OS=="freebsd" or OS=="android"', {
|
|
# Mac, Android and the BSDs don't have fopen64, ftello64, or
|
|
# fseeko64. We use fopen, ftell, and fseek instead on these
|
|
# systems.
|
|
'defines': [
|
|
'USE_FILE32API'
|
|
],
|
|
}],
|
|
],
|
|
},
|
|
],
|
|
}, {
|
|
'targets': [
|
|
{
|
|
'target_name': 'zlib',
|
|
'type': 'static_library',
|
|
'direct_dependent_settings': {
|
|
'defines': [
|
|
'USE_SYSTEM_ZLIB',
|
|
],
|
|
},
|
|
'defines': [
|
|
'USE_SYSTEM_ZLIB',
|
|
],
|
|
'link_settings': {
|
|
'libraries': [
|
|
'-lz',
|
|
],
|
|
},
|
|
},
|
|
],
|
|
}],
|
|
],
|
|
}
|