gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] /srv/bzr/gnash/rtmp r10023: Wrap all macros in AC_DEFUN,


From: Benjamin Wolsey
Subject: [Gnash-commit] /srv/bzr/gnash/rtmp r10023: Wrap all macros in AC_DEFUN, or autogen.sh fails (at least on Mandriva 2009).
Date: Wed, 25 Feb 2009 10:17:19 +0100
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 10023
committer: Benjamin Wolsey <address@hidden>
branch nick: rtmp
timestamp: Wed 2009-02-25 10:17:19 +0100
message:
  Wrap all macros in AC_DEFUN, or autogen.sh fails (at least on Mandriva 2009).
modified:
  cygnal/acinclude.m4
=== modified file 'cygnal/acinclude.m4'
--- a/cygnal/acinclude.m4       2009-02-22 00:38:59 +0000
+++ b/cygnal/acinclude.m4       2009-02-25 09:17:19 +0000
@@ -38,22 +38,22 @@
 dnl AM_COMPILER_LIB
 
 dnl Build the cgibins server if specified.
-AC_ARG_ENABLE(cgibins,
-  AC_HELP_STRING([--enable-cgibin], [Enable building of the CGIs for Cygnal]),
-[case "${enableval}" in
-  yes) cgibin=yes ;;
-  no)  cgibin=no ;;
-  *)   AC_MSG_ERROR([bad value ${enableval} for enable-cgibin option]) ;;
-esac],cgibin=yes)
-AM_CONDITIONAL(USE_CGI, test x$cgibin = xyes)
-
 AC_DEFUN([CYGNAL_PATHS],
-[
-
-dnl For Asynchronous I/O
-dnl AC_CHECK_HEADERS(aio.h poll.h)
-
-dnl Look for the various ways of blocking while waiting for I/O
-AC_CHECK_FUNCS(pselect poll ppoll epoll)
+[dnl
+
+  AC_ARG_ENABLE(cgibins,
+    AC_HELP_STRING([--enable-cgibin], [Enable building of the CGIs for 
Cygnal]),
+  [case "${enableval}" in
+    yes) cgibin=yes ;;
+    no)  cgibin=no ;;
+    *)   AC_MSG_ERROR([bad value ${enableval} for enable-cgibin option]) ;;
+  esac],cgibin=yes)
+  AM_CONDITIONAL(USE_CGI, test x$cgibin = xyes)
+
+  dnl For Asynchronous I/O
+  dnl AC_CHECK_HEADERS(aio.h poll.h)
+
+  dnl Look for the various ways of blocking while waiting for I/O
+  AC_CHECK_FUNCS(pselect poll ppoll epoll)
  
 ])


reply via email to

[Prev in Thread] Current Thread [Next in Thread]