From: Joao C. <jc...@us...> - 2003-03-02 01:49:37
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv16756 Modified Files: Makefile.am Log Message: Add the "lib" directory to SUBDIRS. The "lib" directory contains the csa and nn libraries that support some of plgriddata() algorithms. |
From: Joao C. <jc...@us...> - 2003-03-02 01:54:54
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv18360 Modified Files: configure.ac Log Message: Make the Makefiles in lib, lib/nn and lib/csa. Verify the existance of libqhull and define HAVE_QHULL. The test should also verify that plplot was configured with double and qhull compiled with doubles. This last test can be done with: #include <qhull/qhull_a.h>; assert(sizeof(REAL) == sizeof(double)); |
From: Joao C. <jc...@us...> - 2003-03-02 01:56:55
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv18892 Modified Files: sysloc.in Log Message: Verify the existance of libqhull and define HAVE_QHULL. The test should also verify that plplot was configured with double and qhull compiled with doubles. This last test can be done with: #include <qhull/qhull_a.h>; assert(sizeof(REAL) == sizeof(double)); Attempt to define CSALIBS and NNLIBS. |
From: Joao C. <jc...@fe...> - 2003-03-02 23:32:06
|
On Sunday 02 March 2003 01:56, Joao Cardoso wrote: > Update of /cvsroot/plplot/plplot > In directory sc8-pr-cvs1:/tmp/cvs-serv18892 > > Modified Files: > =09sysloc.in > Log Message: > Verify the existance of libqhull and define HAVE_QHULL. > The test should also verify that plplot was configured with double a= nd > qhull compiled with doubles. This last test can be done with: > #include <qhull/qhull_a.h>; > assert(sizeof(REAL) =3D=3D sizeof(double)); This is a nonsense! Users could reinstall Qhull with floats. Instead, I w= ill=20 verify this at runtime. Joao > Attempt to define CSALIBS and NNLIBS. > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Plplot-cvs mailing list > Plp...@li... > https://lists.sourceforge.net/lists/listinfo/plplot-cvs |
From: Rafael L. <rla...@us...> - 2003-03-02 22:29:26
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv23138 Modified Files: configure.ac Log Message: Added MY_ARG_WITH(qhull, ...) |
From: Joao C. <jc...@us...> - 2003-03-02 22:58:10
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv32646 Modified Files: sysloc.in Log Message: Check for with-double when cheching for Qhull. Use AC_MSG_WARN instead of AC_MSG_RESULT in some places. |
From: Rafael L. <rla...@us...> - 2003-03-02 22:00:08
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv12112 Modified Files: configure.ac Log Message: Added MY_ARG_WITH(double, ...), such that option --with-double is shwon by configure --help. |
From: Joao C. <jc...@us...> - 2003-03-02 23:33:55
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv12395a Modified Files: configure.ac Log Message: Show --with-qhull status in the summary. |
From: Rafael L. <rla...@us...> - 2003-03-03 00:31:49
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv31869 Modified Files: configure.ac Log Message: OOps, reverted to the previous version in AM_INIT_AUTOMAKE |
From: Rafael L. <rla...@us...> - 2003-03-03 00:35:02
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv32194 Modified Files: Makefile.am Log Message: Put "lib" before "src" in the src_dirs list, which is later included in the SUBDIRS variable. Otherwise, the compilation in src/ fails, because it is done before the libs in lib/ are built. |
From: Rafael L. <rla...@us...> - 2003-03-03 00:43:18
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv2985a Modified Files: sysloc.in Log Message: Changed the occurences of -l{nn,csa} to $(top_builddir)/lib/*/lib*.la. When using Libtool, this is the Right Way (TM) of doing things. The lib*.la files should always be used for linking, even if those libraries will get installed in the system later. The problem with using -l{nn,csa} is that in some cases the library installed in the system (in /usr/lib, say) is used instead of those built in the source tree. I have been bitten by this bug already. |
From: Joao C. <jc...@us...> - 2003-03-03 02:30:15
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv1677 Modified Files: configure.ac Log Message: Reorganize the output summary |
From: Joao C. <jc...@us...> - 2003-03-03 02:31:57
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv2468 Modified Files: sysloc.in Log Message: Enable the usage of nn/csa even if plplot is configured with floats. |
From: Joao C. <jc...@us...> - 2003-03-03 03:02:51
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv9934 Modified Files: sysloc.in Log Message: Oops, wrong quotes around libcsa/libnn |
From: Joao C. <jc...@us...> - 2003-03-03 16:27:43
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv13126 Modified Files: configure.ac Log Message: Creates an AM_CONDITIONAL on with_qhull to enable the conditionalal compilation of the nn library if Qhull was not found or was disabled with --with-qhull=no (or --without-qhull) |
From: Joao C. <jc...@us...> - 2003-03-03 16:30:25
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv14690 Modified Files: sysloc.in Log Message: Small syntax modification on Check for QHull |
From: Joao C. <jc...@us...> - 2003-03-03 21:10:35
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv28197 Modified Files: sysloc.in Log Message: Add action if-not-found in AC_CHECK_LIB when searching for qhull |
From: Rafael L. <rla...@us...> - 2003-03-04 18:07:36
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv25619 Modified Files: Makefile.am Log Message: Added the directories fonts, rpm, and sys to the dist tarball. Avoid inclusion of CVS files with dist-hook. |
From: Joao C. <jc...@us...> - 2003-03-04 18:58:03
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv18491 Modified Files: configure.ac Log Message: Add one more option, with_csa, to conditionaly compile the lib/csa directory. This might be necessary if for certain OS/architectures there are runtime errors due to NaN issues in this library -- a test must be written to detect the situation at configure time. |
From: Joao C. <jc...@us...> - 2003-03-04 19:00:28
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv19371 Modified Files: sysloc.in Log Message: Add one more option, with_csa, to conditionaly compile the lib/csa directory. This might be necessary if for certain OS/architectures there are runtime errors due to NaN issues in this library -- a test must be written to detect the situation at configure time. Add correct the CFLAGS to avoid the above described situation under alpha/OSF1. |
From: Joao C. <jc...@us...> - 2003-03-04 23:45:37
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv23386 Modified Files: configure.ac sysloc.in Log Message: Use pthreads with the xwin driver, if --with-pthreads is specified. --with-pthreads defaults to no. |
From: Rafael L. <rla...@us...> - 2003-03-05 11:25:09
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv21778 Modified Files: configure.ac Makefile.am Log Message: Moved files plplot*.pc into the newly created directory pkgcfg. Changed configure.ac and Makefile.am accordingly. |
From: Rafael L. <rla...@us...> - 2003-03-05 11:26:48
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv22665 Removed Files: plplot-double.pc.in plplot.pc.in Log Message: Removed files now in pkgcfg/. |
From: Rafael L. <rla...@us...> - 2003-03-05 12:20:54
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv7853 Modified Files: Makefile.am Log Message: Good news for Alan: I revised my way of packaging and decided to include the debian directory into the distribution tarball. |
From: Rafael L. <rla...@us...> - 2003-03-05 12:47:08
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv17841 Modified Files: Makefile.am Log Message: The jadeout.log file, which is generated during the DocBook buidl should be removed by make clean. |