- Issue #17029: Let h2py search the multiarch system include directory.
This commit is contained in:
parent
b09ec9b618
commit
4e63fbe04d
|
@ -86,6 +86,9 @@ PY_CFLAGS= $(CFLAGS) $(CPPFLAGS) $(CFLAGSFORSHARED) -DPy_BUILD_CORE
|
||||||
# Machine-dependent subdirectories
|
# Machine-dependent subdirectories
|
||||||
MACHDEP= @MACHDEP@
|
MACHDEP= @MACHDEP@
|
||||||
|
|
||||||
|
# Multiarch directory (may be empty)
|
||||||
|
MULTIARCH= @MULTIARCH@
|
||||||
|
|
||||||
# Install prefix for architecture-independent files
|
# Install prefix for architecture-independent files
|
||||||
prefix= @prefix@
|
prefix= @prefix@
|
||||||
|
|
||||||
|
@ -980,6 +983,7 @@ $(srcdir)/Lib/$(PLATDIR):
|
||||||
export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
|
export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
|
||||||
export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
|
export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
|
||||||
export EXE; EXE="$(BUILDEXE)"; \
|
export EXE; EXE="$(BUILDEXE)"; \
|
||||||
|
if [ -n "$(MULTIARCH)" ]; then export MULTIARCH; MULTIARCH=$(MULTIARCH); fi; \
|
||||||
cd $(srcdir)/Lib/$(PLATDIR); $(RUNSHARED) ./regen
|
cd $(srcdir)/Lib/$(PLATDIR); $(RUNSHARED) ./regen
|
||||||
|
|
||||||
python-config: $(srcdir)/Misc/python-config.in
|
python-config: $(srcdir)/Misc/python-config.in
|
||||||
|
|
|
@ -706,6 +706,8 @@ Tests
|
||||||
Build
|
Build
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
- Issue #17029: Let h2py search the multiarch system include directory.
|
||||||
|
|
||||||
- Issue #16953: Fix socket module compilation on platforms with
|
- Issue #16953: Fix socket module compilation on platforms with
|
||||||
HAVE_BROKEN_POLL. Patch by Jeffrey Armstrong.
|
HAVE_BROKEN_POLL. Patch by Jeffrey Armstrong.
|
||||||
|
|
||||||
|
|
|
@ -58,6 +58,12 @@ except KeyError:
|
||||||
raise KeyError
|
raise KeyError
|
||||||
except KeyError:
|
except KeyError:
|
||||||
searchdirs=['/usr/include']
|
searchdirs=['/usr/include']
|
||||||
|
try:
|
||||||
|
searchdirs.insert(0, os.path.join('/usr/include',
|
||||||
|
os.environ['MULTIARCH']))
|
||||||
|
except KeyError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
global filedict
|
global filedict
|
||||||
|
|
|
@ -686,6 +686,7 @@ BUILDEXEEXT
|
||||||
EGREP
|
EGREP
|
||||||
GREP
|
GREP
|
||||||
CPP
|
CPP
|
||||||
|
MULTIARCH
|
||||||
MAINCC
|
MAINCC
|
||||||
CXX
|
CXX
|
||||||
OBJEXT
|
OBJEXT
|
||||||
|
@ -4281,6 +4282,9 @@ $as_echo "$as_me: WARNING:
|
||||||
" >&2;}
|
" >&2;}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# checks for UNIX variants that set C preprocessor variables
|
# checks for UNIX variants that set C preprocessor variables
|
||||||
|
|
||||||
|
|
|
@ -603,6 +603,9 @@ then
|
||||||
])
|
])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||||
|
AC_SUBST(MULTIARCH)
|
||||||
|
|
||||||
|
|
||||||
# checks for UNIX variants that set C preprocessor variables
|
# checks for UNIX variants that set C preprocessor variables
|
||||||
AC_USE_SYSTEM_EXTENSIONS
|
AC_USE_SYSTEM_EXTENSIONS
|
||||||
|
|
Loading…
Reference in New Issue