rebuild for 10.11+
This commit is contained in:
parent
d989eff547
commit
901b731582
234 changed files with 1522 additions and 927 deletions
|
|
@ -30,8 +30,8 @@ MODLIBS= $(LOCALMODLIBS) $(BASEMODLIBS)
|
|||
VERSION= 3.7
|
||||
srcdir= .
|
||||
|
||||
abs_srcdir= /oml/openmedialibrary_platform_darwin/Python-3.7.2
|
||||
abs_builddir= /oml/openmedialibrary_platform_darwin/Python-3.7.2
|
||||
abs_srcdir= /Users/travis/build/2620/openmedialibrary_darwin_build/Python-3.7.2
|
||||
abs_builddir= /Users/travis/build/2620/openmedialibrary_darwin_build/Python-3.7.2
|
||||
|
||||
|
||||
CC= gcc
|
||||
|
|
@ -64,7 +64,7 @@ SHELL= /bin/sh
|
|||
LN= ln
|
||||
|
||||
# Portable install script (configure doesn't always guess right)
|
||||
INSTALL= /usr/bin/install -c
|
||||
INSTALL= /usr/local/bin/ginstall -c
|
||||
INSTALL_PROGRAM=${INSTALL}
|
||||
INSTALL_SCRIPT= ${INSTALL}
|
||||
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...
|
||||
INSTALL_SHARED= ${INSTALL} -m 555
|
||||
|
||||
MKDIR_P= ./install-sh -c -d
|
||||
MKDIR_P= /usr/local/bin/gmkdir -p
|
||||
|
||||
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
|
||||
# once Python is installed (bpo-35257)
|
||||
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_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_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/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
|
||||
# command line to append to these values without stomping the pre-set
|
||||
# values.
|
||||
|
|
@ -129,7 +129,7 @@ MULTIARCH= darwin
|
|||
MULTIARCH_CPPFLAGS = -DMULTIARCH=\"darwin\"
|
||||
|
||||
# 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
|
||||
exec_prefix= ${prefix}
|
||||
|
|
@ -173,7 +173,7 @@ PYTHONFRAMEWORKINSTALLDIR=
|
|||
# Deployment target selected during configure, to be checked
|
||||
# by distutils. The export statement is needed to ensure that the
|
||||
# deployment target is active during build.
|
||||
MACOSX_DEPLOYMENT_TARGET=10.8
|
||||
MACOSX_DEPLOYMENT_TARGET=10.11
|
||||
export MACOSX_DEPLOYMENT_TARGET
|
||||
|
||||
# Option to install to strip binaries
|
||||
|
|
@ -192,9 +192,9 @@ RUNSHARED=
|
|||
ENSUREPIP= upgrade
|
||||
|
||||
# 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_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
|
||||
# install process. Default to user-only-writable for all file types.
|
||||
|
|
@ -203,7 +203,7 @@ EXEMODE= 755
|
|||
FILEMODE= 644
|
||||
|
||||
# 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
|
||||
|
|
@ -243,12 +243,12 @@ LIBOBJS=
|
|||
PYTHON= python$(EXE)
|
||||
BUILDPYTHON= python$(BUILDEXE)
|
||||
|
||||
PYTHON_FOR_REGEN=python
|
||||
UPDATE_FILE=python $(srcdir)/Tools/scripts/update_file.py
|
||||
PYTHON_FOR_REGEN=python3.7
|
||||
UPDATE_FILE=python3.7 $(srcdir)/Tools/scripts/update_file.py
|
||||
PYTHON_FOR_BUILD=./$(BUILDPYTHON) -E
|
||||
_PYTHON_HOST_PLATFORM=
|
||||
BUILD_GNU_TYPE= x86_64-apple-darwin18.2.0
|
||||
HOST_GNU_TYPE= x86_64-apple-darwin18.2.0
|
||||
BUILD_GNU_TYPE= x86_64-apple-darwin15.6.0
|
||||
HOST_GNU_TYPE= x86_64-apple-darwin15.6.0
|
||||
|
||||
# Tcl and Tk config info from --with-tcltk-includes and -libs options
|
||||
TCLTK_INCLUDES=
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue