- Jun 23, 2008
-
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@24476 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 22, 2008
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@24464 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 21, 2008
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@24460 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
Change the default for XProof.Debug. git-svn-id: http://root.cern.ch/svn/root/trunk@24458 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 20, 2008
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@24411 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 18, 2008
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@24351 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@24348 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@24340 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
not need to link with gfortran runtimes anymore. git-svn-id: http://root.cern.ch/svn/root/trunk@24331 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 12, 2008
-
-
Fons Rademakers authored
f77 compiler. git-svn-id: http://root.cern.ch/svn/root/trunk@24254 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 04, 2008
-
-
Fons Rademakers authored
interface is not anymore supported via AliEn (ROOT does not compile with the latest AliEn). If needed a better implementation will be provided. git-svn-id: http://root.cern.ch/svn/root/trunk@24130 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Jun 02, 2008
-
-
Fons Rademakers authored
To build 32 bit version on x8664 machine just do: ./configure linux git-svn-id: http://root.cern.ch/svn/root/trunk@24099 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 21, 2008
-
-
Fons Rademakers authored
It has the additional nice feature the it allows relative rpaths depending on the location of the executable. Hence if the executable and shared libraries are moved around in sync then the executable can always find the shared libs and there is no need for LD_LIBRARY_PATH. This also allows ROOT to be packaged in an .app bundle that can be placed anywhere on the system. The relative rpath is used when running: ./configure --enable-rpath. Note, on 10.5 it is not needed to set DYLD_LIBRARY_PATH anymore, just LD_LIBRARY_PATH is ok. git-svn-id: http://root.cern.ch/svn/root/trunk@23952 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 16, 2008
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23889 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
- move TFileMerger from proof/proofplayer to io/io. - move TGeoOverlap from geom/geompainter to geom/geom. as they are indepedent of the packages they were in. It will also facilitate upcoming packaging for deb and rpm. git-svn-id: http://root.cern.ch/svn/root/trunk@23880 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 14, 2008
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23854 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23848 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 12, 2008
-
-
Fons Rademakers authored
explicit linking. git-svn-id: http://root.cern.ch/svn/root/trunk@23807 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
TH1, TSpider: update doc to respect new dir structure. config: use new search; use more appropriate input path etc: standard footer now also displays when the html page was generated, CSS has new styles ("SIGNAL" etc, search box). git-svn-id: http://root.cern.ch/svn/root/trunk@23800 27541ba8-7e3a-0410-8455-c3a389f83636
-
- May 07, 2008
-
-
Rene Brun authored
- Add missing dependency of libTree on libThread git-svn-id: http://root.cern.ch/svn/root/trunk@23725 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
Introducing a parallel unzipping algorithm for pre-fetched buffers. Since we already know what buffers are going to be read, we can decompress a few of them in advance in an additional thread and give the impression that the data decompression comes for free (we gain up to 30% in reading intensive jobs). The size of this unzipping cache is 20% the size of the TTreeCache and can be modified with TTreeCache::SetUnzipBufferSize(Long64_t bufferSize). Theoretically, we only need one buffer in advance but in practice we might fall short if the unzipping cache is too small (synchronization costs). This experimental feature is disabled by default, to activate it use the static function TTreeCache::SetParallelUnzip(TTreeCacheUnzip::EParUnzipMode option = TTreeCacheUnzip::kEnable). The possible values to pass are: TTreeCacheUnzip::kEnable to enable it,TTreeCacheUnzip::kDisable to disable it and TTreeCacheUnzip::kForce to force it. Since it will only work if you have more than one core, the TTreeCacheUnzip::kForce option is useful to run it even if you have only one cpu (to measure the overhead, for example). git-svn-id: http://root.cern.ch/svn/root/trunk@23685 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 29, 2008
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23609 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 24, 2008
-
-
Fons Rademakers authored
--enable-cern --with-cern-libdir git-svn-id: http://root.cern.ch/svn/root/trunk@23514 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 22, 2008
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23403 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23402 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23401 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23399 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
- check for fl32 fortran compiler to enable/disable compilation of minicern on Windows git-svn-id: http://root.cern.ch/svn/root/trunk@23398 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 21, 2008
-
-
Rene Brun authored
- Remove libminicern from libHbook map dependencies on Windows, as it is a static library, to avoid autoloading mechanism trying to load it (and complaining because it fails) git-svn-id: http://root.cern.ch/svn/root/trunk@23368 27541ba8-7e3a-0410-8455-c3a389f83636
-
Rene Brun authored
git-svn-id: http://root.cern.ch/svn/root/trunk@23356 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 17, 2008
-
-
Fons Rademakers authored
because still unresolved symbols. git-svn-id: http://root.cern.ch/svn/root/trunk@23273 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Apr 03, 2008
-
-
Fons Rademakers authored
base clib cont meta metautils newdelete pcre rint thread unix utils winnt zip under the new core meta directory. git-svn-id: http://root.cern.ch/svn/root/trunk@22961 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 31, 2008
-
-
Fons Rademakers authored
can be used to set PATH, LD_LIBRARY_PATH and MANPATH. ROOTSYS itself is not used in prefix mode. Fixes issue 34935. git-svn-id: http://root.cern.ch/svn/root/trunk@22913 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 27, 2008
-
-
Fons Rademakers authored
- Revert latest changes in configure, Makefile.in and mathmore/Module.mk and apply the rule globally instead. This will solve problems when mixing external libraries built in optimized mode and ROOT built in debug mode (runtime libraries mismatch). This was harmless with MSVC++7.1, but fatal with MSVC++8.0 and 9.0. git-svn-id: http://root.cern.ch/svn/root/trunk@22863 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 26, 2008
-
-
Fons Rademakers authored
- Solve a problem of mixing GSL library built in optimized mode and ROOT built in debug mode (runtime libraries mismatch) git-svn-id: http://root.cern.ch/svn/root/trunk@22849 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 21, 2008
-
-
Fons Rademakers authored
- In XROOTD, disable the build by default of the client Perl interface: it generates several warnings from SWIG and it does not build on some systems - Add a new option '--with-xrootd-opts="..."' to 'configure' to specify additional configuration flags to xrootd; in this way those needing, for example, the Perl interface, they can get it by configuring with ./configure --with-xrootd-opts="--enable-perlint" <other-options> git-svn-id: http://root.cern.ch/svn/root/trunk@22814 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 19, 2008
-
-
Philippe Canal authored
Merge with branches/dev/stubs up to r22699: * Optional stubless calls for GCC 3.[234] on Linux 32 bit (see release notes for details) * update CINT7 - replaces the branch in the CINT repository * new directory layout: reflex, cint, and cint7 moved under cint/ * CINT stand-alone now part of ROOT's CINT; CINT's svn repository is not used anymore. * Remove v6_ prefix from the CINT source filenames. In addition: * Remove CINT's special parsing hook for R__EXTERN; just #define it to extern git-svn-id: http://root.cern.ch/svn/root/trunk@22729 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 17, 2008
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22690 27541ba8-7e3a-0410-8455-c3a389f83636
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22677 27541ba8-7e3a-0410-8455-c3a389f83636
-
- Mar 08, 2008
-
-
Fons Rademakers authored
git-svn-id: http://root.cern.ch/svn/root/trunk@22534 27541ba8-7e3a-0410-8455-c3a389f83636
-