Daniel Diaz wrote:
>
> Hello Roberto, I have fixed all bugs you mentionned.
Thanks!
> > The last problem concerns the installation of gprolog.h:
> > it is not put in any path where C/C++ compilers would look
> > for it. While it is OK to have it in
> >
> > $prefix/gprolog-1.2.8/include/gprolog.h
> >
> > it would be handy if the installation procedure could
> > set up a symbolic link to it in, say,
> >
> > $prefix/include/gprolog.h
> >
> > (unless the user explicitely requests something else, of course).
>
> I do not yet integrate this but if ou compile via gplc the include path should be correctly passed
> to the C compiler using -I... and you can also use the --c-compiler option if you want to use g++.
> This should solve this problem.
Yes, but my problem comes well before compilation, when my autoconf-generated
configure script tries to guess whether gprolog is installed and where gprolog.h is.
Perhaps not now, but in the long run I believe the include file will have to be
put into some standard place.
Thanks again for your help!
All the best,
Roberto
--
Roberto Bagnara
Computer Science Group
Department of Mathematics, University of Parma, Italy
http://www.cs.unipr.it/~bagnara/
mailto:bagnara@cs.unipr.it
CVSROOT: /cvs/ppl
Module name: ppl
Changes by: ericci(a)cs.unipr.it 2001-11-05 09:57:56
Modified files:
src : Polyhedron.cc
Log message:
At the end of the functions Polyhedron::add_dimensions_and_project and
Polyhedron::add_dimensions_and_constraints, we can have an empty
polyhedron without the flag EMPTY sets: so, the assertion OK() is
modified not to verify if the system of constraints is satisfiable.
Patches:
http://www.cs.unipr.it/cgi-bin/cvsweb.cgi/ppl/src/Polyhedron.cc.diff?cvsroo…
CVSROOT: /cvs/ppl
Module name: ppl
Changes by: roberto(a)cs.unipr.it 2001-11-05 08:57:46
Modified files:
src : Polyhedron.cc
Log message:
The final OK() assertion of Polyhedron::add_dimensions_and_embed()
has been modified so as to allow for empty polyhedra.
Needs checking. A similar analysis must be conducted on
Polyhedron::add_dimensions_and_project().
Patches:
http://www.cs.unipr.it/cgi-bin/cvsweb.cgi/ppl/src/Polyhedron.cc.diff?cvsroo…
Dear all,
apart from the bug concerning namespaces and friends,
all the Doxygen problems I have reported have been
fixed. As you can see, Dimitri is very responsive
and effective. I thus encourage you not to try
to get around to what appear as a Doxygen bug:
write a bug report instead. In those extreme cases
where you don't want to write a bug report yourself:
1) feel bad;
2) get in touch with me and I will prepare the report
(I will also help you with point 1 ;-)
Ciao,
Roberto
-------- Original Message --------
Subject: [Doxygen-users] Doxygen-1.2.11-20011104 in CVS
Date: Sun, 4 Nov 2001 20:09:33 +0100
From: Dimitri van Heesch <dimitri(a)stack.nl>
To: doxygen-users(a)lists.sourceforge.net
Hi,
Here's what has changed since last release:
---------------------------------------------------------------------------------------
+ CHG: Rewrote a substantial part of the source code parser
(SOURCE_BROWSER = YES). It is now more context sensitive and
will generate more/better links (for typical C code there is still
some work to do though).
+ ADD: Added option REFERENCES_RELATION that can be enabled in combination
with SOURCE_BROWSER to produce for each function
a list of all called/used members/functions/variables.
The reverse list can now be enabled/disabled using the
new REFERENCED_BY_RELATION option.
+ ADD: Added native support for typedefs of the
form "typedef void (__stdcall *name)()", where __stdcall can be any
identifier.
+ ADD: Included a patch by Stephen Goudge which adds an option
EXAMPLE_RECURSIVE to indicate whether or not example files should
be searched recursively.
+ ADD: Included Latin2 patch by Mitja Udovc.
+ BUG: Fixed Parser bug for java initializers of the form = "\"/*";
+ BUG: Fixed LaTeX output problem when using \par followed by a (-) list.
+ BUG: Fixed LaTeX output bug in the related page index.
+ BUG: Commands inside a conditional section would still appear in the
result even if the section was disabled.
+ BUG: Included idea by Roberto Bagnara to make running "make" in the LaTeX
output autodetect how many times latex has to be run.
+ BUG: Included a patch by Johan Eriksson to fix a link problem in the
"list of all member" for grouped members.
+ BUG: Fixed potential crash when \todo was used without arguments.
---------------------------------------------------------------------------------------
Enjoy,
Dimitri
_______________________________________________
Doxygen-users mailing list
Doxygen-users(a)lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users
CVSROOT: /cvs/ppl
Module name: ppl
Changes by: roberto(a)cs.unipr.it 2001-11-04 19:11:02
Modified files:
src : Matrix.cc
Log message:
The methods Matrix::add_row(...) are now careful with respect
to reallocation of the `rows' vector. The stage is now ready
for speculative memory allocation.
Patches:
http://www.cs.unipr.it/cgi-bin/cvsweb.cgi/ppl/src/Matrix.cc.diff?cvsroot=pp…