diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2016-09-24 18:23:58 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2016-09-24 18:28:07 +0200 |
commit | 4a57a63458ba2c0c11fdcd24f6cf2fc15957135a (patch) | |
tree | de7d50f34c0dc04cce340f0ccad68d8585a054a9 | |
parent | 5aaa3cec988329f11d27911aa3994f4776139c0b (diff) | |
download | fetchmail-4a57a63458ba2c0c11fdcd24f6cf2fc15957135a.tar.gz fetchmail-4a57a63458ba2c0c11fdcd24f6cf2fc15957135a.tar.bz2 fetchmail-4a57a63458ba2c0c11fdcd24f6cf2fc15957135a.zip |
Fix missing fileno() declaration.
Add #define _XOPEN_SOURCE 600, the %top{...} flex macro requires flex 2.5.30 or newer.
-rw-r--r-- | README.git | 9 | ||||
-rw-r--r-- | rcfile_l.l | 5 |
2 files changed, 8 insertions, 6 deletions
@@ -10,11 +10,8 @@ The prerequisite packages are: - GNU automake >= 1.8 - GNU gettext >= 0.14.3 - GNU m4 -- bison or yacc -- flex or lex - -On FreeBSD, install the autoconf, automake and gettext-tools ports (all -from the devel/ category). +- GNU bison +- GNU flex >= 2.5.30 After you have everything installed, type: @@ -30,4 +27,4 @@ $ make (become root) # make install-strip --- Matthias Andree, 2016-04-16 +-- Matthias Andree, 2016-09-24 @@ -1,3 +1,8 @@ +%top{ +/* make fileno() known */ +#define _XOPEN_SOURCE 600 +} + %{ /* |