view acinclude.m4 @ 2105:f8dc3d94186d

Use ${CC} -M, not ${CPP} -M, as cpp is not required to respect -M, but gcc will always handle -M properly. Reported by Oliver Lehmann <oliver@freebsd.org>.
author William Pitcock <nenolod@atheme.org>
date Fri, 19 Oct 2007 06:24:08 -0500
parents 13389e613d67
children 1fd4d8e5aad2
line wrap: on
line source

dnl ADD_PKG_REQUIRES([requirement])

AC_DEFUN([ADD_PC_REQUIRES],
[
   test -z "$PC_REQUIRES" && PC_REQUIRES="$1" || PC_REQUIRES="$PC_REQUIRES, $1"
   AC_SUBST(PC_REQUIRES)
]
)