#!/bin/sh

# Actual intended test
if [ -f /usr/include/db_185.h ]; then
    exit 0
fi
if [ -f /usr/include/db.h ] && grep dbopen /usr/include/db.h; then
    exit 0
fi
exit 1
