Ticket #466 (closed defect: fixed)

Opened 3 years ago

Last modified 23 months ago

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

Changed 2 years ago by moo

  • status changed from new to closed
  • resolution set to fixed

quote is always nice in m4, fixed in [1052]

Add/Change #466 (Small fix to configure and update to autotools)

Author



Change Properties
<Author field>
Action
as closed
Next status will be 'reopened'
 
Note: See TracTickets for help on using tickets.