[Zope] ZMySQLDA

Dieter Maurer dieter at handshake.de
Thu Sep 1 15:53:56 EDT 2005


michael wrote at 2005-9-1 14:44 +1000:
> ...
>Hi, I am trying to set this up, following install instructions from 
>zope.org/Members/Mike/ZMySQLDA ....
>make -f Makefile.... command works fine, but 'make' afterwards produces 
>the following error:
> ...
>[root at machine src]# make
>gcc -pthread -fPIC -DNDEBUG -g -O3 -Wall -Wstrict-prototypes 
>-I/usr/local/include/python2.4 -I/usr/local/include/python2.4 @DEFS@   
>-I/usr/local/mysql/include -I/usr/include/mysql -c ././MySQLmodule.c -o 
>./MySQLmodule.o

Your makefile is not yet prepared to get executed:

  The "@XXXX@" indicate placeholders that are interpolated
  by a generation process.

  Apparently, either a "@DEFS@" remained or the generation process
  was omitted altogether.

You could try to remove the "@DEFS@ manually from the makefile
and then try again. If it works, fine. Otherwise,
you need to find out why "@DEFS@" remained.

-- 
Dieter


More information about the Zope mailing list