view acinclude.m4 @ 1000:c0bc62c5dec1 trunk

[svn] A GCC warning pointed out that the *bp++ statement did not actually do anything useful, quite certain that the author intended \(*bp\)++ or *bp += 1 here.
author chainsaw
date Mon, 01 May 2006 15:08:28 -0700
parents 817f9357b81a
children 40f998ddd0a4
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)
]
)