Failed: phase compiling: libzmq6-shlibs-4.3.4-2 failed

Patrick Wambacq <[email protected]> Mon, 8 Jan 2024 14:38:39 +0100
Newsgroups gmane.os.apple.fink.general
Message-ID <[email protected]>
Hi,

I am trying to install ffmpeg and it fails on libzmq6-shlibs-4.3.4-2.

The relevant part of the output with all the errors (lots of them!) is shown below. It looks like some compiler incompatibility

system information:
Package manager version: 0.45.99.git
Distribution version: selfupdate-rsync Thu Jan  4 19:48:30 2024, 14.0, x86_64
Trees: local/main stable/main
Xcode.app: 15.1
Xcode command-line tools: 15.1.0.0.1.1700200546
Max. Fink build jobs:  12

Soonoma 14.2.1

Thanks

Patrick
------------

In file included from /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/boyer_moore_searcher.h:26:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:372:5: error: static assertion failed due to requirement 'is_same<zmq::secure_allocator_t<unsigned char>, std::allocator<unsigned char>>::value': [allocator.requirements] states that rebinding an allocator to the same type should result in the original allocator
    static_assert(is_same<allocator_type, __rebind_alloc<__alloc_traits, value_type> >::value,
    ^             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./src/curve_client_tools.hpp:64:60: note: in instantiation of template class 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>' requested here
        std::vector<uint8_t, secure_allocator_t<uint8_t> > hello_plaintext (
                                                           ^
./src/curve_client_tools.hpp:110:60: error: no matching constructor for initialization of 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>')
        std::vector<uint8_t, secure_allocator_t<uint8_t> > welcome_plaintext (
                                                           ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:348:28: note: candidate constructor (the implicit copy constructor) not viable: no known conversion from 'int' to 'const std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>' for 1st argument
class _LIBCPP_TEMPLATE_VIS vector
                           ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:348:28: note: candidate constructor (the implicit move constructor) not viable: no known conversion from 'int' to 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>' for 1st argument
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:348:28: note: candidate constructor (the implicit default constructor) not viable: requires 0 arguments, but 1 was provided
In file included from src/curve_client.cpp:38:
In file included from ./src/curve_client.hpp:37:
./src/curve_client_tools.hpp:121:53: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
        int rc = crypto_box_open (&welcome_plaintext[0], welcome_box,
                                   ~~~~~~~~~~~~~~~~~^~
./src/curve_client_tools.hpp:129:47: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
        memcpy (cn_server_, &welcome_plaintext[crypto_box_ZEROBYTES], 32);
                             ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
./src/curve_client_tools.hpp:130:47: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
        memcpy (cn_cookie_, &welcome_plaintext[crypto_box_ZEROBYTES + 32],
                             ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
./src/curve_client_tools.hpp:154:60: error: no matching constructor for initialization of 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>')
        std::vector<uint8_t, secure_allocator_t<uint8_t> > vouch_plaintext (
                                                           ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:348:28: note: candidate constructor (the implicit copy constructor) not viable: no known conversion from 'int' to 'const std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>' for 1st argument
class _LIBCPP_TEMPLATE_VIS vector
                           ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:348:28: note: candidate constructor (the implicit move constructor) not viable: no known conversion from 'int' to 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>' for 1st argument
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:348:28: note: candidate constructor (the implicit default constructor) not viable: requires 0 arguments, but 1 was provided
In file included from src/curve_client.cpp:38:
In file included from ./src/curve_client.hpp:37:
./src/curve_client_tools.hpp:159:36: error: no member named 'begin' in 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>'
        std::fill (vouch_plaintext.begin (),
                   ~~~~~~~~~~~~~~~ ^
./src/curve_client_tools.hpp:160:36: error: no member named 'begin' in 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>'
                   vouch_plaintext.begin () + crypto_box_ZEROBYTES, 0);
                   ~~~~~~~~~~~~~~~ ^
./src/curve_client_tools.hpp:161:33: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
        memcpy (&vouch_plaintext[crypto_box_ZEROBYTES], cn_public_, 32);
                 ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
./src/curve_client_tools.hpp:162:33: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
        memcpy (&vouch_plaintext[crypto_box_ZEROBYTES + 32], server_key_, 32);
                 ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
./src/curve_client_tools.hpp:169:50: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
          crypto_box (vouch_box, &vouch_plaintext[0], vouch_plaintext.size (),
                                  ~~~~~~~~~~~~~~~^~
./src/curve_client_tools.hpp:169:71: error: no member named 'size' in 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>'
          crypto_box (vouch_box, &vouch_plaintext[0], vouch_plaintext.size (),
                                                      ~~~~~~~~~~~~~~~ ^
./src/curve_client_tools.hpp:177:60: error: no matching constructor for initialization of 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>')
        std::vector<uint8_t, secure_allocator_t<uint8_t> > initiate_plaintext (
                                                           ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:348:28: note: candidate constructor (the implicit copy constructor) not viable: no known conversion from 'size_t' (aka 'unsigned long') to 'const std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>' for 1st argument
class _LIBCPP_TEMPLATE_VIS vector
                           ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:348:28: note: candidate constructor (the implicit move constructor) not viable: no known conversion from 'size_t' (aka 'unsigned long') to 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>' for 1st argument
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:348:28: note: candidate constructor (the implicit default constructor) not viable: requires 0 arguments, but 1 was provided
In file included from src/curve_client.cpp:38:
In file included from ./src/curve_client.hpp:37:
./src/curve_client_tools.hpp:181:39: error: no member named 'begin' in 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>'
        std::fill (initiate_plaintext.begin (),
                   ~~~~~~~~~~~~~~~~~~ ^
./src/curve_client_tools.hpp:182:39: error: no member named 'begin' in 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>'
                   initiate_plaintext.begin () + crypto_box_ZEROBYTES, 0);
                   ~~~~~~~~~~~~~~~~~~ ^
./src/curve_client_tools.hpp:183:36: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
        memcpy (&initiate_plaintext[crypto_box_ZEROBYTES], public_key_, 32);
                 ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
./src/curve_client_tools.hpp:184:36: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
        memcpy (&initiate_plaintext[crypto_box_ZEROBYTES + 32], vouch_nonce + 8,
                 ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
./src/curve_client_tools.hpp:186:36: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
        memcpy (&initiate_plaintext[crypto_box_ZEROBYTES + 48],
                 ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
./src/curve_client_tools.hpp:189:40: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
            memcpy (&initiate_plaintext[crypto_box_ZEROBYTES + 48 + 80],
                     ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
In file included from src/curve_server.cpp:35:
In file included from ./src/msg.hpp:40:
In file included from ./src/metadata.hpp:33:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/map:2356:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/functional:515:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/__functional/boyer_moore_searcher.h:26:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:372:5: error: static assertion failed due to requirement 'is_same<zmq::secure_allocator_t<unsigned char>, std::allocator<unsigned char>>::value': [allocator.requirements] states that rebinding an allocator to the same type should result in the original allocator
    static_assert(is_same<allocator_type, __rebind_alloc<__alloc_traits, value_type> >::value,
    ^             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/curve_server.cpp:184:56: note: in instantiation of template class 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>' requested here
    std::vector<uint8_t, secure_allocator_t<uint8_t> > hello_plaintext (
                                                       ^
src/curve_server.cpp:213:56: error: no matching constructor for initialization of 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>')
    std::vector<uint8_t, secure_allocator_t<uint8_t> > cookie_plaintext (
                                                       ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:348:28: note: candidate constructor (the implicit copy constructor) not viable: no known conversion from 'int' to 'const std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>' for 1st argument
class _LIBCPP_TEMPLATE_VIS vector
                           ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:348:28: note: candidate constructor (the implicit move constructor) not viable: no known conversion from 'int' to 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>' for 1st argument
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:348:28: note: candidate constructor (the implicit default constructor) not viable: requires 0 arguments, but 1 was provided
src/curve_server.cpp:224:33: error: no member named 'begin' in 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>'
    std::fill (cookie_plaintext.begin (),
               ~~~~~~~~~~~~~~~~ ^
src/curve_server.cpp:225:33: error: no member named 'begin' in 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>'
               cookie_plaintext.begin () + crypto_secretbox_ZEROBYTES, 0);
               ~~~~~~~~~~~~~~~~ ^
src/curve_server.cpp:226:30: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
    memcpy (&cookie_plaintext[crypto_secretbox_ZEROBYTES], _cn_client, 32);
             ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
src/curve_server.cpp:227:30: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
    memcpy (&cookie_plaintext[crypto_secretbox_ZEROBYTES + 32], _cn_secret, 32);
             ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/curve_server.cpp:235:61: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
      crypto_secretbox (cookie_ciphertext, &cookie_plaintext[0],
                                            ~~~~~~~~~~~~~~~~^~
src/curve_server.cpp:236:42: error: no member named 'size' in 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>'
                        cookie_plaintext.size (), cookie_nonce, _cookie_key);
                        ~~~~~~~~~~~~~~~~ ^
src/curve_server.cpp:240:56: error: no matching constructor for initialization of 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>')
    std::vector<uint8_t, secure_allocator_t<uint8_t> > welcome_plaintext (
                                                       ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:348:28: note: candidate constructor (the implicit copy constructor) not viable: no known conversion from 'int' to 'const std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>' for 1st argument
class _LIBCPP_TEMPLATE_VIS vector
                           ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:348:28: note: candidate constructor (the implicit move constructor) not viable: no known conversion from 'int' to 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>' for 1st argument
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:348:28: note: candidate constructor (the implicit default constructor) not viable: requires 0 arguments, but 1 was provided
src/curve_server.cpp:251:34: error: no member named 'begin' in 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>'
    std::fill (welcome_plaintext.begin (),
               ~~~~~~~~~~~~~~~~~ ^
src/curve_server.cpp:252:34: error: no member named 'begin' in 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>'
               welcome_plaintext.begin () + crypto_box_ZEROBYTES, 0);
               ~~~~~~~~~~~~~~~~~ ^
src/curve_server.cpp:253:31: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
    memcpy (&welcome_plaintext[crypto_box_ZEROBYTES], _cn_public, 32);
             ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
src/curve_server.cpp:254:31: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
    memcpy (&welcome_plaintext[crypto_box_ZEROBYTES + 32], cookie_nonce + 8,
             ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
src/curve_server.cpp:256:31: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
    memcpy (&welcome_plaintext[crypto_box_ZEROBYTES + 48],
             ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
src/curve_server.cpp:259:60: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
    rc = crypto_box (welcome_ciphertext, &welcome_plaintext[0],
                                          ~~~~~~~~~~~~~~~~~^~
src/curve_server.cpp:260:40: error: no member named 'size' in 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>'
                     welcome_plaintext.size (), welcome_nonce, _cn_client,
                     ~~~~~~~~~~~~~~~~~ ^
src/curve_server.cpp:345:56: error: no matching constructor for initialization of 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>')
    std::vector<uint8_t, secure_allocator_t<uint8_t> > initiate_plaintext (
                                                       ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:348:28: note: candidate constructor (the implicit copy constructor) not viable: no known conversion from 'size_t' (aka 'unsigned long') to 'const std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>' for 1st argument
class _LIBCPP_TEMPLATE_VIS vector
                           ^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:348:28: note: candidate constructor (the implicit move constructor) not viable: no known conversion from 'size_t' (aka 'unsigned long') to 'std::vector<unsigned char, zmq::secure_allocator_t<unsigned char>>' for 1st argument
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/vector:348:28: note: candidate constructor (the implicit default constructor) not viable: requires 0 arguments, but 1 was provided
src/curve_server.cpp:359:52: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
    const uint8_t *client_key = &initiate_plaintext[crypto_box_ZEROBYTES];
                                 ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
src/curve_server.cpp:361:46: error: type 'std::vector<uint8_t, secure_allocator_t<uint8_t>>' (aka 'vector<unsigned char, secure_allocator_t<unsigned char>>') does not provide a subscript operator
    rc = crypto_box_open (&initiate_plaintext[0], &initiate_box[0], clen,
                           ~~~~~~~~~~~~~~~~~~^~
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
make[1]: *** [src/libzmq_la-curve_client.lo] Error 1
make[1]: *** Waiting for unfinished jobs....
make[1]: *** [src/libzmq_la-curve_server.lo] Error 1
libtool: compile:  g++ -std=gnu++11 -DHAVE_CONFIG_H -I. -I./src -D_DARWIN_C_SOURCE -D_REENTRANT -D_THREAD_SAFE -I/opt/sw/include -fvisibility=hidden -Werror -Wall -Wno-long-long -Wno-error=unused-const-variable -Wno-atomic-alignment -Wno-tautological-constant-compare -MT src/libzmq_la-client.lo -MD -MP -MF src/.deps/libzmq_la-client.Tpo -c src/client.cpp -o src/libzmq_la-client.o >/dev/null 2>&1
libtool: compile:  g++ -std=gnu++11 -DHAVE_CONFIG_H -I. -I./src -D_DARWIN_C_SOURCE -D_REENTRANT -D_THREAD_SAFE -I/opt/sw/include -fvisibility=hidden -Werror -Wall -Wno-long-long -Wno-error=unused-const-variable -Wno-atomic-alignment -Wno-tautological-constant-compare -MT src/libzmq_la-dealer.lo -MD -MP -MF src/.deps/libzmq_la-dealer.Tpo -c src/dealer.cpp -o src/libzmq_la-dealer.o >/dev/null 2>&1
libtool: compile:  g++ -std=gnu++11 -DHAVE_CONFIG_H -I. -I./src -D_DARWIN_C_SOURCE -D_REENTRANT -D_THREAD_SAFE -I/opt/sw/include -fvisibility=hidden -Werror -Wall -Wno-long-long -Wno-error=unused-const-variable -Wno-atomic-alignment -Wno-tautological-constant-compare -MT src/libzmq_la-channel.lo -MD -MP -MF src/.deps/libzmq_la-channel.Tpo -c src/channel.cpp -o src/libzmq_la-channel.o >/dev/null 2>&1
libtool: compile:  g++ -std=gnu++11 -DHAVE_CONFIG_H -I. -I./src -D_DARWIN_C_SOURCE -D_REENTRANT -D_THREAD_SAFE -I/opt/sw/include -fvisibility=hidden -Werror -Wall -Wno-long-long -Wno-error=unused-const-variable -Wno-atomic-alignment -Wno-tautological-constant-compare -MT src/libzmq_la-dgram.lo -MD -MP -MF src/.deps/libzmq_la-dgram.Tpo -c src/dgram.cpp -o src/libzmq_la-dgram.o >/dev/null 2>&1
libtool: compile:  g++ -std=gnu++11 -DHAVE_CONFIG_H -I. -I./src -D_DARWIN_C_SOURCE -D_REENTRANT -D_THREAD_SAFE -I/opt/sw/include -fvisibility=hidden -Werror -Wall -Wno-long-long -Wno-error=unused-const-variable -Wno-atomic-alignment -Wno-tautological-constant-compare -MT src/libzmq_la-address.lo -MD -MP -MF src/.deps/libzmq_la-address.Tpo -c src/address.cpp -o src/libzmq_la-address.o >/dev/null 2>&1
libtool: compile:  g++ -std=gnu++11 -DHAVE_CONFIG_H -I. -I./src -D_DARWIN_C_SOURCE -D_REENTRANT -D_THREAD_SAFE -I/opt/sw/include -fvisibility=hidden -Werror -Wall -Wno-long-long -Wno-error=unused-const-variable -Wno-atomic-alignment -Wno-tautological-constant-compare -MT src/libzmq_la-curve_mechanism_base.lo -MD -MP -MF src/.deps/libzmq_la-curve_mechanism_base.Tpo -c src/curve_mechanism_base.cpp -o src/libzmq_la-curve_mechanism_base.o >/dev/null 2>&1
libtool: compile:  g++ -std=gnu++11 -DHAVE_CONFIG_H -I. -I./src -D_DARWIN_C_SOURCE -D_REENTRANT -D_THREAD_SAFE -I/opt/sw/include -fvisibility=hidden -Werror -Wall -Wno-long-long -Wno-error=unused-const-variable -Wno-atomic-alignment -Wno-tautological-constant-compare -MT src/libzmq_la-dish.lo -MD -MP -MF src/.deps/libzmq_la-dish.Tpo -c src/dish.cpp -o src/libzmq_la-dish.o >/dev/null 2>&1
libtool: compile:  g++ -std=gnu++11 -DHAVE_CONFIG_H -I. -I./src -D_DARWIN_C_SOURCE -D_REENTRANT -D_THREAD_SAFE -I/opt/sw/include -fvisibility=hidden -Werror -Wall -Wno-long-long -Wno-error=unused-const-variable -Wno-atomic-alignment -Wno-tautological-constant-compare -MT src/libzmq_la-dist.lo -MD -MP -MF src/.deps/libzmq_la-dist.Tpo -c src/dist.cpp -o src/libzmq_la-dist.o >/dev/null 2>&1
libtool: compile:  g++ -std=gnu++11 -DHAVE_CONFIG_H -I. -I./src -D_DARWIN_C_SOURCE -D_REENTRANT -D_THREAD_SAFE -I/opt/sw/include -fvisibility=hidden -Werror -Wall -Wno-long-long -Wno-error=unused-const-variable -Wno-atomic-alignment -Wno-tautological-constant-compare -MT src/libzmq_la-ctx.lo -MD -MP -MF src/.deps/libzmq_la-ctx.Tpo -c src/ctx.cpp -o src/libzmq_la-ctx.o >/dev/null 2>&1
mv -f src/.deps/libzmq_la-devpoll.Tpo src/.deps/libzmq_la-devpoll.Plo
mv -f src/.deps/libzmq_la-client.Tpo src/.deps/libzmq_la-client.Plo
mv -f src/.deps/libzmq_la-channel.Tpo src/.deps/libzmq_la-channel.Plo
mv -f src/.deps/libzmq_la-dealer.Tpo src/.deps/libzmq_la-dealer.Plo
mv -f src/.deps/libzmq_la-dgram.Tpo src/.deps/libzmq_la-dgram.Plo
mv -f src/.deps/libzmq_la-address.Tpo src/.deps/libzmq_la-address.Plo
mv -f src/.deps/libzmq_la-curve_mechanism_base.Tpo src/.deps/libzmq_la-curve_mechanism_base.Plo
mv -f src/.deps/libzmq_la-dish.Tpo src/.deps/libzmq_la-dish.Plo
mv -f src/.deps/libzmq_la-dist.Tpo src/.deps/libzmq_la-dist.Plo
mv -f src/.deps/libzmq_la-ctx.Tpo src/.deps/libzmq_la-ctx.Plo
make: *** [all-recursive] Error 1
### execution of /usr/bin/make failed, exit code 2
### execution of /tmp/fink.icGYW failed, exit code 2
Removing runtime build-lock...
Removing build-lock package...
/opt/sw/bin/dpkg-lockwait -r fink-buildlock-libzmq6-shlibs-4.3.4-2
(Reading database ... 43457 files and directories currently installed.)
Removing fink-buildlock-libzmq6-shlibs-4.3.4-2 (2024.01.08-14.11.22) ...
Failed: phase compiling: libzmq6-shlibs-4.3.4-2 failed



_______________________________________________
Fink-users mailing list
[email protected]
List archive:
https://sourceforge.net/p/fink/mailman/fink-users/
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-users