From owner-freebsd-ports@FreeBSD.ORG Wed Mar 3 21:58:49 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D23241065670 for ; Wed, 3 Mar 2010 21:58:49 +0000 (UTC) (envelope-from cowbert@gmail.com) Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.26]) by mx1.freebsd.org (Postfix) with ESMTP id 919988FC16 for ; Wed, 3 Mar 2010 21:58:49 +0000 (UTC) Received: by qw-out-2122.google.com with SMTP id 8so356158qwh.7 for ; Wed, 03 Mar 2010 13:58:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=SYJECwKcZjME7vjbgDFah9k3AFPt2Kxu4b2zsA2GBcM=; b=kNx/StKnx1ogXokuYM7bDZfNkxTkM2QhieuXhxTiwy1DpCGRNxYRZKjgluugisEWbx jar/F0+qYZZW59apXDQ3xdxgshqbHHOpMHEmQL6f6EU11sBGYPF+vfTl/R6Si4rup++R JMFyrk494q96wWJu/toWdcBJEyWIFBL2FeTgw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=rPDYRixvHi0IA91q5h+oJFd13qKeEbXctk6+TnCS2247ZNcnEEHX4VkKV4NGt596HB WnfPnuf74QQGT3bfokMxDIzVu2j1jwrOMJfd1JdvlnRpy3JECa6ldLtV/P6O4AcOOxEv ryRUCInWMuROBLq0TLRXTNWsYzu83CDwnMXf8= MIME-Version: 1.0 Received: by 10.224.89.134 with SMTP id e6mr1547201qam.297.1267652222030; Wed, 03 Mar 2010 13:37:02 -0800 (PST) Date: Wed, 3 Mar 2010 16:37:01 -0500 Message-ID: From: Peter Lai To: ivan.lago@ifom-ieo-campus.it, ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Cc: Subject: FreeBSD Port: sysutils/eventlog evtlog.h missing facilities X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Mar 2010 21:58:49 -0000 Hi Ivan Would it be possible to look into merging base's syslog.h with eventlog's evtlog.h ? The reason is, evtlog.h is missing a bunch of facility codes that is in FreeBSD's syslog.h: #define LOG_NTP (12<<3) /* NTP subsystem */ #define LOG_SECURITY (13<<3) /* security subsystems (firewalling, etc.) */ #define LOG_CONSOLE (14<<3) /* /dev/console output */ should be added to evtlog.h so that eventlog and syslog-ng can support those types (like LOG_CONSOLE) otherwise in syslog-ng, trying to filter on facility(console) will fail with unsupport facility type...