Undefine SVR4 whilst including #include <X11/Xos_r.h> to prevent sys/byteorder.h
[oweals/cde.git] / cde / lib / csa / debug.c
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: debug.c /main/3 1996/11/21 20:00:19 drk $ */
24 /*
25  *  (c) Copyright 1993, 1994 Hewlett-Packard Company
26  *  (c) Copyright 1993, 1994 International Business Machines Corp.
27  *  (c) Copyright 1993, 1994 Novell, Inc.
28  *  (c) Copyright 1993, 1994 Sun Microsystems, Inc.
29  */
30
31 #include <stdio.h>
32
33 #define X_INCLUDE_TIME_H
34 #define XOS_USE_NO_LOCKING
35
36 #if defined(linux)
37 #undef SVR4
38 #endif
39 #include <X11/Xos_r.h>
40 #if defined(linux)
41 #define SVR4
42 #endif
43
44 #include <syslog.h>
45
46 static int inited = 0;
47
48 extern void
49 _DtCm_print_tick(time_t t)
50 {
51         char *a;
52         _Xctimeparams ctime_buf;
53  
54         a = _XCtime(&t, ctime_buf);
55         (void) fprintf (stderr, "%d %s\n", t, a);
56 }
57
58 extern void
59 _DtCm_print_errmsg(const char *msg)
60 {
61         if (inited == 0) {
62                 openlog("libcsa", 0, 0);
63                 inited = 1;
64         }
65
66 #ifdef CM_DEBUG
67         fprintf(stderr, "libcsa: %s\n", msg);
68 #else
69         syslog(LOG_ERR, "%s\n", msg);
70 #endif
71
72 }
73