Can somebody help me on this topic : eg installing the ZPyGresql? When I try to compile the module I get the following output rm -f *.o *~ rm -f *.a tags TAGS config.c Makefile.pre python sedscript rm -f *.so *.sl so_locations VERSION=`python -c "import sys; print sys.version[:3]"`; \ installdir=`python -c "import sys; print sys.prefix"`; \ exec_installdir=`python -c "import sys; print sys.exec_prefix"`; \ make -f ./Makefile.pre.in VPATH=. srcdir=. \ VERSION=$VERSION \ installdir=$installdir \ exec_installdir=$exec_installdir \ Makefile make[1]: Entering directory `/usr/local/zope/lib/python/Products/ZPyGreSQLDA/src' make[1]: *** no rule to make target '/usr/lib/python1.5/config/Makefile', needed by 'sedscript'. Stop. make[1]: Leaving directory `/usr/local/zope/lib/python/Products/ZPyGreSQLDA/src' make: ***[boot] Error2 What does this error-line mean: "no rule to make target..." If I know what this line means, then I'm already a little bit further in finding a solution to this error. Is this the best way to connect zope with PostGressql? ODBC better? Is installing an ODBC on linux the same as on Windows? Where can I find good ODBC to work with Zope and PostGreSQL on Linux? Thanks in advance, Tom.
On Mon, 14 Feb 2000, Tom Deprez wrote:
Can somebody help me on this topic : eg installing the ZPyGresql?
cd src more README make -f Makefile.pre.in boot make Oleg. ---- Oleg Broytmann Foundation for Effective Policies phd@phd.russ.ru Programmers don't die, they just GOSUB without RETURN.
Well, .... that's when I get that output.... Setup.ini contains the correct directories. I just don't understand the sentence "no rule..." does this mean that the file doesn't exists? What does that part of the script? Does it makes a file, or does it changes a file? Tom.
cd src more README
make -f Makefile.pre.in boot make
Oleg. ---- Oleg Broytmann Foundation for Effective Policies phd@phd.russ.ru Programmers don't die, they just GOSUB without RETURN.
On Mon, 14 Feb 2000, Tom Deprez wrote:
Well, .... that's when I get that output....
In the src subdirectory? Oops, you missed some parts of Python.
cd src more README
make -f Makefile.pre.in boot
This should create a Makefile... Oleg. ---- Oleg Broytmann Foundation for Effective Policies phd@phd.russ.ru Programmers don't die, they just GOSUB without RETURN.
to make target '/usr/lib/python1.5/config/Makefile', needed by 'sedscript'. Stop. make[1]: Leaving directory `/usr/local/zope/lib/python/Products/ZPyGreSQLDA/src' make: ***[boot] Error2
What does this error-line mean: "no rule to make target..."
If I know what this line means, then I'm already a little bit further in finding a solution to this error.
You don't have the libraries and header files needed for Python development. If you are using rpm's, you need the python-devel package, or compile python from source yourself. /Magnus Heino
Mmm, I do have the python libraries installed (RPM). But, looking inside the /usr/lib/python1.5 directory, I can't find the /config/Makefile... Tom.
to make target '/usr/lib/python1.5/config/Makefile', needed by 'sedscript'. Stop. make[1]: Leaving directory `/usr/local/zope/lib/python/Products/ZPyGreSQLDA/src' make: ***[boot] Error2
What does this error-line mean: "no rule to make target..."
If I know what this line means, then I'm already a little bit further in finding a solution to this error.
You don't have the libraries and header files needed for Python development.
If you are using rpm's, you need the python-devel package, or compile python from source yourself.
/Magnus Heino
participants (3)
-
Magnus Heino -
Oleg Broytmann -
Tom Deprez