------------------------------------------------------------------------------- -- Phase: setup ------------------------------------------------------------------------------- Installing /packages/All/indexinfo-0.3.1.tgz Installing /packages/All/gettext-runtime-0.20.1.tgz Installing /packages/All/gmake-4.2.1_3.tgz Installing /packages/All/pcre-8.43_2.tgz SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: check-sanity ------------------------------------------------------------------------------- x SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: pkg-depends ------------------------------------------------------------------------------- x SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: fetch-depends ------------------------------------------------------------------------------- x SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: fetch ------------------------------------------------------------------------------- x===> Fetching all distfiles required by pcrs-0.0.3_3 for building SUCCEEDED 00:00:05 ------------------------------------------------------------------------------- -- Phase: checksum ------------------------------------------------------------------------------- x===> Fetching all distfiles required by pcrs-0.0.3_3 for building => SHA256 Checksum OK for pcrs-0.0.3-src.tar.gz. SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: extract-depends ------------------------------------------------------------------------------- x SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: extract ------------------------------------------------------------------------------- x===> Fetching all distfiles required by pcrs-0.0.3_3 for building ===> Extracting for pcrs-0.0.3_3 => SHA256 Checksum OK for pcrs-0.0.3-src.tar.gz. Extracted Memory Use: 0.13M SUCCEEDED 00:00:03 ------------------------------------------------------------------------------- -- Phase: patch-depends ------------------------------------------------------------------------------- x SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: patch ------------------------------------------------------------------------------- x===> Patching for pcrs-0.0.3_3 ===> Applying ports patches for pcrs-0.0.3_3 SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: build-depends ------------------------------------------------------------------------------- x SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: lib-depends ------------------------------------------------------------------------------- x SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: configure ------------------------------------------------------------------------------- x===> Configuring for pcrs-0.0.3_3 configure: warning: x86_64-portbld-dragonfly5.7: invalid host type loading site script /xports/Templates/config.site creating cache ./config.cache checking for gcc... cc checking whether the C compiler (cc -pipe -O2 -fno-strict-aliasing ) works... yes checking whether the C compiler (cc -pipe -O2 -fno-strict-aliasing ) is a cross-compiler... no checking whether we are using GNU C... yes checking whether cc accepts -g... yes checking for a BSD compatible install... /usr/bin/install -c checking whether ln -s works... yes checking for gdb... yes checking for gzip... yes checking for Cygwin environment... no checking for mingw32 environment... no checking for executable suffix... no checking for object suffix... o checking how to run the C preprocessor... cpp checking for string.h... (cached) yes checking for ctype.h... (cached) yes checking for pcre_fullinfo in -lpcre... yes checking for pcre.h... yes updating cache ./config.cache creating ./config.status creating Makefile creating pcrs.3 creating pcrs.h SUCCEEDED 00:00:01 ------------------------------------------------------------------------------- -- Phase: build ------------------------------------------------------------------------------- x===> Building for pcrs-0.0.3_3 gmake[1]: Entering directory '/construction/textproc/pcrs/pcrs-0.0.3' cc -pipe -pipe -O2 -fno-strict-aliasing -Wall -Wstrict-prototypes -Wshadow -Wconversion -pedantic -I/usr/local/include -L/usr/local/lib -fPIC -c pcrs.c pcrs.c: In function 'pcrs_compile_replacement': pcrs.c:322:11: warning: conversion from 'size_t' {aka 'long unsigned int'} to 'int' may change value [-Wconversion] k = length; ^~~~~~ pcrs.c:383:34: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'int' may change the sign of the result [-Wsign-conversion] r->block_length[l] = k - r->block_offset[l]; ^ In file included from pcrs.c:146: pcrs.h:84:30: warning: conversion from 'long int' to 'int' may change value [-Wconversion] #define PCRS_MAX_SUBMATCHES 33 /* Maximum number of capturing subpatterns allowed. MUST be <= 99! FIXME: Should be dynamic */ ^~ pcrs.c:412:35: note: in expansion of macro 'PCRS_MAX_SUBMATCHES' r->backref[l] = PCRS_MAX_SUBMATCHES + 1 - (symbol - symbols); ^~~~~~~~~~~~~~~~~~~ pcrs.c:448:25: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'int' may change the sign of the result [-Wsign-conversion] r->block_length[l] = k - r->block_offset[l]; ^ pcrs.c: In function 'pcrs_execute': pcrs.c:820:60: warning: conversion to 'long unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] if (NULL == (matches = (pcrs_match *)malloc(max_matches * sizeof(pcrs_match)))) ^ pcrs.c:825:38: warning: conversion to 'long unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] memset(matches, '\0', max_matches * sizeof(pcrs_match)); ^ pcrs.c:844:42: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'int' may change the sign of the result [-Wsign-conversion] matches[i].submatch_length[k] = offsets[2 * k + 1] - offsets[2 * k]; ^~~~~~~ pcrs.c:847:51: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'int' may change the sign of the result [-Wsign-conversion] newsize += matches[i].submatch_length[k] * job->substitute->backref_count[k]; ^ pcrs.c:854:57: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'int' may change the sign of the result [-Wsign-conversion] matches[i].submatch_length[PCRS_MAX_SUBMATCHES] = offsets[0]; ^~~~~~~ pcrs.c:855:15: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'int' may change the sign of the result [-Wsign-conversion] newsize += offsets[0] * job->substitute->backref_count[PCRS_MAX_SUBMATCHES]; ^~ pcrs.c:859:76: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'int' may change the sign of the result [-Wsign-conversion] matches[i].submatch_length[PCRS_MAX_SUBMATCHES + 1] = subject_length - offsets[1] - 1; ^ pcrs.c:860:34: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'int' may change the sign of the result [-Wsign-conversion] newsize += (subject_length - offsets[1]) * job->substitute->backref_count[PCRS_MAX_SUBMATCHES + 1]; ^ pcrs.c:860:48: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'int' may change the sign of the result [-Wsign-conversion] newsize += (subject_length - offsets[1]) * job->substitute->backref_count[PCRS_MAX_SUBMATCHES + 1]; ^ pcrs.c:866:74: warning: conversion to 'long unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] if (NULL == (dummy = (pcrs_match *)realloc(matches, max_matches * sizeof(pcrs_match)))) ^ pcrs.c:921:85: warning: conversion to 'long unsigned int' from 'int' may change the sign of the result [-Wsign-conversion] memcpy(result_offset, subject + offset, (size_t)matches[i].submatch_offset[0] - offset); ^ pcrs.c:949:47: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'int' may change the sign of the result [-Wsign-conversion] offset = matches[i].submatch_offset[0] + matches[i].submatch_length[0]; ^ pcrs.c:949:17: warning: conversion from 'size_t' {aka 'long unsigned int'} to 'int' may change value [-Wconversion] offset = matches[i].submatch_offset[0] + matches[i].submatch_length[0]; ^~~~~~~ pcrs.c:953:59: warning: conversion to 'size_t' {aka 'long unsigned int'} from 'int' may change the sign of the result [-Wsign-conversion] memcpy(result_offset, subject + offset, subject_length - offset); ^ In function 'pcrs_compile_replacement', inlined from 'pcrs_compile' at pcrs.c:697:38: pcrs.c:321:14: warning: 'strncpy' specified bound depends on the length of the source argument [-Wstringop-overflow=] text = strncpy(text, replacement, length + 1); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ pcrs.c: In function 'pcrs_compile': pcrs.c:305:13: note: length computed here length = strlen(replacement); ^~~~~~~~~~~~~~~~~~~ cc -pipe -pipe -O2 -fno-strict-aliasing -Wall -Wstrict-prototypes -Wshadow -Wconversion -pedantic -I/usr/local/include -L/usr/local/lib -shared -lc -Wl,-soname,libpcrs.so.0 -o libpcrs.so.0 pcrs.o -lpcre ar rcs libpcrs.a pcrs.o cc -pipe -pipe -O2 -fno-strict-aliasing -Wall -Wstrict-prototypes -Wshadow -Wconversion -pedantic -I/usr/local/include -L/usr/local/lib pcrsed.c pcrs.o -o pcrsed -lpcre gmake[1]: Leaving directory '/construction/textproc/pcrs/pcrs-0.0.3' SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: run-depends ------------------------------------------------------------------------------- x SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: stage ------------------------------------------------------------------------------- x===> Staging for pcrs-0.0.3_3 ===> Generating temporary packing list gmake[1]: Entering directory '/construction/textproc/pcrs/pcrs-0.0.3' cc -pipe -pipe -O2 -fno-strict-aliasing -Wall -Wstrict-prototypes -Wshadow -Wconversion -pedantic -I/usr/local/include -L/usr/local/lib -shared -lc -Wl,-soname,libpcrs.so.0 -o libpcrs.so.0 pcrs.o -lpcre ar rcs libpcrs.a pcrs.o /usr/bin/install -c -m 755 libpcrs.so.0 /construction/textproc/pcrs/stage/usr/local/lib ln -s -f libpcrs.so.0 /construction/textproc/pcrs/stage/usr/local/lib/libpcrs.so /usr/bin/install -c -m 644 libpcrs.a /construction/textproc/pcrs/stage/usr/local/lib /usr/bin/install -c -m 644 pcrs.3 /construction/textproc/pcrs/stage/usr/local/man/man3 *************************************************** ** Libraries have been installed in /usr/local/lib. ** Don't forget to run ldconfig. *************************************************** Rebuilding pcrsed to use the installed shared library gmake[1]: Leaving directory '/construction/textproc/pcrs/pcrs-0.0.3' install -s -m 555 /construction/textproc/pcrs/pcrs-0.0.3/pcrsed /construction/textproc/pcrs/stage/usr/local/bin ====> Compressing man pages (compress-man) ====> Running Q/A tests (stage-qa) Warning: You have disabled the licenses framework with DISABLE_LICENSES, unable to run checks SUCCEEDED 00:00:01 ------------------------------------------------------------------------------- -- Phase: check-plist ------------------------------------------------------------------------------- x====> Checking for pkg-plist issues (check-plist) ===> Parsing plist ===> Checking for items in STAGEDIR missing from pkg-plist ===> Checking for items in pkg-plist which are not in STAGEDIR ===> No pkg-plist issues found (check-plist) SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: package ------------------------------------------------------------------------------- x===> Building package for pcrs-0.0.3_3 file sizes/checksums [5]: 0% file sizes/checksums [5]: 100% packing files [5]: 0% packing files [5]: 100% packing directories [0]: 0% packing directories [0]: 100% SUCCEEDED 00:00:01 TOTAL TIME 00:00:11