Skip to content
Snippets Groups Projects
Commit f3d67eff authored by sof's avatar sof
Browse files

[project @ 1999-03-02 20:14:00 by sof]

mingw32 tweaks
parent 3a0af2b8
No related merge requests found
# $Id: Makefile,v 1.2 1998/12/02 13:27:12 simonm Exp $
# $Id: Makefile,v 1.3 1999/03/02 20:14:00 sof Exp $
TOP = ../../..
include $(TOP)/mk/boilerplate.mk
......@@ -13,6 +13,7 @@ C_OBJS = $(C_SRCS:.c=.o)
LIBOBJS = $(C_OBJS)
SRC_CC_OPTS += -O -I$(GHC_INCLUDE_DIR) $(GhcLibCcOpts)
#
# Compile the files using the Haskell compiler (ghc really).
#
......
/*
* (c) The GRASP/AQUA Project, Glasgow University, 1994-1998
*
* $Id: progargs.c,v 1.1 1998/12/09 17:09:50 sof Exp $
* $Id: progargs.c,v 1.2 1999/03/02 20:14:01 sof Exp $
*
* System.getArgs Runtime Support
*/
......@@ -9,8 +9,8 @@
#include "Rts.h"
#include "stgio.h"
extern char** prog_argv;
extern int prog_argc;
DLLIMPORT extern char** prog_argv;
DLLIMPORT extern int prog_argc;
StgAddr
get_prog_argv(void)
......
/*
* (c) The GRASP/AQUA Project, Glasgow University, 1994-1998
*
* $Id: timezone.h,v 1.6 1999/02/09 09:43:08 simonm Exp $
* $Id: timezone.h,v 1.7 1999/03/02 20:14:02 sof Exp $
*
* Time-zone support header
*/
......@@ -60,10 +60,13 @@
#define GMTOFF(x) (((struct tm *)x)->tm_gmtoff)
#else /* ! HAVE_TM_ZONE */
# if HAVE_TZNAME || cygwin32_TARGET_OS
#if cygwin32_TARGET_OS
#define tzname _tzname
#endif
# if cygwin32_TARGET_OS
# define tzname _tzname
# endif
# ifndef mingw32_TARGET_OS
extern char *tzname[2];
# endif
# define ZONE(x) (((struct tm *)x)->tm_isdst ? tzname[1] : tzname[0])
# define SETZONE(x,z)
# else /* ! HAVE_TZNAME */
......@@ -72,16 +75,24 @@ extern char *tzname[2];
# endif /* ! HAVE_TZNAME */
/* Get the offset in secs from UTC, if (struct tm) doesn't supply it. */
#ifdef mingw32_TARGET_OS
#define timezone _timezone
#else
# ifdef cygwin32_TARGET_OS
# define timezone _timezone
# endif
#endif
#ifndef HAVE_TIMEZONE
extern TYPE_TIMEZONE timezone;
#endif
# if HAVE_ALTZONE
extern time_t altzone;
# define GMTOFF(x) (((struct tm *)x)->tm_isdst ? altzone : timezone)
# define GMTOFF(x) (((struct tm *)x)->tm_isdst ? altzone : timezone )
# else /* ! HAVE_ALTZONE */
/* Assume that DST offset is 1 hour ... */
# define GMTOFF(x) (((struct tm *)x)->tm_isdst ? (timezone - 3600) : timezone)
# define GMTOFF(x) (((struct tm *)x)->tm_isdst ? (timezone - 3600) : timezone )
# endif /* ! HAVE_ALTZONE */
#endif /* ! HAVE_TM_ZONE */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment