X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=adns.git;a=blobdiff_plain;f=aclocal.m4;h=d5f21c8a99f15435b782a4bd43ab28aae9ae8646;hp=cdc58030ae02a8e8ee747118bfb9de0e46ca471f;hb=8990f99f1e0f9684a7ca8e4c5c0d493fffd527cd;hpb=11b3519314b471bb042bf3a69bbbb3adaa7aa19d diff --git a/aclocal.m4 b/aclocal.m4 index cdc5803..d5f21c8 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,5 +1,12 @@ # aclocal.m4 - package-specific macros for autoconf # +# This file is +# Copyright (C) 1997-1999 Ian Jackson +# +# It is part of adns, which is +# Copyright (C) 1997-1999 Ian Jackson +# Copyright (C) 1999 Tony Finch +# # This file is part of adns, which is Copyright (C) 1997-1999 Ian Jackson # # This program is free software; you can redistribute it and/or modify @@ -53,3 +60,11 @@ define(ADNS_C_GCCATTRIB,[ AC_MSG_RESULT(no)), AC_MSG_RESULT(no)) ]) + +define(ADNS_C_GETFUNC,[ + AC_CHECK_FUNC([$1],,[ + AC_CHECK_LIB([$2],[$1],[$3],[ + AC_MSG_ERROR([cannot find library function $1]) + ]) + ]) +])