Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 2 Jun 2007 12:39:49 GMT
From:      Fredrik Lindberg <fli@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 120777 for review
Message-ID:  <200706021239.l52Cdntl022513@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=120777

Change 120777 by fli@fli_genesis on 2007/06/02 12:39:00

	- Hook up new files to the build.
	- Be a bit more style.Makefile friendly. 
	- Tweak DEBUG_MASK (a bit less noisy).

Affected files ...

.. //depot/projects/soc2007/fli-mdns_sd/mdnsd/Makefile#2 edit

Differences ...

==== //depot/projects/soc2007/fli-mdns_sd/mdnsd/Makefile#2 (text+ko) ====

@@ -1,17 +1,16 @@
-SRCS= stack_mdns.c stack_packet.c stack_buf.c \
-	hash.c event.c wqueue.c log.c mdnsd.c
-PROG= mdnsd
+SRCS=	stack_mdns.c stack_packet.c stack_buf.c hash.c event.c \
+	wqueue.c log.c mdnsd.c record.c cache.c
+PROG=	mdnsd
+WARNS?=	3
 
-CFLAGS += -Wall -g -DDEBUG -DDEBUG_MASK=0xff
+CFLAGS+=	-Wall -g -DDEBUG -DDEBUG_MASK=0xfc
 .if !defined(WITHOUT_INET6)
-CFLAGS += -DINET6
+CFLAGS+=	-DINET6
 .endif
 
 .if !defined(WITHOUT_LIBPTHREAD)
-CFLAGS += -DHAVE_PTHREAD
-LDFLAGS += -lpthread
+CFLAGS+=	-DHAVE_PTHREAD
+LDFLAGS+=	-lpthread
 .endif
 
-WARNS?=3
-
 .include <bsd.prog.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200706021239.l52Cdntl022513>