Advertisement
Guest User

Untitled

a guest
Nov 5th, 2011
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 140.50 KB | None | 0 0
  1. This file contains any messages produced by compilers while
  2. running configure, to aid debugging if configure makes a mistake.
  3.  
  4. configure:1894: checking for Cygwin environment
  5. configure:1910: cc -c conftest.c 1>&5
  6. configure: In function 'main':
  7. configure:1906:8: error: '__CYGWIN32__' undeclared (first use in this function)
  8. configure:1906:8: note: each undeclared identifier is reported only once for each function it appears in
  9. configure: failed program was:
  10. #line 1899 "configure"
  11. #include "confdefs.h"
  12.  
  13. int main() {
  14.  
  15. #ifndef __CYGWIN__
  16. #define __CYGWIN__ __CYGWIN32__
  17. #endif
  18. return __CYGWIN__;
  19. ; return 0; }
  20. configure:1927: checking for mingw32 environment
  21. configure:1939: cc -c conftest.c 1>&5
  22. configure: In function 'main':
  23. configure:1935:8: error: '__MINGW32__' undeclared (first use in this function)
  24. configure:1935:8: note: each undeclared identifier is reported only once for each function it appears in
  25. configure: failed program was:
  26. #line 1932 "configure"
  27. #include "confdefs.h"
  28.  
  29. int main() {
  30. return __MINGW32__;
  31. ; return 0; }
  32. configure:1958: checking for egrep
  33. configure:1973: checking for a sed that does not truncate output
  34. configure:2123: checking host system type
  35. configure:2144: checking target system type
  36. configure:2256: checking for gcc
  37. configure:2369: checking whether the C compiler (gcc ) works
  38. configure:2385: gcc -o conftest conftest.c 1>&5
  39. configure:2411: checking whether the C compiler (gcc ) is a cross-compiler
  40. configure:2416: checking whether we are using GNU C
  41. configure:2425: gcc -E conftest.c
  42. configure:2444: checking whether gcc accepts -g
  43. configure:2476: checking how to run the C preprocessor
  44. configure:2497: gcc -E conftest.c >/dev/null 2>conftest.out
  45. configure:2558: checking for icc
  46. configure:2582: checking for suncc
  47. configure:2607: checking whether gcc and cc understand -c and -o together
  48. configure:2622: gcc -c conftest.c -o conftest.o 1>&5
  49. configure:2623: gcc -c conftest.c -o conftest.o 1>&5
  50. configure:2628: cc -c conftest.c 1>&5
  51. configure:2630: cc -c conftest.c -o conftest.o 1>&5
  52. configure:2631: cc -c conftest.c -o conftest.o 1>&5
  53. configure:2658: checking how to run the C preprocessor
  54. configure:2738: checking for AIX
  55. configure:2762: checking whether ln -s works
  56. configure:2787: checking for system library directory
  57. configure:2810: checking whether to enable runpaths
  58. configure:2831: checking if compiler supports -R
  59. configure:2846: gcc -o conftest -g -O2 conftest.c -R /usr/lib 1>&5
  60. gcc: unrecognized option '-R'
  61. /usr/lib: file not recognized: Is a directory
  62. collect2: ld returned 1 exit status
  63. configure: failed program was:
  64. #line 2839 "configure"
  65. #include "confdefs.h"
  66.  
  67. int main() {
  68.  
  69. ; return 0; }
  70. configure:2864: checking if compiler supports -Wl,-rpath,
  71. configure:2879: gcc -o conftest -g -O2 conftest.c -Wl,-rpath,/usr/lib 1>&5
  72. configure:2910: checking for gawk
  73. configure:2970: checking for bison
  74. configure:3010: checking for bison version
  75. configure:3048: checking for re2c
  76. configure:3115: checking whether to enable computed goto gcc extension with re2c
  77. configure:3425: checking whether to force non-PIC code in shared modules
  78. configure:3455: checking whether /dev/urandom exists
  79. configure:3534: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c 1>&5
  80. /tmp/cciXUMcD.o: In function `main':
  81. /home/partha/partha_new/Downloads/php-5.3.8/configure:3529: undefined reference to `pthread_mutexattr_init'
  82. /home/partha/partha_new/Downloads/php-5.3.8/configure:3530: undefined reference to `pthread_create'
  83. collect2: ld returned 1 exit status
  84. configure: failed program was:
  85. #line 3516 "configure"
  86. #include "confdefs.h"
  87.  
  88. #include <pthread.h>
  89. #include <stddef.h>
  90.  
  91. void *thread_routine(void *data) {
  92. return data;
  93. }
  94.  
  95. int main() {
  96. pthread_t thd;
  97. pthread_mutexattr_t mattr;
  98. int data = 1;
  99. pthread_mutexattr_init(&mattr);
  100. return pthread_create(&thd, NULL, thread_routine, &data);
  101. }
  102. configure:3554: checking for pthreads_cflags
  103. configure:3594: gcc -o conftest -g -O2 -fvisibility=hidden -kthread conftest.c 1>&5
  104. gcc: unrecognized option '-kthread'
  105. /tmp/ccTFHt7K.o: In function `main':
  106. /home/partha/partha_new/Downloads/php-5.3.8/configure:3589: undefined reference to `pthread_mutexattr_init'
  107. /home/partha/partha_new/Downloads/php-5.3.8/configure:3590: undefined reference to `pthread_create'
  108. collect2: ld returned 1 exit status
  109. configure: failed program was:
  110. #line 3576 "configure"
  111. #include "confdefs.h"
  112.  
  113. #include <pthread.h>
  114. #include <stddef.h>
  115.  
  116. void *thread_routine(void *data) {
  117. return data;
  118. }
  119.  
  120. int main() {
  121. pthread_t thd;
  122. pthread_mutexattr_t mattr;
  123. int data = 1;
  124. pthread_mutexattr_init(&mattr);
  125. return pthread_create(&thd, NULL, thread_routine, &data);
  126. }
  127. configure:3594: gcc -o conftest -g -O2 -fvisibility=hidden -pthread conftest.c 1>&5
  128. configure:3624: checking for pthreads_lib
  129. configure:3795: checking for AOLserver support
  130. configure:4060: checking for Apache 1.x module support via DSO through APXS
  131. configure:4391: checking for Apache 1.x module support
  132. configure:5268: checking whether to enable Apache charset compatibility option
  133. configure:5435: checking for Apache 2.0 filter-module support via DSO through APXS
  134. configure:6324: checking for Apache 2.0 handler-module support via DSO through APXS
  135. configure:7214: checking for Apache 1.x (hooks) module support via DSO through APXS
  136. configure:7545: checking for Apache 1.x (hooks) module support
  137. configure:8422: checking whether to enable Apache charset compatibility option
  138. configure:8590: checking for Caudium support
  139. configure:8949: checking for CLI build
  140. configure:8999: checking for Continuity support
  141. configure:9281: checking for embedded SAPI library support
  142. configure:9545: checking for FPM build
  143. configure:10806: checking for Zeus ISAPI support
  144. configure:11060: checking for LiteSpeed support
  145. configure:11323: checking for Milter support
  146. configure:11615: checking for NSAPI support
  147. configure:11975: checking for PHTTPD support
  148. configure:12229: checking for Pi3Web support
  149. configure:12601: checking whether Roxen module is build using ZTS
  150. configure:12622: checking for Roxen/Pike support
  151. configure:12908: checking for thttpd
  152. configure:13177: checking for TUX
  153. configure:13431: checking for webjames
  154. configure:13984: checking for chosen SAPI module
  155. configure:14041: checking for sendmail
  156. configure:14080: checking whether system uses EBCDIC
  157. configure:14099: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c 1>&5
  158. configure: failed program was:
  159. #line 14091 "configure"
  160. #include "confdefs.h"
  161.  
  162. int main(void) {
  163. return (unsigned char)'A' != (unsigned char)0xC1;
  164. }
  165.  
  166. configure:14127: checking whether byte ordering is bigendian
  167. configure:14153: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c 1>&5
  168. configure: failed program was:
  169. #line 14137 "configure"
  170. #include "confdefs.h"
  171.  
  172. int main(void)
  173. {
  174. short one = 1;
  175. char *cp = (char *)&one;
  176.  
  177. if (*cp == 0) {
  178. return(0);
  179. } else {
  180. return(1);
  181. }
  182. }
  183.  
  184. configure:14179: checking whether writing to stdout works
  185. configure:14208: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c 1>&5
  186. configure:14283: checking for socket
  187. configure:14311: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c 1>&5
  188. configure:14540: checking for socketpair
  189. configure:14568: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c 1>&5
  190. configure:14797: checking for htonl
  191. configure:14825: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c 1>&5
  192. configure:15054: checking for gethostname
  193. configure:15082: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c 1>&5
  194. configure:15311: checking for gethostbyaddr
  195. configure:15339: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c 1>&5
  196. configure:15568: checking for yp_get_default_domain
  197. configure:15596: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c 1>&5
  198. /tmp/ccsDiCI3.o: In function `main':
  199. /home/partha/partha_new/Downloads/php-5.3.8/configure:15590: undefined reference to `yp_get_default_domain'
  200. collect2: ld returned 1 exit status
  201. configure: failed program was:
  202. #line 15573 "configure"
  203. #include "confdefs.h"
  204. /* System header to define __stub macros and hopefully few prototypes,
  205. which can conflict with char yp_get_default_domain(); below. */
  206. #include <assert.h>
  207. /* Override any gcc2 internal prototype to avoid an error. */
  208. /* We use char because int might match the return type of a gcc2
  209. builtin and then its argument prototype would still apply. */
  210. char yp_get_default_domain();
  211.  
  212. int main() {
  213.  
  214. /* The GNU C library defines this for functions which it implements
  215. to always fail with ENOSYS. Some functions are actually named
  216. something starting with __ and the normal name is an alias. */
  217. #if defined (__stub_yp_get_default_domain) || defined (__stub___yp_get_default_domain)
  218. choke me
  219. #else
  220. yp_get_default_domain();
  221. #endif
  222.  
  223. ; return 0; }
  224. configure:15614: checking for __yp_get_default_domain
  225. configure:15642: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c 1>&5
  226. /tmp/ccwsSoT7.o: In function `main':
  227. /home/partha/partha_new/Downloads/php-5.3.8/configure:15636: undefined reference to `__yp_get_default_domain'
  228. collect2: ld returned 1 exit status
  229. configure: failed program was:
  230. #line 15619 "configure"
  231. #include "confdefs.h"
  232. /* System header to define __stub macros and hopefully few prototypes,
  233. which can conflict with char __yp_get_default_domain(); below. */
  234. #include <assert.h>
  235. /* Override any gcc2 internal prototype to avoid an error. */
  236. /* We use char because int might match the return type of a gcc2
  237. builtin and then its argument prototype would still apply. */
  238. char __yp_get_default_domain();
  239.  
  240. int main() {
  241.  
  242. /* The GNU C library defines this for functions which it implements
  243. to always fail with ENOSYS. Some functions are actually named
  244. something starting with __ and the normal name is an alias. */
  245. #if defined (__stub___yp_get_default_domain) || defined (__stub_____yp_get_default_domain)
  246. choke me
  247. #else
  248. __yp_get_default_domain();
  249. #endif
  250.  
  251. ; return 0; }
  252. configure:15680: checking for yp_get_default_domain in -lnsl
  253. configure:15699: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lnsl 1>&5
  254. configure:15774: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lnsl 1>&5
  255. configure:15826: checking for dlopen
  256. configure:15854: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lnsl 1>&5
  257. /tmp/cc9KxqPs.o: In function `main':
  258. /home/partha/partha_new/Downloads/php-5.3.8/configure:15848: undefined reference to `dlopen'
  259. collect2: ld returned 1 exit status
  260. configure: failed program was:
  261. #line 15831 "configure"
  262. #include "confdefs.h"
  263. /* System header to define __stub macros and hopefully few prototypes,
  264. which can conflict with char dlopen(); below. */
  265. #include <assert.h>
  266. /* Override any gcc2 internal prototype to avoid an error. */
  267. /* We use char because int might match the return type of a gcc2
  268. builtin and then its argument prototype would still apply. */
  269. char dlopen();
  270.  
  271. int main() {
  272.  
  273. /* The GNU C library defines this for functions which it implements
  274. to always fail with ENOSYS. Some functions are actually named
  275. something starting with __ and the normal name is an alias. */
  276. #if defined (__stub_dlopen) || defined (__stub___dlopen)
  277. choke me
  278. #else
  279. dlopen();
  280. #endif
  281.  
  282. ; return 0; }
  283. configure:15872: checking for __dlopen
  284. configure:15900: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lnsl 1>&5
  285. /tmp/ccerawqz.o: In function `main':
  286. /home/partha/partha_new/Downloads/php-5.3.8/configure:15894: undefined reference to `__dlopen'
  287. collect2: ld returned 1 exit status
  288. configure: failed program was:
  289. #line 15877 "configure"
  290. #include "confdefs.h"
  291. /* System header to define __stub macros and hopefully few prototypes,
  292. which can conflict with char __dlopen(); below. */
  293. #include <assert.h>
  294. /* Override any gcc2 internal prototype to avoid an error. */
  295. /* We use char because int might match the return type of a gcc2
  296. builtin and then its argument prototype would still apply. */
  297. char __dlopen();
  298.  
  299. int main() {
  300.  
  301. /* The GNU C library defines this for functions which it implements
  302. to always fail with ENOSYS. Some functions are actually named
  303. something starting with __ and the normal name is an alias. */
  304. #if defined (__stub___dlopen) || defined (__stub_____dlopen)
  305. choke me
  306. #else
  307. __dlopen();
  308. #endif
  309.  
  310. ; return 0; }
  311. configure:15938: checking for dlopen in -ldl
  312. configure:15957: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -ldl -lnsl 1>&5
  313. configure:16032: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lnsl -ldl 1>&5
  314. configure:16084: checking for sin in -lm
  315. configure:16103: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  316. configure:16096:6: warning: conflicting types for built-in function 'sin'
  317. configure:16137: checking for inet_aton
  318. configure:16165: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  319. configure:16530: checking for ANSI C header files
  320. configure:16543: gcc -E conftest.c >/dev/null 2>conftest.out
  321. configure:16610: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  322. configure: In function 'main':
  323. configure:16605:67: warning: incompatible implicit declaration of built-in function 'exit'
  324. configure:16638: checking for dirent.h that defines DIR
  325. configure:16651: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  326. configure:16676: checking for opendir in -ldir
  327. configure:16695: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -ldir -lm -ldl -lnsl 1>&5
  328. /usr/bin/ld: cannot find -ldir
  329. collect2: ld returned 1 exit status
  330. configure: failed program was:
  331. #line 16684 "configure"
  332. #include "confdefs.h"
  333. /* Override any gcc2 internal prototype to avoid an error. */
  334. /* We use char because int might match the return type of a gcc2
  335. builtin and then its argument prototype would still apply. */
  336. char opendir();
  337.  
  338. int main() {
  339. opendir()
  340. ; return 0; }
  341. configure:16818: checking for inttypes.h
  342. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  343. configure:16818: checking for stdint.h
  344. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  345. configure:16818: checking for dirent.h
  346. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  347. configure:16818: checking for ApplicationServices/ApplicationServices.h
  348. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  349. configure:16824:53: fatal error: ApplicationServices/ApplicationServices.h: No such file or directory
  350. compilation terminated.
  351. configure: failed program was:
  352. #line 16823 "configure"
  353. #include "confdefs.h"
  354. #include <ApplicationServices/ApplicationServices.h>
  355. configure:16818: checking for sys/param.h
  356. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  357. configure:16818: checking for sys/types.h
  358. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  359. configure:16818: checking for sys/time.h
  360. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  361. configure:16818: checking for netinet/in.h
  362. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  363. configure:16818: checking for alloca.h
  364. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  365. configure:16818: checking for arpa/inet.h
  366. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  367. configure:16818: checking for arpa/nameser.h
  368. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  369. configure:16818: checking for assert.h
  370. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  371. configure:16818: checking for crypt.h
  372. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  373. configure:16818: checking for dns.h
  374. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  375. configure:16824:17: fatal error: dns.h: No such file or directory
  376. compilation terminated.
  377. configure: failed program was:
  378. #line 16823 "configure"
  379. #include "confdefs.h"
  380. #include <dns.h>
  381. configure:16818: checking for fcntl.h
  382. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  383. configure:16818: checking for grp.h
  384. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  385. configure:16818: checking for ieeefp.h
  386. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  387. configure:16824:20: fatal error: ieeefp.h: No such file or directory
  388. compilation terminated.
  389. configure: failed program was:
  390. #line 16823 "configure"
  391. #include "confdefs.h"
  392. #include <ieeefp.h>
  393. configure:16818: checking for langinfo.h
  394. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  395. configure:16818: checking for limits.h
  396. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  397. configure:16818: checking for locale.h
  398. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  399. configure:16818: checking for monetary.h
  400. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  401. configure:16818: checking for netdb.h
  402. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  403. configure:16818: checking for pwd.h
  404. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  405. configure:16818: checking for resolv.h
  406. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  407. configure:16818: checking for signal.h
  408. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  409. configure:16818: checking for stdarg.h
  410. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  411. configure:16818: checking for stdlib.h
  412. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  413. configure:16818: checking for string.h
  414. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  415. configure:16818: checking for syslog.h
  416. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  417. configure:16818: checking for sysexits.h
  418. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  419. configure:16818: checking for sys/ioctl.h
  420. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  421. configure:16818: checking for sys/file.h
  422. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  423. configure:16818: checking for sys/mman.h
  424. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  425. configure:16818: checking for sys/mount.h
  426. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  427. configure:16818: checking for sys/poll.h
  428. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  429. configure:16818: checking for sys/resource.h
  430. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  431. configure:16818: checking for sys/select.h
  432. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  433. configure:16818: checking for sys/socket.h
  434. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  435. configure:16818: checking for sys/stat.h
  436. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  437. configure:16818: checking for sys/statfs.h
  438. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  439. configure:16818: checking for sys/statvfs.h
  440. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  441. configure:16818: checking for sys/vfs.h
  442. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  443. configure:16818: checking for sys/sysexits.h
  444. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  445. configure:16824:26: fatal error: sys/sysexits.h: No such file or directory
  446. compilation terminated.
  447. configure: failed program was:
  448. #line 16823 "configure"
  449. #include "confdefs.h"
  450. #include <sys/sysexits.h>
  451. configure:16818: checking for sys/varargs.h
  452. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  453. configure:16824:25: fatal error: sys/varargs.h: No such file or directory
  454. compilation terminated.
  455. configure: failed program was:
  456. #line 16823 "configure"
  457. #include "confdefs.h"
  458. #include <sys/varargs.h>
  459. configure:16818: checking for sys/wait.h
  460. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  461. configure:16818: checking for sys/loadavg.h
  462. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  463. configure:16824:25: fatal error: sys/loadavg.h: No such file or directory
  464. compilation terminated.
  465. configure: failed program was:
  466. #line 16823 "configure"
  467. #include "confdefs.h"
  468. #include <sys/loadavg.h>
  469. configure:16818: checking for termios.h
  470. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  471. configure:16818: checking for unistd.h
  472. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  473. configure:16818: checking for unix.h
  474. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  475. configure:16824:18: fatal error: unix.h: No such file or directory
  476. compilation terminated.
  477. configure: failed program was:
  478. #line 16823 "configure"
  479. #include "confdefs.h"
  480. #include <unix.h>
  481. configure:16818: checking for utime.h
  482. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  483. configure:16818: checking for sys/utsname.h
  484. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  485. configure:16818: checking for sys/ipc.h
  486. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  487. configure:16818: checking for dlfcn.h
  488. configure:16828: gcc -E conftest.c >/dev/null 2>conftest.out
  489. configure:16818: checking for assert.h
  490. configure:16857: checking for fopencookie
  491. configure:16885: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  492. configure:16917: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  493. configure:16968: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  494. configure: In function 'main':
  495. configure:16961:5: warning: incompatible implicit declaration of built-in function 'exit'
  496. configure:17032: checking for broken getcwd
  497. configure:17047: checking for broken libc stdio
  498. configure:17108: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  499. configure: In function 'main':
  500. configure:17092:5: warning: incompatible implicit declaration of built-in function 'exit'
  501. configure: failed program was:
  502. #line 17080 "configure"
  503. #include "confdefs.h"
  504.  
  505. #include <stdio.h>
  506. int main(int argc, char *argv[])
  507. {
  508. FILE *fp;
  509. long position;
  510. char *filename = "/tmp/phpglibccheck";
  511.  
  512. fp = fopen(filename, "w");
  513. if (fp == NULL) {
  514. perror("fopen");
  515. exit(2);
  516. }
  517. fputs("foobar", fp);
  518. fclose(fp);
  519.  
  520. fp = fopen(filename, "a+");
  521. position = ftell(fp);
  522. fclose(fp);
  523. unlink(filename);
  524. if (position == 0)
  525. return 1;
  526. return 0;
  527. }
  528.  
  529. configure:17136: checking whether struct tm is in sys/time.h or time.h
  530. configure:17149: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  531. configure:17170: checking for tm_zone in struct tm
  532. configure:17183: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  533. configure:17242: checking for missing declarations of reentrant functions
  534. configure:17251: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  535. configure:17276: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  536. configure:17301: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  537. configure:17326: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  538. configure:17351: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  539. configure:17372: checking for fclose declaration
  540. configure:17381: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  541. configure:17407: checking for tm_gmtoff in struct tm
  542. configure:17420: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  543. configure:17443: checking for struct flock
  544. configure:17458: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  545. configure:17485: checking for socklen_t
  546. configure:17502: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  547. configure:17528: checking size of size_t
  548. configure:17548: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  549. configure: In function 'main':
  550. configure:17542:11: warning: incompatible implicit declaration of built-in function 'exit'
  551. configure:17568: checking size of long long
  552. configure:17588: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  553. configure: In function 'main':
  554. configure:17582:11: warning: incompatible implicit declaration of built-in function 'exit'
  555. configure:17608: checking size of long long int
  556. configure:17628: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  557. configure: In function 'main':
  558. configure:17622:11: warning: incompatible implicit declaration of built-in function 'exit'
  559. configure:17648: checking size of long
  560. configure:17668: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  561. configure: In function 'main':
  562. configure:17662:11: warning: incompatible implicit declaration of built-in function 'exit'
  563. configure:17688: checking size of int
  564. configure:17708: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  565. configure: In function 'main':
  566. configure:17702:11: warning: incompatible implicit declaration of built-in function 'exit'
  567. configure:17730: checking size of intmax_t
  568. configure:17771: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c 1>&5
  569. configure:17810: checking size of ssize_t
  570. configure:17851: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c 1>&5
  571. configure:17890: checking size of ptrdiff_t
  572. configure:17931: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c 1>&5
  573. configure:17970: checking for st_blksize in struct stat
  574. configure:17983: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  575. configure:18005: checking for st_blocks in struct stat
  576. configure:18018: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  577. configure:18045: checking for st_rdev in struct stat
  578. configure:18058: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  579. configure:18080: checking for size_t
  580. configure:18113: checking for uid_t in sys/types.h
  581. configure:18149: checking for struct sockaddr_storage
  582. configure:18162: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  583. configure:18183: checking for field sa_len in struct sockaddr
  584. configure:18197: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  585. configure: In function 'main':
  586. configure:18193:44: error: 'struct sockaddr' has no member named 'sa_len'
  587. configure: failed program was:
  588. #line 18189 "configure"
  589. #include "confdefs.h"
  590. #include <sys/types.h>
  591. #include <sys/socket.h>
  592. int main() {
  593. static struct sockaddr sa; int n = (int) sa.sa_len; return n;
  594. ; return 0; }
  595. configure:18220: checking for IPv6 support
  596. configure:18234: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  597. configure:18250: checking for vprintf
  598. configure:18278: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  599. configure:18262:6: warning: conflicting types for built-in function 'vprintf'
  600. configure:18438: checking for alphasort
  601. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  602. configure:18438: checking for asctime_r
  603. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  604. configure:18438: checking for chroot
  605. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  606. configure:18438: checking for ctime_r
  607. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  608. configure:18438: checking for cuserid
  609. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  610. configure:18438: checking for crypt
  611. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  612. /tmp/cc9yRoP8.o: In function `main':
  613. /home/partha/partha_new/Downloads/php-5.3.8/configure:18460: undefined reference to `crypt'
  614. collect2: ld returned 1 exit status
  615. configure: failed program was:
  616. #line 18443 "configure"
  617. #include "confdefs.h"
  618. /* System header to define __stub macros and hopefully few prototypes,
  619. which can conflict with char crypt(); below. */
  620. #include <assert.h>
  621. /* Override any gcc2 internal prototype to avoid an error. */
  622. /* We use char because int might match the return type of a gcc2
  623. builtin and then its argument prototype would still apply. */
  624. char crypt();
  625.  
  626. int main() {
  627.  
  628. /* The GNU C library defines this for functions which it implements
  629. to always fail with ENOSYS. Some functions are actually named
  630. something starting with __ and the normal name is an alias. */
  631. #if defined (__stub_crypt) || defined (__stub___crypt)
  632. choke me
  633. #else
  634. crypt();
  635. #endif
  636.  
  637. ; return 0; }
  638. configure:18438: checking for flock
  639. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  640. configure:18438: checking for ftok
  641. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  642. configure:18438: checking for funopen
  643. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  644. /tmp/ccH4IOww.o: In function `main':
  645. /home/partha/partha_new/Downloads/php-5.3.8/configure:18460: undefined reference to `funopen'
  646. collect2: ld returned 1 exit status
  647. configure: failed program was:
  648. #line 18443 "configure"
  649. #include "confdefs.h"
  650. /* System header to define __stub macros and hopefully few prototypes,
  651. which can conflict with char funopen(); below. */
  652. #include <assert.h>
  653. /* Override any gcc2 internal prototype to avoid an error. */
  654. /* We use char because int might match the return type of a gcc2
  655. builtin and then its argument prototype would still apply. */
  656. char funopen();
  657.  
  658. int main() {
  659.  
  660. /* The GNU C library defines this for functions which it implements
  661. to always fail with ENOSYS. Some functions are actually named
  662. something starting with __ and the normal name is an alias. */
  663. #if defined (__stub_funopen) || defined (__stub___funopen)
  664. choke me
  665. #else
  666. funopen();
  667. #endif
  668.  
  669. ; return 0; }
  670. configure:18438: checking for gai_strerror
  671. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  672. configure:18438: checking for gcvt
  673. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  674. configure:18438: checking for getloadavg
  675. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  676. configure:18438: checking for getlogin
  677. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  678. configure:18438: checking for getprotobyname
  679. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  680. configure:18438: checking for getprotobynumber
  681. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  682. configure:18438: checking for getservbyname
  683. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  684. configure:18438: checking for getservbyport
  685. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  686. configure:18438: checking for gethostname
  687. configure:18438: checking for getrusage
  688. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  689. configure:18438: checking for gettimeofday
  690. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  691. configure:18438: checking for gmtime_r
  692. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  693. configure:18438: checking for getpwnam_r
  694. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  695. configure:18438: checking for getgrnam_r
  696. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  697. configure:18438: checking for getpwuid_r
  698. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  699. configure:18438: checking for grantpt
  700. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  701. configure:18438: checking for inet_ntoa
  702. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  703. configure:18438: checking for inet_ntop
  704. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  705. configure:18438: checking for inet_pton
  706. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  707. configure:18438: checking for isascii
  708. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  709. configure:18450:6: warning: conflicting types for built-in function 'isascii'
  710. configure:18438: checking for link
  711. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  712. configure:18438: checking for localtime_r
  713. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  714. configure:18438: checking for lockf
  715. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  716. configure:18438: checking for lchown
  717. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  718. configure:18438: checking for lrand48
  719. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  720. configure:18438: checking for memcpy
  721. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  722. configure:18450:6: warning: conflicting types for built-in function 'memcpy'
  723. configure:18438: checking for memmove
  724. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  725. configure:18450:6: warning: conflicting types for built-in function 'memmove'
  726. configure:18438: checking for mkstemp
  727. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  728. configure:18438: checking for mmap
  729. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  730. configure:18438: checking for nl_langinfo
  731. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  732. configure:18438: checking for perror
  733. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  734. configure:18438: checking for poll
  735. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  736. configure:18438: checking for ptsname
  737. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  738. configure:18438: checking for putenv
  739. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  740. configure:18438: checking for realpath
  741. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  742. configure:18438: checking for random
  743. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  744. configure:18438: checking for rand_r
  745. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  746. configure:18438: checking for scandir
  747. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  748. configure:18438: checking for setitimer
  749. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  750. configure:18438: checking for setlocale
  751. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  752. configure:18438: checking for localeconv
  753. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  754. configure:18438: checking for setenv
  755. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  756. configure:18438: checking for setpgid
  757. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  758. configure:18438: checking for setsockopt
  759. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  760. configure:18438: checking for setvbuf
  761. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  762. configure:18438: checking for shutdown
  763. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  764. configure:18438: checking for sin
  765. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  766. configure:18450:6: warning: conflicting types for built-in function 'sin'
  767. configure:18438: checking for snprintf
  768. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  769. configure:18450:6: warning: conflicting types for built-in function 'snprintf'
  770. configure:18438: checking for srand48
  771. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  772. configure:18438: checking for srandom
  773. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  774. configure:18438: checking for statfs
  775. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  776. configure:18438: checking for statvfs
  777. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  778. configure:18438: checking for std_syslog
  779. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  780. /tmp/ccyr2nMe.o: In function `main':
  781. /home/partha/partha_new/Downloads/php-5.3.8/configure:18460: undefined reference to `std_syslog'
  782. collect2: ld returned 1 exit status
  783. configure: failed program was:
  784. #line 18443 "configure"
  785. #include "confdefs.h"
  786. /* System header to define __stub macros and hopefully few prototypes,
  787. which can conflict with char std_syslog(); below. */
  788. #include <assert.h>
  789. /* Override any gcc2 internal prototype to avoid an error. */
  790. /* We use char because int might match the return type of a gcc2
  791. builtin and then its argument prototype would still apply. */
  792. char std_syslog();
  793.  
  794. int main() {
  795.  
  796. /* The GNU C library defines this for functions which it implements
  797. to always fail with ENOSYS. Some functions are actually named
  798. something starting with __ and the normal name is an alias. */
  799. #if defined (__stub_std_syslog) || defined (__stub___std_syslog)
  800. choke me
  801. #else
  802. std_syslog();
  803. #endif
  804.  
  805. ; return 0; }
  806. configure:18438: checking for strcasecmp
  807. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  808. configure:18450:6: warning: conflicting types for built-in function 'strcasecmp'
  809. configure:18438: checking for strcoll
  810. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  811. configure:18438: checking for strdup
  812. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  813. configure:18450:6: warning: conflicting types for built-in function 'strdup'
  814. configure:18438: checking for strerror
  815. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  816. configure:18438: checking for strftime
  817. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  818. configure:18450:6: warning: conflicting types for built-in function 'strftime'
  819. configure:18438: checking for strnlen
  820. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  821. configure:18438: checking for strptime
  822. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  823. configure:18438: checking for strstr
  824. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  825. configure:18450:6: warning: conflicting types for built-in function 'strstr'
  826. configure:18438: checking for strtok_r
  827. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  828. configure:18438: checking for symlink
  829. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  830. configure:18438: checking for tempnam
  831. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  832. /tmp/ccfr1m4s.o: In function `main':
  833. /home/partha/partha_new/Downloads/php-5.3.8/configure:18460: warning: the use of `tempnam' is dangerous, better use `mkstemp'
  834. configure:18438: checking for tzset
  835. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  836. configure:18438: checking for unlockpt
  837. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  838. configure:18438: checking for unsetenv
  839. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  840. configure:18438: checking for usleep
  841. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  842. configure:18438: checking for utime
  843. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  844. configure:18438: checking for vsnprintf
  845. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  846. configure:18450:6: warning: conflicting types for built-in function 'vsnprintf'
  847. configure:18438: checking for vasprintf
  848. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  849. configure:18438: checking for asprintf
  850. configure:18466: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl 1>&5
  851. configure:18497: checking for nanosleep in -lrt
  852. configure:18516: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lrt -lm -ldl -lnsl 1>&5
  853. configure:18591: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lm -ldl -lnsl -lrt 1>&5
  854. configure:18635: checking for getaddrinfo
  855. configure:18647: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lrt -lm -ldl -lnsl 1>&5
  856. configure:18693: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lrt -lm -ldl -lnsl 1>&5
  857. configure: In function 'main':
  858. configure:18663:3: warning: incompatible implicit declaration of built-in function 'memset'
  859. configure:18667:5: warning: incompatible implicit declaration of built-in function 'exit'
  860. configure:18671:5: warning: incompatible implicit declaration of built-in function 'exit'
  861. configure:18679:7: warning: incompatible implicit declaration of built-in function 'exit'
  862. configure:18683:7: warning: incompatible implicit declaration of built-in function 'exit'
  863. configure:18688:3: warning: incompatible implicit declaration of built-in function 'exit'
  864. configure:18725: checking for strlcat
  865. configure:18753: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lrt -lm -ldl -lnsl 1>&5
  866. /tmp/ccfoGunT.o: In function `main':
  867. /home/partha/partha_new/Downloads/php-5.3.8/configure:18747: undefined reference to `strlcat'
  868. collect2: ld returned 1 exit status
  869. configure: failed program was:
  870. #line 18730 "configure"
  871. #include "confdefs.h"
  872. /* System header to define __stub macros and hopefully few prototypes,
  873. which can conflict with char strlcat(); below. */
  874. #include <assert.h>
  875. /* Override any gcc2 internal prototype to avoid an error. */
  876. /* We use char because int might match the return type of a gcc2
  877. builtin and then its argument prototype would still apply. */
  878. char strlcat();
  879.  
  880. int main() {
  881.  
  882. /* The GNU C library defines this for functions which it implements
  883. to always fail with ENOSYS. Some functions are actually named
  884. something starting with __ and the normal name is an alias. */
  885. #if defined (__stub_strlcat) || defined (__stub___strlcat)
  886. choke me
  887. #else
  888. strlcat();
  889. #endif
  890.  
  891. ; return 0; }
  892. configure:18725: checking for strlcpy
  893. configure:18753: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lrt -lm -ldl -lnsl 1>&5
  894. /tmp/cc7CqGd4.o: In function `main':
  895. /home/partha/partha_new/Downloads/php-5.3.8/configure:18747: undefined reference to `strlcpy'
  896. collect2: ld returned 1 exit status
  897. configure: failed program was:
  898. #line 18730 "configure"
  899. #include "confdefs.h"
  900. /* System header to define __stub macros and hopefully few prototypes,
  901. which can conflict with char strlcpy(); below. */
  902. #include <assert.h>
  903. /* Override any gcc2 internal prototype to avoid an error. */
  904. /* We use char because int might match the return type of a gcc2
  905. builtin and then its argument prototype would still apply. */
  906. char strlcpy();
  907.  
  908. int main() {
  909.  
  910. /* The GNU C library defines this for functions which it implements
  911. to always fail with ENOSYS. Some functions are actually named
  912. something starting with __ and the normal name is an alias. */
  913. #if defined (__stub_strlcpy) || defined (__stub___strlcpy)
  914. choke me
  915. #else
  916. strlcpy();
  917. #endif
  918.  
  919. ; return 0; }
  920. configure:18725: checking for getopt
  921. configure:18753: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lrt -lm -ldl -lnsl 1>&5
  922. configure:18780: checking whether utime accepts a null argument
  923. configure:18801: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lrt -lm -ldl -lnsl 1>&5
  924. configure: In function 'main':
  925. configure:18795:1: warning: incompatible implicit declaration of built-in function 'exit'
  926. configure:18827: checking for working alloca.h
  927. configure:18860: checking for alloca
  928. configure:18893: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lrt -lm -ldl -lnsl 1>&5
  929. configure:19060: checking for declared timezone
  930. configure:19081: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  931. configure:19107: checking for type of reentrant time-related functions
  932. configure:19136: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lrt -lm -ldl -lnsl 1>&5
  933. configure: In function 'main':
  934. configure:19128:3: warning: assignment makes integer from pointer without a cast
  935. configure:19129:1: error: too many arguments to function 'asctime_r'
  936. /usr/include/time.h:266:14: note: declared here
  937. configure: failed program was:
  938. #line 19118 "configure"
  939. #include "confdefs.h"
  940.  
  941. #include <time.h>
  942.  
  943. main() {
  944. char buf[27];
  945. struct tm t;
  946. time_t old = 0;
  947. int r, s;
  948.  
  949. s = gmtime_r(&old, &t);
  950. r = (int) asctime_r(&t, buf, 26);
  951. if (r == s && s == 0) return (0);
  952. return (1);
  953. }
  954.  
  955. configure:19168: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lrt -lm -ldl -lnsl 1>&5
  956. configure: In function 'main':
  957. configure:19161:3: error: too many arguments to function 'asctime_r'
  958. /usr/include/time.h:266:14: note: declared here
  959. configure: failed program was:
  960. #line 19152 "configure"
  961. #include "confdefs.h"
  962.  
  963. #include <time.h>
  964. main() {
  965. struct tm t, *s;
  966. time_t old = 0;
  967. char buf[27], *p;
  968.  
  969. s = gmtime_r(&old, &t);
  970. p = asctime_r(&t, buf, 26);
  971. if (p == buf && s == &t) return (0);
  972. return (1);
  973. }
  974.  
  975. configure:19206: checking for readdir_r
  976. configure:19234: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lrt -lm -ldl -lnsl 1>&5
  977. configure:19256: checking for type of readdir_r
  978. configure:19292: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lrt -lm -ldl -lnsl 1>&5
  979. configure: In function 'main':
  980. configure:19284:5: warning: incompatible implicit declaration of built-in function 'exit'
  981. configure:19355: checking for in_addr_t
  982. configure:19394: checking for crypt_r
  983. configure:19422: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lrt -lm -ldl -lnsl 1>&5
  984. /tmp/ccSERPXM.o: In function `main':
  985. /home/partha/partha_new/Downloads/php-5.3.8/configure:19416: undefined reference to `crypt_r'
  986. collect2: ld returned 1 exit status
  987. configure: failed program was:
  988. #line 19399 "configure"
  989. #include "confdefs.h"
  990. /* System header to define __stub macros and hopefully few prototypes,
  991. which can conflict with char crypt_r(); below. */
  992. #include <assert.h>
  993. /* Override any gcc2 internal prototype to avoid an error. */
  994. /* We use char because int might match the return type of a gcc2
  995. builtin and then its argument prototype would still apply. */
  996. char crypt_r();
  997.  
  998. int main() {
  999.  
  1000. /* The GNU C library defines this for functions which it implements
  1001. to always fail with ENOSYS. Some functions are actually named
  1002. something starting with __ and the normal name is an alias. */
  1003. #if defined (__stub_crypt_r) || defined (__stub___crypt_r)
  1004. choke me
  1005. #else
  1006. crypt_r();
  1007. #endif
  1008.  
  1009. ; return 0; }
  1010. configure:19579: checking whether to include gcov symbols
  1011. configure:19739: checking whether to include debugging symbols
  1012. configure:19787: checking layout of installed files
  1013. configure:19819: checking path to configuration file
  1014. configure:19850: checking where to scan for configuration files
  1015. configure:19883: checking whether to enable safe mode by default
  1016. configure:19915: checking for safe mode exec dir
  1017. configure:19956: checking whether to enable PHP's own SIGCHLD handler
  1018. configure:19991: checking whether to enable magic quotes by default
  1019. configure:20026: checking whether to explicitly link against libgcc
  1020. configure:20103: checking whether to enable short tags by default
  1021. configure:20138: checking whether to enable dmalloc
  1022. configure:20223: checking whether to enable IPv6 support
  1023. configure:20250: checking how big to make fd sets
  1024. configure:20318: checking size of long
  1025. configure:20358: checking size of int
  1026. configure:20399: checking for int32_t
  1027. configure:20424: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  1028. configure:20447: checking for uint32_t
  1029. configure:20472: gcc -c -g -O2 -fvisibility=hidden conftest.c 1>&5
  1030. configure:20504: checking for sys/types.h
  1031. configure:20504: checking for inttypes.h
  1032. configure:20504: checking for stdint.h
  1033. configure:20504: checking for string.h
  1034. configure:20504: checking for stdlib.h
  1035. configure:20544: checking for strtoll
  1036. configure:20572: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lrt -lm -ldl -lnsl 1>&5
  1037. configure:20544: checking for atoll
  1038. configure:20572: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lrt -lm -ldl -lnsl 1>&5
  1039. configure:20544: checking for strftime
  1040. configure:21034: checking which regex library to use
  1041. configure:21451: checking whether to enable LIBXML support
  1042. configure:21496: checking libxml2 install dir
  1043. configure:21522: checking for xml2-config path
  1044. configure:21680: checking whether libxml build works
  1045. configure:21707: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c
  1046.  
  1047. -lrt -lm -ldl -lnsl -lxml2 -lz -lm 1>&5
  1048. configure:22072: checking for OpenSSL support
  1049. configure:22116: checking for Kerberos support
  1050. configure:22802: checking for DSA_get_default_method in -lssl
  1051. configure:22821: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lssl -lrt -lm -ldl -lnsl -lxml2 -lz -lm 1>&5
  1052. configure:22845: checking for X509_free in -lcrypto
  1053. configure:22864: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lcrypto -lrt -lm -ldl -lnsl -lxml2 -lz -lm 1>&5
  1054. configure:22906: checking for pkg-config
  1055. configure:24061: checking for PCRE library to use
  1056. configure:24398: checking whether to enable the SQLite3 extension
  1057. configure:25053: checking bundled sqlite3 library
  1058. configure:25409: checking for ZLIB support
  1059. configure:25453: checking if the location of ZLIB install directory is defined
  1060. configure:25896: checking for gzgets in -lz
  1061. configure:25915: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1062. configure:26055: checking whether to enable bc style precision math functions
  1063. configure:26420: checking for BZip2 support
  1064. configure:26465: checking for BZip2 in default path
  1065. configure:26578: checking for BZ2_bzerror in -lbz2
  1066. configure:26597: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1067. configure:27065: checking whether to enable calendar conversion support
  1068. configure:27409: checking whether to enable ctype functions
  1069. configure:27753: checking for cURL support
  1070. configure:27797: checking if we should use cURL for url streams
  1071. configure:27821: checking for cURL in default path
  1072. configure:27839: checking for cURL 7.10.5 or greater
  1073. configure:28077: checking for SSL support in libcurl
  1074. configure:28090: checking how to run the C preprocessor
  1075. configure:28170: checking for openssl support in libcurl
  1076. configure:28196: gcc -o conftest conftest.c -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl 1>&5
  1077. configure:28204: checking for openssl/crypto.h
  1078. configure:28214: gcc -E conftest.c >/dev/null 2>conftest.out
  1079. configure:28259: checking for gnutls support in libcurl
  1080. configure:28285: gcc -o conftest conftest.c -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl 1>&5
  1081. configure: failed program was:
  1082. #line 28266 "configure"
  1083. #include "confdefs.h"
  1084.  
  1085. #include <curl/curl.h>
  1086.  
  1087. int main(int argc, char *argv[])
  1088. {
  1089. curl_version_info_data *data = curl_version_info(CURLVERSION_NOW);
  1090.  
  1091. if (data && data->ssl_version && *data->ssl_version) {
  1092. const char *ptr = data->ssl_version;
  1093.  
  1094. while(*ptr == ' ') ++ptr;
  1095. return strncasecmp(ptr, "GnuTLS", sizeof("GnuTLS")-1);
  1096. }
  1097. return 1;
  1098. }
  1099.  
  1100. configure:28443: checking for curl_easy_perform in -lcurl
  1101. configure:28462: gcc -o conftest -g -O2 -fvisibility=hidden -lcurl conftest.c -lcurl -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl 1>&5
  1102. configure:28598: checking for curl_version_info in -lcurl
  1103. configure:28617: gcc -o conftest -g -O2 -fvisibility=hidden -lcurl conftest.c -lcurl -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl 1>&5
  1104. configure:28751: checking for curl_easy_strerror in -lcurl
  1105. configure:28770: gcc -o conftest -g -O2 -fvisibility=hidden -lcurl conftest.c -lcurl -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl 1>&5
  1106. configure:28904: checking for curl_multi_strerror in -lcurl
  1107. configure:28923: gcc -o conftest -g -O2 -fvisibility=hidden -lcurl conftest.c -lcurl -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl 1>&5
  1108. configure:29797: checking for QDBM support
  1109. configure:29944: checking for gdbm_open in -lgdbm
  1110. configure:29963: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl 1>&5
  1111. configure:30128: checking for GDBM support
  1112. configure:30445: checking for NDBM support
  1113. configure:30777: checking for Berkeley DB4 support
  1114. configure:31100: checking for Berkeley DB3 support
  1115. configure:31423: checking for Berkeley DB2 support
  1116. configure:31662: checking for DB1 support
  1117. configure:32017: checking for DBM support
  1118. configure:32417: checking for CDB support
  1119. configure:32448: checking for INI File support
  1120. configure:32479: checking for FlatFile support
  1121. configure:32494: checking whether to enable DBA interface
  1122. configure:32824: checking whether to enable DOM support
  1123. configure:32897: checking for xml2-config path
  1124. configure:33055: checking whether libxml build works
  1125. configure:33505: checking for ENCHANT support
  1126. configure:34090: checking for enchant_broker_set_param in -lenchant
  1127. configure:34109: gcc -o conftest -g -O2 -fvisibility=hidden -Wl,-rpath, -L conftest.c -lenchant -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm 1>&5
  1128. /usr/lib/gcc/i686-pc-linux-gnu/4.5.2/../../../crt1.o: In function `_start':
  1129. (.text+0x18): undefined reference to `main'
  1130. collect2: ld returned 1 exit status
  1131. configure: failed program was:
  1132. #line 34098 "configure"
  1133. #include "confdefs.h"
  1134. /* Override any gcc2 internal prototype to avoid an error. */
  1135. /* We use char because int might match the return type of a gcc2
  1136. builtin and then its argument prototype would still apply. */
  1137. char enchant_broker_set_param();
  1138.  
  1139. int main() {
  1140. enchant_broker_set_param()
  1141. ; return 0; }
  1142. configure:34156: checking whether to enable EXIF (metadata from images) support
  1143. configure:34500: checking for fileinfo support
  1144. configure:34850: checking for utimes
  1145. configure:34878: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm 1>&5
  1146. configure:34850: checking for strndup
  1147. configure:34878: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm 1>&5
  1148. configure:34862:6: warning: conflicting types for built-in function 'strndup'
  1149. configure:34916: checking whether to enable input filter support
  1150. configure:34960: checking pcre install prefix
  1151. configure:35376: checking whether to enable FTP support
  1152. configure:35420: checking OpenSSL dir for FTP
  1153. configure:36457: checking for GD support
  1154. configure:36502: checking for the location of libjpeg
  1155. configure:36527: checking for the location of libpng
  1156. configure:36576: checking for the location of libXpm
  1157. configure:36599: checking for FreeType 2
  1158. configure:36622: checking for T1lib support
  1159. configure:36645: checking whether to enable truetype string function in GD
  1160. configure:36668: checking whether to enable JIS-mapped Japanese font support in GD
  1161. configure:36720: checking for fabsf
  1162. configure:36748: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1163. configure:36732:6: warning: conflicting types for built-in function 'fabsf'
  1164. configure:36720: checking for floorf
  1165. configure:36748: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1166. configure:36732:6: warning: conflicting types for built-in function 'floorf'
  1167. configure:36920: checking for jpeg_read_header in -ljpeg
  1168. configure:36939: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1169. configure:37217: checking for png_write_image in -lpng
  1170. configure:37236: gcc -o conftest -g -O2 -fvisibility=hidden -lz conftest.c -lpng -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1171. configure:38010: checking for FT_New_Face in -lfreetype
  1172. configure:38029: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1173. configure:44462: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1174. configure:44697: checking for GNU gettext support
  1175. configure:44752: checking for bindtextdomain in -lintl
  1176. configure:44771: gcc -o conftest -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lintl -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1177. /usr/bin/ld: cannot find -lintl
  1178. collect2: ld returned 1 exit status
  1179. configure: failed program was:
  1180. #line 44760 "configure"
  1181. #include "confdefs.h"
  1182. /* Override any gcc2 internal prototype to avoid an error. */
  1183. /* We use char because int might match the return type of a gcc2
  1184. builtin and then its argument prototype would still apply. */
  1185. char bindtextdomain();
  1186.  
  1187. int main() {
  1188. bindtextdomain()
  1189. ; return 0; }
  1190. configure:44793: checking for bindtextdomain in -lc
  1191. configure:44812: gcc -o conftest -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lc -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1192. configure:45276: checking for ngettext in -lc
  1193. configure:45295: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lc -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1194. configure:45319: checking for dngettext in -lc
  1195. configure:45338: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lc -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1196. configure:45362: checking for dcngettext in -lc
  1197. configure:45381: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lc -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1198. configure:45405: checking for bind_textdomain_codeset in -lc
  1199. configure:45424: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lc -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1200. configure:45455: checking for GNU MP support
  1201. configure:45603: checking for __gmp_randinit_lc_2exp_size in -lgmp
  1202. configure:45622: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1203. configure:46238: checking for mhash support
  1204. configure:46282: checking whether to enable hash support
  1205. configure:46340: checking whether byte ordering is bigendian
  1206. configure:46391: checking size of short
  1207. configure:46411: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1208. configure: In function 'main':
  1209. configure:46405:11: warning: incompatible implicit declaration of built-in function 'exit'
  1210. configure:46431: checking size of int
  1211. configure:46471: checking size of long
  1212. configure:46511: checking size of long long
  1213. configure:46880: checking for iconv support
  1214. configure:46941: checking for iconv
  1215. configure:46969: gcc -o conftest -g -O2 -fvisibility=hidden conftest.c -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1216. configure:47564: checking if iconv is glibc's
  1217. configure:47573: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1218. configure:47858: checking if iconv supports errno
  1219. configure:47893: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl 1>&5
  1220. configure:47925: checking if your cpp allows macro usage in include lines
  1221. configure:47937: gcc -c -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  1222. configure:48293: checking for IMAP support
  1223. configure:48337: checking for IMAP Kerberos support
  1224. configure:48360: checking for IMAP SSL support
  1225. configure:50815: checking for InterBase support
  1226. configure:51750: checking whether to enable internationalization support
  1227. configure:51822: checking for icu-config
  1228. configure:51860: checking for location of ICU headers and libraries
  1229. configure:51870: checking for ICU 3.4 or greater
  1230. configure:52027: checking for c++
  1231. configure:52059: checking whether the C++ compiler (c++ -L/usr/lib ) works
  1232. configure:52075: c++ -o conftest -L/usr/lib conftest.C -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1233. configure:52101: checking whether the C++ compiler (c++ -L/usr/lib ) is a cross-compiler
  1234. configure:52106: checking whether we are using GNU C++
  1235. configure:52115: c++ -E conftest.C
  1236. configure:52134: checking whether c++ accepts -g
  1237. configure:52166: checking how to run the C++ preprocessor
  1238. configure:52184: c++ -E conftest.C >/dev/null 2>conftest.out
  1239. configure:52742: checking whether to enable JavaScript Object Serialization support
  1240. configure:52788: checking for ANSI C header files
  1241. configure:53218: checking for LDAP support
  1242. configure:53262: checking for LDAP Cyrus SASL support
  1243. configure:56098: checking whether to enable multibyte string support
  1244. configure:56142: checking whether to enable multibyte regex support
  1245. configure:56165: checking whether to check multibyte regex backtrack
  1246. configure:56188: checking for external libmbfl
  1247. configure:56211: checking for external oniguruma
  1248. configure:56252: checking for variable length prototypes and stdarg.h
  1249. configure:56285: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1250. configure:56306: checking for stdlib.h
  1251. configure:56306: checking for string.h
  1252. configure:56306: checking for strings.h
  1253. configure:56316: gcc -E conftest.c >/dev/null 2>conftest.out
  1254. configure:56306: checking for unistd.h
  1255. configure:56306: checking for sys/time.h
  1256. configure:56306: checking for sys/times.h
  1257. configure:56316: gcc -E conftest.c >/dev/null 2>conftest.out
  1258. configure:56306: checking for stdarg.h
  1259. configure:56343: checking size of int
  1260. configure:56383: checking size of short
  1261. configure:56423: checking size of long
  1262. configure:56463: checking for working const
  1263. configure:56517: gcc -c -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  1264. configure:56538: checking whether time.h and sys/time.h may both be included
  1265. configure:56552: gcc -c -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  1266. configure:56575: checking for working alloca.h
  1267. configure:56608: checking for alloca
  1268. configure:56807: checking for 8-bit clean memcmp
  1269. configure:56825: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1270. configure: In function 'main':
  1271. configure:56820:3: warning: incompatible implicit declaration of built-in function 'exit'
  1272. configure:56844: checking for stdarg.h
  1273. configure:58296: checking for mcrypt support
  1274. configure:58349: checking for libmcrypt version
  1275. configure:58475: checking for mcrypt_module_open in -lmcrypt
  1276. configure:58494: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib -lltdl conftest.c -lmcrypt -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1277. configure:59139: checking for MSSQL support via FreeTDS
  1278. configure:59800: checking for MySQL support
  1279. configure:59844: checking for specified location of the MySQL UNIX socket
  1280. configure:60671: checking for MySQL UNIX socket location
  1281. configure:61044: checking for MySQLi support
  1282. configure:61088: checking whether to enable embedded MySQLi support
  1283. configure:62091: checking for Oracle Database OCI8 support
  1284. configure:65724: checking whether to enable pcntl support
  1285. configure:66298: checking whether to enable PDO support
  1286. configure:66732: checking for PDO_DBLIB support via FreeTDS
  1287. configure:67449: checking for Firebird support for PDO
  1288. configure:68437: checking for MySQL support for PDO
  1289. configure:69939: checking Oracle OCI support for PDO
  1290. configure:72028: checking for ODBC v3 support for PDO
  1291. configure:73157: checking for PostgreSQL support for PDO
  1292. configure:74038: checking for sqlite 3 support for PDO
  1293. configure:74087: checking for PDO includes
  1294. configure:74093: checking for PDO includes
  1295. configure:75277: checking for usleep
  1296. configure:75277: checking for nanosleep
  1297. configure:75333: checking for time.h
  1298. configure:75343: gcc -E conftest.c >/dev/null 2>conftest.out
  1299. configure:75467: checking for fdatasync in -lrt
  1300. configure:75486: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1301. configure:75567: checking for PostgreSQL support
  1302. configure:77286: checking for phar archive support
  1303. configure:77620: checking for phar openssl support
  1304. configure:77695: checking whether to enable POSIX-like functions
  1305. configure:78037: checking for sys/mkdev.h
  1306. configure:78047: gcc -E conftest.c >/dev/null 2>conftest.out
  1307. configure:78043:23: fatal error: sys/mkdev.h: No such file or directory
  1308. compilation terminated.
  1309. configure: failed program was:
  1310. #line 78042 "configure"
  1311. #include "confdefs.h"
  1312. #include <sys/mkdev.h>
  1313. configure:78077: checking for seteuid
  1314. configure:78105: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1315. configure:78077: checking for setegid
  1316. configure:78105: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1317. configure:78077: checking for setsid
  1318. configure:78105: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1319. configure:78077: checking for getsid
  1320. configure:78105: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1321. configure:78077: checking for setpgid
  1322. configure:78077: checking for getpgid
  1323. configure:78105: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1324. configure:78077: checking for ctermid
  1325. configure:78105: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1326. configure:78077: checking for mkfifo
  1327. configure:78105: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1328. configure:78077: checking for mknod
  1329. configure:78105: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1330. configure:78077: checking for getrlimit
  1331. configure:78105: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1332. configure:78077: checking for getlogin
  1333. configure:78077: checking for getgroups
  1334. configure:78105: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1335. configure:78077: checking for makedev
  1336. configure:78105: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1337. /tmp/ccbRk4fx.o: In function `main':
  1338. /home/partha/partha_new/Downloads/php-5.3.8/configure:78099: undefined reference to `makedev'
  1339. collect2: ld returned 1 exit status
  1340. configure: failed program was:
  1341. #line 78082 "configure"
  1342. #include "confdefs.h"
  1343. /* System header to define __stub macros and hopefully few prototypes,
  1344. which can conflict with char makedev(); below. */
  1345. #include <assert.h>
  1346. /* Override any gcc2 internal prototype to avoid an error. */
  1347. /* We use char because int might match the return type of a gcc2
  1348. builtin and then its argument prototype would still apply. */
  1349. char makedev();
  1350.  
  1351. int main() {
  1352.  
  1353. /* The GNU C library defines this for functions which it implements
  1354. to always fail with ENOSYS. Some functions are actually named
  1355. something starting with __ and the normal name is an alias. */
  1356. #if defined (__stub_makedev) || defined (__stub___makedev)
  1357. choke me
  1358. #else
  1359. makedev();
  1360. #endif
  1361.  
  1362. ; return 0; }
  1363. configure:78077: checking for initgroups
  1364. configure:78105: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1365. configure:78077: checking for getpwuid_r
  1366. configure:78077: checking for getgrgid_r
  1367. configure:78105: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1368. configure:78131: checking for working ttyname_r() implementation
  1369. configure:78151: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1370. configure:78173: checking for utsname.domainname
  1371. configure:78191: gcc -c -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  1372. configure:78222: checking for PSPELL support
  1373. configure:78965: checking for libedit readline replacement
  1374. configure:79010: checking for readline support
  1375. configure:79096: checking for tgetent in -lncurses
  1376. configure:79115: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1377. configure:79326: checking for readline in -lreadline
  1378. configure:79345: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib -lncurses conftest.c -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1379. configure:79574: checking for rl_pending_input in -lreadline
  1380. configure:79593: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib -lncurses conftest.c -lreadline -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1381. configure:79724: checking for rl_callback_read_char in -lreadline
  1382. configure:79743: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib -lncurses conftest.c -lreadline -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1383. configure:80215: checking for rl_completion_matches
  1384. configure:80243: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1385. configure:80569: checking for recode support
  1386. configure:81689: checking whether to enable PHP sessions
  1387. configure:81733: checking for mm support
  1388. configure:81755: checking whether pwrite works
  1389. configure:81788: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1390. configure: In function 'main':
  1391. configure:81778:17: warning: incompatible implicit declaration of built-in function 'exit'
  1392. configure:81875: checking whether pread works
  1393. configure:81908: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio 1>&5
  1394. configure: In function 'main':
  1395. configure:81899:17: warning: incompatible implicit declaration of built-in function 'exit'
  1396. configure:82519: checking whether to enable shmop support
  1397. configure:82863: checking whether to enable SimpleXML support
  1398. configure:82936: checking for xml2-config path
  1399. configure:83094: checking whether libxml build works
  1400. configure:83509: checking for SNMP support
  1401. configure:83553: checking OpenSSL dir for SNMP
  1402. configure:83576: checking whether to enable UCD SNMP hack
  1403. configure:85399: checking whether to enable SOAP support
  1404. configure:85472: checking for xml2-config path
  1405. configure:85630: checking whether libxml build works
  1406. configure:86007: checking whether to enable sockets support
  1407. configure:86526: checking whether zend_object_value is packed
  1408. configure:86545: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -I/home/partha/partha_new/Downloads/php-5.3.8/ext/date/lib -I/home/partha/partha_new/Downloads/php-5.3.8/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/enchant -I/usr/include/freetype2 -I/home/partha/partha_new/Downloads/php-5.3.8/ext/mbstring/oniguruma -I/home/partha/partha_new/Downloads/php-5.3.8/ext/mbstring/libmbfl -I/home/partha/partha_new/Downloads/php-5.3.8/ext/mbstring/libmbfl/mbfl -I/home/partha/partha_new/Downloads/php-5.3.8/ext/sqlite3/libsqlite -I/home/partha/partha_new/Downloads/php-5.3.8 -L/usr/lib conftest.c -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm 1>&5
  1409. configure:86909: checking for sqlite support
  1410. configure:86953: checking whether to enable UTF-8 support in sqlite (default: ISO-8859-1)
  1411. configure:86981: checking for PDO includes
  1412. configure:87325: checking for lemon
  1413. configure:87766: checking size of char *
  1414. configure:87786: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm 1>&5
  1415. configure: In function 'main':
  1416. configure:87780:11: warning: incompatible implicit declaration of built-in function 'exit'
  1417. configure:87848: checking for usleep
  1418. configure:87848: checking for nanosleep
  1419. configure:87904: checking for time.h
  1420. configure:87945: checking whether flush should be called explicitly after a buffered io
  1421. configure:87994: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm 1>&5
  1422. /tmp/cc1J03rY.o: In function `main':
  1423. /home/partha/partha_new/Downloads/php-5.3.8/configure:87963: warning: the use of `tmpnam' is dangerous, better use `mkstemp'
  1424. configure:88022: checking for crypt in -lcrypt
  1425. configure:88041: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm 1>&5
  1426. configure:88070: checking for standard DES crypt
  1427. configure:88100: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1428. configure: In function 'main':
  1429. configure:88093:5: warning: incompatible implicit declaration of built-in function 'exit'
  1430. configure:88121: checking for extended DES crypt
  1431. configure:88151: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1432. configure: In function 'main':
  1433. configure:88144:3: warning: incompatible implicit declaration of built-in function 'exit'
  1434. configure: failed program was:
  1435. #line 88132 "configure"
  1436. #include "confdefs.h"
  1437.  
  1438. #if HAVE_UNISTD_H
  1439. #include <unistd.h>
  1440. #endif
  1441.  
  1442. #if HAVE_CRYPT_H
  1443. #include <crypt.h>
  1444. #endif
  1445.  
  1446. main() {
  1447. #if HAVE_CRYPT
  1448. exit (strcmp((char *)crypt("rasmuslerdorf","_J9..rasm"),"_J9..rasmBYk8r9AiWNc"));
  1449. #else
  1450. exit(0);
  1451. #endif
  1452. }
  1453. configure:88172: checking for MD5 crypt
  1454. configure:88211: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1455. configure: In function 'main':
  1456. configure:88202:5: warning: incompatible implicit declaration of built-in function 'strcpy'
  1457. configure:88203:5: warning: incompatible implicit declaration of built-in function 'strcat'
  1458. configure:88204:5: warning: incompatible implicit declaration of built-in function 'exit'
  1459. configure:88232: checking for Blowfish crypt
  1460. configure:88268: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1461. configure: In function 'main':
  1462. configure:88258:5: warning: incompatible implicit declaration of built-in function 'strcat'
  1463. configure:88259:5: warning: incompatible implicit declaration of built-in function 'strcpy'
  1464. configure:88261:5: warning: incompatible implicit declaration of built-in function 'exit'
  1465. configure: failed program was:
  1466. #line 88243 "configure"
  1467. #include "confdefs.h"
  1468.  
  1469. #if HAVE_UNISTD_H
  1470. #include <unistd.h>
  1471. #endif
  1472.  
  1473. #if HAVE_CRYPT_H
  1474. #include <crypt.h>
  1475. #endif
  1476.  
  1477. main() {
  1478. #if HAVE_CRYPT
  1479. char salt[30], answer[70];
  1480.  
  1481. salt[0]='$'; salt[1]='2'; salt[2]='a'; salt[3]='$'; salt[4]='0'; salt[5]='7'; salt[6]='$'; salt[7]='\0';
  1482. strcat(salt,"rasmuslerd............");
  1483. strcpy(answer,salt);
  1484. strcpy(&answer[29],"nIdrcHdxcUxWomQX9j6kvERCFjTg7Ra");
  1485. exit (strcmp((char *)crypt("rasmuslerdorf",salt),answer));
  1486. #else
  1487. exit(0);
  1488. #endif
  1489. }
  1490. configure:88289: checking for SHA512 crypt
  1491. configure:88324: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1492. configure: In function 'main':
  1493. configure:88315:5: warning: incompatible implicit declaration of built-in function 'strcpy'
  1494. configure:88317:5: warning: incompatible implicit declaration of built-in function 'exit'
  1495. configure: failed program was:
  1496. #line 88300 "configure"
  1497. #include "confdefs.h"
  1498.  
  1499. #if HAVE_UNISTD_H
  1500. #include <unistd.h>
  1501. #endif
  1502.  
  1503. #if HAVE_CRYPT_H
  1504. #include <crypt.h>
  1505. #endif
  1506.  
  1507. main() {
  1508. #if HAVE_CRYPT
  1509. char salt[30], answer[80];
  1510.  
  1511. salt[0]='$'; salt[1]='6'; salt[2]='$'; salt[3]='$'; salt[4]='b'; salt[5]='a'; salt[6]='r'; salt[7]='\0';
  1512. strcpy(answer, salt);
  1513. strcpy(&answer[29],"15295QMXjqd7rHQZPQ1yHsXkQqC1FBzDiVfTHXL.LaeDAeVV.IzMaV9VU4MQ8kPuZa2SOP1A0RPm772EaFYjpEJtdu.");
  1514. exit (strcmp((char *)crypt("foo",salt),answer));
  1515. #else
  1516. exit(0);
  1517. #endif
  1518. }
  1519. configure:88345: checking for SHA256 crypt
  1520. configure:88380: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1521. configure: In function 'main':
  1522. configure:88370:5: warning: incompatible implicit declaration of built-in function 'strcat'
  1523. configure:88371:5: warning: incompatible implicit declaration of built-in function 'strcpy'
  1524. configure:88373:5: warning: incompatible implicit declaration of built-in function 'exit'
  1525. configure: failed program was:
  1526. #line 88356 "configure"
  1527. #include "confdefs.h"
  1528.  
  1529. #if HAVE_UNISTD_H
  1530. #include <unistd.h>
  1531. #endif
  1532.  
  1533. #if HAVE_CRYPT_H
  1534. #include <crypt.h>
  1535. #endif
  1536.  
  1537. main() {
  1538. #if HAVE_CRYPT
  1539. char salt[30], answer[80];
  1540. salt[0]='$'; salt[1]='5'; salt[2]='$'; salt[3]='$'; salt[4]='s'; salt[5]='a'; salt[6]='l'; salt[7]='t'; salt[8]='s'; salt[9]='t'; salt[10]='r'; salt[11]='i'; salt[12]='n'; salt[13]='g'; salt[14]='\0';
  1541. strcat(salt,"");
  1542. strcpy(answer, salt);
  1543. strcpy(&answer[29], "B8vYYiY.CVt1RlTTf8KbXBH3hsxY/GNooZaBBGWEc5");
  1544. exit (strcmp((char *)crypt("foo",salt),answer));
  1545. #else
  1546. exit(0);
  1547. #endif
  1548. }
  1549. configure:88404: checking whether the compiler supports __alignof__
  1550. configure:88420: gcc -c -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  1551. configure:88445: checking whether the compiler supports aligned attribute
  1552. configure:88461: gcc -c -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  1553. configure:88640: checking for getcwd
  1554. configure:88668: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1555. configure:88640: checking for getwd
  1556. configure:88668: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1557. /tmp/ccikUAdl.o: In function `main':
  1558. /home/partha/partha_new/Downloads/php-5.3.8/configure:88662: warning: the `getwd' function is dangerous and should not be used.
  1559. configure:88640: checking for asinh
  1560. configure:88668: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1561. configure:88652:6: warning: conflicting types for built-in function 'asinh'
  1562. configure:88640: checking for acosh
  1563. configure:88668: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1564. configure:88652:6: warning: conflicting types for built-in function 'acosh'
  1565. configure:88640: checking for atanh
  1566. configure:88668: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1567. configure:88652:6: warning: conflicting types for built-in function 'atanh'
  1568. configure:88640: checking for log1p
  1569. configure:88668: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1570. configure:88652:6: warning: conflicting types for built-in function 'log1p'
  1571. configure:88640: checking for hypot
  1572. configure:88668: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1573. configure:88652:6: warning: conflicting types for built-in function 'hypot'
  1574. configure:88640: checking for glob
  1575. configure:88668: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1576. configure:88640: checking for strfmon
  1577. configure:88668: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1578. configure:88652:6: warning: conflicting types for built-in function 'strfmon'
  1579. configure:88640: checking for nice
  1580. configure:88668: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1581. configure:88640: checking for fpclass
  1582. configure:88668: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1583. /tmp/ccC8M75r.o: In function `main':
  1584. /home/partha/partha_new/Downloads/php-5.3.8/configure:88662: undefined reference to `fpclass'
  1585. collect2: ld returned 1 exit status
  1586. configure: failed program was:
  1587. #line 88645 "configure"
  1588. #include "confdefs.h"
  1589. /* System header to define __stub macros and hopefully few prototypes,
  1590. which can conflict with char fpclass(); below. */
  1591. #include <assert.h>
  1592. /* Override any gcc2 internal prototype to avoid an error. */
  1593. /* We use char because int might match the return type of a gcc2
  1594. builtin and then its argument prototype would still apply. */
  1595. char fpclass();
  1596.  
  1597. int main() {
  1598.  
  1599. /* The GNU C library defines this for functions which it implements
  1600. to always fail with ENOSYS. Some functions are actually named
  1601. something starting with __ and the normal name is an alias. */
  1602. #if defined (__stub_fpclass) || defined (__stub___fpclass)
  1603. choke me
  1604. #else
  1605. fpclass();
  1606. #endif
  1607.  
  1608. ; return 0; }
  1609. configure:88640: checking for isinf
  1610. configure:88668: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1611. configure:88652:6: warning: conflicting types for built-in function 'isinf'
  1612. configure:88640: checking for isnan
  1613. configure:88668: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1614. configure:88652:6: warning: conflicting types for built-in function 'isnan'
  1615. configure:88640: checking for mempcpy
  1616. configure:88668: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1617. configure:88652:6: warning: conflicting types for built-in function 'mempcpy'
  1618. configure:88640: checking for strpncpy
  1619. configure:88668: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1620. /tmp/ccnUq2ds.o: In function `main':
  1621. /home/partha/partha_new/Downloads/php-5.3.8/configure:88662: undefined reference to `strpncpy'
  1622. collect2: ld returned 1 exit status
  1623. configure: failed program was:
  1624. #line 88645 "configure"
  1625. #include "confdefs.h"
  1626. /* System header to define __stub macros and hopefully few prototypes,
  1627. which can conflict with char strpncpy(); below. */
  1628. #include <assert.h>
  1629. /* Override any gcc2 internal prototype to avoid an error. */
  1630. /* We use char because int might match the return type of a gcc2
  1631. builtin and then its argument prototype would still apply. */
  1632. char strpncpy();
  1633.  
  1634. int main() {
  1635.  
  1636. /* The GNU C library defines this for functions which it implements
  1637. to always fail with ENOSYS. Some functions are actually named
  1638. something starting with __ and the normal name is an alias. */
  1639. #if defined (__stub_strpncpy) || defined (__stub___strpncpy)
  1640. choke me
  1641. #else
  1642. strpncpy();
  1643. #endif
  1644.  
  1645. ; return 0; }
  1646. configure:88693: checking for working fnmatch
  1647. configure:88708: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1648. configure: In function 'main':
  1649. configure:88705:10: warning: incompatible implicit declaration of built-in function 'exit'
  1650. configure:88735: checking for fork
  1651. configure:88763: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1652. configure:88747:6: warning: conflicting types for built-in function 'fork'
  1653. configure:88793: checking if your OS can spawn processes with inherited handles
  1654. configure:88817: checking for res_nsearch
  1655. configure:88845: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1656. /tmp/ccH1bBof.o: In function `main':
  1657. /home/partha/partha_new/Downloads/php-5.3.8/configure:88839: undefined reference to `res_nsearch'
  1658. collect2: ld returned 1 exit status
  1659. configure: failed program was:
  1660. #line 88822 "configure"
  1661. #include "confdefs.h"
  1662. /* System header to define __stub macros and hopefully few prototypes,
  1663. which can conflict with char res_nsearch(); below. */
  1664. #include <assert.h>
  1665. /* Override any gcc2 internal prototype to avoid an error. */
  1666. /* We use char because int might match the return type of a gcc2
  1667. builtin and then its argument prototype would still apply. */
  1668. char res_nsearch();
  1669.  
  1670. int main() {
  1671.  
  1672. /* The GNU C library defines this for functions which it implements
  1673. to always fail with ENOSYS. Some functions are actually named
  1674. something starting with __ and the normal name is an alias. */
  1675. #if defined (__stub_res_nsearch) || defined (__stub___res_nsearch)
  1676. choke me
  1677. #else
  1678. res_nsearch();
  1679. #endif
  1680.  
  1681. ; return 0; }
  1682. configure:88863: checking for __res_nsearch
  1683. configure:88891: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1684. /tmp/ccMPoWZy.o: In function `main':
  1685. /home/partha/partha_new/Downloads/php-5.3.8/configure:88885: undefined reference to `__res_nsearch'
  1686. collect2: ld returned 1 exit status
  1687. configure: failed program was:
  1688. #line 88868 "configure"
  1689. #include "confdefs.h"
  1690. /* System header to define __stub macros and hopefully few prototypes,
  1691. which can conflict with char __res_nsearch(); below. */
  1692. #include <assert.h>
  1693. /* Override any gcc2 internal prototype to avoid an error. */
  1694. /* We use char because int might match the return type of a gcc2
  1695. builtin and then its argument prototype would still apply. */
  1696. char __res_nsearch();
  1697.  
  1698. int main() {
  1699.  
  1700. /* The GNU C library defines this for functions which it implements
  1701. to always fail with ENOSYS. Some functions are actually named
  1702. something starting with __ and the normal name is an alias. */
  1703. #if defined (__stub___res_nsearch) || defined (__stub_____res_nsearch)
  1704. choke me
  1705. #else
  1706. __res_nsearch();
  1707. #endif
  1708.  
  1709. ; return 0; }
  1710. configure:88929: checking for res_nsearch in -lresolv
  1711. configure:88948: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1712. /tmp/ccJBMENE.o: In function `main':
  1713. /home/partha/partha_new/Downloads/php-5.3.8/configure:88944: undefined reference to `res_nsearch'
  1714. collect2: ld returned 1 exit status
  1715. configure: failed program was:
  1716. #line 88937 "configure"
  1717. #include "confdefs.h"
  1718. /* Override any gcc2 internal prototype to avoid an error. */
  1719. /* We use char because int might match the return type of a gcc2
  1720. builtin and then its argument prototype would still apply. */
  1721. char res_nsearch();
  1722.  
  1723. int main() {
  1724. res_nsearch()
  1725. ; return 0; }
  1726. configure:88968: checking for __res_nsearch in -lresolv
  1727. configure:88987: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1728. configure:89023: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt -lresolv 1>&5
  1729. configure:89352: checking for dns_search
  1730. configure:89380: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1731. /tmp/ccZSRtRw.o: In function `main':
  1732. /home/partha/partha_new/Downloads/php-5.3.8/configure:89374: undefined reference to `dns_search'
  1733. collect2: ld returned 1 exit status
  1734. configure: failed program was:
  1735. #line 89357 "configure"
  1736. #include "confdefs.h"
  1737. /* System header to define __stub macros and hopefully few prototypes,
  1738. which can conflict with char dns_search(); below. */
  1739. #include <assert.h>
  1740. /* Override any gcc2 internal prototype to avoid an error. */
  1741. /* We use char because int might match the return type of a gcc2
  1742. builtin and then its argument prototype would still apply. */
  1743. char dns_search();
  1744.  
  1745. int main() {
  1746.  
  1747. /* The GNU C library defines this for functions which it implements
  1748. to always fail with ENOSYS. Some functions are actually named
  1749. something starting with __ and the normal name is an alias. */
  1750. #if defined (__stub_dns_search) || defined (__stub___dns_search)
  1751. choke me
  1752. #else
  1753. dns_search();
  1754. #endif
  1755.  
  1756. ; return 0; }
  1757. configure:89398: checking for __dns_search
  1758. configure:89426: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1759. /tmp/ccK81RMD.o: In function `main':
  1760. /home/partha/partha_new/Downloads/php-5.3.8/configure:89420: undefined reference to `__dns_search'
  1761. collect2: ld returned 1 exit status
  1762. configure: failed program was:
  1763. #line 89403 "configure"
  1764. #include "confdefs.h"
  1765. /* System header to define __stub macros and hopefully few prototypes,
  1766. which can conflict with char __dns_search(); below. */
  1767. #include <assert.h>
  1768. /* Override any gcc2 internal prototype to avoid an error. */
  1769. /* We use char because int might match the return type of a gcc2
  1770. builtin and then its argument prototype would still apply. */
  1771. char __dns_search();
  1772.  
  1773. int main() {
  1774.  
  1775. /* The GNU C library defines this for functions which it implements
  1776. to always fail with ENOSYS. Some functions are actually named
  1777. something starting with __ and the normal name is an alias. */
  1778. #if defined (__stub___dns_search) || defined (__stub_____dns_search)
  1779. choke me
  1780. #else
  1781. __dns_search();
  1782. #endif
  1783.  
  1784. ; return 0; }
  1785. configure:89464: checking for dns_search in -lresolv
  1786. configure:89483: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lresolv -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1787. /tmp/cchfUcaW.o: In function `main':
  1788. /home/partha/partha_new/Downloads/php-5.3.8/configure:89479: undefined reference to `dns_search'
  1789. collect2: ld returned 1 exit status
  1790. configure: failed program was:
  1791. #line 89472 "configure"
  1792. #include "confdefs.h"
  1793. /* Override any gcc2 internal prototype to avoid an error. */
  1794. /* We use char because int might match the return type of a gcc2
  1795. builtin and then its argument prototype would still apply. */
  1796. char dns_search();
  1797.  
  1798. int main() {
  1799. dns_search()
  1800. ; return 0; }
  1801. configure:89503: checking for __dns_search in -lresolv
  1802. configure:89522: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lresolv -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1803. /tmp/ccPnHFca.o: In function `main':
  1804. /home/partha/partha_new/Downloads/php-5.3.8/configure:89518: undefined reference to `__dns_search'
  1805. collect2: ld returned 1 exit status
  1806. configure: failed program was:
  1807. #line 89511 "configure"
  1808. #include "confdefs.h"
  1809. /* Override any gcc2 internal prototype to avoid an error. */
  1810. /* We use char because int might match the return type of a gcc2
  1811. builtin and then its argument prototype would still apply. */
  1812. char __dns_search();
  1813.  
  1814. int main() {
  1815. __dns_search()
  1816. ; return 0; }
  1817. configure:89600: checking for dns_search in -lbind
  1818. configure:89619: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lbind -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1819. /usr/bin/ld: cannot find -lbind
  1820. collect2: ld returned 1 exit status
  1821. configure: failed program was:
  1822. #line 89608 "configure"
  1823. #include "confdefs.h"
  1824. /* Override any gcc2 internal prototype to avoid an error. */
  1825. /* We use char because int might match the return type of a gcc2
  1826. builtin and then its argument prototype would still apply. */
  1827. char dns_search();
  1828.  
  1829. int main() {
  1830. dns_search()
  1831. ; return 0; }
  1832. configure:89639: checking for __dns_search in -lbind
  1833. configure:89658: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lbind -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1834. /usr/bin/ld: cannot find -lbind
  1835. collect2: ld returned 1 exit status
  1836. configure: failed program was:
  1837. #line 89647 "configure"
  1838. #include "confdefs.h"
  1839. /* Override any gcc2 internal prototype to avoid an error. */
  1840. /* We use char because int might match the return type of a gcc2
  1841. builtin and then its argument prototype would still apply. */
  1842. char __dns_search();
  1843.  
  1844. int main() {
  1845. __dns_search()
  1846. ; return 0; }
  1847. configure:89736: checking for dns_search in -lsocket
  1848. configure:89755: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lsocket -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1849. /usr/bin/ld: cannot find -lsocket
  1850. collect2: ld returned 1 exit status
  1851. configure: failed program was:
  1852. #line 89744 "configure"
  1853. #include "confdefs.h"
  1854. /* Override any gcc2 internal prototype to avoid an error. */
  1855. /* We use char because int might match the return type of a gcc2
  1856. builtin and then its argument prototype would still apply. */
  1857. char dns_search();
  1858.  
  1859. int main() {
  1860. dns_search()
  1861. ; return 0; }
  1862. configure:89775: checking for __dns_search in -lsocket
  1863. configure:89794: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lsocket -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1864. /usr/bin/ld: cannot find -lsocket
  1865. collect2: ld returned 1 exit status
  1866. configure: failed program was:
  1867. #line 89783 "configure"
  1868. #include "confdefs.h"
  1869. /* Override any gcc2 internal prototype to avoid an error. */
  1870. /* We use char because int might match the return type of a gcc2
  1871. builtin and then its argument prototype would still apply. */
  1872. char __dns_search();
  1873.  
  1874. int main() {
  1875. __dns_search()
  1876. ; return 0; }
  1877. configure:89887: checking for dn_expand
  1878. configure:89915: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1879. configure:90422: checking for dn_skipname
  1880. configure:90450: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1881. /tmp/ccXlEsOa.o: In function `main':
  1882. /home/partha/partha_new/Downloads/php-5.3.8/configure:90444: undefined reference to `dn_skipname'
  1883. collect2: ld returned 1 exit status
  1884. configure: failed program was:
  1885. #line 90427 "configure"
  1886. #include "confdefs.h"
  1887. /* System header to define __stub macros and hopefully few prototypes,
  1888. which can conflict with char dn_skipname(); below. */
  1889. #include <assert.h>
  1890. /* Override any gcc2 internal prototype to avoid an error. */
  1891. /* We use char because int might match the return type of a gcc2
  1892. builtin and then its argument prototype would still apply. */
  1893. char dn_skipname();
  1894.  
  1895. int main() {
  1896.  
  1897. /* The GNU C library defines this for functions which it implements
  1898. to always fail with ENOSYS. Some functions are actually named
  1899. something starting with __ and the normal name is an alias. */
  1900. #if defined (__stub_dn_skipname) || defined (__stub___dn_skipname)
  1901. choke me
  1902. #else
  1903. dn_skipname();
  1904. #endif
  1905.  
  1906. ; return 0; }
  1907. configure:90468: checking for __dn_skipname
  1908. configure:90496: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1909. configure:90959: checking for res_search
  1910. configure:90987: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1911. configure:91490: checking whether atof() accepts NAN
  1912. configure:91521: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1913. configure:91548: checking whether atof() accepts INF
  1914. configure:91582: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1915. configure:91609: checking whether HUGE_VAL == INF
  1916. configure:91643: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1917. configure:91670: checking whether HUGE_VAL + -HUGEVAL == NAN
  1918. configure:91706: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1919. configure:91733: checking whether strptime() declaration fails
  1920. configure:91755: gcc -c -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  1921. configure:91783: checking for wchar.h
  1922. configure:91793: gcc -E conftest.c >/dev/null 2>conftest.out
  1923. configure:91822: checking for mblen
  1924. configure:91850: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1925. configure:91877: checking for mbrlen
  1926. configure:91905: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1927. configure:91877: checking for mbsinit
  1928. configure:91905: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden -L/usr/lib conftest.c -lresolv -lcrypt -lreadline -lncurses -lrt -lmcrypt -lltdl -lgmp -lfreetype -lpng -lz -ljpeg -lenchant -lgdbm -lcurl -lbz2 -lz -lrt -lm -ldl -lnsl -lxml2 -lz -lm -lssl -lcrypto -ldl -lcurl -lxml2 -lz -lm -lssl -lcrypto -ldl -lm -licui18n -licuuc -licudata -lm -licuio -lxml2 -lz -lm -lxml2 -lz -lm -lcrypt 1>&5
  1929. configure:91930: checking for mbstate_t
  1930. configure:91949: gcc -c -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  1931. configure:91977: checking for atomic.h
  1932. configure:91987: gcc -E conftest.c >/dev/null 2>conftest.out
  1933. configure:91983:20: fatal error: atomic.h: No such file or directory
  1934. compilation terminated.
  1935. configure: failed program was:
  1936. #line 91982 "configure"
  1937. #include "confdefs.h"
  1938. #include <atomic.h>
  1939. configure:92377: checking for Sybase-CT support
  1940. configure:94786: checking whether to enable System V IPC support
  1941. configure:95166: checking whether to enable System V semaphore support
  1942. configure:95556: checking whether to enable System V shared memory support
  1943. configure:95900: checking for TIDY support
  1944. configure:96552: checking whether to enable tokenizer support
  1945. configure:96898: checking whether to enable WDDX support
  1946. configure:96967: checking libexpat dir for WDDX
  1947. configure:97747: checking whether to enable XML support
  1948. configure:97816: checking libexpat install dir
  1949. configure:97845: checking for xml2-config path
  1950. configure:98003: checking whether libxml build works
  1951. configure:98566: checking whether to enable XMLReader support
  1952. configure:98639: checking for xml2-config path
  1953. configure:98797: checking whether libxml build works
  1954. configure:99206: checking for XMLRPC-EPI support
  1955. configure:99275: checking libexpat dir for XMLRPC-EPI
  1956. configure:99298: checking iconv dir for XMLRPC-EPI
  1957. configure:101738: checking whether to enable XMLWriter support
  1958. configure:101811: checking for xml2-config path
  1959. configure:101969: checking whether libxml build works
  1960. configure:102346: checking for XSL support
  1961. configure:103022: checking for zip archive read/writesupport
  1962. configure:103091: checking pcre install prefix
  1963. configure:103135: checking for the location of zlib
  1964. configure:103275:29: fatal error: main/php_config.h: No such file or directory
  1965. compilation terminated.
  1966. configure:103294:29: fatal error: main/php_config.h: No such file or directory
  1967. compilation terminated.
  1968. configure:103660: checking whether to enable compressed protocol support in mysqlnd
  1969. configure:104051: checking whether int8 exists
  1970. configure:104098: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  1971. configure: In function 'main':
  1972. configure:104092:29: error: 'int8' undeclared (first use in this function)
  1973. configure:104092:29: note: each undeclared identifier is reported only once for each function it appears in
  1974. configure: failed program was:
  1975. #line 104068 "configure"
  1976. #include "confdefs.h"
  1977. #include <stdio.h>
  1978. #if STDC_HEADERS
  1979. #include <stdlib.h>
  1980. #include <stddef.h>
  1981. #endif
  1982. #ifdef HAVE_INTTYPES_H
  1983. #include <inttypes.h>
  1984. #endif
  1985. #ifdef HAVE_UNISTD_H
  1986. #include <unistd.h>
  1987. #endif
  1988. #ifdef HAVE_SYS_TYPES_H
  1989. #include <sys/types.h>
  1990. #endif
  1991. #ifdef HAVE_STDINT_H
  1992. #include <stdint.h>
  1993. #endif
  1994.  
  1995.  
  1996. int main()
  1997. {
  1998. FILE *fp = fopen("conftestval", "w");
  1999. if (!fp) return(1);
  2000. fprintf(fp, "%d\n", sizeof(int8));
  2001. return(0);
  2002. }
  2003.  
  2004. configure:104051: checking whether uint8 exists
  2005. configure:104098: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2006. configure: In function 'main':
  2007. configure:104092:29: error: 'uint8' undeclared (first use in this function)
  2008. configure:104092:29: note: each undeclared identifier is reported only once for each function it appears in
  2009. configure: failed program was:
  2010. #line 104068 "configure"
  2011. #include "confdefs.h"
  2012. #include <stdio.h>
  2013. #if STDC_HEADERS
  2014. #include <stdlib.h>
  2015. #include <stddef.h>
  2016. #endif
  2017. #ifdef HAVE_INTTYPES_H
  2018. #include <inttypes.h>
  2019. #endif
  2020. #ifdef HAVE_UNISTD_H
  2021. #include <unistd.h>
  2022. #endif
  2023. #ifdef HAVE_SYS_TYPES_H
  2024. #include <sys/types.h>
  2025. #endif
  2026. #ifdef HAVE_STDINT_H
  2027. #include <stdint.h>
  2028. #endif
  2029.  
  2030.  
  2031. int main()
  2032. {
  2033. FILE *fp = fopen("conftestval", "w");
  2034. if (!fp) return(1);
  2035. fprintf(fp, "%d\n", sizeof(uint8));
  2036. return(0);
  2037. }
  2038.  
  2039. configure:104051: checking whether int16 exists
  2040. configure:104098: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2041. configure: In function 'main':
  2042. configure:104092:29: error: 'int16' undeclared (first use in this function)
  2043. configure:104092:29: note: each undeclared identifier is reported only once for each function it appears in
  2044. configure: failed program was:
  2045. #line 104068 "configure"
  2046. #include "confdefs.h"
  2047. #include <stdio.h>
  2048. #if STDC_HEADERS
  2049. #include <stdlib.h>
  2050. #include <stddef.h>
  2051. #endif
  2052. #ifdef HAVE_INTTYPES_H
  2053. #include <inttypes.h>
  2054. #endif
  2055. #ifdef HAVE_UNISTD_H
  2056. #include <unistd.h>
  2057. #endif
  2058. #ifdef HAVE_SYS_TYPES_H
  2059. #include <sys/types.h>
  2060. #endif
  2061. #ifdef HAVE_STDINT_H
  2062. #include <stdint.h>
  2063. #endif
  2064.  
  2065.  
  2066. int main()
  2067. {
  2068. FILE *fp = fopen("conftestval", "w");
  2069. if (!fp) return(1);
  2070. fprintf(fp, "%d\n", sizeof(int16));
  2071. return(0);
  2072. }
  2073.  
  2074. configure:104051: checking whether uint16 exists
  2075. configure:104098: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2076. configure: In function 'main':
  2077. configure:104092:29: error: 'uint16' undeclared (first use in this function)
  2078. configure:104092:29: note: each undeclared identifier is reported only once for each function it appears in
  2079. configure: failed program was:
  2080. #line 104068 "configure"
  2081. #include "confdefs.h"
  2082. #include <stdio.h>
  2083. #if STDC_HEADERS
  2084. #include <stdlib.h>
  2085. #include <stddef.h>
  2086. #endif
  2087. #ifdef HAVE_INTTYPES_H
  2088. #include <inttypes.h>
  2089. #endif
  2090. #ifdef HAVE_UNISTD_H
  2091. #include <unistd.h>
  2092. #endif
  2093. #ifdef HAVE_SYS_TYPES_H
  2094. #include <sys/types.h>
  2095. #endif
  2096. #ifdef HAVE_STDINT_H
  2097. #include <stdint.h>
  2098. #endif
  2099.  
  2100.  
  2101. int main()
  2102. {
  2103. FILE *fp = fopen("conftestval", "w");
  2104. if (!fp) return(1);
  2105. fprintf(fp, "%d\n", sizeof(uint16));
  2106. return(0);
  2107. }
  2108.  
  2109. configure:104051: checking whether int32 exists
  2110. configure:104098: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2111. configure: In function 'main':
  2112. configure:104092:29: error: 'int32' undeclared (first use in this function)
  2113. configure:104092:29: note: each undeclared identifier is reported only once for each function it appears in
  2114. configure: failed program was:
  2115. #line 104068 "configure"
  2116. #include "confdefs.h"
  2117. #include <stdio.h>
  2118. #if STDC_HEADERS
  2119. #include <stdlib.h>
  2120. #include <stddef.h>
  2121. #endif
  2122. #ifdef HAVE_INTTYPES_H
  2123. #include <inttypes.h>
  2124. #endif
  2125. #ifdef HAVE_UNISTD_H
  2126. #include <unistd.h>
  2127. #endif
  2128. #ifdef HAVE_SYS_TYPES_H
  2129. #include <sys/types.h>
  2130. #endif
  2131. #ifdef HAVE_STDINT_H
  2132. #include <stdint.h>
  2133. #endif
  2134.  
  2135.  
  2136. int main()
  2137. {
  2138. FILE *fp = fopen("conftestval", "w");
  2139. if (!fp) return(1);
  2140. fprintf(fp, "%d\n", sizeof(int32));
  2141. return(0);
  2142. }
  2143.  
  2144. configure:104051: checking whether uint32 exists
  2145. configure:104098: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2146. configure: In function 'main':
  2147. configure:104092:29: error: 'uint32' undeclared (first use in this function)
  2148. configure:104092:29: note: each undeclared identifier is reported only once for each function it appears in
  2149. configure: failed program was:
  2150. #line 104068 "configure"
  2151. #include "confdefs.h"
  2152. #include <stdio.h>
  2153. #if STDC_HEADERS
  2154. #include <stdlib.h>
  2155. #include <stddef.h>
  2156. #endif
  2157. #ifdef HAVE_INTTYPES_H
  2158. #include <inttypes.h>
  2159. #endif
  2160. #ifdef HAVE_UNISTD_H
  2161. #include <unistd.h>
  2162. #endif
  2163. #ifdef HAVE_SYS_TYPES_H
  2164. #include <sys/types.h>
  2165. #endif
  2166. #ifdef HAVE_STDINT_H
  2167. #include <stdint.h>
  2168. #endif
  2169.  
  2170.  
  2171. int main()
  2172. {
  2173. FILE *fp = fopen("conftestval", "w");
  2174. if (!fp) return(1);
  2175. fprintf(fp, "%d\n", sizeof(uint32));
  2176. return(0);
  2177. }
  2178.  
  2179. configure:104051: checking whether uchar exists
  2180. configure:104098: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2181. configure: In function 'main':
  2182. configure:104092:29: error: 'uchar' undeclared (first use in this function)
  2183. configure:104092:29: note: each undeclared identifier is reported only once for each function it appears in
  2184. configure: failed program was:
  2185. #line 104068 "configure"
  2186. #include "confdefs.h"
  2187. #include <stdio.h>
  2188. #if STDC_HEADERS
  2189. #include <stdlib.h>
  2190. #include <stddef.h>
  2191. #endif
  2192. #ifdef HAVE_INTTYPES_H
  2193. #include <inttypes.h>
  2194. #endif
  2195. #ifdef HAVE_UNISTD_H
  2196. #include <unistd.h>
  2197. #endif
  2198. #ifdef HAVE_SYS_TYPES_H
  2199. #include <sys/types.h>
  2200. #endif
  2201. #ifdef HAVE_STDINT_H
  2202. #include <stdint.h>
  2203. #endif
  2204.  
  2205.  
  2206. int main()
  2207. {
  2208. FILE *fp = fopen("conftestval", "w");
  2209. if (!fp) return(1);
  2210. fprintf(fp, "%d\n", sizeof(uchar));
  2211. return(0);
  2212. }
  2213.  
  2214. configure:104051: checking whether ulong exists
  2215. configure:104098: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2216. configure:104051: checking whether int8_t exists
  2217. configure:104098: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2218. configure:104051: checking whether uint8_t exists
  2219. configure:104098: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2220. configure:104051: checking whether int16_t exists
  2221. configure:104098: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2222. configure:104051: checking whether uint16_t exists
  2223. configure:104098: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2224. configure:104051: checking whether int32_t exists
  2225. configure:104098: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2226. configure:104051: checking whether uint32_t exists
  2227. configure:104098: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2228. configure:104051: checking whether int64_t exists
  2229. configure:104098: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2230. configure:104051: checking whether uint64_t exists
  2231. configure:104098: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2232. configure:104359: checking whether to install PEAR
  2233. configure:104461: checking for bison version
  2234. configure:104517: checking for inttypes.h
  2235. configure:104517: checking for stdint.h
  2236. configure:104517: checking for limits.h
  2237. configure:104517: checking for malloc.h
  2238. configure:104527: gcc -E conftest.c >/dev/null 2>conftest.out
  2239. configure:104517: checking for string.h
  2240. configure:104517: checking for unistd.h
  2241. configure:104517: checking for stdarg.h
  2242. configure:104517: checking for sys/types.h
  2243. configure:104517: checking for sys/time.h
  2244. configure:104517: checking for signal.h
  2245. configure:104517: checking for unix.h
  2246. configure:104517: checking for stdlib.h
  2247. configure:104517: checking for dlfcn.h
  2248. configure:104555: checking for size_t
  2249. configure:104588: checking return type of signal handlers
  2250. configure:104610: gcc -c -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2251. configure:104634: checking for uint
  2252. configure:104667: checking for ulong
  2253. configure:104702: checking for int32_t
  2254. configure:104723: gcc -c -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2255. configure:104742: checking for uint32_t
  2256. configure:104763: gcc -c -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2257. configure:104782: checking for vprintf
  2258. configure:104887: checking for 8-bit clean memcmp
  2259. configure:104925: checking for working alloca.h
  2260. configure:104958: checking for alloca
  2261. configure:105159: checking for memcpy
  2262. configure:105159: checking for strdup
  2263. configure:105159: checking for getpid
  2264. configure:105187: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2265. configure:105159: checking for kill
  2266. configure:105187: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2267. configure:105159: checking for strtod
  2268. configure:105187: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2269. configure:105159: checking for strtol
  2270. configure:105187: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2271. configure:105159: checking for finite
  2272. configure:105187: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2273. configure:105171:6: warning: conflicting types for built-in function 'finite'
  2274. configure:105159: checking for fpclass
  2275. configure:105159: checking for sigsetjmp
  2276. configure:105187: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2277. /tmp/ccGlQ1cx.o: In function `main':
  2278. /home/partha/partha_new/Downloads/php-5.3.8/configure:105181: undefined reference to `sigsetjmp'
  2279. collect2: ld returned 1 exit status
  2280. configure: failed program was:
  2281. #line 105164 "configure"
  2282. #include "confdefs.h"
  2283. /* System header to define __stub macros and hopefully few prototypes,
  2284. which can conflict with char sigsetjmp(); below. */
  2285. #include <assert.h>
  2286. /* Override any gcc2 internal prototype to avoid an error. */
  2287. /* We use char because int might match the return type of a gcc2
  2288. builtin and then its argument prototype would still apply. */
  2289. char sigsetjmp();
  2290.  
  2291. int main() {
  2292.  
  2293. /* The GNU C library defines this for functions which it implements
  2294. to always fail with ENOSYS. Some functions are actually named
  2295. something starting with __ and the normal name is an alias. */
  2296. #if defined (__stub_sigsetjmp) || defined (__stub___sigsetjmp)
  2297. choke me
  2298. #else
  2299. sigsetjmp();
  2300. #endif
  2301.  
  2302. ; return 0; }
  2303. configure:105213: checking whether sprintf is broken
  2304. configure:105228: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2305. configure: In function 'main':
  2306. configure:105225:22: warning: incompatible implicit declaration of built-in function 'exit'
  2307. configure:105225:27: warning: incompatible implicit declaration of built-in function 'sprintf'
  2308. configure:105262: checking for finite
  2309. configure:105262: checking for isfinite
  2310. configure:105290: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2311. /tmp/ccgw2QqM.o: In function `main':
  2312. /home/partha/partha_new/Downloads/php-5.3.8/configure:105284: undefined reference to `isfinite'
  2313. collect2: ld returned 1 exit status
  2314. configure: failed program was:
  2315. #line 105267 "configure"
  2316. #include "confdefs.h"
  2317. /* System header to define __stub macros and hopefully few prototypes,
  2318. which can conflict with char isfinite(); below. */
  2319. #include <assert.h>
  2320. /* Override any gcc2 internal prototype to avoid an error. */
  2321. /* We use char because int might match the return type of a gcc2
  2322. builtin and then its argument prototype would still apply. */
  2323. char isfinite();
  2324.  
  2325. int main() {
  2326.  
  2327. /* The GNU C library defines this for functions which it implements
  2328. to always fail with ENOSYS. Some functions are actually named
  2329. something starting with __ and the normal name is an alias. */
  2330. #if defined (__stub_isfinite) || defined (__stub___isfinite)
  2331. choke me
  2332. #else
  2333. isfinite();
  2334. #endif
  2335.  
  2336. ; return 0; }
  2337. configure:105262: checking for isinf
  2338. configure:105262: checking for isnan
  2339. configure:105317: checking whether fp_except is defined
  2340. configure:105334: gcc -c -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2341. configure:105325:27: fatal error: floatingpoint.h: No such file or directory
  2342. compilation terminated.
  2343. configure: failed program was:
  2344. #line 105323 "configure"
  2345. #include "confdefs.h"
  2346.  
  2347. #include <floatingpoint.h>
  2348.  
  2349. int main() {
  2350.  
  2351. fp_except x = (fp_except) 0;
  2352.  
  2353. ; return 0; }
  2354. configure:105361: checking for usable _FPU_SETCW
  2355. configure:105383: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2356. configure:105404: checking for usable fpsetprec
  2357. configure:105425: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2358. configure:105408:32: fatal error: machine/ieeefp.h: No such file or directory
  2359. compilation terminated.
  2360. configure: failed program was:
  2361. #line 105406 "configure"
  2362. #include "confdefs.h"
  2363.  
  2364. #include <machine/ieeefp.h>
  2365.  
  2366. int main() {
  2367.  
  2368. fp_prec_t fpu_oldprec;
  2369. volatile double result;
  2370. double a = 2877.0;
  2371. volatile double b = 1000000.0;
  2372.  
  2373. fpu_oldprec = fpgetprec();
  2374. fpsetprec(FP_PD);
  2375. result = a / b;
  2376. fpsetprec(fpu_oldprec);
  2377.  
  2378. ; return 0; }
  2379. configure:105446: checking for usable _controlfp
  2380. configure:105467: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2381. configure: In function 'main':
  2382. configure:105460:16: error: '_PC_53' undeclared (first use in this function)
  2383. configure:105460:16: note: each undeclared identifier is reported only once for each function it appears in
  2384. configure:105460:24: error: '_MCW_PC' undeclared (first use in this function)
  2385. configure: failed program was:
  2386. #line 105448 "configure"
  2387. #include "confdefs.h"
  2388.  
  2389. #include <float.h>
  2390.  
  2391. int main() {
  2392.  
  2393. unsigned int fpu_oldcw;
  2394. volatile double result;
  2395. double a = 2877.0;
  2396. volatile double b = 1000000.0;
  2397.  
  2398. fpu_oldcw = _controlfp(0, 0);
  2399. _controlfp(_PC_53, _MCW_PC);
  2400. result = a / b;
  2401. _controlfp(fpu_oldcw, _MCW_PC);
  2402.  
  2403. ; return 0; }
  2404. configure:105488: checking for usable _controlfp_s
  2405. configure:105510: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2406. configure: In function 'main':
  2407. configure:105503:27: error: '_PC_53' undeclared (first use in this function)
  2408. configure:105503:27: note: each undeclared identifier is reported only once for each function it appears in
  2409. configure:105503:35: error: '_MCW_PC' undeclared (first use in this function)
  2410. configure: failed program was:
  2411. #line 105490 "configure"
  2412. #include "confdefs.h"
  2413.  
  2414. #include <float.h>
  2415.  
  2416. int main() {
  2417.  
  2418. unsigned int fpu_oldcw, fpu_cw;
  2419. volatile double result;
  2420. double a = 2877.0;
  2421. volatile double b = 1000000.0;
  2422.  
  2423. _controlfp_s(&fpu_cw, 0, 0);
  2424. fpu_oldcw = fpu_cw;
  2425. _controlfp_s(&fpu_cw, _PC_53, _MCW_PC);
  2426. result = a / b;
  2427. _controlfp_s(&fpu_cw, fpu_oldcw, _MCW_PC);
  2428.  
  2429. ; return 0; }
  2430. configure:105531: checking whether FPU control word can be manipulated by inline assembler
  2431. configure:105555: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2432. configure:105577: checking whether double cast to long preserves least significant bits
  2433. configure:105609: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2434. configure: In function 'main':
  2435. configure:105595:4: warning: incompatible implicit declaration of built-in function 'exit'
  2436. configure:105601:4: warning: incompatible implicit declaration of built-in function 'exit'
  2437. configure:105604:2: warning: incompatible implicit declaration of built-in function 'exit'
  2438. configure: failed program was:
  2439. #line 105585 "configure"
  2440. #include "confdefs.h"
  2441.  
  2442. #include <limits.h>
  2443.  
  2444. int main()
  2445. {
  2446. if (sizeof(long) == 4) {
  2447. double d = (double) LONG_MIN * LONG_MIN + 2e9;
  2448.  
  2449. if ((long) d == 2e9 && (long) -d == -2e9) {
  2450. exit(0);
  2451. }
  2452. } else if (sizeof(long) == 8) {
  2453. double correct = 18e18 - ((double) LONG_MIN * -2); /* Subtract ULONG_MAX + 1 */
  2454.  
  2455. if ((long) 18e18 == correct) { /* On 64-bit, only check between LONG_MAX and ULONG_MAX */
  2456. exit(0);
  2457. }
  2458. }
  2459. exit(1);
  2460. }
  2461.  
  2462. configure:105635: checking for dlfcn.h
  2463. configure:105673: checking whether dlsym() requires a leading underscore in symbol names
  2464. configure:105743: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2465. configure: In function 'main':
  2466. configure:105739:5: warning: incompatible implicit declaration of built-in function 'exit'
  2467. /tmp/ccIMdw9x.o: In function `main':
  2468. /home/partha/partha_new/Downloads/php-5.3.8/configure:105727: undefined reference to `dlopen'
  2469. /home/partha/partha_new/Downloads/php-5.3.8/configure:105732: undefined reference to `dlsym'
  2470. /home/partha/partha_new/Downloads/php-5.3.8/configure:105737: undefined reference to `dlerror'
  2471. /home/partha/partha_new/Downloads/php-5.3.8/configure:105733: undefined reference to `dlsym'
  2472. collect2: ld returned 1 exit status
  2473. configure:105826: checking virtual machine dispatch method
  2474. configure:105830: checking whether to enable thread-safety
  2475. configure:105834: checking whether to enable inline optimization for GCC
  2476. configure:105838: checking whether to enable Zend debugging
  2477. configure:105842: checking whether to enable Zend multibyte
  2478. configure:105915: checking for inline
  2479. configure:105929: gcc -c -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2480. configure:105958: checking target system is Darwin
  2481. configure:105970: checking for MM alignment and log values
  2482. configure:106014: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2483. configure: In function 'main':
  2484. configure:106009:3: warning: incompatible implicit declaration of built-in function 'exit'
  2485. configure:106039: checking for memory allocation using mmap(MAP_ANON)
  2486. configure:106083: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2487. configure:106105: checking for memory allocation using mmap(/dev/zero)
  2488. configure:106159: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2489. configure:106183: checking for mremap
  2490. configure:106211: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2491. configure:106278: checking for stdarg.h
  2492. configure:107309: checking build system type
  2493. configure:107338: checking for ld used by gcc
  2494. configure:107410: checking if the linker (/usr/bin/ld) is GNU ld
  2495. configure:107430: checking for /usr/bin/ld option to reload object files
  2496. configure:107455: checking for BSD-compatible nm
  2497. configure:107508: checking how to recognize dependent libraries
  2498. configure:107700: checking for object suffix
  2499. configure:107706: gcc -c -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2500. configure:107726: checking for executable suffix
  2501. configure:107736: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2502. configure:107958: checking how to run the C++ preprocessor
  2503. configure:108006: checking the maximum length of command line arguments
  2504. configure:108128: checking command to parse /usr/bin/nm -B output from gcc object
  2505. configure:108232: gcc -c -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2506. configure:108235: /usr/bin/nm -B conftest.o | sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' > conftest.nm
  2507. configure:108286: gcc -o conftest -I/usr/include -g -O2 -fvisibility=hidden conftest.c conftstm.o 1>&5
  2508. configure:108326: checking for objdir
  2509. configure:108392: checking for ar
  2510. configure:108459: checking for ranlib
  2511. configure:108526: checking for strip
  2512. configure:109082: checking if gcc supports -fno-rtti -fno-exceptions
  2513. configure:109099: gcc -c -I/usr/include -g -O2 -fvisibility=hidden -fno-rtti -fno-exceptions conftest.c 1>&5
  2514. cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
  2515. configure:109103: $? = 0
  2516. configure:109132: checking for gcc option to produce PIC
  2517. configure:109379: checking if gcc PIC flag -fPIC works
  2518. configure:109396: gcc -c -I/usr/include -g -O2 -fvisibility=hidden -fPIC -DPIC conftest.c 1>&5
  2519. configure:109400: $? = 0
  2520. configure:109442: checking if gcc static flag -static works
  2521. configure:109480: checking if gcc supports -c -o file.o
  2522. configure:109500: gcc -c -I/usr/include -g -O2 -fvisibility=hidden -o out/conftest2.o conftest.c 1>&5
  2523. configure:109504: $? = 0
  2524. configure:109551: checking whether the gcc linker (/usr/bin/ld) supports shared libraries
  2525. configure:110495: checking whether -lc should be explicitly linked in
  2526. configure:110499: gcc -c -I/usr/include -g -O2 -fvisibility=hidden conftest.c 1>&5
  2527. configure:110513: gcc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2>&1 | grep -lc >/dev/null 2>&1
  2528. configure:110532: checking dynamic linker characteristics
  2529. configure:111157: checking how to hardcode library paths into programs
  2530. configure:111195: checking whether stripping libraries is possible
  2531. configure:111785: checking if libtool supports shared libraries
  2532. configure:111789: checking whether to build shared libraries
  2533. configure:111812: checking whether to build static libraries
  2534. configure:112498: checking for ld used by c++
  2535. configure:112570: checking if the linker (/usr/bin/ld) is GNU ld
  2536. configure:112636: checking whether the c++ linker (/usr/bin/ld) supports shared libraries
  2537. configure:113545: c++ -c -g -O2 conftest.cpp 1>&5
  2538. configure:113701: checking for c++ option to produce PIC
  2539. configure:113998: checking if c++ PIC flag -fPIC works
  2540. configure:114015: c++ -c -g -O2 -fPIC -DPIC conftest.cpp 1>&5
  2541. configure:114019: $? = 0
  2542. configure:114061: checking if c++ static flag -static works
  2543. configure:114099: checking if c++ supports -c -o file.o
  2544. configure:114119: c++ -c -g -O2 -o out/conftest2.o conftest.cpp 1>&5
  2545. configure:114123: $? = 0
  2546. configure:114170: checking whether the c++ linker (/usr/bin/ld) supports shared libraries
  2547. configure:114253: checking dynamic linker characteristics
  2548. configure:114826: checking how to hardcode library paths into programs
  2549.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement