Diff for /embedaddon/mtr/Makefile.am between versions 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2019/10/21 14:25:31 version 1.1.1.3, 2021/03/17 00:07:30
Line 55  mtr_SOURCES = ui/mtr.c ui/mtr.h \ Line 55  mtr_SOURCES = ui/mtr.c ui/mtr.h \
               ui/select.c ui/select.h \                ui/select.c ui/select.h \
               ui/utils.c ui/utils.h \                ui/utils.c ui/utils.h \
               packet/cmdparse.c packet/cmdparse.h \                packet/cmdparse.c packet/cmdparse.h \
                 packet/sockaddr.c packet/sockaddr.h \
               ui/mtr-curses.h \                ui/mtr-curses.h \
               img/mtr_icon.xpm \                img/mtr_icon.xpm \
               ui/mtr-gtk.h                ui/mtr-gtk.h
Line 84  if WITH_GTK Line 85  if WITH_GTK
 mtr_SOURCES += ui/gtk.c  mtr_SOURCES += ui/gtk.c
 endif  endif
   
   if WITH_LIBASAN
   ASAN_CFLAGS = -fno-omit-frame-pointer
   ASAN_CFLAGS += -fsanitize=undefined
   ASAN_CFLAGS += -fsanitize=address
   endif
   
 mtr_INCLUDES = $(GLIB_CFLAGS) -I$(top_builddir) -I$(top_srcdir)  mtr_INCLUDES = $(GLIB_CFLAGS) -I$(top_builddir) -I$(top_srcdir)
mtr_CFLAGS = $(GTK_CFLAGS) $(NCURSES_CFLAGS)mtr_CFLAGS = $(GTK_CFLAGS) $(NCURSES_CFLAGS) $(ASAN_CFLAGS) $(JANSSON_CFLAGS)
mtr_LDADD = $(GTK_LIBS) $(NCURSES_LIBS) $(RESOLV_LIBS)mtr_LDADD = $(GTK_LIBS) $(NCURSES_LIBS) $(RESOLV_LIBS) $(JANSSON_LIBS)
   
   
 mtr_packet_SOURCES = \  mtr_packet_SOURCES = \
Line 98  mtr_packet_SOURCES = \ Line 105  mtr_packet_SOURCES = \
         packet/probe.c packet/probe.h \          packet/probe.c packet/probe.h \
         packet/protocols.h \          packet/protocols.h \
         packet/timeval.c packet/timeval.h \          packet/timeval.c packet/timeval.h \
        packet/wait.h        packet/wait.h \
         packet/sockaddr.c packet/sockaddr.h
   
 mtr_packet_LDADD = $(CAP_LIBS)  mtr_packet_LDADD = $(CAP_LIBS)
   
   
   if WITH_ERROR
   mtr_packet_SOURCES += \
           portability/error.h \
           portability/error.c
   endif
   
   
 if CYGWIN  if CYGWIN
   
 mtr_packet_SOURCES += \  mtr_packet_SOURCES += \
         packet/command_cygwin.c packet/command_cygwin.h \  
         packet/probe_cygwin.c packet/probe_cygwin.h \          packet/probe_cygwin.c packet/probe_cygwin.h \
         packet/wait_cygwin.c          packet/wait_cygwin.c
 mtr_packet_LDADD += -lcygwin -liphlpapi -lws2_32  mtr_packet_LDADD += -lcygwin -liphlpapi -lws2_32
Line 141  else  # if CYGWIN Line 155  else  # if CYGWIN
 check_PROGRAMS = mtr-packet-listen  check_PROGRAMS = mtr-packet-listen
   
 mtr_packet_SOURCES += \  mtr_packet_SOURCES += \
         packet/command_unix.c packet/command_unix.h \  
         packet/construct_unix.c packet/construct_unix.h \          packet/construct_unix.c packet/construct_unix.h \
         packet/deconstruct_unix.c packet/deconstruct_unix.h \          packet/deconstruct_unix.c packet/deconstruct_unix.h \
         packet/probe_unix.c packet/probe_unix.h \          packet/probe_unix.c packet/probe_unix.h \
Line 156  endif  # if CYGWIN Line 169  endif  # if CYGWIN
 if BUILD_BASH_COMPLETION  if BUILD_BASH_COMPLETION
 dist_bashcompletion_DATA = bash-completion/mtr  dist_bashcompletion_DATA = bash-completion/mtr
 endif  endif
   
   dist-hook:
           $(AM_V_GEN)echo $(VERSION) > $(distdir)/.tarball-version
   

Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>