Changes in / [1bdbcb1:bad4496]


Ignore:
Files:
1 added
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    r708837d rf2a96c0  
    1717
    1818AS_IF([test "x$with_stack_protector" != xno],
    19   [AX_C_CHECK_FLAG([-fstack-protector],[],[],
     19  [AX_CHECK_COMPILE_FLAG([-fstack-protector],
    2020    [AM_CFLAGS="$AM_CFLAGS -fstack-protector"],
    2121    [if test "x$with_stack_protector" != xcheck; then
     
    129129
    130130AX_CFLAGS_WARN_ALL([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"])
     131AX_APPEND_COMPILE_FLAGS([-Wstrict-prototypes -Wwrite-strings],[AM_CFLAGS])
    133132
    134133dnl Shut gcc up about zero-length format strings; the warning's apparently for
    135134dnl efficiency reasons, which is bogus for custom functions.
    136 AX_C_CHECK_FLAG([-Wno-format-zero-length],[],[],[AM_CFLAGS="$AM_CFLAGS -Wno-format-zero-length"])
     135AX_APPEND_COMPILE_FLAGS([-Wno-format-zero-length],[AM_CFLAGS])
    137136
    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"])])
     137AX_APPEND_COMPILE_FLAGS([-Wno-pointer-sign -Wno-empty-body -Wno-unused-value],[LIBFAIM_CFLAGS])
    141138
    142139AM_CONDITIONAL([ENABLE_ZCRYPT], [test "$HAVE_DES_STRING_TO_KEY" && dnl
Note: See TracChangeset for help on using the changeset viewer.