2003-02-19 16:40:19 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| PHP Version 4 |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Copyright (c) 1997-2003 The PHP Group |
|
|
|
|
+----------------------------------------------------------------------+
|
2003-06-11 04:04:29 +08:00
|
|
|
| This source file is subject to version 3.0 of the PHP license, |
|
2003-02-19 16:40:19 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
|
|
|
| http://www.php.net/license/3_0.txt. |
|
2003-02-19 16:40:19 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Author: |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2000-05-29 00:22:28 +08:00
|
|
|
#ifndef PHP_SYSLOG_H
|
|
|
|
#define PHP_SYSLOG_H
|
|
|
|
|
|
|
|
#ifdef PHP_WIN32
|
|
|
|
#include "win32/syslog.h"
|
2002-09-09 20:03:36 +08:00
|
|
|
#elif defined(NETWARE)
|
|
|
|
# include "config.nw.h"
|
|
|
|
#ifdef HAVE_SYSLOG_H
|
|
|
|
#include <syslog.h>
|
|
|
|
#endif
|
2000-05-29 00:22:28 +08:00
|
|
|
#else
|
2001-02-25 05:08:15 +08:00
|
|
|
#include "php_config.h"
|
|
|
|
#ifdef HAVE_SYSLOG_H
|
2000-05-29 00:22:28 +08:00
|
|
|
#include <syslog.h>
|
|
|
|
#endif
|
2001-02-25 05:08:15 +08:00
|
|
|
#endif
|
2000-05-29 00:22:28 +08:00
|
|
|
|
2000-06-10 01:21:40 +08:00
|
|
|
/*
|
|
|
|
* The SCO OpenServer 5 Development System (not the UDK)
|
|
|
|
* defines syslog to std_syslog.
|
2000-05-29 00:22:28 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef syslog
|
|
|
|
|
2000-06-10 01:21:40 +08:00
|
|
|
#ifdef HAVE_STD_SYSLOG
|
2000-06-01 08:48:28 +08:00
|
|
|
#define php_syslog std_syslog
|
2000-05-29 00:22:28 +08:00
|
|
|
#endif
|
|
|
|
|
2000-06-10 01:21:40 +08:00
|
|
|
#undef syslog
|
|
|
|
|
2000-05-29 00:22:28 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef php_syslog
|
|
|
|
#define php_syslog syslog
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|