Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

another try to properly build libgit2 #253

Closed
wants to merge 13 commits into from
5 changes: 3 additions & 2 deletions build.linux32x86/third-party/Makefile.libgit2
Expand Up @@ -32,11 +32,11 @@ $(THIRDPARTYLIBDIR)/$(LIBGIT2LIBNAME): $(LIBGIT2ARCHIVE)
-DUSE_SSH=ON \
-DBUILD_CLAR=OFF \
-DCMAKE_C_FLAGS="-m32" \
-DOPENSSL_FOUND=OFF \
-DOPENSSL_FOUND=ON \
-DOPENSSL_INCLUDE_DIRS=$(THIRDPARTYINCLUDEDIR) \
-DOPENSSL_LIBRARY_DIRS=$(THIRDPARTYLIBDIR) \
-DOPENSSL_LIBRARIES=$(THIRDPARTYLIBDIR) \
-DLIBSSH2_FOUND=OFF \
-DLIBSSH2_FOUND=ON \
-DLIBSSH2_INCLUDE_DIRS=$(THIRDPARTYINCLUDEDIR) \
-DLIBSSH2_LIBRARY_DIRS=$(THIRDPARTYLIBDIR) \
-DLIBSSH2_LIBRARIES=$(THIRDPARTYLIBDIR) \
Expand All @@ -56,6 +56,7 @@ install: $(THIRDPARTYLIBDIR)/$(LIBGIT2LIBNAME)
cp -d $$each $(THIRDPARTYINSTALLDIR); \
fi \
done
ldd $(THIRDPARTYLIBDIR)/$(LIBGIT2LIBNAME)
@echo "DONE"

all: $(THIRDPARTYOUTDIR) $(THIRDPARTYINSTALLDIR) $(THIRDPARTYCACHEDIR) libgit2
Expand Down