#!/bin/sh
#
# This is make+. Make+ is a set of scripts which enhance GNU make and
# let ou build RPMs, and other packages types with just one control
# file. Read more at http://www.annexia.org/freeware/makeplus/
#
# The original author is Richard W.M. Jones <rich@annexia.org>.
#
# This software has been explicitly placed in the PUBLIC DOMAIN. You
# do not need any sort of license or agreement to use or copy this
# software. You may also copyright this software yourself, and/or
# relicense it under any terms you want, at any time and at no cost.
# This allows you (among other things) to include this software with
# other packages so that the user does not need to download and
# install make+ separately.
require=$1
shift
for func in "$@"; do
sym=`echo $func | tr -- '-.[a-z]' '__[A-Z]'`
have=
# Try to compile and link a short program which references this
# symbol. If the symbol exists in the library then this ought to
# succeed.
rm -f mp-check_func
echo "char $func(); char (*f) ();int main(){f = $func;return 0;}" \
> mp-check_func.c
echo "mp-check_func.c:" >>config.log
cat mp-check_func.c >>config.log
echo $CC $CFLAGS mp-check_func.c -o mp-check_func $LIBS >>config.log
$CC $CFLAGS mp-check_func.c -o mp-check_func $LIBS >>config.log 2>&1
if [ $? -eq 0 ]; then
if [ -f mp-check_func ]; then
have=y
fi
fi
rm -f mp-check_func*
if [ "x$have" = "xy" ]; then
echo "#define HAVE_$sym 1" >> config.h
echo "HAVE_$sym := 1" >> config.mk
else
if [ "x$require" = "xy" ]; then
echo "configure: function $func is required; not found"
exit 1
fi
echo "/* #define HAVE_$sym 1 */" >> config.h
echo "# HAVE_$sym := 1" >> config.mk
fi
done
syntax highlighted by Code2HTML, v. 0.9.1