From 115631a91d5c7a325ab16c0aa6adf2cd3d19e222 Mon Sep 17 00:00:00 2001 From: begasus Date: Sun, 22 Aug 2021 15:31:44 +0000 Subject: [PATCH] Makefile purple, fix search for libpurple's headers --- protocols/purple/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/protocols/purple/Makefile b/protocols/purple/Makefile index d3154fa..66983ac 100644 --- a/protocols/purple/Makefile +++ b/protocols/purple/Makefile @@ -75,8 +75,7 @@ LIBPATHS = # Additional paths to look for system headers. These use the form # "#include
". Directories that contain the files in SRCS are # NOT auto-included here. -SYSTEM_INCLUDE_PATHS = libs/ application/ \ - $(shell findpaths -e B_FIND_PATH_HEADERS_DIRECTORY libpurple) +SYSTEM_INCLUDE_PATHS = libs/ application/ # Additional paths paths to look for local headers. These use the form # #include "header". Directories that contain the files in SRCS are @@ -114,7 +113,8 @@ SYMBOLS := DEBUGGER := # Specify any additional compiler flags to be used. -COMPILER_FLAGS = $(shell pkg-config --cflags glib-2.0) +COMPILER_FLAGS = $(shell pkg-config --cflags glib-2.0) \ + $(shell pkg-config --cflags purple) # Specify any additional linker flags to be used. -- 2.46.0