mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 04:18:08 +01:00
date.c: Add hard-coded definition of HAVE_TIMEZONE
The original code expected this to be set by running configure. We'll just manually set it here for now. This isn't as portable as if we were doing some compile-time examination of the current system, but I don't need portability now. When someone comes along that wants to port notmuch to another system, they will already have all the #ifdefs in place and will simply need to add the appropriate machinery to set the defines.
This commit is contained in:
parent
c2c50d50c5
commit
747f610901
1 changed files with 2 additions and 0 deletions
2
date.c
2
date.c
|
@ -363,6 +363,8 @@ get_tzone (date_token **token)
|
|||
return -1;
|
||||
}
|
||||
|
||||
#define HAVE_TIMEZONE
|
||||
|
||||
static time_t
|
||||
mktime_utc (struct tm *tm)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue