checking for void pointer length... yes configure: error: Size of "void *" is less than size of "lon

安装httpd-2.2.23  ./configure 的时候报错如下

checking for void pointer length... yes configure: error: Size of "void *" is less than size of "long"

解决方法vi configure 

if test "$ap_cv_void_ptr_lt_long" = "yes"; then
    as_fn_error $? "Size of \"void *\" is less than size of \"long\"" "$LINENO" 5

改为if test "$ap_cv_void_ptr_lt_long" != "yes"; then
    as_fn_error $? "Size of \"void *\" is less than size of \"long\"" "$LINENO" 5

保存重新编译

你可能感兴趣的:(length,void,pointer)