deal with bounded attribute

This commit is contained in:
Bob Beck 2014-07-10 14:11:44 -06:00
parent abe7bee360
commit 2981557a7f

View File

@ -8,6 +8,14 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AC_SUBST([USER_CFLAGS], "-O2 $CFLAGS")
CFLAGS="$CFLAGS -Wall -Werror -std=c99 -g -Wno-pointer-sign -DHAVE_CRYPTODEV -DLIBRESSL_INTERNAL"
case $target_os in
*openbsd*)
;;
*)
CFLAGS=$CFLAGS -D__bounded__(x,y,z)
;;
esac
case $target_os in
*darwin*)
TARGET_OS=darwin;