diff options
author | Lucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de> | 2016-07-04 18:12:18 +0000 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de> | 2016-07-04 18:12:18 +0000 |
commit | 4a634b84e63be8b31852c58b25017a61a4f523c7 (patch) | |
tree | 8d0a4d2b0986a3878c0948cf7100d486ad1d17e3 /348.python3.vars | |
parent | af603fdf3981d70ef9c473ab884c590887f8bf96 (diff) | |
download | midipix_build-4a634b84e63be8b31852c58b25017a61a4f523c7.tar.bz2 midipix_build-4a634b84e63be8b31852c58b25017a61a4f523c7.tar.xz |
Adds lynx v2.8.8rel.2.
Diffstat (limited to '348.python3.vars')
-rw-r--r-- | 348.python3.vars | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/348.python3.vars b/348.python3.vars new file mode 100644 index 00000000..c987c798 --- /dev/null +++ b/348.python3.vars @@ -0,0 +1,19 @@ +# +# . ./build.vars and set -o errexit are assumed. +# + +pkg_python3_configure_pre() { + (cd ../${PKG_SUBDIR} && autoconf); + (unset BLDSHARED CC CFLAGS CPPFLAGS LDFLAGS; + mv config.cache ../${PKG_SUBDIR}/config.cache; + ../${PKG_SUBDIR}/configure; + make _FIP=Programs/host_freeze_importlib Programs/host_freeze_importlib \ + BUILDPYTHON=hostpython hostpython \ + PGEN=Parser/hostpgen Parser/hostpgen; + make distclean); + mv ../${PKG_SUBDIR}/config.cache .; + sed -i.orig '/^# autoconf/a\ +ac_cv_buggy_getaddrinfo=no' config.cache; +}; + +# vim:filetype=sh |