1e1051a39Sopenharmony_ci#!/bin/sh -ex 2e1051a39Sopenharmony_ci# 3e1051a39Sopenharmony_ci# Copyright 2017-2021 The OpenSSL Project Authors. All Rights Reserved. 4e1051a39Sopenharmony_ci# 5e1051a39Sopenharmony_ci# Licensed under the Apache License 2.0 (the "License"). You may not use 6e1051a39Sopenharmony_ci# this file except in compliance with the License. You can obtain a copy 7e1051a39Sopenharmony_ci# in the file LICENSE in the source distribution or at 8e1051a39Sopenharmony_ci# https://www.openssl.org/source/license.html 9e1051a39Sopenharmony_ci 10e1051a39Sopenharmony_ci# krb5's test suite clears LD_LIBRARY_PATH 11e1051a39Sopenharmony_ciLDFLAGS="-L`pwd`/$BLDTOP -Wl,-rpath,`pwd`/$BLDTOP" 12e1051a39Sopenharmony_ciCFLAGS="-I`pwd`/$BLDTOP/include -I`pwd`/$SRCTOP/include" 13e1051a39Sopenharmony_ci 14e1051a39Sopenharmony_cicd $SRCTOP/krb5/src 15e1051a39Sopenharmony_ciautoreconf 16e1051a39Sopenharmony_ci./configure --with-ldap --with-prng-alg=os --enable-pkinit \ 17e1051a39Sopenharmony_ci --with-crypto-impl=openssl --with-tls-impl=openssl \ 18e1051a39Sopenharmony_ci CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" 19e1051a39Sopenharmony_ci 20e1051a39Sopenharmony_ci# quiet make so that Travis doesn't overflow 21e1051a39Sopenharmony_cimake -s 22e1051a39Sopenharmony_ci 23e1051a39Sopenharmony_cimake check 24