Commit e6f1e272 authored by Justin Erenkrantz's avatar Justin Erenkrantz
Browse files

If shared modules are requested and mod_so is not available, produce a

fatal config-time error.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91844 13f79535-47bb-0310-9956-ffa450edef68
parent d553196e
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
Changes with Apache 2.0.29-dev

  *) If shared modules are requested and mod_so is not available,
     produce a fatal config-time error.  [Justin Erenkrantz]

  *) Improve http2env's performance by cutting the work it has to
     do.  [Brian Pane <bpane@pacbell.net>]

+1 −7
Original line number Diff line number Diff line
APACHE 2.0 STATUS:						-*-text-*-
Last modified at [$Date: 2001/11/11 01:26:27 $]
Last modified at [$Date: 2001/11/11 01:58:12 $]

Release:

@@ -305,12 +305,6 @@ RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
        - Bring the Win9xConHook.dll from 1.3 into 2.0 (no sense till it
        actually works) and add in a splash of Win9x service code.

    * When --enable-modules=most or --enable-mods-shared=most is passed
      to the configure script it is still possible to enable many of the
      modules while mod_so itself is not buildable (for whatever reason,
      like not having APR_HAS_DSO). We need to emit an error message
      and fail the configure script at this point.

PRs that have been suspended forever waiting for someone to
put them into 'the next release':

+3 −0
Original line number Diff line number Diff line
@@ -33,9 +33,12 @@ AC_TRY_COMPILE([#include <apr.h>], [
], ap_enable_so="static", [
if test "$enable_so" = "static"; then
    AC_MSG_ERROR([mod_so has been requested but cannot be built on your system])
else if test "$sharedobjs" = "yes"; then
    AC_MSG_ERROR([shared objects have been requested but cannot be built since mod_so cannot be built])
else
    ap_enable_so="no"
fi
fi
])
CPPFLAGS=$ap_old_cppflags