Merge pull request #25 from zeising/master
Add --with-ipv4 and --with-ipv6 options to cnfigurepull/34/head
commit
67d7a10f83
@ -1,3 +1,16 @@
|
||||
sbin_PROGRAMS = fping
|
||||
prog =
|
||||
|
||||
if IPV4
|
||||
prog += fping
|
||||
endif
|
||||
if IPV6
|
||||
prog += fping6
|
||||
endif
|
||||
|
||||
sbin_PROGRAMS = ${prog}
|
||||
|
||||
fping_SOURCES = fping.c options.h
|
||||
fping_DEPENDENCIES = ../config.h
|
||||
fping6_SOURCES = fping.c options.h
|
||||
fping6_DEPENDENCIES = ../config.h
|
||||
fping6_CFLAGS = $(AM_CFLAGS) -DIPV6
|
||||
|
Loading…
Reference in New Issue