|
87 | 87 |
|
88 | 88 | # Export this variable to use the system installation of openssl. You need to
|
89 | 89 | # have the header files installed (in /usr/include/openssl) and during
|
90 |
| -# runtime, the shared libary must be installed |
| 90 | +# runtime, the shared library must be installed |
91 | 91 | BUILD_WITH_SYSTEM_OPENSSL = os.environ.get('GRPC_PYTHON_BUILD_SYSTEM_OPENSSL',
|
92 | 92 | False)
|
93 | 93 |
|
94 | 94 | # Export this variable to use the system installation of zlib. You need to
|
95 | 95 | # have the header files installed (in /usr/include/) and during
|
96 |
| -# runtime, the shared libary must be installed |
| 96 | +# runtime, the shared library must be installed |
97 | 97 | BUILD_WITH_SYSTEM_ZLIB = os.environ.get('GRPC_PYTHON_BUILD_SYSTEM_ZLIB',
|
98 | 98 | False)
|
99 | 99 |
|
100 | 100 | # Export this variable to use the system installation of cares. You need to
|
101 | 101 | # have the header files installed (in /usr/include/) and during
|
102 |
| -# runtime, the shared libary must be installed |
| 102 | +# runtime, the shared library must be installed |
103 | 103 | BUILD_WITH_SYSTEM_CARES = os.environ.get('GRPC_PYTHON_BUILD_SYSTEM_CARES',
|
104 | 104 | False)
|
105 | 105 |
|
|
202 | 202 | ('OPENSSL_NO_ASM', 1), ('_WIN32_WINNT', 0x600),
|
203 | 203 | ('GPR_BACKWARDS_COMPATIBILITY_MODE', 1))
|
204 | 204 | if "win32" in sys.platform:
|
205 |
| - # TODO(zyc): Re-enble c-ares on x64 and x86 windows after fixing the |
| 205 | + # TODO(zyc): Re-enable c-ares on x64 and x86 windows after fixing the |
206 | 206 | # ares_library_init compilation issue
|
207 | 207 | DEFINE_MACROS += (('WIN32_LEAN_AND_MEAN', 1), ('CARES_STATICLIB', 1),
|
208 | 208 | ('GRPC_ARES', 0), ('NTDDI_VERSION', 0x06000000),
|
|
0 commit comments