in src/apache/mod_suphp.c and src/apache2/mod_suphp.c look for :
    {"suPHP_AddHandler", suphp_handle_cmd_add_handler, NULL, ACCESS_CONF, ITERATE, "Tells mod_suphp to handle these MIME-types"},
    {"suphp_RemoveHandler", suphp_handle_cmd_remove_handler, NULL, ACCESS_CONF, ITERATE, "Tells mod_suphp not to handle these MIME-types"},
and change it to :
AP_INIT_ITERATE("suPHP_AddHandler", suphp_handle_cmd_add_handler, NULL, ACCESS_CONF, "Tells mod_s\uphp to handle these MIME-types"),
    AP_INIT_ITERATE("suPHP_RemoveHandler", suphp_handle_cmd_remove_handler, NULL, ACCESS_CONF, "Tells\ mod_suphp not to handle these MIME-types"),