#!/bin/sh
${AUTOCONF:-autoconf}

if [ -d ./apr ] ; then
  cd apr
  ./buildconf
  cd ..
fi

if [ -d ./apr-util ] ; then
  cd apr-util
  ./buildconf
  cd ..
fi
