Showing with 3 additions and 3 deletions.
  1. +2 −2 .travis.yml
  2. +1 −1 configure.ac
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -40,13 +40,13 @@ install:
- mkdir ibmtpm532 && pushd ibmtpm532 && tar xzf ../ibmtpm532.tar && pushd ./src && make
- ./tpm_server &
- popd && popd
- git clone --single-branch 1.X https://github.com/01org/TPM2.0-TSS.git
- git clone --single-branch --branch 1.x https://github.com/01org/TPM2.0-TSS.git
- pushd TPM2.0-TSS
- ./bootstrap && ./configure && make -j$(nproc)
- sudo ../.ci/travis-tss-install.sh
- popd
- sudo ldconfig /usr/local/lib
- git clone https://github.com/01org/tpm2-abrmd.git
- git clone --single-branch --branch 1.x https://github.com/01org/tpm2-abrmd
- pushd tpm2-abrmd
- ./bootstrap && ./configure --with-dbuspolicydir=/etc/dbus-1/system.d && make -j$(nproc) && sudo make install && popd
- sudo mkdir -p /var/lib/tpm
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -6,7 +6,7 @@ LT_INIT
AM_INIT_AUTOMAKE([foreign
subdir-objects])
AC_CONFIG_FILES([Makefile])
PKG_CHECK_MODULES([SAPI],[sapi])
PKG_CHECK_MODULES([SAPI],[sapi < 2.0])
# disable libtcti-device selectively (enabled by default)
AC_ARG_WITH(
[tcti-device],
Expand Down