mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-04-13 23:27:27 -07:00
Closes: https://bugs.gentoo.org/683412 Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: William Hubbs <williamh@gentoo.org>
25 lines
954 B
Diff
25 lines
954 B
Diff
diff --git a/setup.py b/setup.py
|
|
index c1f319a..c44fc69 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -525,19 +525,6 @@ parser.read('setup.cfg')
|
|
|
|
# check for mx package
|
|
have_mxdatetime = False
|
|
-mxincludedir = ''
|
|
-if parser.has_option('build_ext', 'mx_include_dir'):
|
|
- mxincludedir = parser.get('build_ext', 'mx_include_dir')
|
|
-if not mxincludedir:
|
|
- mxincludedir = os.path.join(get_python_inc(plat_specific=1), "mx")
|
|
-if mxincludedir.strip() and os.path.exists(mxincludedir):
|
|
- # Build the support for mx: we will check at runtime if it can be imported
|
|
- include_dirs.append(mxincludedir)
|
|
- define_macros.append(('HAVE_MXDATETIME', '1'))
|
|
- sources.append('adapter_mxdatetime.c')
|
|
- depends.extend(['adapter_mxdatetime.h', 'typecast_mxdatetime.c'])
|
|
- have_mxdatetime = True
|
|
- version_flags.append('mx')
|
|
|
|
# generate a nice version string to avoid confusion when users report bugs
|
|
version_flags.append('pq3') # no more a choice
|