Commit 4766463b7896e838dc908bf8485eac907bd414d9

Con Kolivas 2011-07-21T11:07:51

Only set option to show devices and exit if built with opencl support.

diff --git a/main.c b/main.c
index 240c96b..a40dbb0 100644
--- a/main.c
+++ b/main.c
@@ -611,11 +611,13 @@ static char *load_config(const char *arg, void *unused)
 	return parse_config(config);
 }
 
+#ifdef HAVE_OPENCL
 static char *print_ndevs_and_exit(int *ndevs)
 {
 	printf("%i GPU devices detected\n", *ndevs);
 	exit(*ndevs);
 }
+#endif
 
 /* These options are available from commandline only */
 static struct opt_table opt_cmdline_table[] = {
@@ -626,14 +628,16 @@ static struct opt_table opt_cmdline_table[] = {
 	OPT_WITHOUT_ARG("--help|-h",
 			opt_usage_and_exit,
 #ifdef HAVE_OPENCL
-			"\nBuilt with CPU and GPU mining support.\n\n",
+			"\nBuilt with CPU and GPU mining support.\n",
 #else
-			"\nBuilt with CPU mining support only.\n\n",
+			"\nBuilt with CPU mining support only.\n",
 #endif
 			"Print this message"),
+#ifdef HAVE_OPENCL
 	OPT_WITHOUT_ARG("--ndevs|-n",
 			print_ndevs_and_exit, &nDevs,
 			"Enumerate number of detected GPUs and exit"),
+#endif
 	OPT_ENDTABLE
 };