#!/bin/bash

echo "
The following WARNING messages occured during configure.
Note: these are non-fatal, but may disable some modules.
--------------------------------------------------------
"

grep -R WARNING * | grep config.log | grep -v "test.sh" 

echo "
The server will be built WITHOUT the following modules:
-------------------------------------------------------
"

grep -R "silently not building" * | grep config.log | grep -v "test.sh" | sed s/.*rlm_/\*\ /g | sed s/\\.//g

echo ""
