Use pkg-config to find out the openssl/libarchive required static libs.

--HG--
extra : convert_revision : xtraeme%40gmail.com-20100331105031-rgq5aux38pptti6j
This commit is contained in:
Juan RP
2010-03-31 12:50:31 +02:00
parent fa9d8c718a
commit ab76f9d5e7
2 changed files with 5 additions and 5 deletions

View File

@@ -29,5 +29,6 @@ CFLAGS = $(DEBUG_FLAGS) $(WARNFLAGS) -fPIC -DPIC -fstack-protector-all
SHAREDLIB_CFLAGS = -fvisibility=default
# Grr, hate the static libs!
STATIC_LIBS = -lprop -lpthread -larchive -lssl -lcrypto -ldl -lacl
STATIC_LIBS += -lattr -llzma -lbz2 -lz
STATIC_LIBS = -lprop -lpthread
STATIC_LIBS += `pkg-config openssl --libs --static`
STATIC_LIBS += `pkg-config libarchive --libs --static`