On 3/20/07, Richard A. Quadling <[EMAIL PROTECTED]> wrote:
The current Cygwin version is libxslt-1.1.17-1
(http://cygwin.com/packages/libxslt/)
I don't know how long before an update is ready. There is no
experimental or 1.1.18 version yet.
Right. We don't do any version checking and our xsl w
The current Cygwin version is libxslt-1.1.17-1
(http://cygwin.com/packages/libxslt/)
I don't know how long before an update is ready. There is no
experimental or 1.1.18 version yet.
-Original Message-
From: Hannes Magnusson [mailto:[EMAIL PROTECTED]
Sent: 20 March 2007 10:44
To: phpdoc@
On Thu, 14 Sep 2006, Nuno Lopes wrote:
Autoconf 2.13 needs to be supported, because it is still the recommended
version to build PHP. Anyway, we want to accept Debian users in the team
:P
Debian has 2.59 as well (atleast "unstable").
regards,
Derick
hehe :) I was just joking because I know
On Thu, 14 Sep 2006, Nuno Lopes wrote:
> Autoconf 2.13 needs to be supported, because it is still the recommended
> version to build PHP. Anyway, we want to accept Debian users in the team :P
Debian has 2.59 as well (atleast "unstable").
regards,
Derick
--
Derick Rethans
http://derickrethans.n
MAIL PROTECTED]>; "Nuno Lopes"
<[EMAIL PROTECTED]>
Cc:
Sent: Thursday, September 14, 2006 4:08 PM
Subject: RE: [PHP-DOC] cvs: phpdoc / configure.in
Ah.
I'm running autoconf (GNU Autoconf) 2.59
Written by David J. MacKenzie and Akim Demaille.
Copyright (C) 2003 Free Sof
RPOSE.
Cygwin on Windows XP SP2.
How old is 2.13?
> -Original Message-
> From: Hannes Magnusson [mailto:[EMAIL PROTECTED]
> Sent: 14 September 2006 15:53
> To: Nuno Lopes
> Cc: phpdoc@lists.php.net
> Subject: Re: [PHP-DOC] cvs: phpdoc / configure.in
>
> Hi
Ok, I have reverted this, as autoconf 2.13 is still widely used.
Nuno
Hi Nuno
This patch breaks 2.13...
autoconf: Undefined macros:
configure.in:825:AC_CONFIG_FILES([$OUTFILES])
[EMAIL PROTECTED] doc$ autoconf --version
Autoconf version 2.13
On 9/14/06, Nuno Lopes <[EMAIL PROTECTED]> wrote:
Hi Nuno
This patch breaks 2.13...
autoconf: Undefined macros:
configure.in:825:AC_CONFIG_FILES([$OUTFILES])
[EMAIL PROTECTED] doc$ autoconf --version
Autoconf version 2.13
On 9/14/06, Nuno Lopes <[EMAIL PROTECTED]> wrote:
nlopess Thu Sep 14 13:16:00 2006 UTC
Modified files:
/phpd
+AC_MSG_CHECKING(for internals docs inclusion)
+
+AC_ARG_WITH(internals,
+[ --without-internals disable internals docs inclusion],
+[
+ INTERNALS_INCL_BEGIN=""
+ AC_MSG_RESULT([no])
+],[
+ INTERNALS_INCL_BEGIN=""
+ INTERNALS_INCL_END=""
+ AC_MSG_RESULT([yes (default)])
+])
Well.. no :)
> +AC_MSG_CHECKING(for internals docs inclusion)
> +
> +AC_ARG_WITH(internals,
> +[ --without-internals disable internals docs inclusion],
> +[
> + INTERNALS_INCL_BEGIN=""
> + AC_MSG_RESULT([no])
> +],[
> + INTERNALS_INCL_BEGIN=""
> + INTERNALS_INCL_
+dnl {{{ disable Internals documentation
+
+AC_MSG_CHECKING(for internals docs inclusion)
+
+AC_ARG_WITH(internals,
+[ --without-internals disable internals docs inclusion],
+[
+ INTERNALS_INCL_BEGIN=""
+ AC_MSG_RESULT([no])
+],[
+ INTERNALS_INCL_BEGIN=""
+ INTERNALS_INCL_END=""
+ AC_MSG
>>> +dnl {{{ disable Internals documentation
>>> +
>>> +AC_MSG_CHECKING(for internals docs inclusion)
>>> +
>>> +AC_ARG_WITH(internals,
>>> +[ --without-internals disable internals docs inclusion],
>>> +[
>>> + INTERNALS_INCL_BEGIN=""
>>> + AC_MSG_RESULT([no])
>>> +],[
>>> + INTERNALS_INCL_
Nuno Lopes wrote:
+dnl {{{ disable Internals documentation
+
+AC_MSG_CHECKING(for internals docs inclusion)
+
+AC_ARG_WITH(internals,
+[ --without-internals disable internals docs inclusion],
+[
+ INTERNALS_INCL_BEGIN=""
+ AC_MSG_RESULT([no])
+],[
+ INTERNALS_INCL_BEGIN=""
+ INTERNALS_IN
Nuno Lopes wrote:
> +dnl {{{ disable Internals documentation
> +
> +AC_MSG_CHECKING(for internals docs inclusion)
> +
> +AC_ARG_WITH(internals,
> +[ --without-internals disable internals docs inclusion],
> +[
> + INTERNALS_INCL_BEGIN=""
> + AC_MSG_RESULT([no])
> +],[
> + INTERNALS_INCL_BEGI
What that code did was to automatically include the pecl docs that are
in the ../pecl dir (if it exists).
This isn't the behaviour we want IMHO, because the docs should go in the
phpdoc dir. And as we can't fix those errors, I think its better to
disable this 'feature' (its annoying to always ge
What that code did was to automatically include the pecl docs that are in
the ../pecl dir (if it exists).
This isn't the behaviour we want IMHO, because the docs should go in the
phpdoc dir. And as we can't fix those errors, I think its better to disable
this 'feature' (its annoying to always ge
What if you comment this out instead? I wonder why this was included in
here, if it is not supposed to be there...
Goba
nlopess Sat Apr 30 15:30:32 2005 EDT
Modified files:
/phpdoc configure.in
Log:
disable automatic include of PECL docs
they have errors and are
You removed a line, but added nothing in place?
Yes. It is defined earlier, this line only redefined it under some
circumstances.
ACK.
Goba
Gabor Hojtsy wrote:
> You removed a line, but added nothing in place?
Yes. It is defined earlier, this line only redefined it under some
circumstances.
Jakub Vrana
You removed a line, but added nothing in place?
Goba
vrana Tue Apr 5 10:40:53 2005 EDT
Modified files:
/phpdoc configure.in
Log:
Use ISO format for build date (bug #26096)
http://cvs.php.net/diff.php/phpdoc/configure.in?r1=1.227&r2=1.228&ty=u
Index: phpdoc/con
On Thu, 9 Dec 2004, Antony Dovgal wrote:
> tony2001 Thu Dec 9 06:16:40 2004 EDT
>
> Modified files:
> /phpdoc configure.in
> Log:
> fix russian build (use windows-1251 instead of UTF-8)
spaces and no tabs please?
Derick
--
Derick Rethans
http://derickrethans.nl | http
gobaWed Aug 4 12:30:59 2004 EDT
Modified files:
/phpdoc configure.in
/phpdoc/dssslphpweb.dsl.in
Log:
work around the workaround to make the next Hebrew build contain proper links
This broke all links in the manual, see:
http://www.php.net/manual/ar/index.functions
On Wed, 4 Aug 2004, Gabor Hojtsy wrote:
> goba Wed Aug 4 12:30:59 2004 EDT
>
> Modified files:
> /phpdoc configure.in
> /phpdoc/dsssl phpweb.dsl.in
> Log:
> work around the workaround to make the next Hebrew build contain proper links
This broke all links in the manu
On Tue, 12 Aug 2003, Gabor Hojtsy wrote:
> goba Tue Aug 12 07:24:27 2003 EDT
>
> Modified files:
> /phpdoc configure.in
> Log:
> Add force option to rm so it won't complain on the first run, when the file is not
> there
>
> Index: phpdoc/configure.in
> diff
Ahh, crap. Seems like my newly installed redhat behaves strangely with
special chars... BTW I was unable to make any visual CVS tool work
properly on it (tried: cervisia, lincvs, meld with different success
levels, but none of them really worked (I was unable to make a commit,
or check a change
betz Mon Feb 10 08:13:51 2003 EDT
Modified files:
/phpdoc configure.in
Log:
check for xmllint, win support for xsltproc/xmllint
Well, cygwin comes with xmllint and xsltproc, but last time I checked
those were broken, so it may be a good idea to have this in phpdoc-tools
> Modified files:
> /phpdoc configure.in
> Log:
> We do not check actually for the PHP version, so do not say it's OK,
> just print it out
>
yeah we do... we make sure it's better than php3...
-- james
--
PHP Documentation Mailing List (http://www.php.net/)
To
> Moving all the file-entities.ent creation code to a part which
> is only executed if there is no PHP available.
If this proves to be working I would be happy to remove the
shell script code to generate file-entities.ent, as all that
is replaced by new file-entities.php functionality. PHP is
This works correctly now, thank you very much!
Greg
> Revcheck used the langcode, instead of the dirname, I have corrected this,
> so you can try this out, after a cvs update.
>
> Goba
>
--
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.ne
> There seem to be some other problem with the code!
> When I run 'make revcheck' in pypdoc root, I get:
>
> PHPDOCDIR=. ../phpdoc-tools/php.bat -c ./scripts -f ./scripts/revcheck.php
> zh_ch > revcheck.html
> make: *** [revcheck.html] Error 255
>
> and all in the revcheck.html file is "The zh_cn
There seem to be some other problem with the code!
When I run 'make revcheck' in pypdoc root, I get:
PHPDOCDIR=. ../phpdoc-tools/php.bat -c ./scripts -f ./scripts/revcheck.php
zh_ch > revcheck.html
make: *** [revcheck.html] Error 255
and all in the revcheck.html file is "The zh
> Modified files:
> /phpdoc configure.in
> /phpdoc/scripts file-entities.php
> Log:
> this should fix the doc builds. YOU CAN NOT WRITE INTO $srcdir!
Yess! :-)
http://www.php.net/manual/de/build.log.gz
>>> finished build at: Sun Jul 7 20:42:26 PDT 2002
>>> success
Gabor Hojtsy wrote:
> Will this be right for the online build system. It generated
> the file in some other dir, than the current, isn't it?
it creates in the dir where configure is run
$PWD was for forcing absolute instead of relative pathes
for XLST configuration, but it seemed to break DSSSL
> removed $PWD from the funcindex.xml path
>
> Index: phpdoc/configure.in
> diff -u phpdoc/configure.in:1.122 phpdoc/configure.in:1.123
> --- phpdoc/configure.in:1.122 Sun Jan 27 06:51:01 2002
> +++ phpdoc/configure.in Mon Jan 28 12:10:12 2002
> @@ -1,4 +1,4 @@
> -dnl $Id: configure.in,v 1.122 2
> AC_ARG_WITH(zendapi,
> [ --with-zendapi=[DIR] Look for ZendAPI documentation in the
specified directory],
> [
> - if test -f "$withval/Extending_Zend.xml" ; then
> + if test -f "$withval/manual.xml" ; then
> ZENDAPI=$withval
>fi
> ],[
> - echo "" >>
entities/chapters.ent
>
Ahh, that's fine. Thanks. I was thinking there was something wrong on
my end, which is usually the case. :)
Best Regards,
Kenneth Schwartz - http://www.irc-html.com
E-mail: [EMAIL PROTECTED]
Emergency Contact: 910-382-6280
On Mon, 07 Jan 2002 02:08:15 +0100
Mark Kronsbein <[EMAIL PROTECTED]>
I've got the latest of both files. I grabbed a clean copy of the CVS
tree, didn't seem to help.
Best Regards,
Kenneth Schwartz - http://www.irc-html.com
E-mail: [EMAIL PROTECTED]
Emergency Contact: 910-382-6280
On Mon, 7 Jan 2002 02:01:32 +0100
Friedhelm Betz <[EMAIL PROTECTED]> wrote:
>
>
I'm having difficulties building the manual from cygwin this evening.
It seems the problems started earlier when quite a few files were
removed (moved) from the root directory, I make clean, autoconf,
configure, and make test:
$ make test
make: Circular quickref.txt <- manual.xml dependency drop
jim winstead wrote:
> +AC_PATH_PROGS(PHP,"php php4",no)
didn't even know this did exist, looks like the NewRiders autofonf book
is already outdated :(
Hartmut Holzgraefe wrote:
> hholzgra Sun Jan 6 11:23:19 2002 EDT
>
> Modified files:
> /phpdoc configure.in
> Log:
> configure caching was to clever :(
if you still have jade, not openjade then this fixes
a configure problem
> Modified files:
> /phpdoc configure.in
> Log:
> makeing sure that PHP is realy available before using
> it in default targets in Makefile.in
This seems to be a bit buggy:
$ ./configure --with-php=c:/progra~1/#_servers/php/php.exe
loading cache ./config.cache
checkin
> > This is really really an offtopic wish, but can you please-please
> > use some new headers, not the PHP 3 one from 1998.
>
> i just copied the headers from genfunclist ...
>
> no that i realy look at it i notice that
>
> - the year numbers are realy outdated
>
> - mentioning a php version
Gabor Hojtsy wrote:
>># +--+
>># | PHP HTML Embedded Scripting Language Version 3.0 |
>># +--+
>># | Copyright (c) 1997,1998 PHP Development
> # +--+
> # | PHP HTML Embedded Scripting Language Version 3.0 |
> # +--+
> # | Copyright (c) 1997,1998 PHP Development Team (See Credits fil
On Sat, 17 Nov 2001, Salah Faya wrote:
> Thanks for everything, but still have two problems:
>
> 1- when I do this from within the phpdoc directory:
> cvs add -m 'Translated to Arabic' ar/language-defs.ent
> it says:
> cvs [server aborted]: "add" requires write access to the repository
Did you d
On Sat, Nov 17, 2001 at 10:08:01PM +0300, Salah Faya wrote :
> 1- when I do this from within the phpdoc directory:
> cvs add -m 'Translated to Arabic' ar/language-defs.ent
> it says:
> cvs [server aborted]: "add" requires write access to the repository
Are you sure you have checked out the modul
Thanks for everything, but still have two problems:
1- when I do this from within the phpdoc directory:
cvs add -m 'Translated to Arabic' ar/language-defs.ent
it says:
cvs [server aborted]: "add" requires write access to the repository
2- The most used Arabic encoding in all arabic countries is
Jirka Kosek wrote:
>
> jkj Thu Feb 8 05:10:11 2001 EDT
>
> Modified files:
> /phpdoc configure.in
In configure.in is another type which generates an additional "fi" and
configure is not working.
[egon@dilbert;0]/osiris/sw/src/phpdoc$ autoconf
[egon@dilbert;0]/osiris/sw/s
Hojtsy Gabor wrote:
> Well this was missing. The adress is actually www.cygwin.com not .org...
> Do I only need to download the setup.exe... There is no info about
> what exactly I need to download to get it working..
Sorry, it is really .com. Download and run setup. Then you can select
packages
> 1. You must have jade for windows. It can be downloaded from
> www.jclark.com. Unzip it somewhere and add path for jade.exe into your
> PATH variable.
>
> 2. Download DSSSL stylesheet from www.nwalsh.com and unzip them
> somewhere.
I allready have them.
> 3. Download and install cygwin tools
Hojtsy Gabor wrote:
> How can you use this to generate html docs from the xml on
> Windows??? I am really interested as I am using windows...
1. You must have jade for windows. It can be downloaded from
www.jclark.com. Unzip it somewhere and add path for jade.exe into your
PATH variable.
2. Dow
> jkj Thu Feb 1 06:26:03 2001 EDT
>
> Modified files:
> /phpdoc configure.in
> Log:
> - added --with-dsssl option to manualy set directory with DSSSL
stylesheets
> - this is useful with non-standard configurations (e.g. Windows machine)
How can you use this to generate html docs from
On Fri, 26 Jan 2001, Cynic wrote:
> thanks, I forgot to do it. :\
Couldn't test without it. See http://snaps.php.net/~jah/cs/. I think it's
ok (with the exception of '=Úvod', which I think is typo...).
-- Jouni
thanks, I forgot to do it. :\
At 08:36 26.1. 2001, Jouni Ahto wrote the following:
--
>jah Thu Jan 25 23:36:38 2001 EDT
>
> Modified files:
>/phpdoc configure.in
> Log:
>
> Czech language support.
54 matches
Mail list logo