Received: from mail-lj1-f172.google.com (mail-lj1-f172.google.com [209.85.208.172]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id DAD05782BCF for <~alpine/users@lists.alpinelinux.org>; Mon, 7 Dec 2020 07:26:05 +0000 (UTC) Received: by mail-lj1-f172.google.com with SMTP id a1so12543773ljq.3 for <~alpine/users@lists.alpinelinux.org>; Sun, 06 Dec 2020 23:26:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=5Hhrepe340q5aG2QT2kUUQpSo5smHpFX3JqPprxO9GQ=; b=NhO4SwDFHuDMc2lA0Oae7g84Dm02wgTXkyjINlBFILS56cDmMDcRBuL29fM7RfaCEo +1jSvS/NbJQ1UJYmg0FiPZYNFLUJJc0D3p3qTxfsTY08TH9WEDvry3u0umSkW0F9/gNq nPua8JATtA88E39+iy2lwd2047r9ZJf4qDNguc+avJCl94n0IeOSUzzlBTQ4eyTXdXaw OvV/+b1vZJN7WnqHwXYpbMSs5gchdvc34oo3/yt3Ajh7W3qYYaqHhDD2+amLVmYWbRYF gFMV8Cb8ltYec8PQ4bsAMwNaoKQX9y2TCuX5YI4dbosDqneEhDpEvQzu6fvA/OGKrisA k+hQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=5Hhrepe340q5aG2QT2kUUQpSo5smHpFX3JqPprxO9GQ=; b=a04D9w0PSMUifNx4+wsHXZrb6/2CyQFNNQlcZKBqoifDIetRKp+6GH0VeZnpeQAf0E o2krb7Tda3xafDO44XZlJGEdwGUnnHMxh8sI/QMjq2kg+/iCHM+SEWHrkusn2WXBFBmz B6PFZyqrsjc1PA2oJ/ULrI3THQXzbdoAoK15OP6c6AAVPuZhjexaXEs4Ber0u5PnEGXP 4fnqLMhRBNfD1i1Mwu8x0leO1/xodVH+SSejBTfOxKi/v2orAehtFak9zyTijJjmON/c TCr4/WDksd0vNl1lthB/eObfAce9qsFf3wCF3ubp1PlaQDuzchUOWybl/5ooEYCJxWoU EscQ== X-Gm-Message-State: AOAM531zp4IdH7Rd3KlpFs9cVO5y9ib1hfIGzHstyMX1WQHE46QYcPX+ iLs87ybkyb2JSCdV+5lLMNxX58L7jfw3+6wl26YL+bUtP50TxQ== X-Google-Smtp-Source: ABdhPJxwqNff4reJ9x7DlABNcMJjDJ2FRbZMxuKlwJtuiyGBDfr76Ypdu25itBNlNDRXCxfa5PdcY8Byz3+V384lKOY= X-Received: by 2002:a2e:82ce:: with SMTP id n14mr8182706ljh.356.1607325964423; Sun, 06 Dec 2020 23:26:04 -0800 (PST) MIME-Version: 1.0 From: Gino Lisignoli Date: Mon, 7 Dec 2020 20:25:54 +1300 Message-ID: Subject: Trying to create a x86 build of mplayer To: ~alpine/users@lists.alpinelinux.org Content-Type: text/plain; charset="UTF-8" First let me preface this by saying this is beyond my capabilities. But I am trying to create a x86 build of mplayer (purely for the mencoder binary). My issue is abuild returns a bunch of errors about pthread: libavcodec/frame_thread_encoder.c: At top level: libavcodec/frame_thread_encoder.c:46:5: error: unknown type name 'pthread_mutex_t' 46 | pthread_mutex_t buffer_mutex; | ^~~~~~~~~~~~~~~ libavcodec/frame_thread_encoder.c:49:5: error: unknown type name 'pthread_mutex_t' 49 | pthread_mutex_t task_fifo_mutex; | ^~~~~~~~~~~~~~~ libavcodec/frame_thread_encoder.c:50:5: error: unknown type name 'pthread_cond_t' 50 | pthread_cond_t task_fifo_cond; | ^~~~~~~~~~~~~~ libavcodec/frame_thread_encoder.c:53:5: error: unknown type name 'pthread_mutex_t' 53 | pthread_mutex_t finished_task_mutex; | ^~~~~~~~~~~~~~~ libavcodec/frame_thread_encoder.c:54:5: error: unknown type name 'pthread_cond_t' 54 | pthread_cond_t finished_task_cond; | ^~~~~~~~~~~~~~ libavcodec/frame_thread_encoder.c:59:5: error: unknown type name 'pthread_t' 59 | pthread_t worker[MAX_THREADS]; | ^~~~~~~~~ Any advice on how to solve this would be appreciated.