~ubuntu-branches/ubuntu/wily/tzdata/wily

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Package Import Robot
  • Author(s): Aurelien Jarno, Aurelien Jarno
  • Date: 2015-08-11 19:56:35 UTC
  • mfrom: (102.1.20 sid)
  • Revision ID: package-import@ubuntu.com-20150811195635-fobpz9t6flrl6fvb
Tags: 2015f-1
[ Aurelien Jarno ]
* New upstream version, affecting the following future time stamps:
  - North Korea switches to +0830 on 2015-08-15.
  - Uruguay no longer observes DST.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
PACKAGE=        tzcode
6
6
 
7
7
# Version numbers of the code and data distributions.
8
 
VERSION=        2015e
 
8
VERSION=        2015f
9
9
 
10
10
# Email address for bug reports.
11
11
BUGEMAIL=       tz@iana.org
102
102
 
103
103
# Add the following to the end of the "CFLAGS=" line as needed.
104
104
#  -DBIG_BANG=-9999999LL if the Big Bang occurred at time -9999999 (see zic.c)
105
 
#  -DHAVE_ADJTIME=0 if 'adjtime' does not exist (SVR0?)
106
105
#  -DHAVE_DOS_FILE_NAMES if file names have drive specifiers etc. (MS-DOS)
107
106
#  -DHAVE_GETTEXT=1 if 'gettext' works (GNU, Linux, Solaris); also see LDLIBS
108
107
#  -DHAVE_INCOMPATIBLE_CTIME_R=1 if your system's time.h declares
113
112
#  -DHAVE_LOCALTIME_RZ=0 if you do not want zdump to use localtime_rz
114
113
#       This defaults to 1 if a working localtime_rz seems to be available.
115
114
#       localtime_rz can make zdump significantly faster, but is nonstandard.
116
 
#  -DHAVE_SETTIMEOFDAY=0 if settimeofday does not exist (SVR0?)
117
 
#  -DHAVE_SETTIMEOFDAY=1 if settimeofday has just 1 arg (SVR4)
118
 
#  -DHAVE_SETTIMEOFDAY=2 if settimeofday uses 2nd arg (4.3BSD)
119
 
#  -DHAVE_SETTIMEOFDAY=3 if settimeofday ignores 2nd arg (4.4BSD)
120
115
#  -DHAVE_STDINT_H=1 if you have a pre-C99 compiler with "stdint.h"
121
116
#  -DHAVE_STRFTIME_L=1 if <time.h> declares locale_t and strftime_l
122
117
#       This defaults to 0 if _POSIX_VERSION < 200809, 1 otherwise.
126
121
#  -DHAVE_SYS_WAIT_H=0 if your compiler lacks a "sys/wait.h"
127
122
#  -DHAVE_TZSET=0 if your system lacks a tzset function
128
123
#  -DHAVE_UNISTD_H=0 if your compiler lacks a "unistd.h" (Microsoft C++ 7?)
129
 
#  -DHAVE_UTMPX_H=1 if your compiler has a "utmpx.h"
130
124
#  -DNO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU=1
131
125
#       if you do not want run time warnings about formats that may cause
132
126
#       year 2000 grief
147
141
#  -DZIC_MAX_ABBR_LEN_WO_WARN=3
148
142
#       (or some other number) to set the maximum time zone abbreviation length
149
143
#       that zic will accept without a warning (the default is 6)
150
 
#  $(GCC_DEBUG_FLAGS) if you are using GCC and want lots of checking
 
144
#  $(GCC_DEBUG_FLAGS) if you are using recent GCC and want lots of checking
151
145
GCC_DEBUG_FLAGS = -Dlint -g3 -O3 -fno-common -fstrict-aliasing \
152
146
        -Wall -Wextra \
153
147
        -Wbad-function-cast -Wcast-align -Wdate-time \