Skip to content

Commit ab834f3

Browse files
committed
Second attempt to fix build on Alpine Linux. issues 150, 319, 344.
1 parent 3c73a6b commit ab834f3

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

external/misc/CMakeLists.txt

+16-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,22 @@ if(LINUX)
3232
)
3333
endif()
3434

35-
add_library(misc STATIC
36-
${misc_SOURCES}
37-
)
35+
# Add_library doesn't like to get an empty source file list.
36+
# I tried several variations on this theme to test whether the list
37+
# was not empty and was not successful in getting it to work
38+
# on both Alpine and RPi.
39+
#if("${misc_SOURCES}")
40+
# This is less elegant and less maintainable but it works.
41+
42+
if ((NOT HAVE_STRLCPY) OR (NOT HAVE_STRLCAT))
43+
add_library(misc STATIC
44+
${misc_SOURCES}
45+
)
46+
else()
47+
set(MISC_LIBRARIES "" CACHE INTERNAL "")
48+
endif()
49+
50+
3851

3952
elseif(WIN32 OR CYGWIN) # windows
4053

0 commit comments

Comments
 (0)