svn rev #25394: tools/gssmonger/trunk/ 
    ghudson@MIT.EDU 
    ghudson at MIT.EDU
       
    Fri Oct 21 13:13:53 EDT 2011
    
    
  
http://src.mit.edu/fisheye/changelog/krb5/?cs=25394
Commit By: ghudson
Log Message:
Remove incorrectly used autoconf functions.
AC_FUNC_MALLOC and AC_FUNC_REALLOC require the program to define
rpl_malloc and rpl_realloc replacements.  They are generally
unnecessary since programs don't usually care if malloc(0) returns
NULL or not.  AC_FUNC_MEMCMP requires the program to define a memcmp
replacement, and is unnecessary these days since memcmp is everywhere.
Changed Files:
U   tools/gssmonger/trunk/configure.ac
Modified: tools/gssmonger/trunk/configure.ac
===================================================================
--- tools/gssmonger/trunk/configure.ac	2011-10-20 22:50:22 UTC (rev 25393)
+++ tools/gssmonger/trunk/configure.ac	2011-10-21 17:13:53 UTC (rev 25394)
@@ -157,9 +157,6 @@
 AC_HEADER_TIME
 
 # Checks for library functions.
-AC_FUNC_MALLOC
-AC_FUNC_MEMCMP
-AC_FUNC_REALLOC
 AC_FUNC_SELECT_ARGTYPES
 AC_FUNC_SETVBUF_REVERSED
 AC_TYPE_SIGNAL
    
    
More information about the cvs-krb5
mailing list