cd0d3f081ff261f36b65ec1016d859ce3d50cb14 chmalee Mon Apr 19 14:29:28 2021 -0700 Add -fno-common to library makefiles to fix common extern variable definition errors diff --git src/hg/hgc/parClick.c src/hg/hgc/parClick.c index 80def5c..3e0ec6d 100644 --- src/hg/hgc/parClick.c +++ src/hg/hgc/parClick.c @@ -1,21 +1,20 @@ /* parClick - click handling for par track */ /* Copyright (C) 2013 The Regents of the University of California * See README in this or parent directory for licensing information. */ #include "common.h" -#include "parClick.h" #include "hgc.h" #include "bed.h" #include "hdb.h" #include "web.h" #include "hCommon.h" static struct bed *loadParTable(struct trackDb *tdb) /* load all records in the par table */ { struct bed *pars = NULL; struct sqlConnection *conn = hAllocConn(database); char query[512]; sqlSafef(query, sizeof(query), "select * from %s", tdb->table); struct sqlResult *sr = sqlGetResult(conn, query); char **row;