Changeset 708837d
- Timestamp:
- Jun 25, 2011, 3:10:24 PM (13 years ago)
- Children:
- 1bdbcb1
- Parents:
- bad4496
- git-author:
- David Benjamin <davidben@mit.edu> (06/25/11 14:57:29)
- git-committer:
- David Benjamin <davidben@mit.edu> (06/25/11 15:10:24)
- Files:
-
- 1 added
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
rf2a96c0 r708837d 17 17 18 18 AS_IF([test "x$with_stack_protector" != xno], 19 [AX_C HECK_COMPILE_FLAG([-fstack-protector],19 [AX_C_CHECK_FLAG([-fstack-protector],[],[], 20 20 [AM_CFLAGS="$AM_CFLAGS -fstack-protector"], 21 21 [if test "x$with_stack_protector" != xcheck; then … … 129 129 130 130 AX_CFLAGS_WARN_ALL([AM_CFLAGS]) 131 AX_APPEND_COMPILE_FLAGS([-Wstrict-prototypes -Wwrite-strings],[AM_CFLAGS]) 131 AX_C_CHECK_FLAG([-Wstrict-prototypes],[],[],[AM_CFLAGS="$AM_CFLAGS -Wstrict-prototypes"]) 132 AX_C_CHECK_FLAG([-Wwrite-strings],[],[],[AM_CFLAGS="$AM_CFLAGS -Wwrite-strings"]) 132 133 133 134 dnl Shut gcc up about zero-length format strings; the warning's apparently for 134 135 dnl efficiency reasons, which is bogus for custom functions. 135 AX_ APPEND_COMPILE_FLAGS([-Wno-format-zero-length],[AM_CFLAGS])136 AX_C_CHECK_FLAG([-Wno-format-zero-length],[],[],[AM_CFLAGS="$AM_CFLAGS -Wno-format-zero-length"]) 136 137 137 AX_APPEND_COMPILE_FLAGS([-Wno-pointer-sign -Wno-empty-body -Wno-unused-value],[LIBFAIM_CFLAGS]) 138 m4_foreach([myflag], 139 [[-Wno-pointer-sign],[-Wno-empty-body],[-Wno-unused-value]], 140 [AX_C_CHECK_FLAG([myflag],[],[],[LIBFAIM_CFLAGS="$LIBFAIM_CFLAGS myflag"])]) 138 141 139 142 AM_CONDITIONAL([ENABLE_ZCRYPT], [test "$HAVE_DES_STRING_TO_KEY" && dnl
Note: See TracChangeset
for help on using the changeset viewer.