mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-07-24 10:25:42 -04:00
Exposed a bunch of problems with the autoconf m4 macro library. Hopefulyy fix it, and tidy it up in the process. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
10 lines
552 B
Plaintext
10 lines
552 B
Plaintext
dnl --------------------------------------------------------------------------
|
|
dnl PA_ADD_CPPFLAGS(variable, flag [,actual_flag [,success [,failure]]]])
|
|
dnl
|
|
dnl Attempt to add the given option to xFLAGS, if it doesn't break
|
|
dnl compilation. If the option to be tested is different than the
|
|
dnl option that should actually be added, add the option to be
|
|
dnl actually added as a second argument.
|
|
dnl --------------------------------------------------------------------------
|
|
AC_DEFUN([PA_ADD_CPPFLAGS], [PA_ADD_FLAGS(CPPFLAGS, [$1], [$2], [$3], [$4])])
|