mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Get gdomap to use syslog unless not run as daemon (or not supported on
system eg mingw) git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@12725 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
aa6178c559
commit
0b804ec353
5 changed files with 847 additions and 748 deletions
|
@ -2,6 +2,10 @@
|
|||
|
||||
* Source/NSTask.m: Removed NSLogs() accidantally left in after
|
||||
debugging. Reported by Fred Kiefer.
|
||||
* Tools/gdomap.c: Use syslog for logging ... modification of patch by
|
||||
Matthias Klose <doko@cs.tu-berlin.de>
|
||||
* configure.in: Minor additions for time header/functions
|
||||
* configure: regenerated
|
||||
|
||||
2002-02-23 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
|
|
|
@ -91,6 +91,9 @@
|
|||
/* The number of bytes in a void*. */
|
||||
#undef SIZEOF_VOIDP
|
||||
|
||||
/* Define if you have the ctime function. */
|
||||
#undef HAVE_CTIME
|
||||
|
||||
/* Define if you have the getcwd function. */
|
||||
#undef HAVE_GETCWD
|
||||
|
||||
|
@ -160,6 +163,9 @@
|
|||
/* Define if you have the syslog function. */
|
||||
#undef HAVE_SYSLOG
|
||||
|
||||
/* Define if you have the time function. */
|
||||
#undef HAVE_TIME
|
||||
|
||||
/* Define if you have the times function. */
|
||||
#undef HAVE_TIMES
|
||||
|
||||
|
@ -301,6 +307,9 @@
|
|||
/* Define if you have the <syslog.h> header file. */
|
||||
#undef HAVE_SYSLOG_H
|
||||
|
||||
/* Define if you have the <time.h> header file. */
|
||||
#undef HAVE_TIME_H
|
||||
|
||||
/* Define if you have the <ucbinclude/sys/resource.h> header file. */
|
||||
#undef HAVE_UCBINCLUDE_SYS_RESOURCE_H
|
||||
|
||||
|
|
430
Tools/gdomap.c
430
Tools/gdomap.c
File diff suppressed because it is too large
Load diff
|
@ -504,7 +504,8 @@ LIBS="$saved_LIBS"
|
|||
#--------------------------------------------------------------------
|
||||
dnl AC_REPLACE_FUNCS(getrusage gettimeofday)
|
||||
|
||||
AC_CHECK_HEADERS(sys/time.h sys/rusage.h ucbinclude/sys/resource.h)
|
||||
AC_CHECK_HEADERS(time.h sys/time.h sys/rusage.h ucbinclude/sys/resource.h)
|
||||
AC_CHECK_FUNCS(time ctime)
|
||||
|
||||
#--------------------------------------------------------------------
|
||||
# These headers/functions needed by GSTcpPort.m
|
||||
|
|
Loading…
Reference in a new issue