aa7ec8a95c4054d4ce9501bed022fb510e50d94e
braney
  Sat Jul 3 11:07:20 2021 -0700
don't compile lowelab.c if LOWELAB isn't set

diff --git src/hg/hgc/lowelab.c src/hg/hgc/lowelab.c
index 8f918b4..6434e9d 100644
--- src/hg/hgc/lowelab.c
+++ src/hg/hgc/lowelab.c
@@ -1,19 +1,20 @@
 /* Lowe Lab additions for Archaea and Bacterial details pages*/
 
 /* Copyright (C) 2014 The Regents of the University of California 
  * See README in this or parent directory for licensing information. */
+#ifdef LOWELAB
 #include "common.h"
 #include "obscure.h"
 #include "hCommon.h"
 #include "hash.h"
 #include "bits.h"
 #include "memgfx.h"
 #include "portable.h"
 #include "errAbort.h"
 #include "dystring.h"
 #include "nib.h"
 #include "cheapcgi.h"
 #include "htmshell.h"
 #include "cart.h"
 #include "jksql.h"
 #include "dnautil.h"
@@ -3898,15 +3899,16 @@
   {
     doloweOrthologs(tdb, item);
   }
 else if (sameWord(track,"selfHomologs"))
   {
     doSelfHomologs(tdb, item);
   }
 else if (sameWord(track,"CRISPRs"))
 	{
 		doCRISPRs(tdb, item);
 	}
 else
     return FALSE;
 return TRUE;
 }
+#endif //LOWELAB