-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.log
executable file
·28050 lines (28026 loc) · 855 KB
/
config.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by PHP configure 8.3.0-dev, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ ./configure --prefix=/opt/php/php8 --enable-cli --enable-fpm --enable-intl --enable-mbstring --enable-opcache --enable-sockets --enable-soap --with-curl --with-freetype --with-fpm-user=www-data --with-fpm-group=www-data --with-jpeg --with-mysql-sock --with-mysqli --with-openssl --with-pdo-mysql --with-pgsql --with-xsl --with-zlib
## --------- ##
## Platform. ##
## --------- ##
hostname = cs-332356557847-default
uname -m = x86_64
uname -r = 5.15.120+
uname -s = Linux
uname -v = #1 SMP Wed Aug 9 09:14:11 UTC 2023
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = x86_64
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
## ----------- ##
## Core tests. ##
## ----------- ##
configure:3485: checking for grep that handles long lines and -e
configure:3543: result: /usr/bin/grep
configure:3548: checking for egrep
configure:3610: result: /usr/bin/grep -E
configure:3615: checking for a sed that does not truncate output
configure:3679: result: /usr/bin/sed
configure:3762: checking build system type
configure:3776: result: x86_64-pc-linux-gnu
configure:3796: checking host system type
configure:3809: result: x86_64-pc-linux-gnu
configure:3829: checking target system type
configure:3842: result: x86_64-pc-linux-gnu
configure:4003: checking for pkg-config
configure:4021: found /usr/bin/pkg-config
configure:4033: result: /usr/bin/pkg-config
configure:4058: checking pkg-config is at least version 0.9.0
configure:4061: result: yes
configure:4123: checking for cc
configure:4139: found /usr/bin/cc
configure:4150: result: cc
configure:4181: checking for C compiler version
configure:4190: cc --version >&5
cc (Debian 10.2.1-6) 10.2.1 20210110
Copyright (C) 2020 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:4201: $? = 0
configure:4190: cc -v >&5
Using built-in specs.
COLLECT_GCC=cc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 10.2.1-6' --with-bugurl=file:///usr/share/doc/gcc-10/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-10 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-10-Km9U7s/gcc-10-10.2.1/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-10-Km9U7s/gcc-10-10.2.1/debian/tmp-gcn/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-mutex
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 10.2.1 20210110 (Debian 10.2.1-6)
... rest of stderr output deleted ...
configure:4201: $? = 0
configure:4190: cc -V >&5
cc: error: unrecognized command-line option '-V'
cc: fatal error: no input files
compilation terminated.
configure:4201: $? = 1
configure:4190: cc -qversion >&5
cc: error: unrecognized command-line option '-qversion'; did you mean '--version'?
cc: fatal error: no input files
compilation terminated.
configure:4201: $? = 1
configure:4221: checking whether the C compiler works
configure:4243: cc conftest.c >&5
configure:4247: $? = 0
configure:4295: result: yes
configure:4298: checking for C compiler default output file name
configure:4300: result: a.out
configure:4306: checking for suffix of executables
configure:4313: cc -o conftest conftest.c >&5
configure:4317: $? = 0
configure:4339: result:
configure:4361: checking whether we are cross compiling
configure:4369: cc -o conftest conftest.c >&5
configure:4373: $? = 0
configure:4380: ./conftest
configure:4384: $? = 0
configure:4399: result: no
configure:4404: checking for suffix of object files
configure:4426: cc -c conftest.c >&5
configure:4430: $? = 0
configure:4451: result: o
configure:4455: checking whether we are using the GNU C compiler
configure:4474: cc -c conftest.c >&5
configure:4474: $? = 0
configure:4483: result: yes
configure:4492: checking whether cc accepts -g
configure:4512: cc -c -g conftest.c >&5
configure:4512: $? = 0
configure:4553: result: yes
configure:4570: checking for cc option to accept ISO C89
configure:4633: cc -c -g -O2 conftest.c >&5
configure:4633: $? = 0
configure:4646: result: none needed
configure:4672: checking how to run the C preprocessor
configure:4703: cc -E conftest.c
configure:4703: $? = 0
configure:4717: cc -E conftest.c
conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory
9 | #include <ac_nonexistent.h>
| ^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:4717: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PHP"
| #define PACKAGE_TARNAME "php"
| #define PACKAGE_VERSION "8.3.0-dev"
| #define PACKAGE_STRING "PHP 8.3.0-dev"
| #define PACKAGE_BUGREPORT "https://github.com/php/php-src/issues"
| #define PACKAGE_URL "https://www.php.net"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:4742: result: cc -E
configure:4762: cc -E conftest.c
configure:4762: $? = 0
configure:4776: cc -E conftest.c
conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory
9 | #include <ac_nonexistent.h>
| ^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:4776: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PHP"
| #define PACKAGE_TARNAME "php"
| #define PACKAGE_VERSION "8.3.0-dev"
| #define PACKAGE_STRING "PHP 8.3.0-dev"
| #define PACKAGE_BUGREPORT "https://github.com/php/php-src/issues"
| #define PACKAGE_URL "https://www.php.net"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:4807: checking for icc
configure:4816: result: no
configure:4830: checking for suncc
configure:4839: result: no
configure:4854: checking for cc option to accept ISO C99
configure:5003: cc -c -g -O2 conftest.c >&5
configure:5003: $? = 0
configure:5016: result: none needed
configure:5036: checking how to run the C preprocessor
configure:5106: result: cc -E
configure:5126: cc -E conftest.c
configure:5126: $? = 0
configure:5140: cc -E conftest.c
conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory
9 | #include <ac_nonexistent.h>
| ^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:5140: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PHP"
| #define PACKAGE_TARNAME "php"
| #define PACKAGE_VERSION "8.3.0-dev"
| #define PACKAGE_STRING "PHP 8.3.0-dev"
| #define PACKAGE_BUGREPORT "https://github.com/php/php-src/issues"
| #define PACKAGE_URL "https://www.php.net"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:5168: checking for ANSI C header files
configure:5188: cc -c -g -O2 conftest.c >&5
configure:5188: $? = 0
configure:5261: cc -o conftest -g -O2 conftest.c >&5
configure:5261: $? = 0
configure:5261: ./conftest
configure:5261: $? = 0
configure:5272: result: yes
configure:5285: checking for sys/types.h
configure:5285: cc -c -g -O2 conftest.c >&5
configure:5285: $? = 0
configure:5285: result: yes
configure:5285: checking for sys/stat.h
configure:5285: cc -c -g -O2 conftest.c >&5
configure:5285: $? = 0
configure:5285: result: yes
configure:5285: checking for stdlib.h
configure:5285: cc -c -g -O2 conftest.c >&5
configure:5285: $? = 0
configure:5285: result: yes
configure:5285: checking for string.h
configure:5285: cc -c -g -O2 conftest.c >&5
configure:5285: $? = 0
configure:5285: result: yes
configure:5285: checking for memory.h
configure:5285: cc -c -g -O2 conftest.c >&5
configure:5285: $? = 0
configure:5285: result: yes
configure:5285: checking for strings.h
configure:5285: cc -c -g -O2 conftest.c >&5
configure:5285: $? = 0
configure:5285: result: yes
configure:5285: checking for inttypes.h
configure:5285: cc -c -g -O2 conftest.c >&5
configure:5285: $? = 0
configure:5285: result: yes
configure:5285: checking for stdint.h
configure:5285: cc -c -g -O2 conftest.c >&5
configure:5285: $? = 0
configure:5285: result: yes
configure:5285: checking for unistd.h
configure:5285: cc -c -g -O2 conftest.c >&5
configure:5285: $? = 0
configure:5285: result: yes
configure:5298: checking minix/config.h usability
configure:5298: cc -c -g -O2 conftest.c >&5
conftest.c:52:10: fatal error: minix/config.h: No such file or directory
52 | #include <minix/config.h>
| ^~~~~~~~~~~~~~~~
compilation terminated.
configure:5298: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PHP"
| #define PACKAGE_TARNAME "php"
| #define PACKAGE_VERSION "8.3.0-dev"
| #define PACKAGE_STRING "PHP 8.3.0-dev"
| #define PACKAGE_BUGREPORT "https://github.com/php/php-src/issues"
| #define PACKAGE_URL "https://www.php.net"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <minix/config.h>
configure:5298: result: no
configure:5298: checking minix/config.h presence
configure:5298: cc -E conftest.c
conftest.c:19:10: fatal error: minix/config.h: No such file or directory
19 | #include <minix/config.h>
| ^~~~~~~~~~~~~~~~
compilation terminated.
configure:5298: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PHP"
| #define PACKAGE_TARNAME "php"
| #define PACKAGE_VERSION "8.3.0-dev"
| #define PACKAGE_STRING "PHP 8.3.0-dev"
| #define PACKAGE_BUGREPORT "https://github.com/php/php-src/issues"
| #define PACKAGE_URL "https://www.php.net"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h. */
| #include <minix/config.h>
configure:5298: result: no
configure:5298: checking for minix/config.h
configure:5298: result: no
configure:5319: checking whether it is safe to define __EXTENSIONS__
configure:5337: cc -c -g -O2 conftest.c >&5
configure:5337: $? = 0
configure:5344: result: yes
configure:5358: checking whether ln -s works
configure:5362: result: yes
configure:5425: checking for system library directory
configure:5440: result: lib
configure:5449: checking whether to enable runpaths
configure:5463: result: yes
configure:5470: checking if compiler supports -Wl,-rpath,
configure:5489: cc -o conftest -g -O2 conftest.c -Wl,-rpath,/usr/lib >&5
configure:5489: $? = 0
configure:5499: result: yes
configure:5551: checking for gawk
configure:5582: result: no
configure:5551: checking for nawk
configure:5568: found /usr/bin/nawk
configure:5579: result: nawk
configure:5602: checking if nawk is broken
configure:5609: result: no
configure:5621: checking for bison
configure:5637: found /usr/bin/bison
configure:5648: result: bison
configure:5661: checking for bison version
configure:5704: result: 3.7.5 (ok)
configure:5729: checking for re2c
configure:5745: found /usr/bin/re2c
configure:5756: result: re2c
configure:5768: checking for re2c version
configure:5796: result: 2.0.3 (ok)
configure:5821: checking for php
configure:5837: found /usr/bin/php
configure:5848: result: php
configure:5858: checking for php version
configure:5873: result: 7.4.33 (ok)
configure:5885: checking whether to enable computed goto gcc extension with re2c
configure:5899: result: no
configure:5967: checking whether C compiler accepts -fvisibility=hidden
configure:5986: cc -c -g -O2 -fvisibility=hidden conftest.c >&5
configure:5986: $? = 0
configure:5994: result: yes
configure:6020: checking whether to force non-PIC code in shared modules
configure:6034: result: no
configure:6039: checking whether we are using musl libc
configure:6049: result: no
configure:6054: checking whether to use -D_GNU_SOURCE cflag
configure:6057: result: yes
configure:6077: checking for global register variables support
configure:6131: cc -c -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
configure:6131: $? = 0
configure:6147: result: yes
configure:6150: checking whether __cpuid_count is available
configure:6172: cc -o conftest -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
configure:6172: $? = 0
configure:6184: result: yes
configure:6195: checking for pthreads_cflags
configure:6225: cc -o conftest -g -O2 -fvisibility=hidden -kthread -D_GNU_SOURCE conftest.c >&5
cc: error: unrecognized command-line option '-kthread'; did you mean '-pthread'?
configure:6225: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PHP"
| #define PACKAGE_TARNAME "php"
| #define PACKAGE_VERSION "8.3.0-dev"
| #define PACKAGE_STRING "PHP 8.3.0-dev"
| #define PACKAGE_BUGREPORT "https://github.com/php/php-src/issues"
| #define PACKAGE_URL "https://www.php.net"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_GCC_GLOBAL_REGS 1
| #define HAVE_CPUID_COUNT 1
| /* end confdefs.h. */
|
| #include <pthread.h>
| #include <stddef.h>
|
| void *thread_routine(void *data) {
| return data;
| }
|
| int main(void) {
| pthread_t thd;
| pthread_mutexattr_t mattr;
| int data = 1;
| pthread_mutexattr_init(&mattr);
| return pthread_create(&thd, NULL, thread_routine, &data);
| }
configure:6225: cc -o conftest -g -O2 -fvisibility=hidden -pthread -D_GNU_SOURCE conftest.c >&5
configure:6225: $? = 0
configure:6246: result: -pthread
configure:6249: checking for pthreads_lib
configure:6279: cc -o conftest -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c -lpthread >&5
configure:6279: $? = 0
configure:6300: result: pthread
configure:6370: result:
configure:6372: result: [1mConfiguring SAPI modules[m
configure:6405: checking for Apache 2 handler module support via DSO through APXS
configure:7046: result: no
configure:7076: checking for setproctitle
configure:7076: cc -o conftest -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
/usr/bin/ld: /tmp/ccfAe9yu.o: in function `main':
/home/smamran09/php-src/conftest.c:60: undefined reference to `setproctitle'
collect2: error: ld returned 1 exit status
configure:7076: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PHP"
| #define PACKAGE_TARNAME "php"
| #define PACKAGE_VERSION "8.3.0-dev"
| #define PACKAGE_STRING "PHP 8.3.0-dev"
| #define PACKAGE_BUGREPORT "https://github.com/php/php-src/issues"
| #define PACKAGE_URL "https://www.php.net"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_GCC_GLOBAL_REGS 1
| #define HAVE_CPUID_COUNT 1
| /* end confdefs.h. */
| /* Define setproctitle to an innocuous variant, in case <limits.h> declares setproctitle.
| For example, HP-UX 11i <limits.h> declares gettimeofday. */
| #define setproctitle innocuous_setproctitle
|
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char setproctitle (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
|
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|
| #undef setproctitle
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char setproctitle ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined __stub_setproctitle || defined __stub___setproctitle
| choke me
| #endif
|
| int
| main ()
| {
| return setproctitle ();
| ;
| return 0;
| }
configure:7076: result: no
configure:7088: checking sys/pstat.h usability
configure:7088: cc -c -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
conftest.c:59:10: fatal error: sys/pstat.h: No such file or directory
59 | #include <sys/pstat.h>
| ^~~~~~~~~~~~~
compilation terminated.
configure:7088: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PHP"
| #define PACKAGE_TARNAME "php"
| #define PACKAGE_VERSION "8.3.0-dev"
| #define PACKAGE_STRING "PHP 8.3.0-dev"
| #define PACKAGE_BUGREPORT "https://github.com/php/php-src/issues"
| #define PACKAGE_URL "https://www.php.net"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_GCC_GLOBAL_REGS 1
| #define HAVE_CPUID_COUNT 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/pstat.h>
configure:7088: result: no
configure:7088: checking sys/pstat.h presence
configure:7088: cc -E -D_GNU_SOURCE conftest.c
conftest.c:26:10: fatal error: sys/pstat.h: No such file or directory
26 | #include <sys/pstat.h>
| ^~~~~~~~~~~~~
compilation terminated.
configure:7088: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PHP"
| #define PACKAGE_TARNAME "php"
| #define PACKAGE_VERSION "8.3.0-dev"
| #define PACKAGE_STRING "PHP 8.3.0-dev"
| #define PACKAGE_BUGREPORT "https://github.com/php/php-src/issues"
| #define PACKAGE_URL "https://www.php.net"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_GCC_GLOBAL_REGS 1
| #define HAVE_CPUID_COUNT 1
| /* end confdefs.h. */
| #include <sys/pstat.h>
configure:7088: result: no
configure:7088: checking for sys/pstat.h
configure:7088: result: no
configure:7099: checking for PS_STRINGS
configure:7118: cc -o conftest -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
conftest.c:26:10: fatal error: machine/vmparam.h: No such file or directory
26 | #include <machine/vmparam.h>
| ^~~~~~~~~~~~~~~~~~~
compilation terminated.
configure:7118: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PHP"
| #define PACKAGE_TARNAME "php"
| #define PACKAGE_VERSION "8.3.0-dev"
| #define PACKAGE_STRING "PHP 8.3.0-dev"
| #define PACKAGE_BUGREPORT "https://github.com/php/php-src/issues"
| #define PACKAGE_URL "https://www.php.net"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_GCC_GLOBAL_REGS 1
| #define HAVE_CPUID_COUNT 1
| /* end confdefs.h. */
| #include <machine/vmparam.h>
| #include <sys/exec.h>
|
| int
| main ()
| {
| PS_STRINGS->ps_nargvstr = 1;
| PS_STRINGS->ps_argvstr = "foo";
| ;
| return 0;
| }
configure:7126: result: no
configure:7134: checking for CLI build
configure:7296: result: yes
configure:7323: checking for embedded SAPI library support
configure:7530: result: no
configure:7584: checking for FPM build
configure:7587: result: yes
configure:7594: checking for clearenv
configure:7594: cc -o conftest -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
configure:7594: $? = 0
configure:7594: result: yes
configure:7594: checking for setproctitle
configure:7594: result: no
configure:7594: checking for setproctitle_fast
configure:7594: cc -o conftest -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
/usr/bin/ld: /tmp/ccLjCqqA.o: in function `main':
/home/smamran09/php-src/conftest.c:61: undefined reference to `setproctitle_fast'
collect2: error: ld returned 1 exit status
configure:7594: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PHP"
| #define PACKAGE_TARNAME "php"
| #define PACKAGE_VERSION "8.3.0-dev"
| #define PACKAGE_STRING "PHP 8.3.0-dev"
| #define PACKAGE_BUGREPORT "https://github.com/php/php-src/issues"
| #define PACKAGE_URL "https://www.php.net"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_GCC_GLOBAL_REGS 1
| #define HAVE_CPUID_COUNT 1
| #define HAVE_CLEARENV 1
| /* end confdefs.h. */
| /* Define setproctitle_fast to an innocuous variant, in case <limits.h> declares setproctitle_fast.
| For example, HP-UX 11i <limits.h> declares gettimeofday. */
| #define setproctitle_fast innocuous_setproctitle_fast
|
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char setproctitle_fast (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
|
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|
| #undef setproctitle_fast
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char setproctitle_fast ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined __stub_setproctitle_fast || defined __stub___setproctitle_fast
| choke me
| #endif
|
| int
| main ()
| {
| return setproctitle_fast ();
| ;
| return 0;
| }
configure:7594: result: no
configure:7604: checking for library containing socket
configure:7635: cc -o conftest -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
configure:7635: $? = 0
configure:7652: result: none required
configure:7660: checking for library containing inet_addr
configure:7691: cc -o conftest -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
configure:7691: $? = 0
configure:7708: result: none required
configure:7718: checking for setpflags
configure:7732: cc -c -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
conftest.c:27:10: fatal error: priv.h: No such file or directory
27 | #include <priv.h>
| ^~~~~~~~
compilation terminated.
configure:7732: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PHP"
| #define PACKAGE_TARNAME "php"
| #define PACKAGE_VERSION "8.3.0-dev"
| #define PACKAGE_STRING "PHP 8.3.0-dev"
| #define PACKAGE_BUGREPORT "https://github.com/php/php-src/issues"
| #define PACKAGE_URL "https://www.php.net"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_GCC_GLOBAL_REGS 1
| #define HAVE_CPUID_COUNT 1
| #define HAVE_CLEARENV 1
| /* end confdefs.h. */
| #include <priv.h>
| int
| main ()
| {
| setpflags(0, 0);
| ;
| return 0;
| }
configure:7742: result: no
configure:7751: checking for clock_gettime
configure:7765: cc -o conftest -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
configure:7765: $? = 0
configure:7768: result: yes
configure:7883: checking for ptrace
configure:7899: cc -c -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
configure:7899: $? = 0
configure:7902: result: yes
configure:7914: checking whether ptrace works
configure:7994: cc -o conftest -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
configure:7994: $? = 0
configure:7994: ./conftest
configure:7994: $? = 0
configure:7996: result: yes
configure:8072: checking for proc mem file
configure:8111: cc -o conftest -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
conftest.c:30: warning: "_GNU_SOURCE" redefined
30 | #define _GNU_SOURCE
|
conftest.c:20: note: this is the location of the previous definition
20 | #define _GNU_SOURCE 1
|
configure:8111: $? = 0
configure:8111: ./conftest
configure:8111: $? = 0
configure:8113: result: mem
configure:8155: checking if gcc supports __sync_bool_compare_and_swap
configure:8172: cc -o conftest -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
configure:8172: $? = 0
configure:8174: result: yes
configure:8192: checking for TCP_INFO
configure:8206: cc -c -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
configure:8206: $? = 0
configure:8209: result: yes
configure:8226: checking for TCP_CONNECTION_INFO
configure:8240: cc -c -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
conftest.c: In function 'main':
conftest.c:36:28: error: storage size of 'ti' isn't known
36 | struct tcp_connection_info ti; int x = TCP_CONNECTION_INFO;
| ^~
conftest.c:36:40: error: 'TCP_CONNECTION_INFO' undeclared (first use in this function); did you mean 'TCP_CONGESTION'?
36 | struct tcp_connection_info ti; int x = TCP_CONNECTION_INFO;
| ^~~~~~~~~~~~~~~~~~~
| TCP_CONGESTION
conftest.c:36:40: note: each undeclared identifier is reported only once for each function it appears in
configure:8240: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PHP"
| #define PACKAGE_TARNAME "php"
| #define PACKAGE_VERSION "8.3.0-dev"
| #define PACKAGE_STRING "PHP 8.3.0-dev"
| #define PACKAGE_BUGREPORT "https://github.com/php/php-src/issues"
| #define PACKAGE_URL "https://www.php.net"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_GCC_GLOBAL_REGS 1
| #define HAVE_CPUID_COUNT 1
| #define HAVE_CLEARENV 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_PTRACE 1
| #define PROC_MEM_FILE "mem"
| #define HAVE_BUILTIN_ATOMIC 1
| #define HAVE_LQ_TCP_INFO 1
| /* end confdefs.h. */
| #include <netinet/tcp.h>
| int
| main ()
| {
| struct tcp_connection_info ti; int x = TCP_CONNECTION_INFO;
| ;
| return 0;
| }
configure:8248: result: no
configure:8297: checking for sysconf
configure:8311: cc -c -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
configure:8311: $? = 0
configure:8316: result: yes
configure:8328: checking for times
configure:8342: cc -c -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
configure:8342: $? = 0
configure:8347: result: yes
configure:8359: checking for kqueue
configure:8383: cc -c -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
conftest.c:36:12: fatal error: sys/event.h: No such file or directory
36 | #include <sys/event.h>
| ^~~~~~~~~~~~~
compilation terminated.
configure:8383: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PHP"
| #define PACKAGE_TARNAME "php"
| #define PACKAGE_VERSION "8.3.0-dev"
| #define PACKAGE_STRING "PHP 8.3.0-dev"
| #define PACKAGE_BUGREPORT "https://github.com/php/php-src/issues"
| #define PACKAGE_URL "https://www.php.net"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_GCC_GLOBAL_REGS 1
| #define HAVE_CPUID_COUNT 1
| #define HAVE_CLEARENV 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_PTRACE 1
| #define PROC_MEM_FILE "mem"
| #define HAVE_BUILTIN_ATOMIC 1
| #define HAVE_LQ_TCP_INFO 1
| #define HAVE_SYSCONF 1
| #define HAVE_TIMES 1
| /* end confdefs.h. */
|
| #include <sys/types.h>
| #include <sys/event.h>
| #include <sys/time.h>
|
| int
| main ()
| {
|
| int kfd;
| struct kevent k;
| kfd = kqueue();
| /* 0 -> STDIN_FILENO */
| EV_SET(&k, 0, EVFILT_READ , EV_ADD | EV_CLEAR, 0, 0, NULL);
|
| ;
| return 0;
| }
configure:8393: result: no
configure:8400: checking for port framework
configure:8423: cc -c -g -O2 -fvisibility=hidden -D_GNU_SOURCE conftest.c >&5
conftest.c:35:12: fatal error: port.h: No such file or directory
35 | #include <port.h>
| ^~~~~~~~
compilation terminated.
configure:8423: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "PHP"
| #define PACKAGE_TARNAME "php"
| #define PACKAGE_VERSION "8.3.0-dev"
| #define PACKAGE_STRING "PHP 8.3.0-dev"
| #define PACKAGE_BUGREPORT "https://github.com/php/php-src/issues"
| #define PACKAGE_URL "https://www.php.net"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define HAVE_GCC_GLOBAL_REGS 1
| #define HAVE_CPUID_COUNT 1
| #define HAVE_CLEARENV 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_PTRACE 1
| #define PROC_MEM_FILE "mem"
| #define HAVE_BUILTIN_ATOMIC 1
| #define HAVE_LQ_TCP_INFO 1
| #define HAVE_SYSCONF 1
| #define HAVE_TIMES 1
| /* end confdefs.h. */
|
| #include <port.h>
|
| int
| main ()
| {
|
| int port;
|
| port = port_create();
| if (port < 0) {