From: Brian West Date: Tue, 22 Jul 2014 12:50:09 +0000 (-0500) Subject: stop it with the system ssl for curl you pesky thing X-Git-Tag: v1.4.8~10^2~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aaddc4211cdbb03e5e692a967a9068b4747d0325;p=thirdparty%2Ffreeswitch.git stop it with the system ssl for curl you pesky thing --- 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)