build: fix autoreconf warnings
Replace AC_LANG_PROGRAM with AC_LANG_SOURCE and INCLUDES with AM_CFLAGS to fix autoreconf warnings https://bugs.freedesktop.org/show_bug.cgi?id=62748
This commit is contained in:
parent
7eafca7bab
commit
0e843ad6b3
2 changed files with 2 additions and 2 deletions
|
@ -264,7 +264,7 @@ fi
|
||||||
# Restore gnu89 inline semantics on gcc 4.3 and newer
|
# Restore gnu89 inline semantics on gcc 4.3 and newer
|
||||||
saved_cflags="$CFLAGS"
|
saved_cflags="$CFLAGS"
|
||||||
CFLAGS="$CFLAGS -fgnu89-inline"
|
CFLAGS="$CFLAGS -fgnu89-inline"
|
||||||
AC_COMPILE_IFELSE(AC_LANG_PROGRAM([]), inline_cflags="-fgnu89-inline", inline_cflags="")
|
AC_COMPILE_IFELSE([AC_LANG_SOURCE([[]])], inline_cflags="-fgnu89-inline", inline_cflags="")
|
||||||
CFLAGS="$saved_cflags"
|
CFLAGS="$saved_cflags"
|
||||||
|
|
||||||
AC_DEFINE([API_EXPORTED], [__attribute__((visibility("default")))], [Default visibility])
|
AC_DEFINE([API_EXPORTED], [__attribute__((visibility("default")))], [Default visibility])
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
INCLUDES = -I$(top_srcdir)
|
AM_CFLAGS = -I$(top_srcdir)
|
||||||
noinst_PROGRAMS = verify_live enroll verify img_capture cpp-test
|
noinst_PROGRAMS = verify_live enroll verify img_capture cpp-test
|
||||||
|
|
||||||
verify_live_SOURCES = verify_live.c
|
verify_live_SOURCES = verify_live.c
|
||||||
|
|
Loading…
Reference in a new issue