Author: jpeach Date: 2006-01-30 23:09:21 +0000 (Mon, 30 Jan 2006) New Revision: 13241
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=13241 Log: Work around missing AS_HELP_STRING definition in autoconf 2.57. Fix from Brad Hards <[EMAIL PROTECTED]>. Modified: branches/SAMBA_4_0/source/build/m4/env.m4 Changeset: Modified: branches/SAMBA_4_0/source/build/m4/env.m4 =================================================================== --- branches/SAMBA_4_0/source/build/m4/env.m4 2006-01-30 22:23:17 UTC (rev 13240) +++ branches/SAMBA_4_0/source/build/m4/env.m4 2006-01-30 23:09:21 UTC (rev 13241) @@ -10,6 +10,11 @@ AC_SUBST(srcdir) export srcdir; +dnl AS_HELP_STRING is not available in autoconf 2.57, and AC_HELP_STRING is deprecated +dnl in autoconf 2.59, so define AS_HELP_STRING to be AC_HELP_STRING unless it is already +dnl defined. +m4_ifdef([AS_HELP_STRING], , [m4_define([AS_HELP_STRING], m4_defn([AC_HELP_STRING]))]) + # we always set builddir to "." as that's nicer than # having the absolute path of the current work directory builddir=.
