[BACK]Return to aclocal.m4 CVS log [TXT][DIR] Up to [local] / src / usr.bin / sudo

Diff for /src/usr.bin/sudo/Attic/aclocal.m4 between version 1.3 and 1.4

version 1.3, 2003/03/15 21:23:53 version 1.4, 2003/04/01 15:47:51
Line 329 
Line 329 
 AC_MSG_RESULT(yes), AC_MSG_RESULT(no))])  AC_MSG_RESULT(yes), AC_MSG_RESULT(no))])
   
 dnl  dnl
   dnl append a libpath to an LDFLAGS style variable
   dnl
   AC_DEFUN(SUDO_APPEND_LIBPATH, [
       if test X"$with_rpath" = X"yes"; then
           $1="${$1} -L$2 -R$2"
       else
           $1="${$1} -L$2"
       fi
       if test X"$blibpath" != X"" -a "$1" = "SUDO_LDFLAGS"; then
           blibpath_add="${blibpath_add}:$2"
       fi
   ])
   
   dnl
 dnl private versions of AC_DEFINE and AC_DEFINE_UNQUOTED that don't support  dnl private versions of AC_DEFINE and AC_DEFINE_UNQUOTED that don't support
 dnl tracing that we use to define paths for pathnames.h so autoheader doesn't  dnl tracing that we use to define paths for pathnames.h so autoheader doesn't
 dnl put them in config.h.in.  An awful hack.  dnl put them in config.h.in.  An awful hack.

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4