We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c302325 commit 63cc8e5Copy full SHA for 63cc8e5
src/detection/camera/camera_apple.m
@@ -6,6 +6,11 @@
6
// warning: 'AVCaptureDeviceTypeExternalUnknown' is deprecated
7
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
8
9
+#ifdef MAC_OS_VERSION_14_0
10
+// To make fastfetch compiled on newer macOS versions runs on older ones
11
+AVF_EXPORT __attribute__((weak_import)) AVCaptureDeviceType const AVCaptureDeviceTypeExternal;
12
+#endif
13
+
14
const char* ffDetectCamera(FFlist* result)
15
{
16
#ifdef MAC_OS_X_VERSION_10_15
0 commit comments