]> granicus.if.org Git - apache/blob - modules/ssl/config.m4
Further clarify the naming of the entity that originates the request by
[apache] / modules / ssl / config.m4
1 dnl Licensed to the Apache Software Foundation (ASF) under one or more
2 dnl contributor license agreements.  See the NOTICE file distributed with
3 dnl this work for additional information regarding copyright ownership.
4 dnl The ASF licenses this file to You under the Apache License, Version 2.0
5 dnl (the "License"); you may not use this file except in compliance with
6 dnl the License.  You may obtain a copy of the License at
7 dnl
8 dnl      http://www.apache.org/licenses/LICENSE-2.0
9 dnl
10 dnl Unless required by applicable law or agreed to in writing, software
11 dnl distributed under the License is distributed on an "AS IS" BASIS,
12 dnl WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 dnl See the License for the specific language governing permissions and
14 dnl limitations under the License.
15
16 dnl #  start of module specific part
17 APACHE_MODPATH_INIT(ssl)
18
19 dnl #  list of module object files
20 ssl_objs="dnl
21 mod_ssl.lo dnl
22 ssl_engine_config.lo dnl
23 ssl_engine_dh.lo dnl
24 ssl_engine_init.lo dnl
25 ssl_engine_io.lo dnl
26 ssl_engine_kernel.lo dnl
27 ssl_engine_log.lo dnl
28 ssl_engine_mutex.lo dnl
29 ssl_engine_pphrase.lo dnl
30 ssl_engine_rand.lo dnl
31 ssl_engine_vars.lo dnl
32 ssl_scache.lo dnl
33 ssl_util_stapling.lo dnl
34 ssl_util.lo dnl
35 ssl_util_ssl.lo dnl
36 ssl_engine_ocsp.lo dnl
37 ssl_util_ocsp.lo dnl
38 "
39 dnl #  hook module into the Autoconf mechanism (--enable-ssl option)
40 APACHE_MODULE(ssl, [SSL/TLS support (mod_ssl)], $ssl_objs, , most, [
41     APACHE_CHECK_OPENSSL
42     if test "$ac_cv_openssl" = "yes" ; then
43         APR_ADDTO(MOD_SSL_LDADD, [\$(SSL_LIBS)])
44         if test "x$enable_ssl" = "xshared"; then
45            # The only symbol which needs to be exported is the module
46            # structure, so ask libtool to hide everything else:
47            APR_ADDTO(MOD_SSL_LDADD, [-export-symbols-regex ssl_module])
48         fi
49     else
50         enable_ssl=no
51     fi
52 ])
53
54 # Ensure that other modules can pick up mod_ssl.h
55 APR_ADDTO(INCLUDES, [-I\$(top_srcdir)/$modpath_current])
56
57 dnl #  end of module specific part
58 APACHE_MODPATH_FINISH
59