added dep on openssl-static by libevent for some platforms
This commit is contained in:
parent
b0bb72abfb
commit
ad4060f2a0
|
@ -93,7 +93,7 @@ libevent/Makefile:
|
||||||
cp config.sub libevent
|
cp config.sub libevent
|
||||||
cp config.guess libevent
|
cp config.guess libevent
|
||||||
cd libevent && \
|
cd libevent && \
|
||||||
CC="$(CC)" AR="$(AR)" RANLIB=$(RANLIB) CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" \
|
CC="$(CC)" AR="$(AR)" RANLIB=$(RANLIB) CFLAGS="$(CFLAGS) -I$(EXTERNAL_ROOT)/include" LDFLAGS="$(LDFLAGS)" LIBS="-L$(EXTERNAL_ROOT)/lib -lcrypto -lssl" \
|
||||||
./configure \
|
./configure \
|
||||||
--host=$(HOST) \
|
--host=$(HOST) \
|
||||||
--disable-shared
|
--disable-shared
|
||||||
|
@ -102,7 +102,7 @@ libevent-build-stamp: libevent/Makefile
|
||||||
$(MAKE) -C libevent
|
$(MAKE) -C libevent
|
||||||
touch libevent-build-stamp
|
touch libevent-build-stamp
|
||||||
|
|
||||||
libevent: libevent-build-stamp
|
libevent: openssl-static libevent-build-stamp
|
||||||
test -d lib || mkdir lib
|
test -d lib || mkdir lib
|
||||||
test -d include || mkdir include
|
test -d include || mkdir include
|
||||||
cp libevent/.libs/libevent.a lib
|
cp libevent/.libs/libevent.a lib
|
||||||
|
|
Loading…
Reference in New Issue