summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2002-01-18 18:59:51 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2002-01-18 18:59:51 +0000
commit82e7d92dd2a04b64a6accd8684b3a093e6f73ce8 (patch)
tree3da8f0ce7b41a1b41440f2dddf5fbee7b6f65fd3
parente307e7b16508ad5cb86029933dfcb9ee7a74f6ca (diff)
downloadATCD-82e7d92dd2a04b64a6accd8684b3a093e6f73ce8.tar.gz
ChangeLogTag:Fri Jan 18 12:56:36 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLogs/ChangeLog-02a6
-rw-r--r--ChangeLogs/ChangeLog-03a6
-rw-r--r--THANKS3
-rw-r--r--ace/Log_Msg.cpp2
5 files changed, 21 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c84d36b2c32..825e594260e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Jan 18 12:56:36 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
+
+ * ace/Log_Msg.cpp (init_backend): Added support for SysLog on platforms
+ that don't lack it. Thanks to Alexei I. Adamovich
+ <lexa@adam.botik.ru> for reporting this fix.
+
Fri Jan 18 10:29:06 2002 Ossama Othman <ossama@uci.edu>
* ace/Service_Config.h (process_file):
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index c84d36b2c32..825e594260e 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Fri Jan 18 12:56:36 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
+
+ * ace/Log_Msg.cpp (init_backend): Added support for SysLog on platforms
+ that don't lack it. Thanks to Alexei I. Adamovich
+ <lexa@adam.botik.ru> for reporting this fix.
+
Fri Jan 18 10:29:06 2002 Ossama Othman <ossama@uci.edu>
* ace/Service_Config.h (process_file):
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index c84d36b2c32..825e594260e 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,9 @@
+Fri Jan 18 12:56:36 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
+
+ * ace/Log_Msg.cpp (init_backend): Added support for SysLog on platforms
+ that don't lack it. Thanks to Alexei I. Adamovich
+ <lexa@adam.botik.ru> for reporting this fix.
+
Fri Jan 18 10:29:06 2002 Ossama Othman <ossama@uci.edu>
* ace/Service_Config.h (process_file):
diff --git a/THANKS b/THANKS
index c5b51746849..d06e5178bf3 100644
--- a/THANKS
+++ b/THANKS
@@ -664,7 +664,7 @@ Gildo Medeiros Junior <gildo@siemens.com.br>
Brian Peterson <bpeterson@globalmt.com>
Fabrice Podlyski <podlyski@clrhp04.in2p3.fr>
Darren DeRidder <darren.deridder@bridgewatersys.com>
-John Tucker <johnny_tucker@yahoo.com>
+John Tucker <jtucker@magisnetworks.com>
Oleg Orlov <orlov@diasoft.ru>
Timothy Canham <Timothy.Canham@jpl.nasa.gov>
Randy Heiland <heiland@ncsa.uiuc.edu>
@@ -1422,6 +1422,7 @@ Andrew L. Shwaika <als@solvo.ru>
Gerhard Voss <Gerhard_Voss@t-online.de>
Gregor Bruce <gregorb@clear.net.nz>
Ian Cahoon <icahoon@cisco.com>
+Alexei I. Adamovich <lexa@adam.botik.ru>
I would particularly like to thank Paul Stephenson, who worked with me
at Ericsson in the early 1990's. Paul devised the recursive Makefile
diff --git a/ace/Log_Msg.cpp b/ace/Log_Msg.cpp
index 5c0420a0955..947d7b59262 100644
--- a/ace/Log_Msg.cpp
+++ b/ace/Log_Msg.cpp
@@ -129,7 +129,7 @@ int ACE_Log_Msg_Manager::init_backend (const u_long *flags)
{
ACE_NO_HEAP_CHECK;
-#if defined (WIN32) && !defined (ACE_HAS_WINCE) && !defined (ACE_HAS_PHARLAP)
+#if (defined (WIN32) || !defined (ACE_LACKS_UNIX_SYSLOG)) && !defined (ACE_HAS_WINCE) && !defined (ACE_HAS_PHARLAP)
// Allocate the ACE_Log_Msg_Backend instance.
if (ACE_BIT_ENABLED (ACE_Log_Msg_Manager::log_backend_flags_, ACE_Log_Msg::SYSLOG))
ACE_NEW_RETURN (ACE_Log_Msg_Manager::log_backend_,