@@ -24,7 +24,6 @@ conf.set('_GNU_SOURCE', 1, description : 'Enable GNU extensions on systems that
2424build_arping = get_option (' BUILD_ARPING' )
2525build_clockdiff = get_option (' BUILD_CLOCKDIFF' )
2626build_ping = get_option (' BUILD_PING' )
27- build_rarpd = get_option (' BUILD_RARPD' )
2827build_rdisc = get_option (' BUILD_RDISC' )
2928build_rdisc_server = get_option (' ENABLE_RDISC_SERVER' )
3029build_tracepath = get_option (' BUILD_TRACEPATH' )
@@ -255,23 +254,6 @@ if build_arping == true
255254 endif
256255endif
257256
258- if build_rarpd == true
259- rarpd = executable (' rarpd' , [' rarpd.c' , git_version_h],
260- install_dir : sbindir,
261- link_with : [libcommon],
262- install : true )
263- if install_systemd_units
264- subs = configuration_data ()
265- subs.set(' sbindir' , sbindir)
266- unit_file = configure_file (
267- input : ' systemd/rarpd.service.in' ,
268- output : ' rarpd@.service' ,
269- configuration : subs
270- )
271- install_data (unit_file, install_dir : systemdunitdir)
272- endif
273- endif
274-
275257if build_mans == true or build_html_mans == true
276258 subdir (' doc' )
277259endif
@@ -289,7 +271,6 @@ output += 'clockdiff: ' + build_clockdiff.to_string()
289271output += ' (capability or suid: ' + setcap_clockdiff.to_string() + ' )\n '
290272output += ' ping: ' + build_ping.to_string()
291273output += ' (capability or suid: ' + setcap_ping.to_string() + ' )\n '
292- output += ' rarpd: ' + build_rarpd.to_string() + ' \n '
293274output += ' rdisc: ' + build_rdisc.to_string()
294275output += ' (server: ' + build_rdisc_server.to_string() + ' , '
295276output += ' capability or suid: ' + setcap_rdisc.to_string() + ' )\n '
0 commit comments