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 1812c30 commit ef3412fCopy full SHA for ef3412f
src/common/init.c
@@ -236,6 +236,9 @@ void ffListFeatures(void)
236
#if FF_HAVE_FREETYPE
237
"freetype\n"
238
#endif
239
+ #if FF_HAVE_PCIACCESS
240
+ "libpciaccess\n"
241
+ #endif
242
#if FF_HAVE_PULSE
243
"libpulse\n"
244
src/detection/gpu/gpu_pci.c
@@ -45,6 +45,8 @@ static const FFstrbuf* loadPciIds()
45
ffReadFileBuffer(_PATH_LOCALBASE "/share/pciids/pci.ids", &pciids);
46
#elif __sun
47
ffReadFileBuffer(FASTFETCH_TARGET_DIR_ROOT "/usr/share/hwdata/pci.ids", &pciids);
48
+ #elif __HAIKU__
49
+ ffReadFileBuffer(FASTFETCH_TARGET_DIR_ROOT "/system/data/pciutils/pci.ids", &pciids);
50
51
52
#endif // FF_CUSTOM_PCI_IDS_PATH
0 commit comments