svn commit: r292250 - head/lib/libc/resolv

Garrett Cooper ngie at FreeBSD.org
Tue Dec 15 05:37:11 UTC 2015


Author: ngie
Date: Tue Dec 15 05:37:09 2015
New Revision: 292250
URL: https://svnweb.freebsd.org/changeset/base/292250

Log:
  Allow users override `DEBUG` on the command line via DEBUG_FLAGS="-DDEBUG" with
  lib/libc/resolv by conditionalizing its definition
  
  MFC after: 3 days
  Reviewed by: ume, vangyzen
  Differential Revision: https://reviews.freebsd.org/D4519

Modified:
  head/lib/libc/resolv/res_init.c
  head/lib/libc/resolv/res_mkquery.c
  head/lib/libc/resolv/res_mkupdate.c
  head/lib/libc/resolv/res_query.c
  head/lib/libc/resolv/res_send.c

Modified: head/lib/libc/resolv/res_init.c
==============================================================================
--- head/lib/libc/resolv/res_init.c	Tue Dec 15 04:51:50 2015	(r292249)
+++ head/lib/libc/resolv/res_init.c	Tue Dec 15 05:37:09 2015	(r292250)
@@ -116,7 +116,9 @@ __FBSDID("$FreeBSD$");
 
 /*% Options.  Should all be left alone. */
 #define RESOLVSORT
-#define DEBUG
+#ifndef	DEBUG
+#define	DEBUG
+#endif
 
 #ifdef SOLARIS2
 #include <sys/systeminfo.h>

Modified: head/lib/libc/resolv/res_mkquery.c
==============================================================================
--- head/lib/libc/resolv/res_mkquery.c	Tue Dec 15 04:51:50 2015	(r292249)
+++ head/lib/libc/resolv/res_mkquery.c	Tue Dec 15 05:37:09 2015	(r292250)
@@ -83,7 +83,9 @@ __FBSDID("$FreeBSD$");
 #include "port_after.h"
 
 /* Options.  Leave them on. */
-#define DEBUG
+#ifndef	DEBUG
+#define	DEBUG
+#endif
 
 extern const char *_res_opcodes[];
 

Modified: head/lib/libc/resolv/res_mkupdate.c
==============================================================================
--- head/lib/libc/resolv/res_mkupdate.c	Tue Dec 15 04:51:50 2015	(r292249)
+++ head/lib/libc/resolv/res_mkupdate.c	Tue Dec 15 05:37:09 2015	(r292250)
@@ -54,7 +54,9 @@ __FBSDID("$FreeBSD$");
 #include "port_after.h"
 
 /* Options.  Leave them on. */
-#define DEBUG
+#ifndef	DEBUG
+#define	DEBUG
+#endif
 #define MAXPORT 1024
 
 static int getnum_str(u_char **, u_char *);

Modified: head/lib/libc/resolv/res_query.c
==============================================================================
--- head/lib/libc/resolv/res_query.c	Tue Dec 15 04:51:50 2015	(r292249)
+++ head/lib/libc/resolv/res_query.c	Tue Dec 15 05:37:09 2015	(r292250)
@@ -88,7 +88,9 @@ __FBSDID("$FreeBSD$");
 #include "port_after.h"
 
 /* Options.  Leave them on. */
-#define DEBUG
+#ifndef	DEBUG
+#define	DEBUG
+#endif
 
 #if PACKETSZ > 1024
 #define MAXPACKET	PACKETSZ

Modified: head/lib/libc/resolv/res_send.c
==============================================================================
--- head/lib/libc/resolv/res_send.c	Tue Dec 15 04:51:50 2015	(r292249)
+++ head/lib/libc/resolv/res_send.c	Tue Dec 15 05:37:09 2015	(r292250)
@@ -119,7 +119,9 @@ __FBSDID("$FreeBSD$");
 #include "un-namespace.h"
 
 /* Options.  Leave them on. */
-#define DEBUG
+#ifndef	DEBUG
+#define	DEBUG
+#endif
 #include "res_debug.h"
 #include "res_private.h"
 


More information about the svn-src-all mailing list