Lines Matching +full:linux +full:- +full:stable +full:- +full:openssl
7 # http://www.apache.org/licenses/LICENSE-2.0
32 # Redirect the manifest template from MANIFEST.in to PYTHON-MANIFEST.in.
33 egg_info.manifest_maker.template = 'PYTHON-MANIFEST.in'
48 if 'linux' in sys.platform:
59 # Break import-style to ensure we can actually find our in-repo dependencies.
70 'Development Status :: 5 - Production/Stable',
88 # Export this variable to use the system installation of openssl. You need to
89 # have the header files installed (in /usr/include/openssl) and during
120 # We can also use these variables as a way to inject environment-specific
121 # compiler/linker flags. We assume GCC-like compilers and/or MinGW as a
126 EXTRA_ENV_COMPILE_ARGS = ' -std=c++11'
128 EXTRA_ENV_COMPILE_ARGS += ' -D_hypot=hypot'
131 # envvars) without adding yet more GRPC-specific envvars.
132 # See https://sourceforge.net/p/mingw-w64/bugs/363/
134 EXTRA_ENV_COMPILE_ARGS += ' -D_ftime=_ftime32 -D_timeb=__timeb32 -D_ftime_s=_ftime32_s'
136 EXTRA_ENV_COMPILE_ARGS += ' -D_ftime=_ftime64 -D_timeb=__timeb64'
137 elif "linux" in sys.platform:
138 EXTRA_ENV_COMPILE_ARGS += ' -std=gnu99 -fvisibility=hidden -fno-wrapv -fno-exceptions'
140 EXTRA_ENV_COMPILE_ARGS += ' -fvisibility=hidden -fno-wrapv -fno-exceptions'
141 EXTRA_ENV_COMPILE_ARGS += ' -DPB_FIELD_16BIT'
145 if "linux" in sys.platform or "darwin" in sys.platform:
146 EXTRA_ENV_LINK_ARGS += ' -lpthread'
150 # influence on the linkage outcome on MinGW for non-C++ programs.
152 ' -static-libgcc -static-libstdc++ -mcrtdll={msvcr} '
153 '-static'.format(msvcr=msvcr))
154 if "linux" in sys.platform:
155 EXTRA_ENV_LINK_ARGS += ' -Wl,-wrap,memcpy -static-libgcc'
173 SSL_INCLUDE = (os.path.join('/usr', 'include', 'openssl'),)
188 if "linux" in sys.platform:
205 # TODO(zyc): Re-enble c-ares on x64 and x86 windows after fixing the
221 if "linux" in sys.platform or "darwin" in sys.platform:
236 r'macosx-[0-9]+\.[0-9]+-(.+)',
237 r'macosx-10.7-\1',
301 'We could not find Cython. Setup may take 10-20 minutes.\n')
335 description='HTTP/2-based RPC framework',
337 author_email='grpc-io@googlegroups.com',