diff options
| author | 2026-06-17 15:08:30 -0400 | |
|---|---|---|
| committer | 2026-06-17 15:08:30 -0400 | |
| commit | ef3f687db0f53f026e808c4284e084255c9e9dd5 (patch) | |
| tree | 9271108ff34145b17696344eb727e44756001e12 /src/portal/cpy/setup.py | |
| parent | 22d3be9264087ed80d034df0e805bd8101a7d381 (diff) | |
| download | camu-ef3f687db0f53f026e808c4284e084255c9e9dd5.tar.gz camu-ef3f687db0f53f026e808c4284e084255c9e9dd5.tar.bz2 camu-ef3f687db0f53f026e808c4284e084255c9e9dd5.zip | |
Update portal to avoid TLS fingerprinting
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/portal/cpy/setup.py')
| -rw-r--r-- | src/portal/cpy/setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/portal/cpy/setup.py b/src/portal/cpy/setup.py index d14068f..9d6e462 100644 --- a/src/portal/cpy/setup.py +++ b/src/portal/cpy/setup.py @@ -2,5 +2,5 @@ from setuptools import Extension from Cython.Build import cythonize from Cython.Compiler import Options Options.embed = True -alabaster_inc = "../../../subprojects/libalabaster/include" -cythonize([Extension("portal", ["./portal.pyx"], include_dirs=[alabaster_inc], extra_link_args=[], define_macros=[("AL_LOG_SECTION", "portal")])], language_level=3) +alabaster_inc = '../../../subprojects/libalabaster/include' +cythonize([Extension('portal', ['./portal.pyx'], include_dirs=[alabaster_inc], extra_link_args=[], define_macros=[('AL_LOG_SECTION', 'portal')])], language_level=3) |