Displaying 6 results from an estimated 6 matches for "lpython".
Did you mean:
python
2002 Sep 01
5
IceS: compile problem with Python
...with-lame
--with-python=/usr/bin
--with-python-includes=/usr/include/python2.2
--with-python-libraries=/usr/lib/python2.2
====================================
Configure script tell me:
====================================
<....>
checking for Python.h... yes
checking for Py_Initialize in -lpython... no
checking for Py_Initialize in -lpython2.2... no
checking for Py_Initialize in -lpython2.1... no
checking for Py_Initialize in -lpython2.0... no
checking for Py_Initialize in -lpython1.6... no
checking for Py_Initialize in -lpython1.5... no
configure: error: Could not find the python library
[...
2019 May 31
0
[PATCH] python: PYTHON_LIBS is not set in Python 3.8 (RHBZ#1705482).
Python 3.8 no longer links C extensions to -lpython, instead relying
on the fact that the python binary itself already contains those
symbols. This means $PYTHON_LIBS is empty and so the Python bindings
are not built.
Use a different test to see if the python module is available.
---
m4/guestfs-python.m4 | 6 +++++-
1 file changed, 5 insertions(+...
2004 Aug 06
1
IceS: compile problem with Python
...python-libraries= /usr/lib; --with-python=/usr;
--with-python=/usr/bin; --with-python; etc
with Python 1.5; Python 2.2.
The result is the same:
> > ====================================
> > <....>
> > checking for Python.h... yes
> > checking for Py_Initialize in -lpython... no
> > checking for Py_Initialize in -lpython2.2... no
> > checking for Py_Initialize in -lpython2.1... no
> > checking for Py_Initialize in -lpython2.0... no
> > checking for Py_Initialize in -lpython1.6... no
> > checking for Py_Initialize in -lpython1.5... no
>...
2013 Jun 17
1
Re: [PATCH] Use pkg-config for Python
On Mon, Jun 17, 2013 at 10:08:46AM +0200, Olaf Hering wrote:
> On Mon, Jun 17, Richard W.M. Jones wrote:
>
> > On Sun, Jun 16, 2013 at 02:55:29PM +0200, Olaf Hering wrote:
> > > For me current 1.20 branch fails to build python in SLE11.
> >
> > Does SuSE's python have a pkg-config file?
>
> SLE11 does not have it, but openSUSE 11.4+ has it.
> I
2005 Oct 17
2
libxenstat python bindings
...install-bindings target installs all the language bindings
install-bindings: install-perl-bindings install-python-bindings
$(BINDINGS): $(SHLIB) $(SHLIB_LINKS) src/xenstat.h
SWIG_FLAGS=-module xenstat -Isrc
# Python bindings
PYTHON_VERSION=2.3
PYTHON_FLAGS=-I/usr/include/python$(PYTHON_VERSION) -lpython$(PYTHON_VERSION)
$(PYSRC) $(PYMOD): bindings/swig/xenstat.i
swig -python $(SWIG_FLAGS) -outdir $(@D) -o $(PYSRC) $<
$(PYLIB): $(PYSRC)
$(CC) $(CFLAGS) $(LDFLAGS) $(PYTHON_FLAGS) -shared -lxenstat -o $@ $<
python-bindings: $(PYLIB) $(PYMOD)
pythonlibdir=$(prefix)/lib/python$(PYTHON_VERSIO...
2011 May 03
2
[PATCH] [hivex] Use Python's distutils to determine include and site-packages directories.
..."$PYTHON_SITE_PACKAGES"; then
+ PYTHON_SITE_PACKAGES=`$PYTHON -c "import distutils.sysconfig; \
+ print (distutils.sysconfig.get_python_lib(0,0));"`
fi
+ AC_MSG_RESULT([$PYTHON_SITE_PACKAGES])
old_LIBS="$LIBS"
LIBS="$LIBS -lpython$PYTHON_VERSION"
--
1.7.4.4