]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Merge remote-tracking branch 'mcrhub/master'
authorMichael Richardson <[email protected]>
Fri, 31 May 2013 15:06:16 +0000 (11:06 -0400)
committerMichael Richardson <[email protected]>
Fri, 31 May 2013 15:06:16 +0000 (11:06 -0400)
1  2 
Makefile.in

diff --combined Makefile.in
index b91e35072bf602a57580b8a872af1ea5dab38a5a,413124d4bfa088bc1cdc2a1c283ba9c2b98696a9..a54e71c035161dabaf89d6d92b41c7e0f180c98c
@@@ -41,7 -41,6 +41,7 @@@ VPATH = @srcdir
  #
  
  CC = @CC@
 +MKDEP = @MKDEP@
  PROG = tcpdump
  CCOPT = @V_CCOPT@
  INCLS = -I. @V_INCLS@
@@@ -62,8 -61,6 +62,8 @@@ INSTALL_PROGRAM = @INSTALL_PROGRAM
  INSTALL_DATA = @INSTALL_DATA@
  RANLIB = @RANLIB@
  
 +DEPENDENCY_CFLAG = @DEPENDENCY_CFLAG@
 +
  # Explicitly define compilation rule since SunOS 4's make doesn't like gcc.
  # Also, gcc does not remove the .o before forking 'as', which can be a
  # problem if you don't own the file but can write to the directory.
@@@ -87,7 -84,8 +87,8 @@@ CSRC =        addrtoname.c af.c checksum.c cpa
        print-l2tp.c print-lane.c print-ldp.c print-lldp.c print-llc.c \
          print-lmp.c print-lspping.c print-lwapp.c \
        print-lwres.c print-mobile.c print-mpcp.c print-mpls.c print-mptcp.c print-msdp.c \
-       print-msnlb.c print-nfs.c print-ntp.c print-null.c print-olsr.c print-ospf.c \
+       print-msnlb.c print-nfs.c print-ntp.c print-null.c print-nflog.c \
+       print-olsr.c print-ospf.c \
        print-pgm.c print-pim.c \
        print-ppi.c print-ppp.c print-pppoe.c print-pptp.c \
        print-radius.c print-raw.c print-rip.c print-rpki-rtr.c print-rrcp.c print-rsvp.c \
@@@ -112,6 -110,7 +113,6 @@@ SRC =      $(CSRC) $(GENSRC) $(LOCALSRC) $(L
  # hack the extra indirection
  OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) $(LOCALSRC:.c=.o) $(LIBOBJS) $(LIBNETDISSECT_OBJ)
  HDR = \
 -      acconfig.h \
        addrtoname.h \
        af.h \
        ah.h \
        machdep.h \
        mib.h \
        mpls.h \
 +      mptcp.h \
        nameser.h \
        netbios.h \
        netdissect.h \
@@@ -371,4 -369,4 +372,4 @@@ testlist
        echo $(TEST_DIST)
  
  depend: $(GENSRC)
 -      ${srcdir}/mkdep -c $(CC) $(DEFS) $(INCLS) $(SRC)
 +      $(MKDEP) -c $(CC) -m $(DEPENDENCY_CFLAG) $(DEFS) $(INCLS) $(SRC)