On Tue, Jun 12, 2001 at 02:34:15PM -0500, Dave Dykstra wrote:
> Below is the patch.  I checked it in to the rsync CVS.
> 
> - Dave Dykstra
> 
> 
> *** configure.in.O    Tue Jun 12 14:22:15 2001
> --- configure.in      Tue Jun 12 14:22:44 2001
> ***************
> *** 38,43 ****
> --- 38,50 ----
>   AC_ARG_WITH(included-popt,
>           [  --with-included-popt    use bundled popt library, not from system])
>   
> + AC_ARG_WITH(rsync-path,
> +     [  --with-rsync-path=PATH  set rsync path used on server to PATH (default: 
>"rsync")],
> +     [ RSYNC_PATH="$with_rsync_name" ],
> +     [ RSYNC_PATH="rsync" ])
> + RSYNC_PATH="\"$RSYNC_PATH\""
> + AC_DEFINE_UNQUOTED(RSYNC_PATH, $RSYNC_PATH)

This should be:
  AC_DEFINE_UNQUOTED(RSYNC_PATH, $RSYNC_PATH, [Path to rsync on server])

> *** acconfig.h.O      Tue Jun 12 14:22:15 2001
> --- acconfig.h        Tue Jun 12 14:22:44 2001
> ***************
> *** 15,18 ****
>   #undef HAVE_SOCKETPAIR
>   #undef HAVE_SECURE_MKSTEMP
>   #undef HAVE_C99_VSNPRINTF
> ! 
> --- 15,18 ----
>   #undef HAVE_SOCKETPAIR
>   #undef HAVE_SECURE_MKSTEMP
>   #undef HAVE_C99_VSNPRINTF
> ! #undef RSYNC_PATH

No need for this if you use the 3-argument version of
AC_DEFINE_UNQUOTED.

-- 
albert chin ([EMAIL PROTECTED])

Reply via email to