From: HAT Date: Tue, 14 Jan 2014 15:03:38 +0000 (+0900) Subject: afpd -V show Spotlight support X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=netatalk.git;a=commitdiff_plain;h=e47aca85cd9009e0b7e8f332c133daef4ca785ec afpd -V show Spotlight support --- diff --git a/etc/afpd/afp_options.c b/etc/afpd/afp_options.c index f06bfb37..95faf808 100644 --- a/etc/afpd/afp_options.c +++ b/etc/afpd/afp_options.c @@ -176,6 +176,13 @@ static void show_version_extended(void ) puts( "No" ); #endif + printf( " Spotlight support:\t" ); +#ifdef HAVE_TRACKER + puts( "Yes" ); +#else + puts( "No" ); +#endif + printf( " DTrace probes:\t" ); #ifdef WITH_DTRACE puts( "Yes" );