Skip to content

Commit

Permalink
Merge pull request #863 from AppImage/fix-appimagetool-deps
Browse files Browse the repository at this point in the history
Remove dependency on libcairo2
  • Loading branch information
TheAssassin authored Oct 7, 2018
2 parents ac1a3c0 + 27d9efd commit d185526
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/libappimage
11 changes: 7 additions & 4 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ target_link_libraries(appimagetool
${CMAKE_DL_LIBS}
squashfuse
xdg-basedir
libappimage_static
libappimage_shared
libglib
libzlib
xz
)

target_compile_definitions(appimagetool
Expand Down Expand Up @@ -73,7 +76,7 @@ add_sanitizers(AppRun)
add_executable(validate validate.c)

target_link_libraries(validate
libappimage_static
libappimage_shared
libglib
libssl
)
Expand All @@ -87,7 +90,7 @@ target_include_directories(validate
add_executable(digest digest.c)

target_link_libraries(digest
libappimage_static
libappimage_shared
libssl
)

Expand All @@ -105,7 +108,7 @@ target_include_directories(digest_md5

target_link_libraries(digest_md5
PRIVATE libglib
PRIVATE libappimage_static
PRIVATE libappimage_shared
)


Expand Down
2 changes: 1 addition & 1 deletion src/digest_md5.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include <stdio.h>
#include <stdlib.h>

#include "appimage/appimage.h"
#include "appimage/appimage_shared.h"
#include "getsection.h"


Expand Down

0 comments on commit d185526

Please sign in to comment.