diff options
| author | Filipe Brandenburger <[email protected]> | 2016-05-02 12:18:47 -0700 |
|---|---|---|
| committer | Mark Wielaard <[email protected]> | 2016-05-02 21:45:09 +0200 |
| commit | afeccd48a738ebae5645dded4dd13f053747d008 (patch) | |
| tree | 3bc569a74fca75093b98cb654f379c47a490c6a2 /ChangeLog | |
| parent | f46ba1e7211f4ae884f234a37e16bc5feafa2b1c (diff) | |
config: Fix check for argp_parse to pass &argv
Right now it's passing a char* when it expects a char** instead.
This usually produces a warning that may go unnoticed, but if CFLAGS
contains -Werror, that breaks the ./configure run with the following
error:
$ ./configure CFLAGS=-Werror
...
configure: WARNING: "libc does not have argp"
checking for argp_parse in -largp... no
configure: error: "no libargp found"
Tested: Checked that after this fix, running ./configure CFLAGS=-Werror
works as expected and argp_parse is correctly detected.
Signed-off-by: Filipe Brandenburger <[email protected]>
Diffstat (limited to 'ChangeLog')
| -rw-r--r-- | ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2016-05-02 Filipe Brandenburger <[email protected]> + + * configure.ac (argp check): Pass pass &argv. + 2016-03-31 Mark Wielaard <[email protected]> * configure.ac: Set version to 0.166. |
