Browse Source

Fix hiredis static build

master
Ray Burgemeestre 5 months ago
parent
commit
5f963b89e9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      redis-plus-plus/Makefile

+ 1
- 1
redis-plus-plus/Makefile View File

.PHONY : hiredis .PHONY : hiredis
hiredis: hiredis:
pushd hiredis && \ pushd hiredis && \
cmake -DCMAKE_INSTALL_PREFIX=$$PWD/../out/hiredis -DENABLE_SSL=off . && \
cmake -DCMAKE_INSTALL_PREFIX=$$PWD/../out/hiredis -DENABLE_SSL=off -DBUILD_SHARED_LIBS=OFF . && \
make USE_SSL=0 && \ make USE_SSL=0 && \
make PREFIX=$$PWD/../out/hiredis USE_SSL=0 install && \ make PREFIX=$$PWD/../out/hiredis USE_SSL=0 install && \
popd popd

Loading…
Cancel
Save