Lines Matching refs:FLAGS
7 # AX_APPEND_FLAG(FLAG, [FLAGS-VARIABLE])
11 # FLAG is appended to the FLAGS-VARIABLE shell variable, with a space
14 # If FLAGS-VARIABLE is not specified, the current language's flags (e.g.
15 # CFLAGS) is used. FLAGS-VARIABLE is not changed if it already contains
16 # FLAG. If FLAGS-VARIABLE is unset in the shell, it is set to exactly
56 AS_VAR_PUSHDEF([FLAGS], [m4_default($2,_AC_LANG_PREFIX[FLAGS])])dnl
57 AS_VAR_SET_IF(FLAGS,
58 [case " AS_VAR_GET(FLAGS) " in
60 AC_RUN_LOG([: FLAGS already contains $1])
63 AC_RUN_LOG([: FLAGS="$FLAGS $1"])
64 AS_VAR_SET(FLAGS, ["AS_VAR_GET(FLAGS) $1"])
67 [AS_VAR_SET(FLAGS,["$1"])])
68 AS_VAR_POPDEF([FLAGS])dnl