From aaddc4211cdbb03e5e692a967a9068b4747d0325 Mon Sep 17 00:00:00 2001 From: Brian West Date: Tue, 22 Jul 2014 07:50:09 -0500 Subject: [PATCH] stop it with the system ssl for curl you pesky thing --- build/Makefile.openbsd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/Makefile.openbsd b/build/Makefile.openbsd index 49aa239ee4..3ad18426cb 100644 --- a/build/Makefile.openbsd +++ b/build/Makefile.openbsd @@ -56,5 +56,6 @@ curl: curl-$(CURL)/.done curl-$(CURL)/.done: curl-$(CURL) curl-$(CURL): (test -d $@) || (wget -4 -O $@.tar.gz $(DOWNLOAD)/$@.tar.gz && tar zxfv $@.tar.gz) - (cd $@ && ./configure --prefix=$(PREFIX) && make && sudo make install && touch .done) + (rm -rf $(PREFIX)/lib/libcurl.*) + (cd $@ && PKG_CONFIG_PATH=/usr/local/freeswitch/lib/pkgconfig:$PKG_CONFIG_PATH LDFLAGS='-L$(PREFIX)/lib -Wl,-rpath-link=$(PREFIX)/lib' CFLAGS='-I$(PREFIX)/include' ./configure --prefix=$(PREFIX) && make && sudo make install && touch .done)