Enable GSSAPI Auth

This commit is contained in:
Russell Sim 2017-07-29 16:59:03 +02:00
parent 3a4dfcf19a
commit 314db939a7
2 changed files with 3 additions and 1 deletions

2
debian/control vendored
View File

@ -5,7 +5,7 @@ Maintainer: Russell Sim <russell.sim@gmail.com>
Build-Depends: debhelper (>= 9.20160114),
python-minimal (>= 2.4.0), pkg-config,
cmake, libz-dev, libcurl4-gnutls-dev,
libssh2-1-dev, libhttp-parser-dev
libssh2-1-dev, libhttp-parser-dev, libkrb5-dev
Standards-Version: 3.9.8
Homepage: http://libgit2.github.com/
Vcs-Git: https://anonscm.debian.org/cgit/collab-maint/libgit2.git/

2
debian/rules vendored
View File

@ -18,6 +18,7 @@ override_dh_auto_configure:
dh_auto_configure --builddirectory=build-debian-release -- \
-DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo \
-DUSE_OPENSSL:BOOL=OFF \
-DUSE_GSSAPI:BOOL=ON \
-DTHREADSAFE:BOOL=ON \
-DBUILD_CLAR:BOOL=ON \
-DLIB_INSTALL_DIR:STRING=lib/$(DEB_HOST_MULTIARCH)
@ -26,6 +27,7 @@ override_dh_auto_configure:
-DCMAKE_BUILD_TYPE:STRING=Release \
-DTHREADSAFE:BOOL=ON \
-DUSE_OPENSSL:BOOL=OFF \
-DUSE_GSSAPI:BOOL=ON \
-DBUILD_CLAR:BOOL=OFF \
-DBUILD_SHARED_LIBS:BOOL=OFF \
-DLIB_INSTALL_DIR:STRING=lib/$(DEB_HOST_MULTIARCH)