diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2004-02-11 17:43:45 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2004-02-11 17:43:45 +0000 |
commit | f9a9de048dd628aff9872146742fc83e71ffb3de (patch) | |
tree | 3d289acd6a5cede533b6370280447fac4f283165 /usr.sbin/httpd | |
parent | 1a400d1a4a756b99e7f1cb1b1d33e099ad541785 (diff) |
ARM now supports shared libraries.
Diffstat (limited to 'usr.sbin/httpd')
-rw-r--r-- | usr.sbin/httpd/Makefile.bsd-wrapper | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/usr.sbin/httpd/Makefile.bsd-wrapper b/usr.sbin/httpd/Makefile.bsd-wrapper index 0b1d8367a91..349bcd9474d 100644 --- a/usr.sbin/httpd/Makefile.bsd-wrapper +++ b/usr.sbin/httpd/Makefile.bsd-wrapper @@ -1,5 +1,5 @@ # Build wrapper for Apache -# $OpenBSD: Makefile.bsd-wrapper,v 1.43 2003/11/17 19:14:01 henning Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.44 2004/02/11 17:43:44 drahn Exp $ # Our lndir is hacked; specify a full path to avoid potential conflicts # with the one installed with X11. @@ -97,9 +97,10 @@ INSTALL_MODULES= # If you support dynamic loading, enable the so module, and build all the # modules that come with Apache. -.if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "i386" || \ - ${MACHINE_ARCH} == "m68k" || ${MACHINE_ARCH} == "powerpc" || \ - ${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "sparc64" +.if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "arm" || \ + ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "m68k" || \ + ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "sparc" || \ + ${MACHINE_ARCH} == "sparc64" CONFIG_ARGS+= ${DSO_MODULE_ARGS} INSTALL_MODULES= \ src/modules/experimental/mod_mmap_static.so \ |