beafdedff5
The Apache Portable Runtime is a library of C data structures and routines, forming a system portability layer that covers as many operating systems as possible, including Unices, Win32, BeOS, and OS/2. This port also includes the APR-Util package, which contains some useful utilities built on top of APR. There is no apr port as it is still in development. Submitted by: Garrett Rooney <rooneg@electricjellyfish.net>
16 lines
226 B
Bash
16 lines
226 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
if [ "$2" != "PRE-INSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
pkg_info 'apache-2*' > /dev/null 2<&1
|
|
|
|
if [ $? = 0 ]; then
|
|
echo "apr-devel cannot currently be installed alongside apache2. sorry."
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|