From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 7E94D455D9 for ; Sat, 8 Jul 2023 17:48:27 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 5466468C403; Sat, 8 Jul 2023 20:48:24 +0300 (EEST) Received: from mail-pl1-f170.google.com (mail-pl1-f170.google.com [209.85.214.170]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 7A06768C3CE for ; Sat, 8 Jul 2023 20:48:17 +0300 (EEST) Received: by mail-pl1-f170.google.com with SMTP id d9443c01a7336-1b8baa836a5so22301035ad.1 for ; Sat, 08 Jul 2023 10:48:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20221208; t=1688838495; x=1691430495; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc:subject:date:message-id:reply-to; bh=jzEals2ngweWvlqJSB7baiqjTDo2g4LBElbNNGcoEwk=; b=GUHPxVbK8YOqDNL2M0LHi/KcOV35Zr4WcoLkN1HpeqDZfyP5uvv78GPhytsl/mqs4d ukqwqqS8kE9JAQqz0nCyXNXC4L0phMH8xnPSvjSupthQ8F3V9GtmpNSswp7YLpvTUFYv xnE8xQgzzqd5vOMU/7OO/bmZxsBCaVc7GfMCL3Zdr85BHY+L4GfrwH+YkAMu13TEr/z9 0a7woR6YSY1RAOK5K9qDeHzpGUstVjt3aY7/xCWMt6rS5AZfWVtWCbYK4do2l4W7ejuB hzlrW4THDEi/sRwmq9ai7dF9XgDDZ2b02j40vE9m+eypVSlQGuhFtyJ7O6MHwZoj4YIb k8tw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1688838495; x=1691430495; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=jzEals2ngweWvlqJSB7baiqjTDo2g4LBElbNNGcoEwk=; b=aq2Z56aw7+T+IKoK37syFRuZeCE5qf65ln8tWMoWoJyOQn9SkAe64alTRwmNJ5wAeX 4AQ3MZhW8mPpf/OuEpKxFl2AzfKCNESYicD3xfTzySk/p4Vvpvrn3OFV37o3PUERz9uS zwCxPkCaOcs+EErvCBf0APp9wF5YutzkahXFFjDdPCMIJ+ogH9qx6cVRwVVzTRE+vrDW Wxg56gcr8BQtZQQ7olaCUO8YY01/OTJXSbxuBaBaD/AykmZY7hUUJOG+u86JMDEAFlam Q06QUP8cqYlWfn0gBBKo878fFIwmQYEiNMbexodLssRfcEYNQxkYRDVEqcQ7kMkEZlny ElBQ== X-Gm-Message-State: ABy/qLahrA9K+ma8BlfsnTRYRsM5EuW0qAWhxnJidJyA6Vi6PCZfQ6uT nAQ8PAdTtlz44+KwZKsTHP+SIr7JwQBApQ== X-Google-Smtp-Source: APBJJlHxt8HUo1NzMj7W284lkQcrPaBSjyea2gfzTyn/MIuHlidpGO/8XwaYNl5n0WT/1VuUoxw+JQ== X-Received: by 2002:a17:903:482:b0:1b8:4b87:20dc with SMTP id jj2-20020a170903048200b001b84b8720dcmr8187605plb.37.1688838495079; Sat, 08 Jul 2023 10:48:15 -0700 (PDT) Received: from homestead.aragog.com ([2605:a601:a9ae:9100:b62e:99ff:fe37:7032]) by smtp.gmail.com with ESMTPSA id ju5-20020a170903428500b001b077301a58sm5198931plb.79.2023.07.08.10.48.14 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 08 Jul 2023 10:48:14 -0700 (PDT) From: Pavel Koshevoy To: ffmpeg-devel@ffmpeg.org Date: Sat, 8 Jul 2023 11:48:13 -0600 Message-Id: <20230708174813.8403-1-pkoshevoy@gmail.com> X-Mailer: git-send-email 2.35.3 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH] avutil: fix build failure on osx 10.4 X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Pavel Koshevoy Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: libavutil/random_seed.c calls arc4random_buf which is not available on OSX 10.4 Tiger, but the configuration script tests for arc4random which is available. Fix the configuration test to match the actual API used. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index d6e78297fe..c18a696b8a 100755 --- a/configure +++ b/configure @@ -6381,7 +6381,7 @@ check_func ${malloc_prefix}memalign && enable memalign check_func ${malloc_prefix}posix_memalign && enable posix_memalign check_func access -check_func_headers stdlib.h arc4random +check_func_headers stdlib.h arc4random_buf check_lib clock_gettime time.h clock_gettime || check_lib clock_gettime time.h clock_gettime -lrt check_func fcntl check_func fork -- 2.35.3 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".