Project

General

Profile

Actions

Bug #466

closed

Small fix to configure and update to autotools

Added by Anonymous over 18 years ago. Updated over 17 years ago.

Status:
Fixed
Priority:
Low
Category:
core
Target version:
-
ASK QUESTIONS IN Forums:

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,'

Actions #1

Updated by moo about 18 years ago

  • Status changed from New to Fixed
  • Resolution set to fixed

quote is always nice in m4, fixed in r1052

Actions

Also available in: Atom