Re: [PHP-DOC] What is this zend.api problem?

2001-11-23 Thread Marco Cucinato

 Try 'rm configure; autoconf; ./configure'. Worked for me.

Thans, it worked!
--
Marco Cucinato




[PHP-DOC] What is this zend.api problem?

2001-11-22 Thread Marco Cucinato

Hello, 
since last week I get this error:

[marco@tux phpdoc]$ make test  
 
touch .manual.xml
CONFIG_FILES=manual.xml CONFIG_HEADERS= ./config.status
creating manual.xml
nsgmls -i lang-it -s ./phpdocxml.dcl manual.xml
nsgmls:manual.xml:199:2:E: general entity zend.api not defined 
and no default entity
make: *** [test] Error 1

the stuff was configured with
./configure  --with-lang=it \ 
  --with-dsssl=/usr/share/sgml/docbook/docbook-dsssl-1.73

but even with other languages the error remains. 
Is there somebody who can help me?
--
Marco Cucinato




Re: [PHP-DOC] What is this zend.api problem?

2001-11-22 Thread Lars Torben Wilson

Marco Cucinato writes:
 Hello, 
 since last week I get this error:
 
 [marco@tux phpdoc]$ make test
   
 touch .manual.xml
 CONFIG_FILES=manual.xml CONFIG_HEADERS= ./config.status
 creating manual.xml
 nsgmls -i lang-it -s ./phpdocxml.dcl manual.xml
 nsgmls:manual.xml:199:2:E: general entity zend.api not defined 
 and no default entity
 make: *** [test] Error 1
 
 the stuff was configured with
 ./configure  --with-lang=it \ 
   --with-dsssl=/usr/share/sgml/docbook/docbook-dsssl-1.73
 
 but even with other languages the error remains. 
 Is there somebody who can help me?
 --
 Marco Cucinato

Try 'rm configure; autoconf; ./configure'. Worked for me.


-- 
 Torben Wilson [EMAIL PROTECTED]
 http://www.thebuttlesschaps.com
 http://www.hybrid17.com
 http://www.inflatableeye.com
 +1.604.709.0506




Re: [PHP-DOC] What is this zend.api problem?

2001-11-22 Thread Gabor Hojtsy

 Try 'rm configure; autoconf; ./configure'. Worked for me.

autoconf is enough alone before ./configure
The reson to do is that the configure.in script changed,
and you need a fresh localized copy of configure, which
is generated by autoconf for you.

Goba