Skip to content

Fix wrong includes

Joao Eriberto Mota Filho requested to merge (removed):001_fix-lib-path into master

The file /usr/include/obs/obs-frontend-api.h has two includes:

 #include <obs.h>
 #include <util/darray.h>

These includes must be changed to

 #include <obs/obs.h>
 #include <obs/util/darray.h>

because the headers from OBS in Debian are put in 'obs/'. However, when building obs-studio, these includes will be called from its original path. Consequently, is needed to change the path after the build process to make the content of the libobs-dev useful.

Merge request reports

Loading