From: Rafael L. <rla...@us...> - 2003-09-25 08:01:56
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv15029 Modified Files: sysloc.in Log Message: Changed libnn => libcsironn and libcsa => libcsirocsa to avoid nameclashes in the future. |
From: Rafael L. <rla...@us...> - 2003-09-26 09:16:00
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv22127 Modified Files: sysloc.in Log Message: In include/plplotP.h, include <sys/types.h> before #include <dirent.h> conditionally to NEED_SYS_TYPES_H, which is AC_DEFINEd in sysloc.in for the broken MacOSX system (darwin*). |
From: Rafael L. <rla...@us...> - 2003-10-01 10:59:00
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv11058 Modified Files: configure.ac Log Message: Better wording in comment for PL_DOUBLE The comment preceeding #define PL_DOUBLE is now clearer. Thanks to Arjen Markus <arj...@wl...> for the suggestion. |
From: Rafael L. <rla...@us...> - 2003-10-07 16:23:57
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv7118 Modified Files: configure.ac Log Message: Avoid abortion of configure when python is not found Redefine AC_MSG_ERROR as AC_MSG_WARN around the call to AM_PATH_PYTHON, such that if python is not found, configure will not stop. |
From: Rafael L. <rla...@us...> - 2003-10-08 13:48:53
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv27297 Modified Files: sysloc.in Log Message: Added -mieee to CXXFLAGS when neeeded. Setting the CXXFLAGS variable seems to be necessary for compiling the C++ examples on the Alpha architecture, even when the -mieee option is only needed for compiling the libcsirocsa and libcsironn libraries. |
From: Joao C. <jc...@us...> - 2003-10-08 14:52:00
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv7571 Modified Files: sysloc.in Log Message: Make test on simple NaN operations libscirocsa/nn can only be compiled if the OS/C compiler is NaN aware. If this test fails they are disabled. For this test to suceed, the correct CFLAGS must be passed to the C compiler. |
From: Rafael L. <rla...@us...> - 2003-10-08 15:22:59
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv12116 Modified Files: sysloc.in Log Message: Surrounded NaN awareness test with AC_MSG_CHECKING/RESULT Configure shows now: "checking for NaN awareness in C compiler... yes". Please change the message text if it is not appropriate. |
From: Joao C. <jc...@us...> - 2003-10-08 16:37:05
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv26989 Modified Files: sysloc.in Log Message: Reformating of "Check for NaN awareness" test, to avoid using another variable. |
From: Rafael L. <rla...@us...> - 2003-10-08 17:19:49
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv1897 Modified Files: sysloc.in Log Message: Reintroduced deleted AC_MSG_RESULT in Nan awareness test Also, the logic of the test is fixed now. Strangely, the last commit made AC_RUN_IFELSE have only two arguments, instead of three. Besides that, the test must return 1 in case of failure and not 0 as was the case. I did minimal tests, but evrything seems to work now. |
From: Alan W. I. <ai...@us...> - 2003-10-08 20:17:36
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv2525 Modified Files: Makefile.am Log Message: Bug fix for changed way we now handle libltdl. Only do libltdl directory for case when dyndrivers are enabled. |
From: Alan W. I. <ai...@us...> - 2003-10-08 20:27:24
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv3925 Modified Files: configure.ac Log Message: * Only do libltdl related actions if dyndrivers is enabled. * Define AC_SUBSTituted variables JAVA_INSTDIR and PLPLOTJAVAC_WRAP_DLL for the absolute path of the Java install location, and the name of the module for interfacing java to PLplot that is (now) installed in that location. |
From: Alan W. I. <ai...@us...> - 2003-10-08 20:31:15
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv2270 Modified Files: acinclude.m4 Log Message: Add another macro, GET_DLLNAME, for getting the name for dynamically loaded libraries (modules). This macro has largely been copied from GET_DLNAME. On many systems the name for modules is just simply namestem.so, but we cannot assume that for all Unix platforms. |
From: Joao C. <jc...@us...> - 2003-10-09 21:02:16
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv23141 Modified Files: configure.ac Log Message: Create and set BUILD_DIR. |
From: Rafael L. <rla...@us...> - 2003-10-11 13:40:43
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv3161 Modified Files: configure.ac Log Message: Total redesign of the pkg-config support for PLplot Read the pkgcfg/README file for details. |
From: Rafael L. <rla...@us...> - 2003-10-16 00:09:45
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv21349 Modified Files: Makefile.am configure.ac Log Message: Allow use of installed libltdl A Debian fellow pointed out to me that there is no need to compile the libltdl support when building the PLplot Debian packages, since there is a libltdl3 package against which libplplot can be linked. In order to be able to disable configuration/compilation of the libltdl support, I did the following changes: * In configure.ac, AC_LIBTOOL_CONVENIENCE and AC_LIBTOOL_INSTALLABLE are called conditionally on the presence of an installed libltdl (using AC_CHECK_LIB). * In order to avoid config/build of the libltdl directory, AC_CONFIG_SUBDIRS(libltdl) is called conditionally as well. Also, in Makefile.am, the libltdl directory is included conditionally on the (newly created) AM_CONDITIONAL variable enable_ltdl_convenience. [N.B.: I changed the code for setting the SUBDIRS variable in Makefile.am using the automake append (+=) operator, instead of using the auxiliary variable drivers_src_dirs as before.] If the user has libltdl installed in the system but wants to use the version shipped with PLplot, she can override the configure check by giving the --enable-ltdl-convenience option (this needs further tests, though). The advantage of using the system's libltdl are: * Configuration time is reduced, since the libltdl dir does not need to be configured. * Build time is also reduced, for a similar reason. * The size of the resulting libplplot library is around 10% smaller (at least in Linux). |
From: Rafael L. <rla...@us...> - 2003-10-16 10:48:32
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv20260 Modified Files: Makefile.am configure.ac Log Message: Better logic for use of system's libltdl The decision about when to use the libltdl library is improved. Now, the default is to always compiled the shipped libtool's libltdl as a convenience library, unless the user explicitly give the option --with-ltdlsystem to configure. When this option is given, confgiure checks if the libltdl library is actually installed. If not, it falls back to the convenience compilation case. Alan, if you are hearing this, could you please comment? |
From: Rafael L. <rla...@us...> - 2003-10-16 23:05:53
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv24526 Modified Files: configure.ac Log Message: Cosmetic changes Removed an obsolete comment about AM_PROG_LIBTOOL and added AC_HELP_STRING in MY_ARG_WITH(pthreads, ...). |
From: Rafael L. <rla...@us...> - 2003-10-17 12:16:38
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv17437 Modified Files: configure.ac Log Message: Put AC_CHECK_LIB(ltdl, ...) outside the with_ltdlsystem conditional For some mysterious reason, when the AC_CHECK_LIB was put inside the conditional 'if test "$with_ltdlsystem" = no', configure was failing with the error message: conditional "AMDEP" was never defined. This should be fixed now. Please, test this change. |
From: Rafael L. <rla...@us...> - 2003-10-23 07:27:35
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv29052 Modified Files: sysloc.in Log Message: Unversioned path for Octave oct dir The OCTAVE_OCT_DIR variable is not versioned anymore (i.e. it does not contain the Octave version 2.*.* in it). This parallels what is done for the OCT_M_DIR variable. OCTAVE_OCT_DIR takes it value from the octave_config_info structure, being either localoctfiledir (for Octave version 2.1.*) or the first component of localoctfilepath (version 2.0.*). The advantage of this change is that the Octave bindings are not tied to a specific version of Octave, and will continue to be visible if the user upgrades Octave. Remember though that there is no guarantee of backward compatibility of the *.oct API within the unstable series of Octave (2.1.*). |
From: Joao C. <jc...@us...> - 2003-10-24 18:31:20
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv1537 Modified Files: configure.ac Log Message: Disable dynamic drivers if enable_shared != yes If the user don't want (or the system is not capable of) to build shared libraries, then disable dynamic drivers, as they are dynamically loaded objects. This must to be done after AM_PROG_LIBTOOL. There is a test if test "$enable_dyndrivers" = "yes" above that should, if possible, be put after this test. |
From: Rafael L. <rla...@us...> - 2003-10-26 15:10:41
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv11573 Modified Files: bootstrap.sh Log Message: Call aclocal in libltdl directory. This insures that the aclocal.m4 files in both the topdir and the libltdl directory are generated with by same version of Automake and no errors regarding incompatible calls of AM_AUTOMAKE_VERSION will happen. |
From: Rafael L. <rla...@us...> - 2003-10-29 13:39:00
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv32283 Modified Files: configure.ac Log Message: Upgraded SOVERSION to 9:0:0. This is necessary since the recent changes in the naming of the libraries libnn -> libcsironn and libcsa -> libcsirocsa have broke backward binary compatibility for the PLplot library. |
From: Rafael L. <rla...@us...> - 2003-11-18 16:42:06
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv10694 Modified Files: TODO.AM-LT Log Message: Revamped ToDo list Reorganization of this ToDo list, separating task that are already completed or abandoned from those issues that are still open. Also, added an item about the implementation of the --enable-strip-libraries option of configure. |
From: Rafael L. <rla...@us...> - 2003-11-18 20:26:51
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv27430 Modified Files: TODO.AM-LT Log Message: Removed entry about --enable-strip-libraries option, sicne this is already implemented by Automake. |
From: Rafael L. <rla...@us...> - 2003-12-09 17:27:52
|
Update of /cvsroot/plplot/plplot In directory sc8-pr-cvs1:/tmp/cvs-serv5506 Modified Files: sysloc.in Log Message: I just noticed that the Octave function octave_config_info accepts an argument. This slightly simplifies the OCTAVE_CONFIG_INFO macro. This change was tested only with Octave 2.1.50. Hopefully it will work with any version of Octave supported by PLplot. |