diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | src/mkerrcodes.awk | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2004-04-19 Marcus Brinkmann <[email protected]> + + * src/mkerrcodes.awk: Allow whitespace before expanded + preprocessor macro (ie, the error code value). Needed for Solaris 2.8. + 2004-04-08 Moritz Schulte <[email protected]> * src/gpg-error.c (main): Return zero on success. @@ -1,7 +1,7 @@ Noteworthy changes in version 0.8 (unreleased) ---------------------------------------------- - * (none so far) + * Ported to Solaris 2.8. * Interface changes relative to the 0.7 release: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/src/mkerrcodes.awk b/src/mkerrcodes.awk index c101496..55eac34 100644 --- a/src/mkerrcodes.awk +++ b/src/mkerrcodes.awk @@ -63,7 +63,7 @@ BEGIN { /^#/ { next; } header { - if ($0 ~ /^[0-9]+/) + if ($0 ~ /^[ \t]*[0-9]+/) { header = 0; |