diff -ruN chkrootkit-0.44/chklastlog.c chkrootkit-albert/chklastlog.c
--- chkrootkit-0.44/chklastlog.c	2004-07-16 04:03:48.000000000 +0200
+++ chkrootkit-albert/chklastlog.c	2004-11-26 17:11:25.000000000 +0100
@@ -28,7 +28,7 @@
    Nelson Murilo, nelson@pangeia.com.br
 */
 
-#if defined(SOLARIS2) || defined(__linux__)
+#if defined(SOLARIS2) || defined(__linux__) || defined(__osf__)
 #define HAVE_LASTLOG_H 1
 #else
 #undef HAVE_LASTLOG_H
@@ -53,12 +53,11 @@
 #include <fcntl.h>
 #endif
 
-#ifdef __FreeBSD__
+#if defined(__FreeBSD__) || defined(__OpenBSD__)
 #define WTMP_FILENAME "/var/log/wtmp"
 #define LASTLOG_FILENAME "/var/log/lastlog"
 #endif
-#ifdef __OpenBSD__
-#define WTMP_FILENAME "/var/log/wtmp"
+#ifdef __linux__
 #define LASTLOG_FILENAME "/var/log/lastlog"
 #endif
 #ifndef WTMP_FILENAME
@@ -68,7 +67,14 @@
 #define LASTLOG_FILENAME "/var/adm/lastlog"
 #endif
 
+#ifdef TRUE
+#undef TRUE
+#endif
 #define TRUE 1L
+
+#ifdef FALSE 
+#undef FALSE
+#endif
 #define FALSE 0L
 
 long total_wtmp_bytes_read=0;
diff -ruN chkrootkit-0.44/chkrootkit chkrootkit-albert/chkrootkit
--- chkrootkit-0.44/chkrootkit	2004-09-01 15:27:28.000000000 +0200
+++ chkrootkit-albert/chkrootkit	2004-11-26 18:08:34.000000000 +0100
@@ -1,8 +1,8 @@
 #! /bin/sh
 # -*- Shell-script -*-
 
-# $Id: chkrootkit, v 0.44 2004/09/01
-CHKROOTKIT_VERSION='0.44'
+# $Id: chkrootkit, v 0.45 2004/11/26
+CHKROOTKIT_VERSION='0.45'
 
 # Authors: Nelson Murilo <nelson@pangeia.com.br> (main author) and
 #          Klaus Steding-Jessen <jessen@nic.br>
diff -ruN chkrootkit-0.44/chkrootkit.lsm chkrootkit-albert/chkrootkit.lsm
--- chkrootkit-0.44/chkrootkit.lsm	2004-09-01 14:30:42.000000000 +0200
+++ chkrootkit-albert/chkrootkit.lsm	2004-11-26 18:07:17.000000000 +0100
@@ -1,7 +1,7 @@
 Begin3
 Title:          Chkrootkit
-Version:        0.44
-Entered-date:   Wed Sep  1 09:30:40 BRT 2004
+Version:        0.45
+Entered-date:   Wed Nov 26 19:06:40 BRT 2004
 Description:    locally checks for signs of a rootkit
 Keywords:       rootkit check vulnerability unix LKM Ramen Lion Worn Adore Worm
 Author:         Nelson Murilo <nelson@pangeia.com.br>
diff -ruN chkrootkit-0.44/Makefile chkrootkit-albert/Makefile
--- chkrootkit-0.44/Makefile	2004-07-16 04:04:18.000000000 +0200
+++ chkrootkit-albert/Makefile	2004-11-26 17:50:04.000000000 +0100
@@ -2,9 +2,10 @@
 # Makefile for chkrootkit
 # (C) 1997-2003 Nelson Murilo, Pangeia Informatica, AMS Foundation and others.
 #
-
-CC       = gcc
-CFLAGS	 = -DHAVE_LASTLOG_H
+GCC     := $(shell which gcc)
+ifneq ($(GCC), )
+	CC   := $(GCC)
+endif
 STATIC   = -static
 
 ###
@@ -17,6 +18,12 @@
 #STATIC = -B static
 
 ###
+### Digital Unix 
+###
+# If you have Digital Unix, uncomment the next two lines
+#STATIC = -non_shared
+
+###
 ### FreeBSD or OpenBSD 2.x
 ###
 # If you have FreeBSD or OpenBSD 2.x, uncomment the next line
@@ -29,7 +36,7 @@
 
 all:
 	@echo '*** stopping make sense ***'
-	@exec make sense
+	@make sense
 
 sense: chklastlog chkwtmp ifpromisc chkproc chkdirs check_wtmpx strings-static
 
diff -ruN chkrootkit-0.44/readme chkrootkit-albert/readme
--- chkrootkit-0.44/readme	2004-09-01 14:58:00.000000000 +0200
+++ chkrootkit-albert/readme	2004-11-26 18:06:04.000000000 +0100
@@ -1,4 +1,4 @@
-                          chkrootkit V. 0.44
+                          chkrootkit V. 0.45
 
           Nelson Murilo <nelson@pangeia.com.br> (main author)
             Klaus Steding-Jessen <jessen@nic.br> (co-author)
@@ -326,5 +326,9 @@
                             better support for Linux threads.  New
                             rootkit detected: Madalin.  Lots of minor
                             bug fixes.
+ 11/26/2004 - Version 0.45  Makefile: Digital Unix port, better compiler 
+                            detection. chklastlog.c: better detection of 
+							LASTLOG_FILENAME on linux, Digital Unix port.  
+                            (Emiliano Gabrielli <AlberT@SuperAlberT.it>)
 
  -------------- Thx for using chkrootkit ----------------
