Reorder support names alphabetically.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
diff --git a/cgminer.c b/cgminer.c
index fd70bb8..7175c32 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -1422,30 +1422,30 @@ extern const char *opt_argv0;
static char *opt_verusage_and_exit(const char *extra)
{
printf("%s\nBuilt with "
+#ifdef USE_AVALON
+ "avalon "
+#endif
#ifdef USE_BFLSC
"bflsc "
#endif
-#ifdef HAVE_OPENCL
- "GPU "
-#endif
#ifdef USE_BITFORCE
"bitforce "
#endif
+#ifdef HAVE_OPENCL
+ "GPU "
+#endif
#ifdef USE_ICARUS
"icarus "
#endif
-#ifdef USE_AVALON
- "avalon "
-#endif
#ifdef USE_MODMINER
"modminer "
#endif
-#ifdef USE_ZTEX
- "ztex "
-#endif
#ifdef USE_SCRYPT
"scrypt "
#endif
+#ifdef USE_ZTEX
+ "ztex "
+#endif
"mining support.\n"
, packagename);
printf("%s", opt_usage(opt_argv0, extra));