Compare commits

...

5 Commits

Author SHA1 Message Date
Laurence Withers 82aa0f2f20 Bump version 2015-06-12 11:01:21 +01:00
Laurence Withers 2e610c4db3 Add 2015-06-30 leap second to built-in table 2015-06-12 10:55:53 +01:00
Laurence Withers dd3fe182af Update build system (Doxyfile) 2015-06-12 10:53:31 +01:00
Laurence Withers 0d5c2078b3 Bump version 2013-04-05 09:35:19 +00:00
Laurence Withers 6b25293f35 Fix build system ordering
Make sure that the library is built before either of the isodate or setisodate
apps, otherwise we end up with problems compiling from scratch.
2013-04-05 09:32:22 +00:00
5 changed files with 2274 additions and 118 deletions

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,8 @@
# isodate_BUILT # isodate_BUILT
# #
build_target libiso8601
if [ -z ${isodate_BUILT} ] if [ -z ${isodate_BUILT} ]
then then
isodate="obj/isodate" isodate="obj/isodate"

View File

@ -40,6 +40,7 @@ leap_second_days_table[] = {
732676, /* 2005-12-31 */ 732676, /* 2005-12-31 */
733772, /* 2008-12-31 */ 733772, /* 2008-12-31 */
735049, /* 2012-06-30 */ 735049, /* 2012-06-30 */
736144, /* 2015-06-30 */
}; };

View File

@ -3,6 +3,8 @@
# setisodate_BUILT # setisodate_BUILT
# #
build_target libiso8601
if [ -z ${setisodate_BUILT} ] if [ -z ${setisodate_BUILT} ]
then then
setisodate="obj/setisodate" setisodate="obj/setisodate"

View File

@ -11,6 +11,6 @@
# expected to be in 'major.minor.micro' format. # expected to be in 'major.minor.micro' format.
VERMAJOR=0 VERMAJOR=0
VERMINOR=3 VERMINOR=3
VERMICRO=13 VERMICRO=15
# vim: expandtab:ts=4:sw=4:syntax=sh # vim: expandtab:ts=4:sw=4:syntax=sh