Changeset 87
- Timestamp:
- 04/19/04 01:24:36 (9 years ago)
- Location:
- trunk/wifidog
- Files:
-
- 10 added
- 5 removed
- 4 modified
-
ChangeLog (modified) (1 diff)
-
Makefile.am (modified) (1 diff)
-
configure.in (modified) (1 diff)
-
libhttpd (added)
-
libhttpd/.cvsignore (added)
-
libhttpd/Makefile.am (added)
-
libhttpd/README (added)
-
libhttpd/api.c (added)
-
libhttpd/httpd.h (added)
-
libhttpd/httpd_priv.h (added)
-
libhttpd/ip_acl.c (added)
-
libhttpd/protocol.c (added)
-
libhttpd/version.c (added)
-
src/Makefile.am (modified) (3 diffs)
-
src/httpd.h (deleted)
-
src/httpd_acl.c (deleted)
-
src/httpd_api.c (deleted)
-
src/httpd_priv.h (deleted)
-
src/httpd_proto.c (deleted)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog/ChangeLog
r85 r87 1 1 # $Header$ 2 2004-04-19 Benoit Gr�goire <bock@step.polymtl.ca> 3 * Properly integrate libhttpd into the source tree ;) Note that this will create a proper system wide shared librery for libghttpd. Still to be done: 1- Store Mina's patch somewhere, in case we want to upgrade libhttpd. 2-Add configure option not to build httpd, and use an already installed one. 4 2 5 2004-04-18 Alexandre Carmel-Veilleux <acv@acv.ca> 3 6 * Fixed pthread_cond_timedwait. The mutex needed to be locked as -
trunk/wifidog/Makefile.am
r77 r87 1 1 # $Header$ 2 2 3 SUBDIRS = src . doc3 SUBDIRS = libhttpd src . doc 4 4 5 5 docdir = ${prefix}/share/doc/wifidog-@VERSION@ -
trunk/wifidog/configure.in
r79 r87 88 88 AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR(You need the pthread library) ) 89 89 90 # libhttpd dependencies 91 echo "Begining libhttpd dependencies check" 92 AC_CHECK_HEADERS(string.h strings.h stdarg.h unistd.h) 93 AC_HAVE_LIBRARY(socket) 94 AC_HAVE_LIBRARY(nsl) 95 echo "libhttpd dependencies check complete" 96 90 97 AC_OUTPUT( Makefile 91 98 wifidog.spec 92 99 src/Makefile 100 libhttpd/Makefile 93 101 doc/Makefile 94 102 ) -
trunk/wifidog/src/Makefile.am
r79 r87 8 8 EXTRA_DIST = fw.access fw.counters fw.destroy fw.init 9 9 10 #wifidog_LDADD = $(top_builddir)/lib/libofx.la 10 AM_CPPFLAGS = \ 11 -I${top_srcdir}/libhttpd/ 12 wifidog_LDADD = $(top_builddir)/libhttpd/libhttpd.la 13 11 14 wifidog_SOURCES = commandline.c \ 12 15 conf.c \ … … 17 20 http.c \ 18 21 auth.c \ 19 userclasses.c \ 20 httpd_api.c \ 21 httpd_proto.c \ 22 httpd_acl.c 22 userclasses.c 23 23 24 24 noinst_HEADERS = commandline.h \ … … 31 31 http.h \ 32 32 auth.h \ 33 userclasses.h \ 34 httpd_priv.h \ 35 httpd.h 33 userclasses.h 36 34 37 #AM_CPPFLAGS = \38 # -I${top_srcdir}/inc
