Look for a line like
AddType application/x-httpd-php .php
in your httpd.conf and tack on .inc to the end of it like
AddType application/x-httpd-php .php .inc
restart your webserver and Apache will now parse .inc files.
BE AWARE that if someone types the path to one of those files and it spits out any errors that could still lead to information being leaked.
I suggest putting them outside the web tree or instead stopping apache from allowing anyone to view them. See the post by ZBoris and check your httpd.conf for how .htaccess files are denied viewing globally.
Tim Frank