Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/skype4pidgin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEion Robb <eion@robbmob.com>2016-02-18 09:58:16 +0300
committerEion Robb <eion@robbmob.com>2016-02-18 09:58:16 +0300
commitc1d307a4923f178c831880d56da2c9b340db3372 (patch)
tree447f608aa402ff60cb101781713f759110dc12b5
parent35921278918aad29341d9138bebc965ce058aba6 (diff)
Add zlib to the pkg-config flags
Should help compiling on OSX and fix issue #411
-rw-r--r--skypeweb/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/skypeweb/Makefile b/skypeweb/Makefile
index 33da89e..f874aec 100644
--- a/skypeweb/Makefile
+++ b/skypeweb/Makefile
@@ -5,8 +5,8 @@ PKG_CONFIG ?= pkg-config
DIR_PERM = 0755
FILE_PERM = 0644
-LIBPURPLE_CFLAGS += $(shell $(PKG_CONFIG) --cflags glib-2.0 json-glib-1.0 purple)
-LIBPURPLE_LIBS += $(shell $(PKG_CONFIG) --libs glib-2.0 json-glib-1.0 purple)
+LIBPURPLE_CFLAGS += $(shell $(PKG_CONFIG) --cflags glib-2.0 json-glib-1.0 purple zlib)
+LIBPURPLE_LIBS += $(shell $(PKG_CONFIG) --libs glib-2.0 json-glib-1.0 purple zlib)
PLUGIN_DIR_PURPLE = $(shell $(PKG_CONFIG) --variable=plugindir purple)
DATA_ROOT_DIR_PURPLE = $(shell $(PKG_CONFIG) --variable=datarootdir purple)