summaryrefslogtreecommitdiff
path: root/mcon/U/d_tminsys.U
diff options
context:
space:
mode:
Diffstat (limited to 'mcon/U/d_tminsys.U')
-rw-r--r--mcon/U/d_tminsys.U41
1 files changed, 41 insertions, 0 deletions
diff --git a/mcon/U/d_tminsys.U b/mcon/U/d_tminsys.U
new file mode 100644
index 0000000..60fc95a
--- /dev/null
+++ b/mcon/U/d_tminsys.U
@@ -0,0 +1,41 @@
+?RCS: $Id$
+?RCS:
+?RCS: Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi
+?RCS:
+?RCS: You may redistribute only under the terms of the Artistic License,
+?RCS: as specified in the README file that comes with the distribution.
+?RCS: You may reuse parts of this distribution only within the terms of
+?RCS: that same Artistic License; a copy of which may be found at the root
+?RCS: of the source tree for dist 4.0.
+?RCS:
+?RCS: $Log: d_tminsys.U,v $
+?RCS: Revision 3.0 1993/08/18 12:07:47 ram
+?RCS: Baseline for dist 3.0 netwide release.
+?RCS:
+?MAKE:d_tminsys: contains Setvar Findhdr
+?MAKE: -pick add $@ %<
+?S:d_tminsys:
+?S: This variable conditionally defines TM_IN_SYS if this system
+?S: declares "struct tm" in <sys/time.h> rather than <time.h>.
+?S:.
+?C:TM_IN_SYS (TMINSYS):
+?C: This symbol is defined if this system declares "struct tm" in
+?C: in <sys/time.h> rather than <time.h>. We can't just say
+?C: -I/usr/include/sys because some systems have both time files, and
+?C: the -I trick gets the wrong one.
+?C:.
+?H:#$d_tminsys TM_IN_SYS /**/
+?H:.
+?LINT:set d_tminsys
+: see if struct tm is defined in sys/time.h
+echo " "
+if $contains 'struct tm' `./findhdr time.h` >/dev/null 2>&1 ; then
+ echo "You have struct tm defined in <time.h> rather than <sys/time.h>." >&4
+ val="$undef"
+else
+ echo "You have struct tm defined in <sys/time.h> rather than <time.h>." >&4
+ val="$define"
+fi
+set d_tminsys
+eval $setvar
+