php(5.3.29)とapacheをソースからインストールしています。

phpのconfigureを行ったあとのmakeでエラーがでて困っています。

コンパイラが新しいため、エラーが出るのでしょうか?
エラーの対処方法/アドバイス等、ご指摘、を頂きたいです。

gcc --vesion
gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-28)

・OS
CentOS7

・以下PHPのconifgureオプション

 PHP_AUTOCONF=autoconf './configure' '--build=x86_64-redhat-linux-gnu' '--host=x86_64-redhat-linux-gnu' '--target=x86_64-redhat-linux-gnu' '--prefix=/usr' '--exec-prefix=/usr' '--bindir=/usr/bin' '--sbindir=/usr/sbin' '--sysconfdir=/etc' '--datadir=/usr/share' '--includedir=/usr/include' '--libdir=/usr/lib64' '--libexecdir=/usr/libexec' '--localstatedir=/var' '--sharedstatedir=/usr/com' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--prefix=/usr' '--with-config-file-path=/etc' '--disable-debug' '--disable-rpath' '--enable-inline-optimization' '--with-bz2' '--with-exec-dir=/usr/bin' '--with-freetype-dir=/usr' '--with-png-dir=/usr' '--with-gd' '--enable-gd-native-ttf' '--with-gdbm' '--with-gettext' '--with-gmp' '--with-iconv' '--with-jpeg-dir=/usr' '--with-openssl' '--without-pspell' '--with-regex=system' '--with-zlib' '--with-layout=GNU' '--enable-bcmath' '--enable-exif' '--enable-ftp' '--enable-magic-quotes' '--enable-safe-mode' '--enable-sysvsem' '--enable-sysvshm' '--enable-wddx' '--with-kerberos=/usr/kerberos' '--with-mysql' '--with-snmp=shared,/usr' '--enable-ucd-snmp-hack' '--enable-bcmath' '--enable-shmop' '--enable-calendar' '--enable-mbregex' '--enable-zend-multibyte' '--with-libdir=lib64' '--with-apxs2' '--disable-force-cgi-redirect' '--enable-mbstring' '--enable-sockets' '--enable-sqlite-utf8' '--with-pdo-mysql' '--enable-mysqlnd' '--with-mysqli=mysqlnd' '--enable-zip' '--with-curl' '--with-xmlrpc' '--enable-soap' '--with-xsl' '--with-mcrypt=/usr/lib64' '--enable-dynamic-loading'

・以下make時のエラー

In file included from /home/tomonorimatsukawa/place/php-5.3.29/ext/zlib/zlib.c:50:0:
/home/tomonorimatsukawa/place/php-5.3.29/ext/zlib/php_zlib.h:30:2: エラー: 不明な型名 ‘z_stream’ です
  z_stream stream;
  ^
/home/tomonorimatsukawa/place/php-5.3.29/ext/zlib/php_zlib.h:31:2: エラー: 不明な型名 ‘uLong’ です
  uLong crc;
  ^
/home/tomonorimatsukawa/place/php-5.3.29/ext/zlib/zlib.c:249:1: エラー: 不明な型名 ‘voidpf’ です
 static voidpf php_zlib_alloc(voidpf opaque, uInt items, uInt size)
 ^
/home/tomonorimatsukawa/place/php-5.3.29/ext/zlib/zlib.c:249:30: エラー: 不明な型名 ‘voidpf’ です
・
・
・・
In file included from /home/tomonorimatsukawa/place/php-5.3.29/main/php.h:38:0,
                 from /home/tomonorimatsukawa/place/php-5.3.29/ext/zlib/zlib.c:28:
/home/tomonorimatsukawa/place/php-5.3.29/ext/zlib/zlib.c:948:28: エラー: 構造体または共用体ではない何かのメンバ ‘total_out’ の要求です
   RETURN_STRINGL(s2, stream.total_out + GZIP_HEADER_LENGTH + (coding == CODING_GZIP ? GZIP_FOOTER_LENGTH : 0), 0);

make: *** [ext/zlib/zlib.lo] エラー 1