From bfde237283ee68c1d6786c2d5b9471d05801301f Mon Sep 17 00:00:00 2001 From: Luis Kornblueh <luis.kornblueh@zmaw.de> Date: Tue, 27 Jan 2015 14:26:34 +0100 Subject: [PATCH] Needs not to be gcc - a C compiler is fine. --- src/mtime_iso8601.c | 2 +- src/mtime_iso8601.rl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mtime_iso8601.c b/src/mtime_iso8601.c index 90f3ce2d..79cfd9ef 100644 --- a/src/mtime_iso8601.c +++ b/src/mtime_iso8601.c @@ -8,7 +8,7 @@ * @date March 2013 * * @note USAGE: Compile this rl file and generate iso8601.c file. - Compile the iso8601.c file using gcc. iso8601.h file needs to be edited seperately. + Compile the iso8601.c file using a C compiler. iso8601.h file needs to be edited seperately. match_found = 1 => DATE/DATETIME. match_found = 2 => Duration. Else non-compliant string and hence REJECT. Due to application requirements, current implementation allows year in the range 2147483647 and -2147483648 only! */ diff --git a/src/mtime_iso8601.rl b/src/mtime_iso8601.rl index efa61a9e..02f39f42 100644 --- a/src/mtime_iso8601.rl +++ b/src/mtime_iso8601.rl @@ -6,7 +6,7 @@ * @date March 2013 * * @note USAGE: Compile this rl file and generate iso8601.c file. - Compile the iso8601.c file using gcc. iso8601.h file needs to be edited seperately. + Compile the iso8601.c file using a C compiler. iso8601.h file needs to be edited seperately. match_found = 1 => DATE/DATETIME. match_found = 2 => Duration. Else non-compliant string and hence REJECT. Due to application requirements, current implementation allows year in the range 2147483647 and -2147483648 only! */ -- GitLab