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

Collapse All | Expand All

(-)php-4.3.9.orig/ext/standard/basic_functions.c (-1 / +1 lines)
Lines 446-452 Link Here
446
	PHP_FE(gethostbyname,													NULL)
446
	PHP_FE(gethostbyname,													NULL)
447
	PHP_FE(gethostbynamel,													NULL)
447
	PHP_FE(gethostbynamel,													NULL)
448
448
449
#if HAVE_RES_SEARCH && !(defined(__BEOS__) || defined(PHP_WIN32) || defined(NETWARE))
449
#if HAVE_RES_SEARCH && HAVE_DN_SKIPNAME && !(defined(__BEOS__) || defined(PHP_WIN32) || defined(NETWARE))
450
	PHP_FE(checkdnsrr,														NULL)
450
	PHP_FE(checkdnsrr,														NULL)
451
	PHP_FE(getmxrr,second_and_third_args_force_ref)
451
	PHP_FE(getmxrr,second_and_third_args_force_ref)
452
#endif
452
#endif
(-)php-4.3.9.orig/ext/standard/dns.c (-1 / +1 lines)
Lines 207-213 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 74435