"Fossies" - the Fresh Open Source Software Archive 
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
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(ftp)
18
19 dnl # list of module object files
20 ftp_objs="dnl
21 mod_ftp.lo dnl
22 ftp_commands.lo dnl
23 ftp_connection.lo dnl
24 ftp_data_connection.lo dnl
25 ftp_data_filters.lo dnl
26 ftp_filters.lo dnl
27 ftp_inet_pton.lo dnl
28 ftp_limitlogin.lo dnl
29 ftp_log.lo dnl
30 ftp_message.lo dnl
31 ftp_protocol.lo dnl
32 ftp_request.lo dnl
33 ftp_util.lo dnl
34 ftp_lowportd.lo dnl
35 "
36
37 dnl # hook module into the Autoconf mechanism (--enable-ftp option)
38 APACHE_MODULE(ftp, [FTP Protocol support (mod_ftp)], $ftp_objs, , no, [
39 AC_CHECK_FUNCS(fchmod)
40 AC_CHECK_HEADERS(arpa/ftp.h)
41 AC_CHECK_HEADERS(netinet/ip.h)
42 AC_CHECK_HEADERS(sys/stat.h)
43 AC_CHECK_DECL(SOL_IP, , , [
44 #include <sys/types.h>
45 #include <sys/socket.h>
46 #include <netinet/ip.h>
47 ])
48 AC_CHECK_MEMBERS([struct msghdr.msg_control, struct msghdr.msg_accrights],
49 [], [], [
50 #include <sys/types.h>
51 #include <sys/socket.h>
52 ])
53 ])
54
55 APACHE_MODULE(ftp_example, [Example FTP cmd extension (mod_ftp_example)], , , no)
56
57 dnl # end of module specific part
58 APACHE_MODPATH_FINISH
59