1# custom tests
2
3defineTest(qtConfLibrary_openssl) {
4 eval(libs = $$getenv("OPENSSL_LIBS"))
5 !isEmpty(libs) {
6 !qtConfResolveLibs($${1}.libs, $$libs): \
7 return(false)
8 return(true)
9 }
10 qtLog("$OPENSSL_LIBS is not set.")
11 return(false)
12}
13
14