rebuild for 10.11+
This commit is contained in:
parent
d989eff547
commit
901b731582
234 changed files with 1522 additions and 927 deletions
BIN
bin/python3.7
BIN
bin/python3.7
Binary file not shown.
BIN
bin/python3.7m
BIN
bin/python3.7m
Binary file not shown.
|
@ -1,69 +0,0 @@
|
||||||
#!/usr/bin/env python3.7m
|
|
||||||
# -*- python -*-
|
|
||||||
|
|
||||||
# Keep this script in sync with python-config.sh.in
|
|
||||||
|
|
||||||
import getopt
|
|
||||||
import os
|
|
||||||
import sys
|
|
||||||
import sysconfig
|
|
||||||
|
|
||||||
valid_opts = ['prefix', 'exec-prefix', 'includes', 'libs', 'cflags',
|
|
||||||
'ldflags', 'extension-suffix', 'help', 'abiflags', 'configdir']
|
|
||||||
|
|
||||||
def exit_with_usage(code=1):
|
|
||||||
print("Usage: {0} [{1}]".format(
|
|
||||||
sys.argv[0], '|'.join('--'+opt for opt in valid_opts)), file=sys.stderr)
|
|
||||||
sys.exit(code)
|
|
||||||
|
|
||||||
try:
|
|
||||||
opts, args = getopt.getopt(sys.argv[1:], '', valid_opts)
|
|
||||||
except getopt.error:
|
|
||||||
exit_with_usage()
|
|
||||||
|
|
||||||
if not opts:
|
|
||||||
exit_with_usage()
|
|
||||||
|
|
||||||
pyver = sysconfig.get_config_var('VERSION')
|
|
||||||
getvar = sysconfig.get_config_var
|
|
||||||
|
|
||||||
opt_flags = [flag for (flag, val) in opts]
|
|
||||||
|
|
||||||
if '--help' in opt_flags:
|
|
||||||
exit_with_usage(code=0)
|
|
||||||
|
|
||||||
for opt in opt_flags:
|
|
||||||
if opt == '--prefix':
|
|
||||||
print(sysconfig.get_config_var('prefix'))
|
|
||||||
|
|
||||||
elif opt == '--exec-prefix':
|
|
||||||
print(sysconfig.get_config_var('exec_prefix'))
|
|
||||||
|
|
||||||
elif opt in ('--includes', '--cflags'):
|
|
||||||
flags = ['-I' + sysconfig.get_path('include'),
|
|
||||||
'-I' + sysconfig.get_path('platinclude')]
|
|
||||||
if opt == '--cflags':
|
|
||||||
flags.extend(getvar('CFLAGS').split())
|
|
||||||
print(' '.join(flags))
|
|
||||||
|
|
||||||
elif opt in ('--libs', '--ldflags'):
|
|
||||||
libs = ['-lpython' + pyver + sys.abiflags]
|
|
||||||
libs += getvar('LIBS').split()
|
|
||||||
libs += getvar('SYSLIBS').split()
|
|
||||||
# add the prefix/lib/pythonX.Y/config dir, but only if there is no
|
|
||||||
# shared library in prefix/lib/.
|
|
||||||
if opt == '--ldflags':
|
|
||||||
if not getvar('Py_ENABLE_SHARED'):
|
|
||||||
libs.insert(0, '-L' + getvar('LIBPL'))
|
|
||||||
if not getvar('PYTHONFRAMEWORK'):
|
|
||||||
libs.extend(getvar('LINKFORSHARED').split())
|
|
||||||
print(' '.join(libs))
|
|
||||||
|
|
||||||
elif opt == '--extension-suffix':
|
|
||||||
print(sysconfig.get_config_var('EXT_SUFFIX'))
|
|
||||||
|
|
||||||
elif opt == '--abiflags':
|
|
||||||
print(sys.abiflags)
|
|
||||||
|
|
||||||
elif opt == '--configdir':
|
|
||||||
print(sysconfig.get_config_var('LIBPL'))
|
|
|
@ -121,13 +121,13 @@
|
||||||
#define HAVE_CLOCK 1
|
#define HAVE_CLOCK 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `clock_getres' function. */
|
/* Define to 1 if you have the `clock_getres' function. */
|
||||||
#define HAVE_CLOCK_GETRES 1
|
/* #undef HAVE_CLOCK_GETRES */
|
||||||
|
|
||||||
/* Define to 1 if you have the `clock_gettime' function. */
|
/* Define to 1 if you have the `clock_gettime' function. */
|
||||||
#define HAVE_CLOCK_GETTIME 1
|
/* #undef HAVE_CLOCK_GETTIME */
|
||||||
|
|
||||||
/* Define to 1 if you have the `clock_settime' function. */
|
/* Define to 1 if you have the `clock_settime' function. */
|
||||||
#define HAVE_CLOCK_SETTIME 1
|
/* #undef HAVE_CLOCK_SETTIME */
|
||||||
|
|
||||||
/* Define if the C compiler supports computed gotos. */
|
/* Define if the C compiler supports computed gotos. */
|
||||||
#define HAVE_COMPUTED_GOTOS 1
|
#define HAVE_COMPUTED_GOTOS 1
|
||||||
|
@ -368,7 +368,7 @@
|
||||||
#define HAVE_FTRUNCATE 1
|
#define HAVE_FTRUNCATE 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `futimens' function. */
|
/* Define to 1 if you have the `futimens' function. */
|
||||||
#define HAVE_FUTIMENS 1
|
/* #undef HAVE_FUTIMENS */
|
||||||
|
|
||||||
/* Define to 1 if you have the `futimes' function. */
|
/* Define to 1 if you have the `futimes' function. */
|
||||||
#define HAVE_FUTIMES 1
|
#define HAVE_FUTIMES 1
|
||||||
|
@ -402,7 +402,7 @@
|
||||||
#define HAVE_GETC_UNLOCKED 1
|
#define HAVE_GETC_UNLOCKED 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `getentropy' function. */
|
/* Define to 1 if you have the `getentropy' function. */
|
||||||
#define HAVE_GETENTROPY 1
|
/* #undef HAVE_GETENTROPY */
|
||||||
|
|
||||||
/* Define to 1 if you have the `getgrouplist' function. */
|
/* Define to 1 if you have the `getgrouplist' function. */
|
||||||
#define HAVE_GETGROUPLIST 1
|
#define HAVE_GETGROUPLIST 1
|
||||||
|
@ -1202,7 +1202,7 @@
|
||||||
#define HAVE_UTIL_H 1
|
#define HAVE_UTIL_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `utimensat' function. */
|
/* Define to 1 if you have the `utimensat' function. */
|
||||||
#define HAVE_UTIMENSAT 1
|
/* #undef HAVE_UTIMENSAT */
|
||||||
|
|
||||||
/* Define to 1 if you have the `utimes' function. */
|
/* Define to 1 if you have the `utimes' function. */
|
||||||
#define HAVE_UTIMES 1
|
#define HAVE_UTIMES 1
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1 +0,0 @@
|
||||||
libreadline.6.3.dylib
|
|
Binary file not shown.
Binary file not shown.
|
@ -1 +0,0 @@
|
||||||
libsqlite3.0.dylib
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
lib/libz.1.2.11.dylib
Normal file
BIN
lib/libz.1.2.11.dylib
Normal file
Binary file not shown.
1
lib/libz.1.dylib
Symbolic link
1
lib/libz.1.dylib
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
libz.1.2.11.dylib
|
|
@ -1,5 +1,5 @@
|
||||||
# See: man pkg-config
|
# See: man pkg-config
|
||||||
prefix=/oml/openmedialibrary_platform_darwin/dist
|
prefix=/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64
|
||||||
exec_prefix=${prefix}
|
exec_prefix=${prefix}
|
||||||
libdir=${exec_prefix}/lib
|
libdir=${exec_prefix}/lib
|
||||||
includedir=${prefix}/include
|
includedir=${prefix}/include
|
||||||
|
|
|
@ -8,23 +8,18 @@ build_time_vars = {'ABIFLAGS': 'm',
|
||||||
'BASECFLAGS': '-Wno-unused-result -Wsign-compare -Wunreachable-code',
|
'BASECFLAGS': '-Wno-unused-result -Wsign-compare -Wunreachable-code',
|
||||||
'BASECPPFLAGS': '',
|
'BASECPPFLAGS': '',
|
||||||
'BASEMODLIBS': '',
|
'BASEMODLIBS': '',
|
||||||
'BINDIR': '/oml/openmedialibrary_platform_darwin/dist/bin',
|
'BINDIR': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/bin',
|
||||||
'BINLIBDEST': '/oml/openmedialibrary_platform_darwin/dist/lib/python3.7',
|
'BINLIBDEST': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/lib/python3.7',
|
||||||
'BLDLIBRARY': 'libpython3.7m.a',
|
'BLDLIBRARY': 'libpython3.7m.a',
|
||||||
'BLDSHARED': 'gcc -bundle -undefined dynamic_lookup '
|
'BLDSHARED': 'gcc -bundle -undefined dynamic_lookup '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/openssl/lib '
|
'-L/usr/local/opt/openssl/lib -L/usr/local/opt/sqlite/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/lib '
|
'-L/usr/local/opt/readline/lib -L/usr/local/opt/xz/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/readline/lib '
|
'-L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/xz/lib '
|
'-L/usr/local/opt/sqlite/lib -L/usr/local/opt/readline/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/zlib/lib '
|
'-L/usr/local/opt/xz/lib -L/usr/local/opt/zlib/lib',
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/openssl/lib '
|
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/lib '
|
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/readline/lib '
|
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/xz/lib '
|
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/zlib/lib',
|
|
||||||
'BUILDEXE': '.exe',
|
'BUILDEXE': '.exe',
|
||||||
'BUILDPYTHON': 'python.exe',
|
'BUILDPYTHON': 'python.exe',
|
||||||
'BUILD_GNU_TYPE': 'x86_64-apple-darwin18.2.0',
|
'BUILD_GNU_TYPE': 'x86_64-apple-darwin15.6.0',
|
||||||
'BYTESTR_DEPS': '\\',
|
'BYTESTR_DEPS': '\\',
|
||||||
'CC': 'gcc',
|
'CC': 'gcc',
|
||||||
'CCSHARED': '',
|
'CCSHARED': '',
|
||||||
|
@ -41,61 +36,51 @@ build_time_vars = {'ABIFLAGS': 'm',
|
||||||
'-Wno-missing-field-initializers '
|
'-Wno-missing-field-initializers '
|
||||||
'-Wstrict-prototypes '
|
'-Wstrict-prototypes '
|
||||||
'-Werror=implicit-function-declaration',
|
'-Werror=implicit-function-declaration',
|
||||||
'CONFIGURE_CPPFLAGS': '-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include/openssl '
|
'CONFIGURE_CPPFLAGS': '-I/usr/local/opt/openssl/include/openssl '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include '
|
'-I/usr/local/opt/openssl/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/include '
|
'-I/usr/local/opt/sqlite/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/readline/include '
|
'-I/usr/local/opt/readline/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/xz/include '
|
'-I/usr/local/opt/xz/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/zlib/include',
|
'-I/usr/local/opt/zlib/include',
|
||||||
'CONFIGURE_LDFLAGS': '-L/oml/openmedialibrary_platform_darwin/brew/opt/openssl/lib '
|
'CONFIGURE_LDFLAGS': '-L/usr/local/opt/openssl/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/lib '
|
'-L/usr/local/opt/sqlite/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/readline/lib '
|
'-L/usr/local/opt/readline/lib -L/usr/local/opt/xz/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/xz/lib '
|
'-L/usr/local/opt/zlib/lib',
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/zlib/lib',
|
|
||||||
'CONFIGURE_LDFLAGS_NODIST': '',
|
'CONFIGURE_LDFLAGS_NODIST': '',
|
||||||
'CONFIG_ARGS': "'MACOSX_DEPLOYMENT_TARGET=10.8' "
|
'CONFIG_ARGS': "'MACOSX_DEPLOYMENT_TARGET=10.11' "
|
||||||
"'--with-openssl=/oml/openmedialibrary_platform_darwin/brew/opt/openssl' "
|
"'--with-openssl=/usr/local/opt/openssl' "
|
||||||
"'--prefix=/oml/openmedialibrary_platform_darwin/dist' "
|
"'--prefix=/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64' "
|
||||||
"'LDFLAGS= "
|
"'LDFLAGS= -L/usr/local/opt/openssl/lib "
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/openssl/lib '
|
'-L/usr/local/opt/sqlite/lib -L/usr/local/opt/readline/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/lib '
|
"-L/usr/local/opt/xz/lib -L/usr/local/opt/zlib/lib' "
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/readline/lib '
|
"'CPPFLAGS=-I/usr/local/opt/openssl/include/openssl "
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/xz/lib '
|
'-I/usr/local/opt/openssl/include '
|
||||||
"-L/oml/openmedialibrary_platform_darwin/brew/opt/zlib/lib' "
|
'-I/usr/local/opt/sqlite/include '
|
||||||
"'CPPFLAGS=-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include/openssl "
|
'-I/usr/local/opt/readline/include -I/usr/local/opt/xz/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include '
|
"-I/usr/local/opt/zlib/include'",
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/include '
|
'CONFINCLUDEDIR': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/include',
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/readline/include '
|
'CONFINCLUDEPY': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/include/python3.7m',
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/xz/include '
|
|
||||||
"-I/oml/openmedialibrary_platform_darwin/brew/opt/zlib/include'",
|
|
||||||
'CONFINCLUDEDIR': '/oml/openmedialibrary_platform_darwin/dist/include',
|
|
||||||
'CONFINCLUDEPY': '/oml/openmedialibrary_platform_darwin/dist/include/python3.7m',
|
|
||||||
'COREPYTHONPATH': '',
|
'COREPYTHONPATH': '',
|
||||||
'COVERAGE_INFO': '/oml/openmedialibrary_platform_darwin/Python-3.7.2/coverage.info',
|
'COVERAGE_INFO': '/Users/travis/build/2620/openmedialibrary_darwin_build/Python-3.7.2/coverage.info',
|
||||||
'COVERAGE_REPORT': '/oml/openmedialibrary_platform_darwin/Python-3.7.2/lcov-report',
|
'COVERAGE_REPORT': '/Users/travis/build/2620/openmedialibrary_darwin_build/Python-3.7.2/lcov-report',
|
||||||
'COVERAGE_REPORT_OPTIONS': '--no-branch-coverage --title "CPython lcov '
|
'COVERAGE_REPORT_OPTIONS': '--no-branch-coverage --title "CPython lcov '
|
||||||
'report"',
|
'report"',
|
||||||
'CPPFLAGS': '-I. -I./Include '
|
'CPPFLAGS': '-I. -I./Include -I/usr/local/opt/openssl/include/openssl '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include/openssl '
|
'-I/usr/local/opt/openssl/include -I/usr/local/opt/sqlite/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include '
|
'-I/usr/local/opt/readline/include -I/usr/local/opt/xz/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/include '
|
'-I/usr/local/opt/zlib/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/readline/include '
|
'-I/usr/local/opt/openssl/include/openssl '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/xz/include '
|
'-I/usr/local/opt/openssl/include -I/usr/local/opt/sqlite/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/zlib/include '
|
'-I/usr/local/opt/readline/include -I/usr/local/opt/xz/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include/openssl '
|
'-I/usr/local/opt/zlib/include',
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include '
|
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/include '
|
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/readline/include '
|
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/xz/include '
|
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/zlib/include',
|
|
||||||
'CXX': 'g++',
|
'CXX': 'g++',
|
||||||
'DESTDIRS': '/oml/openmedialibrary_platform_darwin/dist '
|
'DESTDIRS': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64 '
|
||||||
'/oml/openmedialibrary_platform_darwin/dist/lib '
|
'/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/lib '
|
||||||
'/oml/openmedialibrary_platform_darwin/dist/lib/python3.7 '
|
'/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/lib/python3.7 '
|
||||||
'/oml/openmedialibrary_platform_darwin/dist/lib/python3.7/lib-dynload',
|
'/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/lib/python3.7/lib-dynload',
|
||||||
'DESTLIB': '/oml/openmedialibrary_platform_darwin/dist/lib/python3.7',
|
'DESTLIB': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/lib/python3.7',
|
||||||
'DESTPATH': '',
|
'DESTPATH': '',
|
||||||
'DESTSHARED': '/oml/openmedialibrary_platform_darwin/dist/lib/python3.7/lib-dynload',
|
'DESTSHARED': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/lib/python3.7/lib-dynload',
|
||||||
'DFLAGS': '',
|
'DFLAGS': '',
|
||||||
'DIRMODE': 755,
|
'DIRMODE': 755,
|
||||||
'DIST': 'README.rst ChangeLog configure configure.ac acconfig.h pyconfig.h.in '
|
'DIST': 'README.rst ChangeLog configure configure.ac acconfig.h pyconfig.h.in '
|
||||||
|
@ -154,9 +139,9 @@ build_time_vars = {'ABIFLAGS': 'm',
|
||||||
'HAVE_CHOWN': 1,
|
'HAVE_CHOWN': 1,
|
||||||
'HAVE_CHROOT': 1,
|
'HAVE_CHROOT': 1,
|
||||||
'HAVE_CLOCK': 1,
|
'HAVE_CLOCK': 1,
|
||||||
'HAVE_CLOCK_GETRES': 1,
|
'HAVE_CLOCK_GETRES': 0,
|
||||||
'HAVE_CLOCK_GETTIME': 1,
|
'HAVE_CLOCK_GETTIME': 0,
|
||||||
'HAVE_CLOCK_SETTIME': 1,
|
'HAVE_CLOCK_SETTIME': 0,
|
||||||
'HAVE_COMPUTED_GOTOS': 1,
|
'HAVE_COMPUTED_GOTOS': 1,
|
||||||
'HAVE_CONFSTR': 1,
|
'HAVE_CONFSTR': 1,
|
||||||
'HAVE_CONIO_H': 0,
|
'HAVE_CONIO_H': 0,
|
||||||
|
@ -232,7 +217,7 @@ build_time_vars = {'ABIFLAGS': 'm',
|
||||||
'HAVE_FTELLO': 1,
|
'HAVE_FTELLO': 1,
|
||||||
'HAVE_FTIME': 1,
|
'HAVE_FTIME': 1,
|
||||||
'HAVE_FTRUNCATE': 1,
|
'HAVE_FTRUNCATE': 1,
|
||||||
'HAVE_FUTIMENS': 1,
|
'HAVE_FUTIMENS': 0,
|
||||||
'HAVE_FUTIMES': 1,
|
'HAVE_FUTIMES': 1,
|
||||||
'HAVE_FUTIMESAT': 0,
|
'HAVE_FUTIMESAT': 0,
|
||||||
'HAVE_GAI_STRERROR': 1,
|
'HAVE_GAI_STRERROR': 1,
|
||||||
|
@ -243,7 +228,7 @@ build_time_vars = {'ABIFLAGS': 'm',
|
||||||
'HAVE_GCC_UINT128_T': 1,
|
'HAVE_GCC_UINT128_T': 1,
|
||||||
'HAVE_GETADDRINFO': 1,
|
'HAVE_GETADDRINFO': 1,
|
||||||
'HAVE_GETC_UNLOCKED': 1,
|
'HAVE_GETC_UNLOCKED': 1,
|
||||||
'HAVE_GETENTROPY': 1,
|
'HAVE_GETENTROPY': 0,
|
||||||
'HAVE_GETGROUPLIST': 1,
|
'HAVE_GETGROUPLIST': 1,
|
||||||
'HAVE_GETGROUPS': 1,
|
'HAVE_GETGROUPS': 1,
|
||||||
'HAVE_GETHOSTBYNAME': 1,
|
'HAVE_GETHOSTBYNAME': 1,
|
||||||
|
@ -506,7 +491,7 @@ build_time_vars = {'ABIFLAGS': 'm',
|
||||||
'HAVE_UNSETENV': 1,
|
'HAVE_UNSETENV': 1,
|
||||||
'HAVE_USABLE_WCHAR_T': 0,
|
'HAVE_USABLE_WCHAR_T': 0,
|
||||||
'HAVE_UTIL_H': 1,
|
'HAVE_UTIL_H': 1,
|
||||||
'HAVE_UTIMENSAT': 1,
|
'HAVE_UTIMENSAT': 0,
|
||||||
'HAVE_UTIMES': 1,
|
'HAVE_UTIMES': 1,
|
||||||
'HAVE_UTIME_H': 1,
|
'HAVE_UTIME_H': 1,
|
||||||
'HAVE_UUID_CREATE': 0,
|
'HAVE_UUID_CREATE': 0,
|
||||||
|
@ -528,57 +513,47 @@ build_time_vars = {'ABIFLAGS': 'm',
|
||||||
'HAVE_X509_VERIFY_PARAM_SET1_HOST': 1,
|
'HAVE_X509_VERIFY_PARAM_SET1_HOST': 1,
|
||||||
'HAVE_ZLIB_COPY': 1,
|
'HAVE_ZLIB_COPY': 1,
|
||||||
'HAVE__GETPTY': 0,
|
'HAVE__GETPTY': 0,
|
||||||
'HOST_GNU_TYPE': 'x86_64-apple-darwin18.2.0',
|
'HOST_GNU_TYPE': 'x86_64-apple-darwin15.6.0',
|
||||||
'INCLDIRSTOMAKE': '/oml/openmedialibrary_platform_darwin/dist/include '
|
'INCLDIRSTOMAKE': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/include '
|
||||||
'/oml/openmedialibrary_platform_darwin/dist/include '
|
'/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/include '
|
||||||
'/oml/openmedialibrary_platform_darwin/dist/include/python3.7m '
|
'/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/include/python3.7m '
|
||||||
'/oml/openmedialibrary_platform_darwin/dist/include/python3.7m',
|
'/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/include/python3.7m',
|
||||||
'INCLUDEDIR': '/oml/openmedialibrary_platform_darwin/dist/include',
|
'INCLUDEDIR': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/include',
|
||||||
'INCLUDEPY': '/oml/openmedialibrary_platform_darwin/dist/include/python3.7m',
|
'INCLUDEPY': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/include/python3.7m',
|
||||||
'INSTALL': '/usr/bin/install -c',
|
'INSTALL': '/usr/local/bin/ginstall -c',
|
||||||
'INSTALL_DATA': '/usr/bin/install -c -m 644',
|
'INSTALL_DATA': '/usr/local/bin/ginstall -c -m 644',
|
||||||
'INSTALL_PROGRAM': '/usr/bin/install -c',
|
'INSTALL_PROGRAM': '/usr/local/bin/ginstall -c',
|
||||||
'INSTALL_SCRIPT': '/usr/bin/install -c',
|
'INSTALL_SCRIPT': '/usr/local/bin/ginstall -c',
|
||||||
'INSTALL_SHARED': '/usr/bin/install -c -m 555',
|
'INSTALL_SHARED': '/usr/local/bin/ginstall -c -m 555',
|
||||||
'INSTSONAME': 'libpython3.7m.a',
|
'INSTSONAME': 'libpython3.7m.a',
|
||||||
'IO_H': 'Modules/_io/_iomodule.h',
|
'IO_H': 'Modules/_io/_iomodule.h',
|
||||||
'IO_OBJS': '\\',
|
'IO_OBJS': '\\',
|
||||||
'LDCXXSHARED': 'g++ -bundle -undefined dynamic_lookup',
|
'LDCXXSHARED': 'g++ -bundle -undefined dynamic_lookup',
|
||||||
'LDFLAGS': '-L/oml/openmedialibrary_platform_darwin/brew/opt/openssl/lib '
|
'LDFLAGS': '-L/usr/local/opt/openssl/lib -L/usr/local/opt/sqlite/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/lib '
|
'-L/usr/local/opt/readline/lib -L/usr/local/opt/xz/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/readline/lib '
|
'-L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/xz/lib '
|
'-L/usr/local/opt/sqlite/lib -L/usr/local/opt/readline/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/zlib/lib '
|
'-L/usr/local/opt/xz/lib -L/usr/local/opt/zlib/lib',
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/openssl/lib '
|
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/lib '
|
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/readline/lib '
|
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/xz/lib '
|
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/zlib/lib',
|
|
||||||
'LDFLAGS_NODIST': '',
|
'LDFLAGS_NODIST': '',
|
||||||
'LDLAST': '',
|
'LDLAST': '',
|
||||||
'LDLIBRARY': 'libpython3.7m.a',
|
'LDLIBRARY': 'libpython3.7m.a',
|
||||||
'LDLIBRARYDIR': '',
|
'LDLIBRARYDIR': '',
|
||||||
'LDSHARED': 'gcc -bundle -undefined dynamic_lookup '
|
'LDSHARED': 'gcc -bundle -undefined dynamic_lookup '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/openssl/lib '
|
'-L/usr/local/opt/openssl/lib -L/usr/local/opt/sqlite/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/lib '
|
'-L/usr/local/opt/readline/lib -L/usr/local/opt/xz/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/readline/lib '
|
'-L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/xz/lib '
|
'-L/usr/local/opt/sqlite/lib -L/usr/local/opt/readline/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/zlib/lib '
|
'-L/usr/local/opt/xz/lib -L/usr/local/opt/zlib/lib',
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/openssl/lib '
|
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/lib '
|
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/readline/lib '
|
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/xz/lib '
|
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/zlib/lib',
|
|
||||||
'LDVERSION': '3.7m',
|
'LDVERSION': '3.7m',
|
||||||
'LIBC': '',
|
'LIBC': '',
|
||||||
'LIBDEST': '/oml/openmedialibrary_platform_darwin/dist/lib/python3.7',
|
'LIBDEST': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/lib/python3.7',
|
||||||
'LIBDIR': '/oml/openmedialibrary_platform_darwin/dist/lib',
|
'LIBDIR': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/lib',
|
||||||
'LIBFFI_INCLUDEDIR': '',
|
'LIBFFI_INCLUDEDIR': '',
|
||||||
'LIBM': '',
|
'LIBM': '',
|
||||||
'LIBOBJDIR': 'Python/',
|
'LIBOBJDIR': 'Python/',
|
||||||
'LIBOBJS': '',
|
'LIBOBJS': '',
|
||||||
'LIBPC': '/oml/openmedialibrary_platform_darwin/dist/lib/pkgconfig',
|
'LIBPC': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/lib/pkgconfig',
|
||||||
'LIBPL': '/oml/openmedialibrary_platform_darwin/dist/lib/python3.7/config-3.7m-darwin',
|
'LIBPL': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/lib/python3.7/config-3.7m-darwin',
|
||||||
'LIBRARY': 'libpython3.7m.a',
|
'LIBRARY': 'libpython3.7m.a',
|
||||||
'LIBRARY_OBJS': '\\',
|
'LIBRARY_OBJS': '\\',
|
||||||
'LIBRARY_OBJS_OMIT_FROZEN': '\\',
|
'LIBRARY_OBJS_OMIT_FROZEN': '\\',
|
||||||
|
@ -596,14 +571,14 @@ build_time_vars = {'ABIFLAGS': 'm',
|
||||||
'LOG1P_DROPS_ZERO_SIGN': 0,
|
'LOG1P_DROPS_ZERO_SIGN': 0,
|
||||||
'MACHDEP': 'darwin',
|
'MACHDEP': 'darwin',
|
||||||
'MACHDEP_OBJS': '',
|
'MACHDEP_OBJS': '',
|
||||||
'MACHDESTLIB': '/oml/openmedialibrary_platform_darwin/dist/lib/python3.7',
|
'MACHDESTLIB': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/lib/python3.7',
|
||||||
'MACOSX_DEPLOYMENT_TARGET': '10.8',
|
'MACOSX_DEPLOYMENT_TARGET': '10.11',
|
||||||
'MAINCC': 'gcc',
|
'MAINCC': 'gcc',
|
||||||
'MAJOR_IN_MKDEV': 0,
|
'MAJOR_IN_MKDEV': 0,
|
||||||
'MAJOR_IN_SYSMACROS': 0,
|
'MAJOR_IN_SYSMACROS': 0,
|
||||||
'MAKESETUP': './Modules/makesetup',
|
'MAKESETUP': './Modules/makesetup',
|
||||||
'MANDIR': '/oml/openmedialibrary_platform_darwin/dist/share/man',
|
'MANDIR': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/share/man',
|
||||||
'MKDIR_P': './install-sh -c -d',
|
'MKDIR_P': '/usr/local/bin/gmkdir -p',
|
||||||
'MODBUILT_NAMES': 'posix errno pwd _sre _codecs _weakref _functools '
|
'MODBUILT_NAMES': 'posix errno pwd _sre _codecs _weakref _functools '
|
||||||
'_operator _collections _abc itertools atexit _signal '
|
'_operator _collections _abc itertools atexit _signal '
|
||||||
'_stat time _thread _locale _io zipimport '
|
'_stat time _thread _locale _io zipimport '
|
||||||
|
@ -629,8 +604,8 @@ build_time_vars = {'ABIFLAGS': 'm',
|
||||||
'MVWDELCH_IS_EXPRESSION': 1,
|
'MVWDELCH_IS_EXPRESSION': 1,
|
||||||
'NO_AS_NEEDED': '',
|
'NO_AS_NEEDED': '',
|
||||||
'OBJECT_OBJS': '\\',
|
'OBJECT_OBJS': '\\',
|
||||||
'OPENSSL_INCLUDES': '-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include',
|
'OPENSSL_INCLUDES': '-I/usr/local/opt/openssl/include',
|
||||||
'OPENSSL_LDFLAGS': '-L/oml/openmedialibrary_platform_darwin/brew/opt/openssl/lib',
|
'OPENSSL_LDFLAGS': '-L/usr/local/opt/openssl/lib',
|
||||||
'OPENSSL_LIBS': '-lssl -lcrypto',
|
'OPENSSL_LIBS': '-lssl -lcrypto',
|
||||||
'OPT': '-DNDEBUG -g -fwrapv -O3 -Wall',
|
'OPT': '-DNDEBUG -g -fwrapv -O3 -Wall',
|
||||||
'OTHER_LIBTOOL_OPT': '',
|
'OTHER_LIBTOOL_OPT': '',
|
||||||
|
@ -662,7 +637,7 @@ build_time_vars = {'ABIFLAGS': 'm',
|
||||||
'PYTHONFRAMEWORKPREFIX': '',
|
'PYTHONFRAMEWORKPREFIX': '',
|
||||||
'PYTHONPATH': '',
|
'PYTHONPATH': '',
|
||||||
'PYTHON_FOR_BUILD': './python.exe -E',
|
'PYTHON_FOR_BUILD': './python.exe -E',
|
||||||
'PYTHON_FOR_REGEN': 'python',
|
'PYTHON_FOR_REGEN': 'python3.7',
|
||||||
'PYTHON_HEADERS': '\\',
|
'PYTHON_HEADERS': '\\',
|
||||||
'PYTHON_OBJS': '\\',
|
'PYTHON_OBJS': '\\',
|
||||||
'PY_BUILTIN_MODULE_CFLAGS': '-Wno-unused-result -Wsign-compare '
|
'PY_BUILTIN_MODULE_CFLAGS': '-Wno-unused-result -Wsign-compare '
|
||||||
|
@ -673,18 +648,18 @@ build_time_vars = {'ABIFLAGS': 'm',
|
||||||
'-Wstrict-prototypes '
|
'-Wstrict-prototypes '
|
||||||
'-Werror=implicit-function-declaration -I. '
|
'-Werror=implicit-function-declaration -I. '
|
||||||
'-I./Include '
|
'-I./Include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include/openssl '
|
'-I/usr/local/opt/openssl/include/openssl '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include '
|
'-I/usr/local/opt/openssl/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/include '
|
'-I/usr/local/opt/sqlite/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/readline/include '
|
'-I/usr/local/opt/readline/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/xz/include '
|
'-I/usr/local/opt/xz/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/zlib/include '
|
'-I/usr/local/opt/zlib/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include/openssl '
|
'-I/usr/local/opt/openssl/include/openssl '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include '
|
'-I/usr/local/opt/openssl/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/include '
|
'-I/usr/local/opt/sqlite/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/readline/include '
|
'-I/usr/local/opt/readline/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/xz/include '
|
'-I/usr/local/opt/xz/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/zlib/include '
|
'-I/usr/local/opt/zlib/include '
|
||||||
'-DPy_BUILD_CORE_BUILTIN',
|
'-DPy_BUILD_CORE_BUILTIN',
|
||||||
'PY_CFLAGS': '-Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG '
|
'PY_CFLAGS': '-Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG '
|
||||||
'-g -fwrapv -O3 -Wall',
|
'-g -fwrapv -O3 -Wall',
|
||||||
|
@ -698,53 +673,38 @@ build_time_vars = {'ABIFLAGS': 'm',
|
||||||
'-Wno-unused-result -Wno-unused-parameter '
|
'-Wno-unused-result -Wno-unused-parameter '
|
||||||
'-Wno-missing-field-initializers -Wstrict-prototypes '
|
'-Wno-missing-field-initializers -Wstrict-prototypes '
|
||||||
'-Werror=implicit-function-declaration -I. -I./Include '
|
'-Werror=implicit-function-declaration -I. -I./Include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include/openssl '
|
'-I/usr/local/opt/openssl/include/openssl '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include '
|
'-I/usr/local/opt/openssl/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/include '
|
'-I/usr/local/opt/sqlite/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/readline/include '
|
'-I/usr/local/opt/readline/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/xz/include '
|
'-I/usr/local/opt/xz/include -I/usr/local/opt/zlib/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/zlib/include '
|
'-I/usr/local/opt/openssl/include/openssl '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include/openssl '
|
'-I/usr/local/opt/openssl/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include '
|
'-I/usr/local/opt/sqlite/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/include '
|
'-I/usr/local/opt/readline/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/readline/include '
|
'-I/usr/local/opt/xz/include -I/usr/local/opt/zlib/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/xz/include '
|
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/zlib/include '
|
|
||||||
'-DPy_BUILD_CORE',
|
'-DPy_BUILD_CORE',
|
||||||
'PY_CORE_LDFLAGS': '-L/oml/openmedialibrary_platform_darwin/brew/opt/openssl/lib '
|
'PY_CORE_LDFLAGS': '-L/usr/local/opt/openssl/lib -L/usr/local/opt/sqlite/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/lib '
|
'-L/usr/local/opt/readline/lib -L/usr/local/opt/xz/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/readline/lib '
|
'-L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/xz/lib '
|
'-L/usr/local/opt/sqlite/lib -L/usr/local/opt/readline/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/zlib/lib '
|
'-L/usr/local/opt/xz/lib -L/usr/local/opt/zlib/lib',
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/openssl/lib '
|
'PY_CPPFLAGS': '-I. -I./Include -I/usr/local/opt/openssl/include/openssl '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/lib '
|
'-I/usr/local/opt/openssl/include '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/readline/lib '
|
'-I/usr/local/opt/sqlite/include '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/xz/lib '
|
'-I/usr/local/opt/readline/include -I/usr/local/opt/xz/include '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/zlib/lib',
|
'-I/usr/local/opt/zlib/include '
|
||||||
'PY_CPPFLAGS': '-I. -I./Include '
|
'-I/usr/local/opt/openssl/include/openssl '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include/openssl '
|
'-I/usr/local/opt/openssl/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include '
|
'-I/usr/local/opt/sqlite/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/include '
|
'-I/usr/local/opt/readline/include -I/usr/local/opt/xz/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/readline/include '
|
'-I/usr/local/opt/zlib/include',
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/xz/include '
|
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/zlib/include '
|
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include/openssl '
|
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include '
|
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/include '
|
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/readline/include '
|
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/xz/include '
|
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/zlib/include',
|
|
||||||
'PY_FORMAT_SIZE_T': '"z"',
|
'PY_FORMAT_SIZE_T': '"z"',
|
||||||
'PY_LDFLAGS': '-L/oml/openmedialibrary_platform_darwin/brew/opt/openssl/lib '
|
'PY_LDFLAGS': '-L/usr/local/opt/openssl/lib -L/usr/local/opt/sqlite/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/lib '
|
'-L/usr/local/opt/readline/lib -L/usr/local/opt/xz/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/readline/lib '
|
'-L/usr/local/opt/zlib/lib -L/usr/local/opt/openssl/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/xz/lib '
|
'-L/usr/local/opt/sqlite/lib -L/usr/local/opt/readline/lib '
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/zlib/lib '
|
'-L/usr/local/opt/xz/lib -L/usr/local/opt/zlib/lib',
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/openssl/lib '
|
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/lib '
|
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/readline/lib '
|
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/xz/lib '
|
|
||||||
'-L/oml/openmedialibrary_platform_darwin/brew/opt/zlib/lib',
|
|
||||||
'PY_LDFLAGS_NODIST': '',
|
'PY_LDFLAGS_NODIST': '',
|
||||||
'PY_SSL_DEFAULT_CIPHERS': 1,
|
'PY_SSL_DEFAULT_CIPHERS': 1,
|
||||||
'PY_SSL_DEFAULT_CIPHER_STRING': 0,
|
'PY_SSL_DEFAULT_CIPHER_STRING': 0,
|
||||||
|
@ -753,18 +713,18 @@ build_time_vars = {'ABIFLAGS': 'm',
|
||||||
'-Wno-unused-result -Wno-unused-parameter '
|
'-Wno-unused-result -Wno-unused-parameter '
|
||||||
'-Wno-missing-field-initializers -Wstrict-prototypes '
|
'-Wno-missing-field-initializers -Wstrict-prototypes '
|
||||||
'-Werror=implicit-function-declaration -I. -I./Include '
|
'-Werror=implicit-function-declaration -I. -I./Include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include/openssl '
|
'-I/usr/local/opt/openssl/include/openssl '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include '
|
'-I/usr/local/opt/openssl/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/include '
|
'-I/usr/local/opt/sqlite/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/readline/include '
|
'-I/usr/local/opt/readline/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/xz/include '
|
'-I/usr/local/opt/xz/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/zlib/include '
|
'-I/usr/local/opt/zlib/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include/openssl '
|
'-I/usr/local/opt/openssl/include/openssl '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include '
|
'-I/usr/local/opt/openssl/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/include '
|
'-I/usr/local/opt/sqlite/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/readline/include '
|
'-I/usr/local/opt/readline/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/xz/include '
|
'-I/usr/local/opt/xz/include '
|
||||||
'-I/oml/openmedialibrary_platform_darwin/brew/opt/zlib/include',
|
'-I/usr/local/opt/zlib/include',
|
||||||
'Py_DEBUG': 0,
|
'Py_DEBUG': 0,
|
||||||
'Py_ENABLE_SHARED': 0,
|
'Py_ENABLE_SHARED': 0,
|
||||||
'Py_HASH_ALGORITHM': 0,
|
'Py_HASH_ALGORITHM': 0,
|
||||||
|
@ -773,7 +733,7 @@ build_time_vars = {'ABIFLAGS': 'm',
|
||||||
'RESSRCDIR': 'Mac/Resources/framework',
|
'RESSRCDIR': 'Mac/Resources/framework',
|
||||||
'RETSIGTYPE': 'void',
|
'RETSIGTYPE': 'void',
|
||||||
'RUNSHARED': '',
|
'RUNSHARED': '',
|
||||||
'SCRIPTDIR': '/oml/openmedialibrary_platform_darwin/dist/lib',
|
'SCRIPTDIR': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/lib',
|
||||||
'SETPGRP_HAVE_ARG': 0,
|
'SETPGRP_HAVE_ARG': 0,
|
||||||
'SGI_ABI': '@SGI_ABI@',
|
'SGI_ABI': '@SGI_ABI@',
|
||||||
'SHELL': '/bin/sh',
|
'SHELL': '/bin/sh',
|
||||||
|
@ -823,7 +783,7 @@ build_time_vars = {'ABIFLAGS': 'm',
|
||||||
'TM_IN_SYS_TIME': 0,
|
'TM_IN_SYS_TIME': 0,
|
||||||
'UNICODE_DEPS': '\\',
|
'UNICODE_DEPS': '\\',
|
||||||
'UNIVERSALSDK': '',
|
'UNIVERSALSDK': '',
|
||||||
'UPDATE_FILE': 'python ./Tools/scripts/update_file.py',
|
'UPDATE_FILE': 'python3.7 ./Tools/scripts/update_file.py',
|
||||||
'USE_COMPUTED_GOTOS': 0,
|
'USE_COMPUTED_GOTOS': 0,
|
||||||
'VERSION': '3.7',
|
'VERSION': '3.7',
|
||||||
'WINDOW_HAS_FLAGS': 1,
|
'WINDOW_HAS_FLAGS': 1,
|
||||||
|
@ -836,9 +796,9 @@ build_time_vars = {'ABIFLAGS': 'm',
|
||||||
'WITH_VALGRIND': 0,
|
'WITH_VALGRIND': 0,
|
||||||
'X87_DOUBLE_ROUNDING': 0,
|
'X87_DOUBLE_ROUNDING': 0,
|
||||||
'XMLLIBSUBDIRS': 'xml xml/dom xml/etree xml/parsers xml/sax',
|
'XMLLIBSUBDIRS': 'xml xml/dom xml/etree xml/parsers xml/sax',
|
||||||
'abs_builddir': '/oml/openmedialibrary_platform_darwin/Python-3.7.2',
|
'abs_builddir': '/Users/travis/build/2620/openmedialibrary_darwin_build/Python-3.7.2',
|
||||||
'abs_srcdir': '/oml/openmedialibrary_platform_darwin/Python-3.7.2',
|
'abs_srcdir': '/Users/travis/build/2620/openmedialibrary_darwin_build/Python-3.7.2',
|
||||||
'datarootdir': '/oml/openmedialibrary_platform_darwin/dist/share',
|
'datarootdir': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/share',
|
||||||
'exec_prefix': '/oml/openmedialibrary_platform_darwin/dist',
|
'exec_prefix': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64',
|
||||||
'prefix': '/oml/openmedialibrary_platform_darwin/dist',
|
'prefix': '/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64',
|
||||||
'srcdir': '.'}
|
'srcdir': '.'}
|
||||||
|
|
|
@ -30,8 +30,8 @@ MODLIBS= $(LOCALMODLIBS) $(BASEMODLIBS)
|
||||||
VERSION= 3.7
|
VERSION= 3.7
|
||||||
srcdir= .
|
srcdir= .
|
||||||
|
|
||||||
abs_srcdir= /oml/openmedialibrary_platform_darwin/Python-3.7.2
|
abs_srcdir= /Users/travis/build/2620/openmedialibrary_darwin_build/Python-3.7.2
|
||||||
abs_builddir= /oml/openmedialibrary_platform_darwin/Python-3.7.2
|
abs_builddir= /Users/travis/build/2620/openmedialibrary_darwin_build/Python-3.7.2
|
||||||
|
|
||||||
|
|
||||||
CC= gcc
|
CC= gcc
|
||||||
|
@ -64,7 +64,7 @@ SHELL= /bin/sh
|
||||||
LN= ln
|
LN= ln
|
||||||
|
|
||||||
# Portable install script (configure doesn't always guess right)
|
# Portable install script (configure doesn't always guess right)
|
||||||
INSTALL= /usr/bin/install -c
|
INSTALL= /usr/local/bin/ginstall -c
|
||||||
INSTALL_PROGRAM=${INSTALL}
|
INSTALL_PROGRAM=${INSTALL}
|
||||||
INSTALL_SCRIPT= ${INSTALL}
|
INSTALL_SCRIPT= ${INSTALL}
|
||||||
INSTALL_DATA= ${INSTALL} -m 644
|
INSTALL_DATA= ${INSTALL} -m 644
|
||||||
|
@ -73,7 +73,7 @@ INSTALL_DATA= ${INSTALL} -m 644
|
||||||
# Also, making them read-only seems to be a good idea...
|
# Also, making them read-only seems to be a good idea...
|
||||||
INSTALL_SHARED= ${INSTALL} -m 555
|
INSTALL_SHARED= ${INSTALL} -m 555
|
||||||
|
|
||||||
MKDIR_P= ./install-sh -c -d
|
MKDIR_P= /usr/local/bin/gmkdir -p
|
||||||
|
|
||||||
MAKESETUP= $(srcdir)/Modules/makesetup
|
MAKESETUP= $(srcdir)/Modules/makesetup
|
||||||
|
|
||||||
|
@ -90,8 +90,8 @@ CONFIGURE_CFLAGS_NODIST= -std=c99 -Wextra -Wno-unused-result -Wno-unused-paramet
|
||||||
# Use it when a linker flag should _not_ be part of the distutils LDFLAGS
|
# Use it when a linker flag should _not_ be part of the distutils LDFLAGS
|
||||||
# once Python is installed (bpo-35257)
|
# once Python is installed (bpo-35257)
|
||||||
CONFIGURE_LDFLAGS_NODIST=
|
CONFIGURE_LDFLAGS_NODIST=
|
||||||
CONFIGURE_CPPFLAGS= -I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include/openssl -I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include -I/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/include -I/oml/openmedialibrary_platform_darwin/brew/opt/readline/include -I/oml/openmedialibrary_platform_darwin/brew/opt/xz/include -I/oml/openmedialibrary_platform_darwin/brew/opt/zlib/include
|
CONFIGURE_CPPFLAGS= -I/usr/local/opt/openssl/include/openssl -I/usr/local/opt/openssl/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/readline/include -I/usr/local/opt/xz/include -I/usr/local/opt/zlib/include
|
||||||
CONFIGURE_LDFLAGS= -L/oml/openmedialibrary_platform_darwin/brew/opt/openssl/lib -L/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/lib -L/oml/openmedialibrary_platform_darwin/brew/opt/readline/lib -L/oml/openmedialibrary_platform_darwin/brew/opt/xz/lib -L/oml/openmedialibrary_platform_darwin/brew/opt/zlib/lib
|
CONFIGURE_LDFLAGS= -L/usr/local/opt/openssl/lib -L/usr/local/opt/sqlite/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/xz/lib -L/usr/local/opt/zlib/lib
|
||||||
# Avoid assigning CFLAGS, LDFLAGS, etc. so users can use them on the
|
# Avoid assigning CFLAGS, LDFLAGS, etc. so users can use them on the
|
||||||
# command line to append to these values without stomping the pre-set
|
# command line to append to these values without stomping the pre-set
|
||||||
# values.
|
# values.
|
||||||
|
@ -129,7 +129,7 @@ MULTIARCH= darwin
|
||||||
MULTIARCH_CPPFLAGS = -DMULTIARCH=\"darwin\"
|
MULTIARCH_CPPFLAGS = -DMULTIARCH=\"darwin\"
|
||||||
|
|
||||||
# Install prefix for architecture-independent files
|
# Install prefix for architecture-independent files
|
||||||
prefix= /oml/openmedialibrary_platform_darwin/dist
|
prefix= /Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64
|
||||||
|
|
||||||
# Install prefix for architecture-dependent files
|
# Install prefix for architecture-dependent files
|
||||||
exec_prefix= ${prefix}
|
exec_prefix= ${prefix}
|
||||||
|
@ -173,7 +173,7 @@ PYTHONFRAMEWORKINSTALLDIR=
|
||||||
# Deployment target selected during configure, to be checked
|
# Deployment target selected during configure, to be checked
|
||||||
# by distutils. The export statement is needed to ensure that the
|
# by distutils. The export statement is needed to ensure that the
|
||||||
# deployment target is active during build.
|
# deployment target is active during build.
|
||||||
MACOSX_DEPLOYMENT_TARGET=10.8
|
MACOSX_DEPLOYMENT_TARGET=10.11
|
||||||
export MACOSX_DEPLOYMENT_TARGET
|
export MACOSX_DEPLOYMENT_TARGET
|
||||||
|
|
||||||
# Option to install to strip binaries
|
# Option to install to strip binaries
|
||||||
|
@ -192,9 +192,9 @@ RUNSHARED=
|
||||||
ENSUREPIP= upgrade
|
ENSUREPIP= upgrade
|
||||||
|
|
||||||
# OpenSSL options for setup.py so sysconfig can pick up AC_SUBST() vars.
|
# OpenSSL options for setup.py so sysconfig can pick up AC_SUBST() vars.
|
||||||
OPENSSL_INCLUDES=-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include
|
OPENSSL_INCLUDES=-I/usr/local/opt/openssl/include
|
||||||
OPENSSL_LIBS=-lssl -lcrypto
|
OPENSSL_LIBS=-lssl -lcrypto
|
||||||
OPENSSL_LDFLAGS=-L/oml/openmedialibrary_platform_darwin/brew/opt/openssl/lib
|
OPENSSL_LDFLAGS=-L/usr/local/opt/openssl/lib
|
||||||
|
|
||||||
# Modes for directories, executables and data files created by the
|
# Modes for directories, executables and data files created by the
|
||||||
# install process. Default to user-only-writable for all file types.
|
# install process. Default to user-only-writable for all file types.
|
||||||
|
@ -203,7 +203,7 @@ EXEMODE= 755
|
||||||
FILEMODE= 644
|
FILEMODE= 644
|
||||||
|
|
||||||
# configure script arguments
|
# configure script arguments
|
||||||
CONFIG_ARGS= 'MACOSX_DEPLOYMENT_TARGET=10.8' '--with-openssl=/oml/openmedialibrary_platform_darwin/brew/opt/openssl' '--prefix=/oml/openmedialibrary_platform_darwin/dist' 'LDFLAGS= -L/oml/openmedialibrary_platform_darwin/brew/opt/openssl/lib -L/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/lib -L/oml/openmedialibrary_platform_darwin/brew/opt/readline/lib -L/oml/openmedialibrary_platform_darwin/brew/opt/xz/lib -L/oml/openmedialibrary_platform_darwin/brew/opt/zlib/lib' 'CPPFLAGS=-I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include/openssl -I/oml/openmedialibrary_platform_darwin/brew/opt/openssl/include -I/oml/openmedialibrary_platform_darwin/brew/opt/sqlite/include -I/oml/openmedialibrary_platform_darwin/brew/opt/readline/include -I/oml/openmedialibrary_platform_darwin/brew/opt/xz/include -I/oml/openmedialibrary_platform_darwin/brew/opt/zlib/include'
|
CONFIG_ARGS= 'MACOSX_DEPLOYMENT_TARGET=10.11' '--with-openssl=/usr/local/opt/openssl' '--prefix=/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64' 'LDFLAGS= -L/usr/local/opt/openssl/lib -L/usr/local/opt/sqlite/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/xz/lib -L/usr/local/opt/zlib/lib' 'CPPFLAGS=-I/usr/local/opt/openssl/include/openssl -I/usr/local/opt/openssl/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/readline/include -I/usr/local/opt/xz/include -I/usr/local/opt/zlib/include'
|
||||||
|
|
||||||
|
|
||||||
# Subdirectories with code
|
# Subdirectories with code
|
||||||
|
@ -243,12 +243,12 @@ LIBOBJS=
|
||||||
PYTHON= python$(EXE)
|
PYTHON= python$(EXE)
|
||||||
BUILDPYTHON= python$(BUILDEXE)
|
BUILDPYTHON= python$(BUILDEXE)
|
||||||
|
|
||||||
PYTHON_FOR_REGEN=python
|
PYTHON_FOR_REGEN=python3.7
|
||||||
UPDATE_FILE=python $(srcdir)/Tools/scripts/update_file.py
|
UPDATE_FILE=python3.7 $(srcdir)/Tools/scripts/update_file.py
|
||||||
PYTHON_FOR_BUILD=./$(BUILDPYTHON) -E
|
PYTHON_FOR_BUILD=./$(BUILDPYTHON) -E
|
||||||
_PYTHON_HOST_PLATFORM=
|
_PYTHON_HOST_PLATFORM=
|
||||||
BUILD_GNU_TYPE= x86_64-apple-darwin18.2.0
|
BUILD_GNU_TYPE= x86_64-apple-darwin15.6.0
|
||||||
HOST_GNU_TYPE= x86_64-apple-darwin18.2.0
|
HOST_GNU_TYPE= x86_64-apple-darwin15.6.0
|
||||||
|
|
||||||
# Tcl and Tk config info from --with-tcltk-includes and -libs options
|
# Tcl and Tk config info from --with-tcltk-includes and -libs options
|
||||||
TCLTK_INCLUDES=
|
TCLTK_INCLUDES=
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/oml/openmedialibrary_platform_darwin/dist/bin/python3.7m
|
#!/Users/travis/build/2620/openmedialibrary_darwin_build/platform_darwin64/bin/python3.7m
|
||||||
# -*- python -*-
|
# -*- python -*-
|
||||||
|
|
||||||
# Keep this script in sync with python-config.sh.in
|
# Keep this script in sync with python-config.sh.in
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
lib/python3.7/lib-dynload/_dbm.cpython-37m-darwin.so
Executable file
BIN
lib/python3.7/lib-dynload/_dbm.cpython-37m-darwin.so
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
lib/python3.7/lib-dynload/_tkinter.cpython-37m-darwin.so
Executable file
BIN
lib/python3.7/lib-dynload/_tkinter.cpython-37m-darwin.so
Executable file
Binary file not shown.
BIN
lib/python3.7/lib-dynload/_uuid.cpython-37m-darwin.so
Executable file
BIN
lib/python3.7/lib-dynload/_uuid.cpython-37m-darwin.so
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
lib/python3.7/lib-dynload/nis.cpython-37m-darwin.so
Executable file
BIN
lib/python3.7/lib-dynload/nis.cpython-37m-darwin.so
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue