mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 08:18:43 +01:00
Fix failues of LSB python-runtime tests. test_largefile: add "ac_cv_sizeof_off_t=8" option explicitly into configure options in order to enable "LFS". test_codecs, test_re, test_unicode: "--with-wctype-functions" will cause these tests failed, so remove it for LSB. test_builtin, test_getargs: "sitecustomize.py" cause default encoding changed from "ascii" into "utf8" and it will cause these tests failed, so remove this file for LSB. Signed-off-by: Jingdong Lu<jingdong.lu@windriver.com>
36 lines
672 B
PHP
36 lines
672 B
PHP
DESCRIPTION = "The Python Programming Language"
|
|
HOMEPAGE = "http://www.python.org"
|
|
LICENSE = "PSF"
|
|
SECTION = "devel/python"
|
|
PRIORITY = "optional"
|
|
# bump this on every change in contrib/python/generate-manifest-2.6.py
|
|
INC_PR = "nk0"
|
|
|
|
DEFAULT_PREFERENCE = "-26"
|
|
|
|
PYTHON_MAJMIN = "2.6"
|
|
|
|
inherit autotools
|
|
|
|
EXTRA_OECONF = "\
|
|
--with-threads \
|
|
--with-pymalloc \
|
|
--with-cyclic-gc \
|
|
--without-cxx \
|
|
--with-signal-module \
|
|
--with-wctype-functions \
|
|
--enable-shared \
|
|
"
|
|
|
|
EXTRA_OECONF_poky-lsb = "\
|
|
--with-threads \
|
|
--with-pymalloc \
|
|
--with-cyclic-gc \
|
|
--without-cxx \
|
|
--with-signal-module \
|
|
--enable-shared \
|
|
ac_cv_sizeof_off_t=8 \
|
|
"
|
|
|
|
PARALLEL_MAKE = ""
|