Guest User

Untitled

a guest
Mar 24th, 2020
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 70.44 KB | None | 0 0
  1. user@PC ~
  2. $ cd /cygdrive/c/src/libguestfs
  3. libguestfs_git/ libguestfs-1.40.2/
  4.  
  5. user@PC ~
  6. $ cd /cygdrive/c/src/libguestfs-1.40.2/
  7.  
  8. user@PC /cygdrive/c/src/libguestfs-1.40.2
  9. $ ls
  10. aclocal.m4 configure get-kernel ocaml sparsify
  11. align configure.ac gnulib ocaml-dep.sh.in subdir-rules.mk
  12. appliance contrib GNUmakefile ocaml-link.sh sysprep
  13. AUTHORS COPYING gobject ocaml-link.sh.in test-data
  14. autogen.sh COPYING.LIB golang p2v tests
  15. bash csharp HACKING perl test-tool
  16. bindtests customize haskell php tmp
  17. bootstrap daemon inspector pick-guests.pl.in TODO
  18. BUGS df installcheck.sh.in po tools
  19. bugs-in-changelog.sh dib java podcheck.pl update-bugs.sh
  20. build-aux diff lib po-docs utils
  21. builder docs libtool-kill-dependency_libs.sh podwrapper.pl.in v2v
  22. cat edit logo python valgrind-suppressions
  23. cfg.mk erlang lua README website
  24. ChangeLog examples m4 RELEASES zanata.xml
  25. check-mli.sh fish maint.mk rescue zanata-pull.sh
  26. common format Makefile.am resize
  27. common-rules.mk fuse Makefile.in ruby
  28. config.h.in generator make-fs run.in
  29.  
  30. user@PC /cygdrive/c/src/libguestfs-1.40.2
  31. $ CFLAGS=-fPIC ./autogen.sh --disable-daemon --disable-appliance --with-distro=cygwin
  32.  
  33. # Ensure that whenever we pull in a gnulib update or otherwise change to a
  34. # different version (i.e., when switching branches), we also rerun ./bootstrap.
  35. curr_status=.git-module-status
  36. t=$(git submodule status|sed 's/^[ +-]//;s/ .*//')
  37. fatal: not a git repository (or any parent up to mount point /cygdrive)
  38. Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
  39. if test "$t" = "$(cat $curr_status 2>/dev/null)"; then
  40. : # good, it's up to date
  41. else
  42. echo running bootstrap...
  43. ./bootstrap && echo "$t" > $curr_status
  44. fi
  45.  
  46. CONFIGUREDIR=.
  47.  
  48. # Run configure in BUILDDIR if it's set
  49. if [ ! -z "$BUILDDIR" ]; then
  50. mkdir -p $BUILDDIR
  51. cd $BUILDDIR
  52.  
  53. CONFIGUREDIR=..
  54. fi
  55.  
  56. # If no arguments were specified and configure has run before, use the previous
  57. # arguments
  58. if test $# -eq 0 && test -x ./config.status; then
  59. ./config.status --recheck
  60. else
  61. $CONFIGUREDIR/configure "$@"
  62. fi
  63. checking for gcc... gcc
  64. checking whether the C compiler works... yes
  65. checking for C compiler default output file name... a.exe
  66. checking for suffix of executables... .exe
  67. checking whether we are cross compiling... no
  68. checking for suffix of object files... o
  69. checking whether we are using the GNU C compiler... yes
  70. checking whether gcc accepts -g... yes
  71. checking for gcc option to enable C11 features... none needed
  72. checking how to run the C preprocessor... gcc -E
  73. checking for grep that handles long lines and -e... /usr/bin/grep
  74. checking for egrep... /usr/bin/grep -E
  75. checking for ANSI C header files... yes
  76. checking for sys/types.h... yes
  77. checking for sys/stat.h... yes
  78. checking for stdlib.h... yes
  79. checking for string.h... yes
  80. checking for memory.h... yes
  81. checking for strings.h... yes
  82. checking for inttypes.h... yes
  83. checking for stdint.h... yes
  84. checking for unistd.h... yes
  85. checking minix/config.h usability... no
  86. checking minix/config.h presence... no
  87. checking for minix/config.h... no
  88. checking whether it is safe to define __EXTENSIONS__... yes
  89. checking whether _XOPEN_SOURCE should be defined... no
  90. checking for a BSD-compatible install... /usr/bin/install -c
  91. checking whether build environment is sane... yes
  92. checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
  93. checking for gawk... gawk
  94. checking whether make sets $(MAKE)... yes
  95. checking whether make supports the include directive... yes (GNU style)
  96. checking whether make supports nested variables... yes
  97. checking how to create a pax tar archive... gnutar
  98. checking dependency style of gcc... gcc3
  99. checking whether make supports nested variables... (cached) yes
  100. checking build system type... x86_64-unknown-cygwin
  101. checking host system type... x86_64-unknown-cygwin
  102. checking how to print strings... printf
  103. checking for a sed that does not truncate output... /usr/bin/sed
  104. checking for fgrep... /usr/bin/grep -F
  105. checking for ld used by gcc... /usr/x86_64-pc-cygwin/bin/ld.exe
  106. checking if the linker (/usr/x86_64-pc-cygwin/bin/ld.exe) is GNU ld... yes
  107. checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
  108. checking the name lister (/usr/bin/nm -B) interface... BSD nm
  109. checking whether ln -s works... yes
  110. checking the maximum length of command line arguments... 8192
  111. checking how to convert x86_64-unknown-cygwin file names to x86_64-unknown-cygwin format... func_convert_file_noop
  112. checking how to convert x86_64-unknown-cygwin file names to toolchain format... func_convert_file_noop
  113. checking for /usr/x86_64-pc-cygwin/bin/ld.exe option to reload object files... -r
  114. checking for objdump... objdump
  115. checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL
  116. checking for dlltool... dlltool
  117. checking how to associate runtime and link libraries... func_cygming_dll_for_implib
  118. checking for ar... ar
  119. checking for archiver @FILE support... @
  120. checking for strip... strip
  121. checking for ranlib... ranlib
  122. checking command to parse /usr/bin/nm -B output from gcc object... ok
  123. checking for sysroot... no
  124. checking for a working dd... /usr/bin/dd
  125. checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
  126. checking for mt... no
  127. checking if : is a manifest tool... no
  128. checking for dlfcn.h... yes
  129. checking for objdir... .libs
  130. checking if gcc supports -fno-rtti -fno-exceptions... no
  131. checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC
  132. checking if gcc PIC flag -DDLL_EXPORT -DPIC works... yes
  133. checking if gcc static flag -static works... yes
  134. checking if gcc supports -c -o file.o... yes
  135. checking if gcc supports -c -o file.o... (cached) yes
  136. checking whether the gcc linker (/usr/x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... yes
  137. checking whether -lc should be explicitly linked in... yes
  138. checking dynamic linker characteristics... Win32 ld.exe
  139. checking how to hardcode library paths into programs... immediate
  140. checking whether stripping libraries is possible... yes
  141. checking if libtool supports shared libraries... yes
  142. checking whether to build shared libraries... yes
  143. checking whether to build static libraries... yes
  144. checking if 1.40 is a stable or development branch of libguestfs... stable
  145. configure: libguestfs version 1.40.2
  146.  
  147. --- Configuring Gnulib ---
  148. checking for Minix Amsterdam compiler... no
  149. checking for ar... (cached) ar
  150. checking for _LARGEFILE_SOURCE value needed for large files... no
  151. checking for special C compiler options needed for large files... no
  152. checking for _FILE_OFFSET_BITS value needed for large files... no
  153. checking for sys/socket.h... yes
  154. checking for arpa/inet.h... yes
  155. checking for features.h... yes
  156. checking for unistd.h... (cached) yes
  157. checking for sys/param.h... yes
  158. checking for dirent.h... yes
  159. checking for fnmatch.h... yes
  160. checking for wctype.h... yes
  161. checking for stdio_ext.h... yes
  162. checking for sys/stat.h... (cached) yes
  163. checking for sys/vfs.h... yes
  164. checking for netdb.h... yes
  165. checking for netinet/in.h... yes
  166. checking for getopt.h... yes
  167. checking for sys/cdefs.h... yes
  168. checking for sys/time.h... yes
  169. checking for glob.h... yes
  170. checking for limits.h... yes
  171. checking for wchar.h... yes
  172. checking for stdint.h... (cached) yes
  173. checking for inttypes.h... (cached) yes
  174. checking for xlocale.h... no
  175. checking for sys/mman.h... yes
  176. checking for sys/types.h... (cached) yes
  177. checking for sys/select.h... yes
  178. checking for sys/ioctl.h... yes
  179. checking for sys/uio.h... yes
  180. checking for sys/wait.h... yes
  181. checking for utime.h... yes
  182. checking for crtdefs.h... yes
  183. checking for langinfo.h... yes
  184. checking for semaphore.h... yes
  185. checking for priv.h... no
  186. checking for spawn.h... yes
  187. checking whether the preprocessor supports include_next... yes
  188. checking whether system header files limit the line length... no
  189. checking whether <sys/socket.h> is self-contained... yes
  190. checking for shutdown... yes
  191. checking whether <sys/socket.h> defines the SHUT_* macros... yes
  192. checking for struct sockaddr_storage... yes
  193. checking for sa_family_t... yes
  194. checking for struct sockaddr_storage.ss_family... yes
  195. checking for accept4... yes
  196. checking for readlinkat... yes
  197. checking for _set_invalid_parameter_handler... no
  198. checking for fchdir... yes
  199. checking for dup3... yes
  200. checking for setdtablesize... yes
  201. checking for fcntl... yes
  202. checking for symlink... yes
  203. checking for fdopendir... yes
  204. checking for mempcpy... yes
  205. checking for fnmatch... yes
  206. checking for btowc... yes
  207. checking for isblank... yes
  208. checking for iswctype... yes
  209. checking for mbsrtowcs... yes
  210. checking for wmemchr... yes
  211. checking for wmemcpy... yes
  212. checking for wmempcpy... yes
  213. checking for fstatat... yes
  214. checking for openat... yes
  215. checking for fstatfs... yes
  216. checking for futimens... yes
  217. checking for getdelim... yes
  218. checking for getdtablesize... yes
  219. checking for getlogin_r... yes
  220. checking for getprogname... yes
  221. checking for getexecname... no
  222. checking for gettimeofday... yes
  223. checking for glob... yes
  224. checking for glob_pattern_p... yes
  225. checking for getpwnam_r... yes
  226. checking for lstat... yes
  227. checking for mbsinit... yes
  228. checking for mbrtowc... yes
  229. checking for mprotect... yes
  230. checking for mkstemps... yes
  231. checking for strerror_r... yes
  232. checking for __xpg_strerror_r... yes
  233. checking for pipe2... yes
  234. checking for pread... yes
  235. checking for ptsname_r... yes
  236. checking for readlink... yes
  237. checking for setenv... yes
  238. checking for sleep... yes
  239. checking for snprintf... yes
  240. checking for strdup... yes
  241. checking for catgets... yes
  242. checking for strndup... yes
  243. checking for strtoumax... yes
  244. checking for symlinkat... yes
  245. checking for pipe... yes
  246. checking for utime... yes
  247. checking for futimes... yes
  248. checking for futimesat... yes
  249. checking for utimensat... yes
  250. checking for lutimes... yes
  251. checking for vasnprintf... yes
  252. checking for iswcntrl... yes
  253. checking for ftruncate... yes
  254. checking for newlocale... yes
  255. checking for uselocale... yes
  256. checking for duplocale... yes
  257. checking for freelocale... yes
  258. checking for pthread_sigmask... yes
  259. checking for sigaction... yes
  260. checking for sigaltstack... yes
  261. checking for siginterrupt... yes
  262. checking for shutdown... (cached) yes
  263. checking for unlinkat... yes
  264. checking for usleep... yes
  265. checking for wcrtomb... yes
  266. checking for wctob... yes
  267. checking for size_t... yes
  268. checking for working alloca.h... yes
  269. checking for alloca... yes
  270. checking for C/C++ restrict keyword... __restrict
  271. checking whether // is distinct from /... yes
  272. checking if environ is properly declared... yes
  273. checking for complete errno.h... yes
  274. checking whether strerror_r is declared... yes
  275. checking for strerror_r... (cached) yes
  276. checking whether strerror_r returns char *... yes
  277. checking whether fchdir is declared... yes
  278. checking for working fcntl.h... yes
  279. checking for pid_t... yes
  280. checking for mode_t... yes
  281. checking for promoted mode_t type... mode_t
  282. checking for mbstate_t... yes
  283. checking whether stat file-mode macros are broken... no
  284. checking for nlink_t... yes
  285. checking whether lstat correctly handles trailing slash... yes
  286. checking whether stdin defaults to large file offsets... yes
  287. checking whether ftello is declared... yes
  288. checking for ftello... yes
  289. checking whether ftello works... yes
  290. checking for O_CLOEXEC... yes
  291. checking for library containing gethostbyname... none required
  292. checking for gethostbyname... yes
  293. checking for library containing getservbyname... none required
  294. checking for getservbyname... yes
  295. checking for library containing inet_ntop... none required
  296. checking whether inet_ntop is declared... yes
  297. checking for IPv4 sockets... yes
  298. checking for IPv6 sockets... yes
  299. checking whether getcwd (NULL, 0) allocates memory for result... yes
  300. checking for getcwd with POSIX signature... yes
  301. checking whether getcwd is declared... yes
  302. checking whether getdelim is declared... yes
  303. checking whether getdtablesize is declared... yes
  304. checking whether getline is declared... yes
  305. checking whether getlogin_r is declared... yes
  306. checking whether getlogin is declared... yes
  307. checking for getopt.h... (cached) yes
  308. checking for getopt_long_only... yes
  309. checking whether getopt is POSIX compatible... yes
  310. checking for working GNU getopt function... yes
  311. checking for working GNU getopt_long function... yes
  312. checking for struct timeval... yes
  313. checking for wide-enough struct timeval.tv_sec member... yes
  314. checking host CPU and C ABI... x86_64
  315. checking for ld... /usr/x86_64-pc-cygwin/bin/ld.exe
  316. checking if the linker (/usr/x86_64-pc-cygwin/bin/ld.exe) is GNU ld... yes
  317. checking for shared library run path origin... done
  318. checking for the common suffixes of directories in the library search path... lib,lib
  319. checking for iconv... yes
  320. checking for working iconv... yes
  321. checking how to link with libiconv... -liconv
  322. checking for iconv declaration...
  323. extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
  324. checking whether limits.h has LLONG_MAX, WORD_BIT, ULLONG_WIDTH etc.... no
  325. checking for wint_t... yes
  326. checking whether wint_t is too small... no
  327. checking for unsigned long long int... yes
  328. checking for long long int... yes
  329. checking whether stdint.h conforms to C99... yes
  330. checking whether stdint.h predates C++11... no
  331. checking whether stdint.h has UINTMAX_WIDTH etc.... no
  332. checking for nl_langinfo and CODESET... yes
  333. checking for wchar_t... yes
  334. checking for good max_align_t... yes
  335. checking whether NULL can be used in arbitrary expressions... yes
  336. checking whether imported symbols can be declared weak... no
  337. checking whether the linker supports --as-needed... yes
  338. checking whether the linker supports --push-state... yes
  339. checking pthread.h usability... yes
  340. checking pthread.h presence... yes
  341. checking for pthread.h... yes
  342. checking for pthread_kill in -lpthread... yes
  343. checking for multithread API to use... posix
  344. checking whether malloc, realloc, calloc are POSIX compliant... yes
  345. checking for stdlib.h... (cached) yes
  346. checking for GNU libc compatible malloc... yes
  347. checking for a traditional japanese locale... ja_JP.EUC-JP
  348. checking for a transitional chinese locale... none
  349. checking for a french Unicode locale... fr_FR.UTF-8
  350. checking for inline... inline
  351. checking for a traditional french locale... fr_FR.ISO-8859-1
  352. checking for mmap... yes
  353. checking for MAP_ANONYMOUS... yes
  354. checking whether memchr works... yes
  355. checking whether memmem is declared... yes
  356. checking for memmem... yes
  357. checking whether memmem works... yes
  358. checking whether memrchr is declared... yes
  359. checking whether <limits.h> defines MIN and MAX... no
  360. checking whether <sys/param.h> defines MIN and MAX... yes
  361. checking whether C symbols are prefixed with underscore at the linker level... no
  362. checking whether strerror(0) succeeds... yes
  363. checking for strerror_r with POSIX signature... no
  364. checking whether __xpg_strerror_r works... yes
  365. checking whether strerror_r is declared... (cached) yes
  366. checking sys/mkdev.h usability... no
  367. checking sys/mkdev.h presence... no
  368. checking for sys/mkdev.h... no
  369. checking sys/sysmacros.h usability... yes
  370. checking sys/sysmacros.h presence... yes
  371. checking for sys/sysmacros.h... yes
  372. checking for sigset_t... yes
  373. checking for ssize_t... yes
  374. checking whether <sys/select.h> is self-contained... yes
  375. checking for library containing setsockopt... none needed
  376. checking whether setenv is declared... yes
  377. checking search.h usability... yes
  378. checking search.h presence... yes
  379. checking for search.h... yes
  380. checking for tsearch... yes
  381. checking for uid_t in sys/types.h... yes
  382. checking whether snprintf returns a byte count as in C99... yes
  383. checking whether snprintf is declared... yes
  384. checking for stdbool.h that conforms to C99... yes
  385. checking for _Bool... yes
  386. checking whether strdup is declared... yes
  387. checking whether strndup is declared... yes
  388. checking whether strnlen is declared... yes
  389. checking whether strtoumax is declared... yes
  390. checking for struct timespec in <time.h>... yes
  391. checking whether ttyname_r is declared... yes
  392. checking whether the utimes function works... yes
  393. checking for inttypes.h... yes
  394. checking for stdint.h... yes
  395. checking for intmax_t... yes
  396. checking where to find the exponent in a 'double'... word 1 bit 20
  397. checking for snprintf... (cached) yes
  398. checking for strnlen... yes
  399. checking for wcslen... yes
  400. checking for wcsnlen... yes
  401. checking for mbrtowc... (cached) yes
  402. checking for wcrtomb... (cached) yes
  403. checking whether _snprintf is declared... no
  404. checking whether <wchar.h> uses 'inline' correctly... yes
  405. checking for sig_atomic_t... yes
  406. checking whether ungetc works on arbitrary bytes... yes
  407. checking for off_t... yes
  408. checking for inttypes.h... (cached) yes
  409. checking whether the inttypes.h PRIxNN macros are broken... no
  410. checking for LC_MESSAGES... yes
  411. checking for Solaris 11.4 locale system... no
  412. checking for getlocalename_l... no
  413. checking for CFPreferencesCopyAppValue... no
  414. checking for CFLocaleCopyCurrent... no
  415. checking for CFLocaleCopyPreferredLanguages... no
  416. checking whether alarm is declared... yes
  417. checking for library containing posix_spawn... none required
  418. checking for posix_spawn... yes
  419. checking whether posix_spawn works... yes
  420. checking whether posix_spawnattr_setschedpolicy is supported... yes
  421. checking whether posix_spawnattr_setschedparam is supported... yes
  422. checking whether unsetenv is declared... yes
  423. checking whether vsnprintf is declared... yes
  424. checking for alloca as a compiler built-in... yes
  425. checking for __builtin_expect... yes
  426. checking byteswap.h usability... yes
  427. checking byteswap.h presence... yes
  428. checking for byteswap.h... yes
  429. checking whether this system has an arbitrary file name length limit... yes
  430. checking for library containing clock_gettime... none required
  431. checking for clock_gettime... yes
  432. checking for clock_settime... yes
  433. checking for closedir... yes
  434. checking for d_ino member in directory struct... yes
  435. checking for d_type member in directory struct... yes
  436. checking for dirfd... yes
  437. checking whether dirfd is declared... yes
  438. checking whether dirfd is a macro... no
  439. checking whether // is distinct from /... (cached) yes
  440. checking whether dup works... yes
  441. checking whether dup2 works... yes
  442. checking for error_at_line... yes
  443. checking whether fcntl handles F_DUPFD correctly... no
  444. checking whether fcntl understands F_DUPFD_CLOEXEC... yes
  445. checking whether fdopendir is declared... yes
  446. checking whether fdopendir works... yes
  447. checking for flexible array member... yes
  448. checking whether conversion from 'int' to 'long double' works... yes
  449. checking for working POSIX fnmatch... yes
  450. checking for __fpending... yes
  451. checking whether __fpending is declared... yes
  452. checking whether fstatat (..., 0) works... yes
  453. checking for ftello... (cached) yes
  454. checking whether ftello works... (cached) yes
  455. checking for struct statfs.f_type... yes
  456. checking for __fsword_t... no
  457. checking whether futimens works... yes
  458. checking how to do getaddrinfo, freeaddrinfo and getnameinfo... checking for library containing getaddrinfo... none required
  459. checking for getaddrinfo... yes
  460. checking whether gai_strerror is declared... yes
  461. checking whether gai_strerrorA is declared... no
  462. checking for gai_strerror with POSIX signature... yes
  463. checking for struct sockaddr.sa_len... no
  464. checking whether getaddrinfo is declared... yes
  465. checking whether freeaddrinfo is declared... yes
  466. checking whether getnameinfo is declared... yes
  467. checking for struct addrinfo... yes
  468. checking whether getcwd handles long file names properly... yes
  469. checking for getpagesize... yes
  470. checking whether getcwd aborts when 4k < cwd_length < 16k... no
  471. checking for working getdelim function... yes
  472. checking whether getdtablesize works... no
  473. checking for getline... yes
  474. checking for working getline function... yes
  475. checking whether getlogin_r works with small buffers... yes
  476. checking whether program_invocation_name is declared... yes
  477. checking whether program_invocation_short_name is declared... yes
  478. checking whether __argv is declared... no
  479. checking whether gettimeofday clobbers localtime buffer... no
  480. checking for gettimeofday with POSIX signature... yes
  481. checking for GNU glob interface version 1 or 2... no
  482. checking for library containing gethostbyname... (cached) none required
  483. checking for gethostbyname... (cached) yes
  484. checking for library containing inet_ntop... (cached) none required
  485. checking whether inet_ntop is declared... (cached) yes
  486. checking for ioctl... yes
  487. checking for ioctl with POSIX signature... yes
  488. checking whether the compiler supports the __inline keyword... yes
  489. checking whether locale.h conforms to POSIX:2001... yes
  490. checking whether struct lconv is properly defined... yes
  491. checking for pthread_rwlock_t... yes
  492. checking whether pthread_rwlock_rdlock prefers a writer to a reader... yes
  493. checking whether lseek detects pipes... yes
  494. checking whether mbrtowc handles incomplete characters... yes
  495. checking whether mbrtowc works as well as mbtowc... guessing yes
  496. checking whether mbrtowc handles a NULL pwc argument... yes
  497. checking whether mbrtowc handles a NULL string argument... yes
  498. checking whether mbrtowc has a correct return value... yes
  499. checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes
  500. checking whether mbrtowc works on empty input... yes
  501. checking whether the C locale is free of encoding errors... no
  502. checking whether mbrtowc handles incomplete characters... (cached) yes
  503. checking whether mbrtowc works as well as mbtowc... (cached) guessing yes
  504. checking whether mbrtowc handles incomplete characters... (cached) yes
  505. checking whether mbrtowc works as well as mbtowc... (cached) guessing yes
  506. checking whether mbsrtowcs works... yes
  507. checking whether memmem works in linear time... yes
  508. checking for memmem... (cached) yes
  509. checking whether memmem works... (cached) yes
  510. checking for mempcpy... (cached) yes
  511. checking for memrchr... yes
  512. checking whether mkdir handles trailing slash... yes
  513. checking whether mkdir handles trailing dot... yes
  514. checking for mkdtemp... yes
  515. checking whether <netinet/in.h> is self-contained... yes
  516. checking whether open recognizes a trailing slash... yes
  517. checking for opendir... yes
  518. checking whether perror matches strerror... yes
  519. checking whether pread works... yes
  520. checking whether ptsname_r has the same signature as in glibc... yes
  521. checking for raise... yes
  522. checking for sigprocmask... yes
  523. checking for rawmemchr... yes
  524. checking for readdir... yes
  525. checking whether readlink signature is correct... yes
  526. checking whether readlink handles trailing slash correctly... yes
  527. checking whether readlinkat signature is correct... yes
  528. checking for rewinddir... yes
  529. checking whether select supports a 0 argument... yes
  530. checking whether select detects invalid fds... yes
  531. checking for library containing getservbyname... (cached) none required
  532. checking for getservbyname... (cached) yes
  533. checking whether setenv validates arguments... yes
  534. checking for volatile sig_atomic_t... yes
  535. checking for sighandler_t... yes
  536. checking for stdint.h... (cached) yes
  537. checking for SIZE_MAX... yes
  538. checking whether sleep is declared... yes
  539. checking for working sleep... yes
  540. checking for snprintf... (cached) yes
  541. checking whether snprintf respects a size of 1... yes
  542. checking whether printf supports POSIX/XSI format strings with positions... yes
  543. checking for socklen_t... yes
  544. checking for ssize_t... (cached) yes
  545. checking whether stat handles trailing slashes on files... yes
  546. checking for struct stat.st_atim.tv_nsec... yes
  547. checking whether struct stat.st_atim is of type struct timespec... yes
  548. checking for struct stat.st_birthtimespec.tv_nsec... no
  549. checking for struct stat.st_birthtimensec... no
  550. checking for struct stat.st_birthtim.tv_nsec... yes
  551. checking for working stdalign.h... yes
  552. checking for va_copy... yes
  553. checking for good max_align_t... (cached) yes
  554. checking whether NULL can be used in arbitrary expressions... (cached) yes
  555. checking which flavor of printf attribute matches inttypes macros... system
  556. checking for strchrnul... yes
  557. checking whether strchrnul works... yes
  558. checking for working strerror function... yes
  559. checking for working strndup... yes
  560. checking for working strnlen... yes
  561. checking for strtoll... yes
  562. checking for strtoull... yes
  563. checking whether symlink handles trailing slash correctly... yes
  564. checking whether symlinkat handles trailing slash correctly... yes
  565. checking whether <sys/ioctl.h> declares ioctl... yes
  566. checking for nlink_t... (cached) yes
  567. checking for ttyname_r... yes
  568. checking whether ttyname_r is compatible with its POSIX signature... yes
  569. checking whether ttyname_r works with small buffers... yes
  570. checking for vasprintf... yes
  571. checking whether iswcntrl works... yes
  572. checking for towlower... yes
  573. checking for wctype_t... yes
  574. checking for wctrans_t... yes
  575. checking for stdint.h... (cached) yes
  576. checking for long long int... (cached) yes
  577. checking whether btowc(0) is correct... yes
  578. checking whether btowc(EOF) is correct... yes
  579. checking for a traditional french locale... (cached) fr_FR.ISO-8859-1
  580. checking for a french Unicode locale... (cached) fr_FR.UTF-8
  581. checking for a traditional french locale... (cached) fr_FR.ISO-8859-1
  582. checking for a turkish Unicode locale... none
  583. checking whether fdopen sets errno... yes
  584. checking for getpagesize... (cached) yes
  585. checking whether getpagesize is declared... yes
  586. checking whether byte ordering is bigendian... no
  587. checking for library containing inet_pton... none required
  588. checking whether inet_pton is declared... yes
  589. checking whether byte ordering is bigendian... (cached) no
  590. checking whether INT32_MAX < INTMAX_MAX... yes
  591. checking whether INT64_MAX == LONG_MAX... yes
  592. checking whether UINT32_MAX < UINTMAX_MAX... yes
  593. checking whether UINT64_MAX == ULONG_MAX... yes
  594. checking whether langinfo.h defines CODESET... yes
  595. checking whether langinfo.h defines T_FMT_AMPM... yes
  596. checking whether langinfo.h defines ALTMON_1... no
  597. checking whether langinfo.h defines ERA... yes
  598. checking whether langinfo.h defines YESEXPR... yes
  599. checking for setlocale... yes
  600. checking for a traditional french locale... (cached) fr_FR.ISO-8859-1
  601. checking for a french Unicode locale... (cached) fr_FR.UTF-8
  602. checking for a traditional japanese locale... (cached) ja_JP.EUC-JP
  603. checking for a transitional chinese locale... (cached) none
  604. checking for a french Unicode locale... (cached) fr_FR.UTF-8
  605. checking for a traditional french locale... (cached) fr_FR.ISO-8859-1
  606. checking for a french Unicode locale... (cached) fr_FR.UTF-8
  607. checking for a traditional japanese locale... (cached) ja_JP.EUC-JP
  608. checking for a transitional chinese locale... (cached) none
  609. checking for mmap... (cached) yes
  610. checking for MAP_ANONYMOUS... yes
  611. checking for mmap... (cached) yes
  612. checking for MAP_ANONYMOUS... yes
  613. checking for mmap... (cached) yes
  614. checking for MAP_ANONYMOUS... yes
  615. checking for library containing nanosleep... none required
  616. checking for working nanosleep... no (mishandles large arguments)
  617. checking whether posix_spawn_file_actions_addclose works... no
  618. checking whether posix_spawn_file_actions_adddup2 works... no
  619. checking whether posix_spawn_file_actions_addopen works... no
  620. checking for getppriv... no
  621. checking whether pthread_sigmask works without -lpthread... yes
  622. checking whether pthread_sigmask returns error numbers... yes
  623. checking whether pthread_sigmask unblocks signals correctly... guessing yes
  624. checking for putenv compatible with GNU and SVID... yes
  625. checking for mmap... (cached) yes
  626. checking for MAP_ANONYMOUS... yes
  627. checking for mmap... (cached) yes
  628. checking for MAP_ANONYMOUS... yes
  629. checking whether rmdir works... yes
  630. checking for a traditional french locale... (cached) fr_FR.ISO-8859-1
  631. checking for a french Unicode locale... (cached) fr_FR.UTF-8
  632. checking for a traditional japanese locale... (cached) ja_JP.EUC-JP
  633. checking for a transitional chinese locale... (cached) none
  634. checking for struct sigaction.sa_sigaction... yes
  635. checking for sigprocmask... (cached) yes
  636. checking for posix_spawnattr_t... yes
  637. checking for posix_spawn_file_actions_t... yes
  638. checking for mmap... (cached) yes
  639. checking for MAP_ANONYMOUS... yes
  640. checking for pthread_atfork... yes
  641. checking whether unlink honors trailing slashes... yes
  642. checking whether unlink of a parent directory fails as it should... guessing yes
  643. checking for unsetenv... yes
  644. checking for unsetenv() return type... int
  645. checking whether unsetenv obeys POSIX... yes
  646. checking for useconds_t... yes
  647. checking whether usleep allows large arguments... yes
  648. checking whether utimensat works... yes
  649. checking for vsnprintf... yes
  650. checking whether snprintf respects a size of 1... (cached) yes
  651. checking whether printf supports POSIX/XSI format strings with positions... (cached) yes
  652. checking for waitid... no
  653. checking whether mbrtowc handles incomplete characters... (cached) yes
  654. checking whether mbrtowc works as well as mbtowc... (cached) guessing yes
  655. checking whether wcrtomb return value is correct... yes
  656. checking for a traditional french locale... (cached) fr_FR.ISO-8859-1
  657. checking for a french Unicode locale... (cached) fr_FR.UTF-8
  658. checking for a traditional japanese locale... (cached) ja_JP.EUC-JP
  659. checking for a transitional chinese locale... (cached) none
  660. checking whether wctob works... yes
  661. checking whether wctob is declared... yes
  662. checking for sched_yield in -lrt... yes
  663.  
  664. --- Checking for external programs ---
  665. checking for a sed that does not truncate output... (cached) /usr/bin/sed
  666. checking for gawk... (cached) gawk
  667. checking whether ln -s works... yes
  668. checking for cpio... cpio
  669. checking for gperf... gperf
  670. checking for genisoimage... /usr/bin/genisoimage
  671. checking for xmllint... xmllint
  672. checking for po4a... po4a
  673. checking for db_dump... /usr/bin/db_dump
  674. checking for db_load... /usr/bin/db_load
  675. checking for pbmtext... /usr/bin/pbmtext
  676. checking for pnmtopng... /usr/bin/pnmtopng
  677. checking for bmptopnm... /usr/bin/bmptopnm
  678. checking for pamcut... /usr/bin/pamcut
  679. checking for wrestool... /usr/bin/wrestool
  680. checking for xzcat... /usr/bin/xzcat
  681. checking for flex... flex
  682. checking lex output file root... lex.yy
  683. checking lex library... -lfl
  684. checking whether yytext is a pointer... yes
  685. checking for bison... bison -y
  686. checking for zip... no
  687. checking for unzip... /usr/bin/unzip
  688. checking for valgrind... no
  689. checking for fuser... /usr/bin/fuser
  690. checking for true... /usr/bin/true
  691. checking for the release date of 1.40.2... 2019-02-07
  692.  
  693. --- Checking for the C compiler environment ---
  694. checking how to run the C preprocessor... gcc -E
  695. checking whether -Wno-missing-field-initializers is supported... yes
  696. checking whether -Wno-missing-field-initializers is needed... no
  697. checking whether -Wuninitialized is supported... yes
  698. checking max safe object size... 9223372036854775807
  699. checking whether C compiler handles -fno-common... yes
  700. checking whether C compiler handles -W... yes
  701. checking whether C compiler handles -Waddress... yes
  702. checking whether C compiler handles -Waggressive-loop-optimizations... yes
  703. checking whether C compiler handles -Wall... yes
  704. checking whether C compiler handles -Wattribute-alias... yes
  705. checking whether C compiler handles -Wattributes... yes
  706. checking whether C compiler handles -Wbad-function-cast... yes
  707. checking whether C compiler handles -Wbool-compare... yes
  708. checking whether C compiler handles -Wbool-operation... yes
  709. checking whether C compiler handles -Wbuiltin-declaration-mismatch... yes
  710. checking whether C compiler handles -Wbuiltin-macro-redefined... yes
  711. checking whether C compiler handles -Wcast-align=strict... yes
  712. checking whether C compiler handles -Wcast-function-type... yes
  713. checking whether C compiler handles -Wchar-subscripts... yes
  714. checking whether C compiler handles -Wclobbered... yes
  715. checking whether C compiler handles -Wcomment... yes
  716. checking whether C compiler handles -Wcomments... yes
  717. checking whether C compiler handles -Wcoverage-mismatch... yes
  718. checking whether C compiler handles -Wcpp... yes
  719. checking whether C compiler handles -Wdangling-else... yes
  720. checking whether C compiler handles -Wdate-time... yes
  721. checking whether C compiler handles -Wdeprecated... yes
  722. checking whether C compiler handles -Wdeprecated-declarations... yes
  723. checking whether C compiler handles -Wdesignated-init... yes
  724. checking whether C compiler handles -Wdisabled-optimization... yes
  725. checking whether C compiler handles -Wdiscarded-array-qualifiers... yes
  726. checking whether C compiler handles -Wdiscarded-qualifiers... yes
  727. checking whether C compiler handles -Wdiv-by-zero... yes
  728. checking whether C compiler handles -Wdouble-promotion... yes
  729. checking whether C compiler handles -Wduplicated-branches... yes
  730. checking whether C compiler handles -Wduplicated-cond... yes
  731. checking whether C compiler handles -Wduplicate-decl-specifier... yes
  732. checking whether C compiler handles -Wempty-body... yes
  733. checking whether C compiler handles -Wendif-labels... yes
  734. checking whether C compiler handles -Wenum-compare... yes
  735. checking whether C compiler handles -Wexpansion-to-defined... yes
  736. checking whether C compiler handles -Wextra... yes
  737. checking whether C compiler handles -Wformat-contains-nul... yes
  738. checking whether C compiler handles -Wformat-extra-args... yes
  739. checking whether C compiler handles -Wformat-nonliteral... yes
  740. checking whether C compiler handles -Wformat-security... yes
  741. checking whether C compiler handles -Wformat-signedness... yes
  742. checking whether C compiler handles -Wformat-y2k... yes
  743. checking whether C compiler handles -Wformat-zero-length... yes
  744. checking whether C compiler handles -Wframe-address... yes
  745. checking whether C compiler handles -Wfree-nonheap-object... yes
  746. checking whether C compiler handles -Whsa... yes
  747. checking whether C compiler handles -Wif-not-aligned... yes
  748. checking whether C compiler handles -Wignored-attributes... yes
  749. checking whether C compiler handles -Wignored-qualifiers... yes
  750. checking whether C compiler handles -Wimplicit... yes
  751. checking whether C compiler handles -Wimplicit-function-declaration... yes
  752. checking whether C compiler handles -Wimplicit-int... yes
  753. checking whether C compiler handles -Wincompatible-pointer-types... yes
  754. checking whether C compiler handles -Winit-self... yes
  755. checking whether C compiler handles -Wint-conversion... yes
  756. checking whether C compiler handles -Wint-in-bool-context... yes
  757. checking whether C compiler handles -Wint-to-pointer-cast... yes
  758. checking whether C compiler handles -Winvalid-memory-model... yes
  759. checking whether C compiler handles -Winvalid-pch... yes
  760. checking whether C compiler handles -Wlogical-not-parentheses... yes
  761. checking whether C compiler handles -Wlogical-op... yes
  762. checking whether C compiler handles -Wmain... yes
  763. checking whether C compiler handles -Wmaybe-uninitialized... yes
  764. checking whether C compiler handles -Wmemset-elt-size... yes
  765. checking whether C compiler handles -Wmemset-transposed-args... yes
  766. checking whether C compiler handles -Wmisleading-indentation... yes
  767. checking whether C compiler handles -Wmissing-attributes... yes
  768. checking whether C compiler handles -Wmissing-braces... yes
  769. checking whether C compiler handles -Wmissing-declarations... yes
  770. checking whether C compiler handles -Wmissing-field-initializers... yes
  771. checking whether C compiler handles -Wmissing-include-dirs... yes
  772. checking whether C compiler handles -Wmissing-parameter-type... yes
  773. checking whether C compiler handles -Wmissing-prototypes... yes
  774. checking whether C compiler handles -Wmultichar... yes
  775. checking whether C compiler handles -Wmultistatement-macros... yes
  776. checking whether C compiler handles -Wnarrowing... yes
  777. checking whether C compiler handles -Wnested-externs... yes
  778. checking whether C compiler handles -Wnonnull... yes
  779. checking whether C compiler handles -Wnonnull-compare... yes
  780. checking whether C compiler handles -Wnull-dereference... yes
  781. checking whether C compiler handles -Wodr... yes
  782. checking whether C compiler handles -Wold-style-declaration... yes
  783. checking whether C compiler handles -Wold-style-definition... yes
  784. checking whether C compiler handles -Wopenmp-simd... yes
  785. checking whether C compiler handles -Woverflow... yes
  786. checking whether C compiler handles -Woverride-init... yes
  787. checking whether C compiler handles -Wpacked-bitfield-compat... yes
  788. checking whether C compiler handles -Wpacked-not-aligned... yes
  789. checking whether C compiler handles -Wparentheses... yes
  790. checking whether C compiler handles -Wpointer-arith... yes
  791. checking whether C compiler handles -Wpointer-compare... yes
  792. checking whether C compiler handles -Wpointer-sign... yes
  793. checking whether C compiler handles -Wpointer-to-int-cast... yes
  794. checking whether C compiler handles -Wpragmas... yes
  795. checking whether C compiler handles -Wpsabi... yes
  796. checking whether C compiler handles -Wrestrict... yes
  797. checking whether C compiler handles -Wreturn-local-addr... yes
  798. checking whether C compiler handles -Wreturn-type... yes
  799. checking whether C compiler handles -Wscalar-storage-order... yes
  800. checking whether C compiler handles -Wsequence-point... yes
  801. checking whether C compiler handles -Wshift-count-negative... yes
  802. checking whether C compiler handles -Wshift-count-overflow... yes
  803. checking whether C compiler handles -Wshift-negative-value... yes
  804. checking whether C compiler handles -Wsizeof-array-argument... yes
  805. checking whether C compiler handles -Wsizeof-pointer-div... yes
  806. checking whether C compiler handles -Wsizeof-pointer-memaccess... yes
  807. checking whether C compiler handles -Wstrict-aliasing... yes
  808. checking whether C compiler handles -Wstrict-overflow... yes
  809. checking whether C compiler handles -Wstrict-prototypes... yes
  810. checking whether C compiler handles -Wstringop-truncation... yes
  811. checking whether C compiler handles -Wsuggest-attribute=cold... yes
  812. checking whether C compiler handles -Wsuggest-attribute=format... yes
  813. checking whether C compiler handles -Wsuggest-attribute=noreturn... yes
  814. checking whether C compiler handles -Wsuggest-final-methods... yes
  815. checking whether C compiler handles -Wsuggest-final-types... yes
  816. checking whether C compiler handles -Wswitch... yes
  817. checking whether C compiler handles -Wswitch-bool... yes
  818. checking whether C compiler handles -Wswitch-unreachable... yes
  819. checking whether C compiler handles -Wsync-nand... yes
  820. checking whether C compiler handles -Wtautological-compare... yes
  821. checking whether C compiler handles -Wtrampolines... yes
  822. checking whether C compiler handles -Wtrigraphs... yes
  823. checking whether C compiler handles -Wtype-limits... yes
  824. checking whether C compiler handles -Wuninitialized... yes
  825. checking whether C compiler handles -Wunknown-pragmas... yes
  826. checking whether C compiler handles -Wunused... yes
  827. checking whether C compiler handles -Wunused-but-set-parameter... yes
  828. checking whether C compiler handles -Wunused-but-set-variable... yes
  829. checking whether C compiler handles -Wunused-function... yes
  830. checking whether C compiler handles -Wunused-label... yes
  831. checking whether C compiler handles -Wunused-local-typedefs... yes
  832. checking whether C compiler handles -Wunused-macros... yes
  833. checking whether C compiler handles -Wunused-parameter... yes
  834. checking whether C compiler handles -Wunused-result... yes
  835. checking whether C compiler handles -Wunused-value... yes
  836. checking whether C compiler handles -Wunused-variable... yes
  837. checking whether C compiler handles -Wvarargs... yes
  838. checking whether C compiler handles -Wvariadic-macros... yes
  839. checking whether C compiler handles -Wvector-operation-performance... yes
  840. checking whether C compiler handles -Wvolatile-register-var... yes
  841. checking whether C compiler handles -Wwrite-strings... yes
  842. checking whether C compiler handles -Walloc-size-larger-than=9223372036854775807... yes
  843. checking whether C compiler handles -Warray-bounds=2... yes
  844. checking whether C compiler handles -Wformat-overflow=2... yes
  845. checking whether C compiler handles -Wformat-truncation=2... yes
  846. checking whether C compiler handles -Wimplicit-fallthrough=5... yes
  847. checking whether C compiler handles -Wnormalized=nfc... yes
  848. checking whether C compiler handles -Wshift-overflow=2... yes
  849. checking whether C compiler handles -Wstringop-overflow=2... yes
  850. checking whether C compiler handles -Wunused-const-variable=2... yes
  851. checking whether C compiler handles -Wno-unused-parameter... yes
  852. checking whether C compiler handles -Wno-missing-field-initializers... yes
  853. checking whether C compiler handles -fdiagnostics-show-option... yes
  854. checking whether C compiler handles -Wframe-larger-than=5000... yes
  855. checking whether C compiler handles -Wstack-usage=10000... yes
  856. checking whether C compiler handles -Wimplicit-fallthrough=4... yes
  857. checking whether C compiler handles -Wformat-truncation=1... yes
  858. checking whether C compiler handles -Wformat-overflow=1... yes
  859. checking whether C compiler handles -Wno-shift-negative-value... yes
  860. checking whether C compiler handles -Wno-unused-macros... yes
  861. checking for special C compiler options needed for large files... (cached) no
  862. checking for _FILE_OFFSET_BITS value needed for large files... (cached) no
  863. checking size of long... 8
  864. checking if __attribute__((cleanup(...))) works with this compiler... yes
  865. checking if we should run the GNUlib tests... yes
  866.  
  867. --- Checking for libraries used by libguestfs ---
  868. checking for dirent.h that defines DIR... yes
  869. checking for library containing opendir... none required
  870. checking for struct dirent.d_type... yes
  871. checking for struct stat.st_blocks... yes
  872. checking for struct stat.st_blksize... yes
  873. checking for struct stat.st_atim.tv_nsec... (cached) yes
  874. checking for struct stat.st_mtim.tv_nsec... yes
  875. checking for struct stat.st_ctim.tv_nsec... yes
  876. checking for byteswap.h... (cached) yes
  877. checking endian.h usability... yes
  878. checking endian.h presence... yes
  879. checking for endian.h... yes
  880. checking sys/endian.h usability... no
  881. checking sys/endian.h presence... no
  882. checking for sys/endian.h... no
  883. checking errno.h usability... yes
  884. checking errno.h presence... yes
  885. checking for errno.h... yes
  886. checking linux/fs.h usability... no
  887. checking linux/fs.h presence... no
  888. checking for linux/fs.h... no
  889. checking linux/magic.h usability... no
  890. checking linux/magic.h presence... no
  891. checking for linux/magic.h... no
  892. checking linux/raid/md_u.h usability... no
  893. checking linux/raid/md_u.h presence... no
  894. checking for linux/raid/md_u.h... no
  895. checking linux/rtc.h usability... no
  896. checking linux/rtc.h presence... no
  897. checking for linux/rtc.h... no
  898. checking printf.h usability... no
  899. checking printf.h presence... no
  900. checking for printf.h... no
  901. checking sys/inotify.h usability... no
  902. checking sys/inotify.h presence... no
  903. checking for sys/inotify.h... no
  904. checking sys/mount.h usability... yes
  905. checking sys/mount.h presence... yes
  906. checking for sys/mount.h... yes
  907. checking sys/resource.h usability... yes
  908. checking sys/resource.h presence... yes
  909. checking for sys/resource.h... yes
  910. checking for sys/socket.h... (cached) yes
  911. checking sys/statfs.h usability... yes
  912. checking sys/statfs.h presence... yes
  913. checking for sys/statfs.h... yes
  914. checking sys/statvfs.h usability... yes
  915. checking sys/statvfs.h presence... yes
  916. checking for sys/statvfs.h... yes
  917. checking for sys/time.h... (cached) yes
  918. checking for sys/types.h... (cached) yes
  919. checking sys/un.h usability... yes
  920. checking sys/un.h presence... yes
  921. checking for sys/un.h... yes
  922. checking for sys/vfs.h... (cached) yes
  923. checking for sys/wait.h... (cached) yes
  924. checking windows.h usability... yes
  925. checking windows.h presence... yes
  926. checking for windows.h... yes
  927. checking sys/xattr.h usability... yes
  928. checking sys/xattr.h presence... yes
  929. checking for sys/xattr.h... yes
  930. checking for be32toh... no
  931. checking for fsync... yes
  932. checking for futimens... (cached) yes
  933. checking for getxattr... yes
  934. checking for htonl... yes
  935. checking for htons... yes
  936. checking for inotify_init1... no
  937. checking for lgetxattr... yes
  938. checking for listxattr... yes
  939. checking for llistxattr... yes
  940. checking for lsetxattr... yes
  941. checking for lremovexattr... yes
  942. checking for mknod... yes
  943. checking for ntohl... yes
  944. checking for ntohs... yes
  945. checking for posix_fallocate... yes
  946. checking for posix_fadvise... yes
  947. checking for removexattr... yes
  948. checking for setitimer... yes
  949. checking for setrlimit... yes
  950. checking for setxattr... yes
  951. checking for sigaction... (cached) yes
  952. checking for statfs... yes
  953. checking for statvfs... yes
  954. checking for sync... yes
  955. checking for sys/mkdev.h... (cached) no
  956. checking for sys/sysmacros.h... (cached) yes
  957. checking for UNIX_PATH_MAX... yes
  958. checking for pkg-config... /usr/bin/pkg-config
  959. checking pkg-config is at least version 0.9.0... yes
  960. checking for LIBTINFO... no
  961. checking for LIBTINFO... yes
  962. checking for xgettext... xgettext
  963. checking for msgcat... msgcat
  964. checking for msgfmt... msgfmt
  965. checking for msgmerge... msgmerge
  966. checking msgfmt is GNU tool... yes
  967. checking whether NLS is requested... yes
  968. checking for msgfmt... /usr/bin/msgfmt
  969. checking for gmsgfmt... /usr/bin/msgfmt
  970. checking for xgettext... /usr/bin/xgettext
  971. checking for msgmerge... /usr/bin/msgmerge
  972. checking for CFPreferencesCopyAppValue... (cached) no
  973. checking for CFLocaleCopyCurrent... (cached) no
  974. checking for CFLocaleCopyPreferredLanguages... (cached) no
  975. checking for GNU gettext in libc... no
  976. checking for iconv... (cached) yes
  977. checking for working iconv... (cached) yes
  978. checking how to link with libiconv... -liconv
  979. checking for GNU gettext in libintl... yes
  980. checking whether to use NLS... yes
  981. checking where the gettext function comes from... external libintl
  982. checking how to link with libintl... -lintl
  983. checking if the user specified a default backend... direct
  984. checking for dlopen in -ldl... yes
  985. checking for dlfcn.h... (cached) yes
  986. checking for RPC... yes
  987. checking for rpcgen... no
  988. checking selinux/selinux.h usability... no
  989. checking selinux/selinux.h presence... no
  990. checking for selinux/selinux.h... no
  991. checking for setexeccon in -lselinux... no
  992. checking sys/sdt.h usability... no
  993. checking sys/sdt.h presence... no
  994. checking for sys/sdt.h... no
  995. checking for PCRE... yes
  996. checking for AUGEAS... yes
  997. checking for aug_source... yes
  998. checking for magic_file in -lmagic... yes
  999. checking magic.h usability... yes
  1000. checking magic.h presence... yes
  1001. checking for magic.h... yes
  1002. checking for LIBVIRT... yes
  1003. checking for LIBXML2... yes
  1004. checking for xmlBufferDetach... yes
  1005. checking for JANSSON... yes
  1006. checking for g++... g++
  1007. checking whether we are using the GNU C++ compiler... yes
  1008. checking whether g++ accepts -g... yes
  1009. checking for g++ option to enable C++11 features... none needed
  1010. checking dependency style of g++... gcc3
  1011. checking how to run the C++ preprocessor... g++ -E
  1012. checking for ld used by g++... /usr/x86_64-pc-cygwin/bin/ld.exe
  1013. checking if the linker (/usr/x86_64-pc-cygwin/bin/ld.exe) is GNU ld... yes
  1014. checking whether the g++ linker (/usr/x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... yes
  1015. checking for g++ option to produce PIC... -DDLL_EXPORT -DPIC
  1016. checking if g++ PIC flag -DDLL_EXPORT -DPIC works... yes
  1017. checking if g++ static flag -static works... yes
  1018. checking if g++ supports -c -o file.o... yes
  1019. checking if g++ supports -c -o file.o... (cached) yes
  1020. checking whether the g++ linker (/usr/x86_64-pc-cygwin/bin/ld.exe) supports shared libraries... yes
  1021. checking dynamic linker characteristics... Win32 ld.exe
  1022. checking how to hardcode library paths into programs... immediate
  1023. checking if the C++ compiler really really works... yes
  1024.  
  1025. --- Checking for FUSE ---
  1026. checking for FUSE... yes
  1027. checking for fuse_opt_add_opt_escaped... yes
  1028.  
  1029. --- Checking the daemon and its dependencies ---
  1030. checking if we should build the daemon... no
  1031. checking for acl_from_text in -lacl... yes
  1032. checking sys/acl.h usability... yes
  1033. checking sys/acl.h presence... yes
  1034. checking for sys/acl.h... yes
  1035. checking for cap_from_text in -lcap... no
  1036. configure: WARNING: Linux capabilities library (libcap) not found
  1037. checking for HIVEX... yes
  1038. checking for SD_JOURNAL... no
  1039. checking for SD_JOURNAL... no
  1040. configure: WARNING: systemd journal library not found, some features will be disabled
  1041. checking for tsk_version_print in -ltsk... no
  1042. configure: WARNING: The Sleuth Kit library (libtsk) not found
  1043. checking for YARA... no
  1044. checking for yr_initialize in -lyara... no
  1045. configure: WARNING: Yara library not found
  1046.  
  1047. --- Checking the appliance and its dependencies ---
  1048. checking if we should build the appliance... no
  1049. checking for supermin... no
  1050. checking for --with-supermin-packager-config option... not set
  1051. checking for --with-supermin-extra-options option... not set
  1052. checking which Linux distro for package names... cygwin (manually specified)
  1053.  
  1054. --- Checking for QEMU ---
  1055. checking for qemu-kvm... no
  1056. checking for kvm... no
  1057. checking for qemu-system-x86_64... /cygdrive/c/bin/qemu/qemu-system-x86_64
  1058. checking that /cygdrive/c/bin/qemu/qemu-system-x86_64 -help works... yes
  1059. checking that /cygdrive/c/bin/qemu/qemu-system-x86_64 -version works... yes
  1060. checking for /cygdrive/c/bin/qemu/qemu-system-x86_64 version >= 1... yes
  1061. checking what extra options we need to use for qemu feature tests... -machine accel=kvm:tcg -display none
  1062. checking that /cygdrive/c/bin/qemu/qemu-system-x86_64 -machine accel=kvm:tcg -display none -device ? works... yes
  1063. checking for virtio-serial support in /cygdrive/c/bin/qemu/qemu-system-x86_64... yes
  1064.  
  1065. --- Checking for other libraries ---
  1066. checking for LIBCRYPT... yes
  1067. checking crypt.h usability... yes
  1068. checking crypt.h presence... yes
  1069. checking for crypt.h... yes
  1070. checking for LIBLZMA... yes
  1071. checking for lzma_index_stream_flags... yes
  1072. checking for lzma_index_stream_padding... yes
  1073. checking for main in -lreadline... yes
  1074. checking for append_history... yes
  1075. checking for completion_matches... yes
  1076. checking for rl_completion_matches... yes
  1077. checking for LIBCONFIG... yes
  1078.  
  1079. --- Checking for OCaml ---
  1080. checking for ocamlc... ocamlc
  1081. OCaml version is 4.04.2
  1082. OCaml library path is /usr/lib/ocaml
  1083. checking for ocamlopt... ocamlopt
  1084. checking for ocamlc.opt... ocamlc.opt
  1085. checking for ocamlopt.opt... ocamlopt.opt
  1086. checking for ocamldep... ocamldep
  1087. checking for ocamlmktop... ocamlmktop
  1088. checking for ocamlmklib... ocamlmklib
  1089. checking for ocamldoc... ocamldoc
  1090. checking for ocamlbuild... no
  1091. checking for ocamlfind... ocamlfind
  1092. checking if OCaml version >= 4.01... yes (4, 4)
  1093. checking if OCaml ‘-runtime-variant _pic’ works... yes
  1094. checking if ocamldep has the ‘-all’ option... yes
  1095. checking if ocamldep has the ‘-one-line’ option... yes
  1096. checking for OCaml findlib package gettext... found
  1097. configure: creating common/mlgettext/common_gettext.ml
  1098. checking for OCaml findlib package libvirt... not found
  1099. checking for OCaml findlib package oUnit... found
  1100. checking for OCaml module OUnit.OUnit2... +oUnit
  1101. checking for OCaml module Bytes... yes
  1102. checking for ocaml-gettext... ocaml-gettext
  1103.  
  1104. --- Checking for Perl ---
  1105. checking for perl... perl
  1106. checking for Pod::Man... yes
  1107. checking for Pod::Simple... yes
  1108. checking for Test::More... yes
  1109. checking for Module::Build... no
  1110. configure: WARNING: some Perl modules required to compile or test the Perl bindings are missing
  1111. checking for Pod::Usage... yes
  1112. checking for Getopt::Long... yes
  1113. checking for Sys::Virt... no
  1114. checking for Locale::TextDomain... no
  1115. checking for Win::Hivex... no
  1116. checking for Win::Hivex::Regedit... no
  1117. configure: WARNING: some Perl modules required to compile the Perl virt-* tools are missing
  1118.  
  1119. --- Checking for Python ---
  1120. checking for python... python
  1121. checking Python version... 2.7
  1122. checking for PYTHON... yes
  1123. checking Python prefix... /usr
  1124. checking for Python site-packages path... /usr/lib/python2.7/site-packages
  1125. checking for Python extension suffix (PEP-3149)... .dll
  1126. checking for PyCapsule_New in -lc... no
  1127. checking for PyString_AsString in -lc... no
  1128.  
  1129. --- Checking for Ruby ---
  1130. checking for ruby... no
  1131. checking for rake... no
  1132. checking for C library for Ruby extensions... not found
  1133.  
  1134. --- Checking for Java ---
  1135. checking for 'java' in /usr/lib/jvm/java... not found
  1136. checking for 'java' in /usr/lib64/jvm/java... not found
  1137. checking for 'java' in /usr/lib/jvm/default-java... not found
  1138. checking for 'java' in /usr/lib/jvm/default... not found
  1139. checking for 'java' in /etc/java-config-2/current-system-vm... not found
  1140. checking for 'java' in /usr/lib/jvm/java-8-openjdk... not found
  1141. checking for 'java' in /usr/lib/jvm/java-7-openjdk... not found
  1142. checking for 'java' in /usr/lib/jvm/java-6-openjdk... not found
  1143.  
  1144. --- Checking for Haskell ---
  1145. checking for ghc... no
  1146.  
  1147. --- Checking for PHP ---
  1148. checking for php... no
  1149. checking for phpize... no
  1150.  
  1151. --- Checking for Erlang ---
  1152. checking for erlc... no
  1153.  
  1154. --- Checking for Lua ---
  1155. checking for lua... no
  1156.  
  1157. --- Checking for Go ---
  1158. checking for go... no
  1159.  
  1160. --- Checking for GObject Introspection ---
  1161. checking for GOBJECT... yes
  1162. checking for GIO... yes
  1163. checking for gjs... no
  1164. configure: WARNING: gjs not found, gobject bindtests will not run
  1165. checking for gobject-introspection... yes
  1166.  
  1167. --- Checking the virt-v2v and virt-p2v dependencies ---
  1168. checking for the nbdkit python plugin name... python
  1169. checking for --with-gtk option... not set, will check for installed Gtk
  1170. checking for GTK... no
  1171. checking for GTK... no
  1172. checking for DBUS... no
  1173. configure: WARNING: D-Bus not found, virt-p2v will not be able to inhibit power saving during P2V conversions
  1174. checking if we can build virt-p2v... no
  1175.  
  1176. --- Checking for bash completion ---
  1177. checking for BASH_COMPLETION... yes
  1178. checking for bash-completions directory... /usr/share/bash-completion/completions
  1179.  
  1180. --- Performing additional configuration ---
  1181.  
  1182. --- Generating output files ---
  1183. checking that generated files are newer than configure... done
  1184. configure: creating ./config.status
  1185. config.status: creating appliance/libguestfs-make-fixed-appliance
  1186. config.status: creating inspector/test-xmllint.sh
  1187. config.status: creating inspector/test-virt-inspector.sh
  1188. config.status: creating inspector/test-virt-inspector-luks.sh
  1189. config.status: creating installcheck.sh
  1190. config.status: creating ocaml-dep.sh
  1191. config.status: creating ocaml-link.sh
  1192. config.status: creating p2v/virt-p2v-make-disk
  1193. config.status: WARNING: 'p2v/virt-p2v-make-disk.in' seems to ignore the --datarootdir setting
  1194. config.status: creating p2v/virt-p2v-make-kickstart
  1195. config.status: WARNING: 'p2v/virt-p2v-make-kickstart.in' seems to ignore the --datarootdir setting
  1196. config.status: creating p2v/virt-p2v-make-kiwi
  1197. config.status: WARNING: 'p2v/virt-p2v-make-kiwi.in' seems to ignore the --datarootdir setting
  1198. config.status: creating php/extension/php-for-tests.sh
  1199. config.status: creating pick-guests.pl
  1200. config.status: creating podwrapper.pl
  1201. config.status: creating run
  1202. config.status: creating Makefile
  1203. config.status: creating align/Makefile
  1204. config.status: creating appliance/Makefile
  1205. config.status: creating bash/Makefile
  1206. config.status: creating builder/Makefile
  1207. config.status: creating builder/libguestfs.conf
  1208. config.status: creating builder/opensuse.conf
  1209. config.status: creating builder/templates/Makefile
  1210. config.status: creating builder/test-config/virt-builder/repos.d/test-index.conf
  1211. config.status: creating builder/test-simplestreams/virt-builder/repos.d/cirros.conf
  1212. config.status: creating builder/test-website/virt-builder/repos.d/libguestfs.conf
  1213. config.status: creating cat/Makefile
  1214. config.status: creating common/errnostring/Makefile
  1215. config.status: creating common/edit/Makefile
  1216. config.status: creating common/miniexpect/Makefile
  1217. config.status: creating common/mlaugeas/Makefile
  1218. config.status: creating common/mlgettext/Makefile
  1219. config.status: creating common/mlpcre/Makefile
  1220. config.status: creating common/mlprogress/Makefile
  1221. config.status: creating common/mlstdutils/Makefile
  1222. config.status: creating common/mlstdutils/guestfs_config.ml
  1223. config.status: creating common/mltools/Makefile
  1224. config.status: creating common/mlutils/Makefile
  1225. config.status: creating common/mlvisit/Makefile
  1226. config.status: creating common/mlxml/Makefile
  1227. config.status: creating common/options/Makefile
  1228. config.status: creating common/parallel/Makefile
  1229. config.status: creating common/progress/Makefile
  1230. config.status: creating common/protocol/Makefile
  1231. config.status: creating common/qemuopts/Makefile
  1232. config.status: creating common/structs/Makefile
  1233. config.status: creating common/utils/Makefile
  1234. config.status: creating common/visit/Makefile
  1235. config.status: creating common/windows/Makefile
  1236. config.status: creating csharp/Makefile
  1237. config.status: creating customize/Makefile
  1238. config.status: creating daemon/daemon_config.ml
  1239. config.status: creating daemon/Makefile
  1240. config.status: creating df/Makefile
  1241. config.status: creating dib/Makefile
  1242. config.status: creating diff/Makefile
  1243. config.status: creating docs/Makefile
  1244. config.status: creating edit/Makefile
  1245. config.status: creating erlang/Makefile
  1246. config.status: creating erlang/examples/Makefile
  1247. config.status: creating examples/Makefile
  1248. config.status: creating fish/Makefile
  1249. config.status: creating format/Makefile
  1250. config.status: creating fuse/Makefile
  1251. config.status: creating generator/Makefile
  1252. config.status: creating get-kernel/Makefile
  1253. config.status: creating gnulib/lib/Makefile
  1254. config.status: creating gnulib/tests/Makefile
  1255. config.status: creating gobject/libguestfs-gobject-1.0.pc
  1256. config.status: creating gobject/Makefile
  1257. config.status: creating golang/Makefile
  1258. config.status: creating golang/examples/Makefile
  1259. config.status: creating haskell/Makefile
  1260. config.status: creating inspector/Makefile
  1261. config.status: creating java/Makefile
  1262. config.status: creating java/examples/Makefile
  1263. config.status: creating lib/Makefile
  1264. config.status: creating lib/libguestfs.pc
  1265. config.status: creating lua/Makefile
  1266. config.status: creating lua/examples/Makefile
  1267. config.status: creating make-fs/Makefile
  1268. config.status: creating ocaml/META
  1269. config.status: creating ocaml/Makefile
  1270. config.status: creating ocaml/examples/Makefile
  1271. config.status: creating p2v/Makefile
  1272. config.status: creating perl/Build.PL
  1273. config.status: creating perl/Makefile
  1274. config.status: creating perl/examples/Makefile
  1275. config.status: creating php/Makefile
  1276. config.status: creating po-docs/Makefile
  1277. config.status: creating po-docs/ja/Makefile
  1278. config.status: creating po-docs/uk/Makefile
  1279. config.status: creating po/Makefile
  1280. config.status: creating python/Makefile
  1281. config.status: creating python/examples/Makefile
  1282. config.status: creating python/setup.py
  1283. config.status: creating python/t/tests_helper.py
  1284. config.status: creating rescue/Makefile
  1285. config.status: creating resize/Makefile
  1286. config.status: creating ruby/Makefile
  1287. config.status: creating ruby/Rakefile
  1288. config.status: creating ruby/examples/Makefile
  1289. config.status: creating ruby/ext/guestfs/extconf.rb
  1290. config.status: creating sparsify/Makefile
  1291. config.status: creating sysprep/Makefile
  1292. config.status: creating test-data/Makefile
  1293. config.status: creating test-data/binaries/Makefile
  1294. config.status: creating test-data/blank-disks/Makefile
  1295. config.status: creating test-data/fake-virtio-win/Makefile
  1296. config.status: creating test-data/fake-virt-tools/Makefile
  1297. config.status: creating test-data/files/Makefile
  1298. config.status: creating test-data/phony-guests/Makefile
  1299. config.status: creating test-data/phony-guests/guests.xml
  1300. config.status: creating test-tool/Makefile
  1301. config.status: creating tests/9p/Makefile
  1302. config.status: creating tests/bigdirs/Makefile
  1303. config.status: creating tests/btrfs/Makefile
  1304. config.status: creating tests/c-api/Makefile
  1305. config.status: creating tests/charsets/Makefile
  1306. config.status: creating tests/create/Makefile
  1307. config.status: creating tests/daemon/Makefile
  1308. config.status: creating tests/daemon/captive-daemon.pm
  1309. config.status: creating tests/discard/Makefile
  1310. config.status: creating tests/disks/Makefile
  1311. config.status: creating tests/disks/test-qemu-drive-libvirt.xml
  1312. config.status: creating tests/disk-labels/Makefile
  1313. config.status: creating tests/events/Makefile
  1314. config.status: creating tests/gdisk/Makefile
  1315. config.status: creating tests/hotplug/Makefile
  1316. config.status: creating tests/http/Makefile
  1317. config.status: creating tests/journal/Makefile
  1318. config.status: creating tests/luks/Makefile
  1319. config.status: creating tests/lvm/Makefile
  1320. config.status: creating tests/md/Makefile
  1321. config.status: creating tests/mount-local/Makefile
  1322. config.status: creating tests/mountable/Makefile
  1323. config.status: creating tests/nbd/Makefile
  1324. config.status: creating tests/network/Makefile
  1325. config.status: creating tests/ntfs/Makefile
  1326. config.status: creating tests/parallel/Makefile
  1327. config.status: creating tests/protocol/Makefile
  1328. config.status: creating tests/qemu/Makefile
  1329. config.status: creating tests/regressions/Makefile
  1330. config.status: creating tests/relabel/Makefile
  1331. config.status: creating tests/relative-paths/Makefile
  1332. config.status: creating tests/rsync/Makefile
  1333. config.status: creating tests/selinux/Makefile
  1334. config.status: creating tests/syslinux/Makefile
  1335. config.status: creating tests/tmpdirs/Makefile
  1336. config.status: creating tests/tsk/Makefile
  1337. config.status: creating tests/xfs/Makefile
  1338. config.status: creating tests/xml/Makefile
  1339. config.status: creating tests/yara/Makefile
  1340. config.status: creating tools/Makefile
  1341. config.status: creating utils/boot-analysis/Makefile
  1342. config.status: creating utils/boot-benchmark/Makefile
  1343. config.status: creating utils/max-disks/Makefile
  1344. config.status: creating utils/qemu-boot/Makefile
  1345. config.status: creating utils/qemu-speed-test/Makefile
  1346. config.status: creating v2v/Makefile
  1347. config.status: creating v2v/config.ml
  1348. config.status: creating v2v/test-harness/Makefile
  1349. config.status: creating v2v/test-harness/META
  1350. config.status: creating website/index.html
  1351. config.status: creating config.h
  1352. config.status: executing depfiles commands
  1353. 0 [main] generator 16821 dofork: child -1 - forked process 9280 died unexpectedly, retry 0, exit code 0xC0000142, errno 11
  1354. 0 [main] generator 16858 dofork: child -1 - forked process 8512 died unexpectedly, retry 0, exit code 0xC0000142, errno 11
  1355. 0 [main] generator 18844 dofork: child -1 - forked process 3424 died unexpectedly, retry 0, exit code 0xC0000142, errno 11
  1356. 0 [main] generator 19611 dofork: child -1 - forked process 820 died unexpectedly, retry 0, exit code 0xC0000142, errno 11
  1357. config.status: executing libtool commands
  1358. config.status: executing po-directories commands
  1359.  
  1360.  
  1361. ------------------------------------------------------------
  1362. Thank you for downloading libguestfs 1.40.2
  1363.  
  1364. This is how we have configured the optional components for you today:
  1365.  
  1366. Daemon .............................. no
  1367. Appliance ........................... no
  1368. QEMU ................................ /cygdrive/c/bin/qemu/qemu-system-x86_64
  1369. guestfish and C-based virt tools .... yes
  1370. FUSE filesystem ..................... yes
  1371. Default backend ..................... direct
  1372. GNU gettext for i18n ................ yes
  1373. virt-p2v ............................ no
  1374. OCaml bindings ...................... yes
  1375. OCaml-based virt tools .............. yes
  1376. Perl bindings ....................... no
  1377. Perl-based virt tools ............... no
  1378. Python bindings ..................... yes
  1379. Ruby bindings ....................... no
  1380. Java bindings ....................... no
  1381. Haskell bindings .................... no
  1382. PHP bindings ........................ no
  1383. Erlang bindings ..................... no
  1384. Lua bindings ........................ no
  1385. Go bindings ......................... no
  1386. gobject bindings .................... yes
  1387. gobject introspection ............... yes
  1388. bash completion ..................... yes
  1389.  
  1390. If any optional component is configured 'no' when you expected 'yes'
  1391. then you should check the preceding messages.
  1392.  
  1393. Please report bugs back to the mailing list:
  1394. http://www.redhat.com/mailman/listinfo/libguestfs
  1395.  
  1396. Next you should type 'make' to build the package,
  1397. then 'make check' to run the tests.
  1398.  
  1399. Or run 'make help' to list some common targets.
  1400. ------------------------------------------------------------
  1401.  
  1402. user@PC /cygdrive/c/src/libguestfs-1.40.2
  1403. $
  1404.  
  1405. user@PC /cygdrive/c/src/libguestfs-1.40.2
  1406. $ make -C generator clean
  1407. make: Entering directory '/cygdrive/c/src/libguestfs-1.40.2/generator'
  1408. test -z "*~ *.bak *.orig *.rej *.cmi *.cmo *.cma *.cmx *.cmxa dll*.so *.a *.annot oUnit-*.cache oUnit-*.log *.1 *.3 *.5 *.8 stamp-*.pod bindtests.tmp stamp-generator generator" || rm -f *~ *.bak *.orig *.rej *.cmi *.cmo *.cma *.cmx *.cmxa dll*.so *.a *.annot oUnit-*.cache oUnit-*.log *.1 *.3 *.5 *.8 stamp-*.pod bindtests.tmp stamp-generator generator
  1409. rm -rf .libs _libs
  1410. rm -f *.lo
  1411. make: Leaving directory '/cygdrive/c/src/libguestfs-1.40.2/generator'
  1412.  
  1413. user@PC /cygdrive/c/src/libguestfs-1.40.2
  1414. $ make -C generator
  1415. make: Entering directory '/cygdrive/c/src/libguestfs-1.40.2/generator'
  1416. OCAMLCMI types.cmi
  1417. OCAMLC types.cmo
  1418. OCAMLCMI utils.cmi
  1419. OCAMLC utils.cmo
  1420. OCAMLCMI proc_nr.cmi
  1421. OCAMLC proc_nr.cmo
  1422. OCAMLCMI actions_augeas.cmi
  1423. OCAMLC actions_augeas.cmo
  1424. OCAMLCMI actions_core.cmi
  1425. OCAMLC actions_core.cmo
  1426. OCAMLCMI actions_core_deprecated.cmi
  1427. OCAMLC actions_core_deprecated.cmo
  1428. OCAMLCMI actions_debug.cmi
  1429. OCAMLC actions_debug.cmo
  1430. OCAMLCMI actions_hivex.cmi
  1431. OCAMLC actions_hivex.cmo
  1432. OCAMLCMI actions_hivex_deprecated.cmi
  1433. OCAMLC actions_hivex_deprecated.cmo
  1434. OCAMLCMI actions_inspection.cmi
  1435. OCAMLC actions_inspection.cmo
  1436. OCAMLCMI actions_inspection_deprecated.cmi
  1437. OCAMLC actions_inspection_deprecated.cmo
  1438. OCAMLCMI actions_internal_tests.cmi
  1439. OCAMLC actions_internal_tests.cmo
  1440. OCAMLCMI actions_properties.cmi
  1441. OCAMLC actions_properties.cmo
  1442. OCAMLCMI actions_properties_deprecated.cmi
  1443. OCAMLC actions_properties_deprecated.cmo
  1444. OCAMLCMI actions_tsk.cmi
  1445. OCAMLC actions_tsk.cmo
  1446. OCAMLCMI actions_yara.cmi
  1447. OCAMLC actions_yara.cmo
  1448. OCAMLCMI actions.cmi
  1449. OCAMLC actions.cmo
  1450. OCAMLCMI structs.cmi
  1451. OCAMLC structs.cmo
  1452. OCAMLCMI fish_commands.cmi
  1453. OCAMLC fish_commands.cmo
  1454. OCAMLCMI optgroups.cmi
  1455. OCAMLC optgroups.cmo
  1456. OCAMLCMI prepopts.cmi
  1457. OCAMLC prepopts.cmo
  1458. OCAMLCMI events.cmi
  1459. OCAMLC events.cmo
  1460. OCAMLCMI pr.cmi
  1461. OCAMLC pr.cmo
  1462. OCAMLCMI docstrings.cmi
  1463. OCAMLC docstrings.cmo
  1464. OCAMLCMI authors.cmi
  1465. OCAMLC authors.cmo
  1466. OCAMLCMI checks.cmi
  1467. OCAMLC checks.cmo
  1468. OCAMLCMI c.cmi
  1469. OCAMLC c.cmo
  1470. OCAMLCMI XDR.cmi
  1471. OCAMLC XDR.cmo
  1472. OCAMLCMI daemon.cmi
  1473. OCAMLC daemon.cmo
  1474. OCAMLCMI tests_c_api.cmi
  1475. OCAMLC tests_c_api.cmo
  1476. OCAMLCMI fish.cmi
  1477. OCAMLC fish.cmo
  1478. OCAMLCMI OCaml.cmi
  1479. OCAMLC OCaml.cmo
  1480. OCAMLCMI perl.cmi
  1481. OCAMLC perl.cmo
  1482. OCAMLCMI python.cmi
  1483. OCAMLC python.cmo
  1484. OCAMLCMI ruby.cmi
  1485. OCAMLC ruby.cmo
  1486. OCAMLCMI java.cmi
  1487. OCAMLC java.cmo
  1488. OCAMLCMI haskell.cmi
  1489. OCAMLC haskell.cmo
  1490. OCAMLCMI csharp.cmi
  1491. OCAMLC csharp.cmo
  1492. OCAMLCMI php.cmi
  1493. OCAMLC php.cmo
  1494. OCAMLCMI erlang.cmi
  1495. OCAMLC erlang.cmo
  1496. OCAMLCMI lua.cmi
  1497. OCAMLC lua.cmo
  1498. OCAMLCMI GObject.cmi
  1499. OCAMLC GObject.cmo
  1500. OCAMLCMI golang.cmi
  1501. OCAMLC golang.cmo
  1502. OCAMLCMI bindtests.cmi
  1503. OCAMLC bindtests.cmo
  1504. OCAMLCMI errnostring.cmi
  1505. OCAMLC errnostring.cmo
  1506. OCAMLCMI customize.cmi
  1507. OCAMLC customize.cmo
  1508. OCAMLCMI UEFI.cmi
  1509. OCAMLC UEFI.cmo
  1510. OCAMLCMI p2v_config.cmi
  1511. OCAMLC p2v_config.cmo
  1512. OCAMLCMI main.cmi
  1513. OCAMLC main.cmo
  1514. make -C ../common/mlstdutils mlstdutils.cma
  1515. make[1]: Entering directory '/cygdrive/c/src/libguestfs-1.40.2/common/mlstdutils'
  1516. make[1]: 'mlstdutils.cma' is up to date.
  1517. make[1]: Leaving directory '/cygdrive/c/src/libguestfs-1.40.2/common/mlstdutils'
  1518. ocamlfind ocamlc -g -annot -safe-string -warn-error CDEFLMPSUVYZX+52-3 -ccopt '-fPIC -fno-strict-overflow -Wno-strict-overflow' \
  1519. -package unix,str -I . -I . -I ../common/mlstdutils -I ../common/mlstdutils -linkpkg mlstdutils.cma \
  1520. types.cmo utils.cmo proc_nr.cmo actions_augeas.cmo actions_core.cmo actions_core_deprecated.cmo actions_debug.cmo actions_hivex.cmo actions_hivex_deprecated.cmo actions_inspection.cmo actions_inspection_deprecated.cmo actions_internal_tests.cmo actions_properties.cmo actions_properties_deprecated.cmo actions_tsk.cmo actions_yara.cmo actions.cmo structs.cmo fish_commands.cmo optgroups.cmo prepopts.cmo events.cmo pr.cmo docstrings.cmo authors.cmo checks.cmo c.cmo XDR.cmo daemon.cmo tests_c_api.cmo fish.cmo OCaml.cmo perl.cmo python.cmo ruby.cmo java.cmo haskell.cmo csharp.cmo php.cmo erlang.cmo lua.cmo GObject.cmo golang.cmo bindtests.cmo errnostring.cmo customize.cmo UEFI.cmo p2v_config.cmo main.cmo -o generator
  1521. mkdir -p ../perl/lib/Sys
  1522. mkdir -p ../ruby/ext/guestfs
  1523. mkdir -p ../java/com/redhat/et/libguestfs
  1524. mkdir -p ../csharp
  1525. mkdir -p ../gobject/src
  1526. mkdir -p ../gobject/include
  1527. mkdir -p ../gobject/include/guestfs-gobject
  1528. cd .. && /cygdrive/c/src/libguestfs-1.40.2/generator/generator
  1529. 0 [main] generator 19995 dofork: child -1 - forked process 7060 died unexpectedly, retry 0, exit code 0xC0000142, errno 11
  1530. Fatal error: exception Unix.Unix_error(Unix.EAGAIN, "fork", "")
  1531. make: *** [Makefile:2105: stamp-generator] Error 2
  1532. make: Leaving directory '/cygdrive/c/src/libguestfs-1.40.2/generator'
  1533.  
  1534. user@PC /cygdrive/c/src/libguestfs-1.40.2
  1535. $ make
  1536. fatal: not a git repository (or any parent up to mount point /cygdrive)
  1537. Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
  1538. make all-recursive
  1539. make[1]: Entering directory '/cygdrive/c/src/libguestfs-1.40.2'
  1540. Making all in common/mlstdutils
  1541. make[2]: Entering directory '/cygdrive/c/src/libguestfs-1.40.2/common/mlstdutils'
  1542. CC libmlstdutils_a-dummy.o
  1543. OCAMLOPT guestfs_config.cmx
  1544. OCAMLOPT stringMap.cmx
  1545. OCAMLOPT stringSet.cmx
  1546. OCAMLOPT std_utils.cmx
  1547. AR libmlstdutils.a
  1548. ocamlfind ocamlopt -package str,unix -I . -a guestfs_config.cmx stringMap.cmx stringSet.cmx std_utils.cmx -o mlstdutils.cmxa
  1549. make[2]: Leaving directory '/cygdrive/c/src/libguestfs-1.40.2/common/mlstdutils'
  1550. Making all in generator
  1551. make[2]: Entering directory '/cygdrive/c/src/libguestfs-1.40.2/generator'
  1552. mkdir -p ../perl/lib/Sys
  1553. mkdir -p ../ruby/ext/guestfs
  1554. mkdir -p ../java/com/redhat/et/libguestfs
  1555. mkdir -p ../csharp
  1556. mkdir -p ../gobject/src
  1557. mkdir -p ../gobject/include
  1558. mkdir -p ../gobject/include/guestfs-gobject
  1559. cd .. && /cygdrive/c/src/libguestfs-1.40.2/generator/generator
  1560. 0 [main] generator 20094 dofork: child -1 - forked process 12992 died unexpectedly, retry 0, exit code 0xC0000142, errno 11
  1561. Fatal error: exception Unix.Unix_error(Unix.EAGAIN, "fork", "")
  1562. make[2]: *** [Makefile:2105: stamp-generator] Error 2
  1563. make[2]: Leaving directory '/cygdrive/c/src/libguestfs-1.40.2/generator'
  1564. make[1]: *** [Makefile:2247: all-recursive] Error 1
  1565. make[1]: Leaving directory '/cygdrive/c/src/libguestfs-1.40.2'
  1566. make: *** [Makefile:2151: all] Error 2
Add Comment
Please, Sign In to add comment