#!/usr/bin/perl
#-----------------------------------------------------------------------------
-# Merge several log files into one and replace all IP addresses
-# with resolved DNS host name.
+# Allows you to get one unique output log file, sorted on date,
+# built from particular sources.
# This tool is part of AWStats log analyzer but can be use
# alone for any other log analyzer.
# See COPYING.TXT file about AWStats GNU General Public License.
error("Multi-threaded DNS lookup is only supported with Perl 5.8 or higher (not $]). Use -dnslookup option instead");
}
+# Warning, there is a memory hole in ActiveState perl version (in delete functions)
+if ($^X =~ /activestate/i || $^X =~ /activeperl/i) {
+ # TODO Add a warning
+
+}
+
if (scalar @ParamFile == 0) {
print "----- $PROG $VERSION (c) Laurent Destailleur -----\n";
print "$PROG allows you to get one unique output log file, sorted on date,\n";