]> git.ipfire.org Git - thirdparty/util-linux.git/commit
build-sys: include errno.h instead of argp.h
authorChen Qi <Qi.Chen@windriver.com>
Mon, 31 Aug 2015 08:23:45 +0000 (16:23 +0800)
committerKarel Zak <kzak@redhat.com>
Mon, 31 Aug 2015 09:27:45 +0000 (11:27 +0200)
commit37edac9a0ca83f311279d2e49bacd6ac80310dc8
treec043473a7c722626b3de751035bbbb511547a98c
parent9ad7c4c8edb912403e46deaed3bb86eca3a8ba84
build-sys: include errno.h instead of argp.h

configure should include errno.h instead of argp.h when
checking for presence of program_invocation_short_name
uclibc defines this to be const char* unlike util-linux-ng
which defines this to be char* so this error goes unnoticed
on glibc/eglibc systems.

here is the error it fixes

in file included from mountP.h:14:0,
                 from cache.c:29:
/home/kraj/work/slugos/build/tmp-slugos-uclibc/sysroots/nslu2le/usr/include/errno.h:55:46: error: conflicting types for '__progname'
../../../include/c.h:118:14: note: previous declaration of '__progname' was here
make[3]: *** [cache.lo] Error 1

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Jonathan Liu <net147@gmail.com>
configure.ac