All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH libnetfilter_queue v2] build: If doxygen is not available, be sure to report "doxygen: no" to ./configure
@ 2021-08-07  6:35 Duncan Roe
  2021-08-10 15:45 ` Pablo Neira Ayuso
  0 siblings, 1 reply; 2+ messages in thread
From: Duncan Roe @ 2021-08-07  6:35 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel

Also fix bogus "Doxygen not found ..." warning if --without-doxygen given

Signed-off-by: Duncan Roe <duncan_roe@optusnet.com.au>
---
v2: Also fix bogus "Doxygen not found ..." warning if --without-doxygen given
 configure.ac | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index bdbee98..0fe754c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -50,8 +50,11 @@ AS_IF([test "x$with_doxygen" != xno], [
 
 AM_CONDITIONAL([HAVE_DOXYGEN], [test -n "$DOXYGEN"])
 AS_IF([test "x$DOXYGEN" = x], [
-	dnl Only run doxygen Makefile if doxygen installed
-	AC_MSG_WARN([Doxygen not found - continuing without Doxygen support])
+	AS_IF([test "x$with_doxygen" != xno], [
+		dnl Only run doxygen Makefile if doxygen installed
+		AC_MSG_WARN([Doxygen not found - continuing without Doxygen support])
+		with_doxygen=no
+	])
 ])
 AC_OUTPUT
 
-- 
2.17.5


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH libnetfilter_queue v2] build: If doxygen is not available, be sure to report "doxygen: no" to ./configure
  2021-08-07  6:35 [PATCH libnetfilter_queue v2] build: If doxygen is not available, be sure to report "doxygen: no" to ./configure Duncan Roe
@ 2021-08-10 15:45 ` Pablo Neira Ayuso
  0 siblings, 0 replies; 2+ messages in thread
From: Pablo Neira Ayuso @ 2021-08-10 15:45 UTC (permalink / raw)
  To: Duncan Roe; +Cc: netfilter-devel

On Sat, Aug 07, 2021 at 04:35:01PM +1000, Duncan Roe wrote:
> Also fix bogus "Doxygen not found ..." warning if --without-doxygen given

Applied, thanks.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-08-10 15:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-07  6:35 [PATCH libnetfilter_queue v2] build: If doxygen is not available, be sure to report "doxygen: no" to ./configure Duncan Roe
2021-08-10 15:45 ` Pablo Neira Ayuso

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.