Ticket #466 (closed defect: fixed)
Small fix to configure and update to autotools
| Reported by: | anonymous | Owned by: | jan |
|---|---|---|---|
| Priority: | low | Milestone: | |
| Component: | core | Version: | 1.4.8 |
| Severity: | normal | Keywords: | |
| Cc: | lapo@… | Blocked By: | |
| Need User Feedback: | Blocking: |
Description
It would be nice to execute "autoreconf" to update to latest autotools release (latest libtool contains some fixes regarding Windows DLL's relocation). In order to do so without warning AC_DEFINE in configure.in should be properly quoted.
--- lighttpd-1.4.8-orig/configure.in 2005-11-10 11:38:27.000000000 +0100 +++ lighttpd-1.4.8/configure.in 2006-01-12 22:40:30.859375000 +0100 @@ -66,7 +66,7 @@ AC_TYPE_PID_T AC_TYPE_SIZE_T -AC_CHECK_MEMBER(struct tm.tm_gmtoff,AC_DEFINE([HAVE_STRUCT_TM_GMTOFF],[1],[gmto ff in struct tm]),,[#include <time.h>]) +AC_CHECK_MEMBER(struct tm.tm_gmtoff, [AC_DEFINE([HAVE_STRUCT_TM_GMTOFF],[1],[gm toff in struct tm])],,[#include <time.h>]) AC_CHECK_TYPES(struct sockaddr_storage,,,[#include <sys/socket.h>]) AC_CHECK_TYPES(socklen_t,,,[#include <sys/types.h> #include <sys/socket.h>])
Unfortunately this seems to break configure on line 25564: ` PKG_CHECK_MODULES(FAM, gamin >= 0.1.0,'
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

