Skip to content

Commit ab6e816

Browse files
author
Constantin Sunzow
committed
fix(autotools): add tox_log_level.h to public headers list
The tox_log_level.h header file was added as a public API header in version 0.2.21, but was not included in the libtoxcore_la_include_HEADERS variable in toxcore/Makefile.inc. This caused the header to not be installed when building with autotools, leading to compilation errors for applications that include tox_options.h (which depends on tox_log_level.h, like qTox). This patch adds tox_log_level.h to the list of installed headers, matching the behavior of the CMake build system. Commit: c834472 Fixes: compilation error "tox_log_level.h: No such file or directory"
1 parent 206ea35 commit ab6e816

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

toxcore/Makefile.inc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ lib_LTLIBRARIES += libtoxcore.la
22

33
libtoxcore_la_include_HEADERS = \
44
../toxcore/tox.h \
5+
../toxcore/tox_log_level.h \
56
../toxcore/tox_options.h
67

78
libtoxcore_la_includedir = $(includedir)/tox

0 commit comments

Comments
 (0)