Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 99225 | Differences between
and this patch

Collapse All | Expand All

(-)php-4.3.11/ext/standard/basic_functions.c.orig (-1 / +1 lines)
Lines 447-453 function_entry basic_functions[] = { Link Here
447
	PHP_FE(gethostbyname,													NULL)
447
	PHP_FE(gethostbyname,													NULL)
448
	PHP_FE(gethostbynamel,													NULL)
448
	PHP_FE(gethostbynamel,													NULL)
449
449
450
#if HAVE_RES_SEARCH && !(defined(__BEOS__) || defined(PHP_WIN32) || defined(NETWARE))
450
#if HAVE_RES_SEARCH && HAVE_DN_SKIPNAME && !(defined(__BEOS__) || defined(PHP_WIN32) || defined(NETWARE))
451
	PHP_FE(checkdnsrr,														NULL)
451
	PHP_FE(checkdnsrr,														NULL)
452
	PHP_FE(getmxrr,second_and_third_args_force_ref)
452
	PHP_FE(getmxrr,second_and_third_args_force_ref)
453
#endif
453
#endif
(-)php-4.3.11/ext/standard/dns.c.orig (-1 / +1 lines)
Lines 207-213 static char *php_gethostbyname(char *nam Link Here
207
}
207
}
208
/* }}} */
208
/* }}} */
209
209
210
#if HAVE_RES_SEARCH && !(defined(__BEOS__)||defined(PHP_WIN32) || defined(NETWARE))
210
#if HAVE_RES_SEARCH && HAVE_DN_SKIPNAME && !(defined(__BEOS__)||defined(PHP_WIN32) || defined(NETWARE))
211
211
212
/* {{{ proto int checkdnsrr(string host [, string type])
212
/* {{{ proto int checkdnsrr(string host [, string type])
213
   Check DNS records corresponding to a given Internet host name or IP address */
213
   Check DNS records corresponding to a given Internet host name or IP address */

Return to bug 99225