mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-21 23:38:49 -05:00
Fix compilation with GCC 4.2.0
'inline' keyword in C99 is not correctly recognized, so compilation fails on the warning it spits. This fixes this. Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
26e3db423a
commit
d8e88aa017
@ -12,7 +12,7 @@ include_HEADERS = alpm_list.h alpm.h
|
||||
|
||||
DEFS = -DLOCALEDIR=\"@localedir@\" @DEFS@
|
||||
|
||||
AM_CFLAGS = -fvisibility=hidden -pedantic -D_GNU_SOURCE
|
||||
AM_CFLAGS = -fvisibility=hidden -pedantic -D_GNU_SOURCE -fgnu89-inline
|
||||
|
||||
EXTRA_DIST = Doxyfile
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user