Changeset 79

Show
Ignore:
Timestamp:
04/16/04 23:36:03 (9 years ago)
Author:
alexcv
Message:

Merged in libhttpd

Location:
trunk/wifidog
Files:
5 added
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog/ChangeLog

    r77 r79  
    1 # $Header$ 
     12004-04-16  Alexandre Carmel-Veilleux <acv@acv.ca> 
     2        * Merged in libhttpd into the source tree 
     3 
    242004-04-16  Philippe April <papril777@yahoo.com> 
    35    * Fixed CRLF/formatting in phpauth/login/index.php 
  • trunk/wifidog/configure.in

    r64 r79  
    8888AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR(You need the pthread library) ) 
    8989 
    90 # check for libhttpd 
    91 AC_CHECK_HEADER(httpd.h, , AC_MSG_ERROR(You do not seem to have the libhttpd headers - please obtain libhttpd from http://www.hughes.com.au/products/libhttpd/ , patch it with http://www.topfx.com/dist/libhttpd.custom404.patch and install it) ) 
    92 AC_CHECK_LIB(httpd, httpdCreate, , AC_MSG_ERROR(You do not seem to have the libhttpd library - please obtain it from http://www.hughes.com.au/products/libhttpd/ , patch it with http://www.topfx.com/dist/libhttpd.custom404.patch and install it) ) 
    93 AC_CHECK_LIB(httpd, httpdAddC404Content, , AC_MSG_ERROR(You seem to have an original UNPATCHED version of libhttpd.  Please re-install with patch from http://www.topfx.com/dist/libhttpd.custom404.patch) ) 
    94                          
    9590AC_OUTPUT(              Makefile  
    9691                        wifidog.spec 
  • trunk/wifidog/src/Makefile.am

    r64 r79  
    1717        http.c \ 
    1818        auth.c \ 
    19         userclasses.c 
     19        userclasses.c \ 
     20        httpd_api.c \ 
     21        httpd_proto.c \ 
     22        httpd_acl.c 
    2023 
    2124noinst_HEADERS = commandline.h \ 
     
    2831        http.h \ 
    2932        auth.h \ 
    30         userclasses.h 
     33        userclasses.h \ 
     34        httpd_priv.h \ 
     35        httpd.h 
    3136 
    3237#AM_CPPFLAGS = \