Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
zmap
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
zmap
Commits
955047db
Commit
955047db
authored
20 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
make stuff compile
parent
0a61c751
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/zmapDraw/makefile
+5
-13
5 additions, 13 deletions
src/zmapDraw/makefile
src/zmapDraw/zmapDraw.c
+9
-3
9 additions, 3 deletions
src/zmapDraw/zmapDraw.c
src/zmapWindow/makefile
+2
-2
2 additions, 2 deletions
src/zmapWindow/makefile
src/zmapWindow/zmapWindow.c
+7
-2
7 additions, 2 deletions
src/zmapWindow/zmapWindow.c
with
23 additions
and
20 deletions
src/zmapDraw/makefile
+
5
−
13
View file @
955047db
...
...
@@ -10,26 +10,18 @@ MAKE_DIR = $(ROOT_DIRECTORY)/zmapMake
# local macros
WIND_PRIV_HDRS
=
zmapWindow_P.h
#
WIND_PRIV_HDRS = zmapWindow_P.h
PUB_HDRS
=
seqregion.h stringbucket.h zmapDraw.h zmapWindow.h
PUB_HDRS
=
zmapDraw.h
#PUB_HDRS = zmapWindow.h
WIND_SRC
=
seqregion.c stringbucket.c
\
zmapbccol.c zmapcols.c zmapDraw.c
\
zmapWindow.c zmapWindowFrame.c GFF_scaffold.c
\
zmapWindowDrawFeatures.c
#WIND_SRC = zmapWindow.c zmapWindowFrame.c
WIND_SRC
=
zmapDraw.c
WIND_OBJ
=
seqregion.o stringbucket.o
\
zmapbccol.o zmapcols.o zmapDraw.o
\
zmapWindow.o zmapWindowFrame.o GFF_scaffold.o
\
zmapWindowDrawFeatures.o
#WIND_OBJ = zmapWindow.o zmapWindowFrame.o
WIND_OBJ
=
zmapDraw.o
ZMAP_LIB
=
libzmap.a
FUNCS
=
zmapfuncs.c zmapfuncs.h
#
FUNCS = zmapfuncs.c zmapfuncs.h
#
# These must all be set for the common includes to work.
...
...
This diff is collapsed.
Click to expand it.
src/zmapDraw/zmapDraw.c
+
9
−
3
View file @
955047db
/* Last edited: Jul
5 14:3
7 2004 (
rnc
) */
/* Last edited: Jul
14 13:4
7 2004 (
edgrif
) */
/* file: zmapcontrol.c
* Author: Simon Kelley (srk@sanger.ac.uk)
* Copyright (c) Sanger Institute, 2003
...
...
@@ -26,8 +26,8 @@
*/
#include
<glib.h>
#include
<zmapDraw.h>
#include
<
seqregion.h>
#include
<
ZMap/
zmapDraw.h>
#include
<
../zmapWindow/seqregion.h>
/* Hack to compile for now... */
...
...
@@ -55,8 +55,14 @@ void displayText(FooCanvasGroup *group, char *text, double x, double y)
void
zmRegBox
(
ZMapPane
pane
,
int
box
,
ZMapColumn
*
col
,
void
*
arg
)
{
#ifdef ED_G_NEVER_INCLUDE_THIS_CODE
/* hack to get everything to compile......... */
zMapPaneSetBox2Col
(
pane
,
col
,
box
);
zMapPaneSetBox2Seg
(
pane
,
arg
,
box
);
#endif
/* ED_G_NEVER_INCLUDE_THIS_CODE */
return
;
}
...
...
This diff is collapsed.
Click to expand it.
src/zmapWindow/makefile
+
2
−
2
View file @
955047db
...
...
@@ -16,13 +16,13 @@ PUB_HDRS = seqregion.h stringbucket.h zmapDraw.h zmapWindow.h
#PUB_HDRS = zmapWindow.h
WIND_SRC
=
seqregion.c stringbucket.c
\
zmapbccol.c zmapcols.c
zmapDraw.c
\
zmapbccol.c zmapcols.c
\
zmapWindow.c zmapWindowFrame.c GFF_scaffold.c
\
zmapWindowDrawFeatures.c
#WIND_SRC = zmapWindow.c zmapWindowFrame.c
WIND_OBJ
=
seqregion.o stringbucket.o
\
zmapbccol.o zmapcols.o
zmapDraw.o
\
zmapbccol.o zmapcols.o
\
zmapWindow.o zmapWindowFrame.o GFF_scaffold.o
\
zmapWindowDrawFeatures.o
#WIND_OBJ = zmapWindow.o zmapWindowFrame.o
...
...
This diff is collapsed.
Click to expand it.
src/zmapWindow/zmapWindow.c
+
7
−
2
View file @
955047db
...
...
@@ -28,9 +28,9 @@
*
* Exported functions: See ZMap/zmapWindow.h
* HISTORY:
* Last edited: Jul 1
3
1
6:24
2004 (edgrif)
* Last edited: Jul 1
4
1
3:47
2004 (edgrif)
* Created: Thu Jul 24 14:36:27 2003 (edgrif)
* CVS info: $Id: zmapWindow.c,v 1.1
6
2004-07-14
09:12:05
edgrif Exp $
* CVS info: $Id: zmapWindow.c,v 1.1
7
2004-07-14
12:52:11
edgrif Exp $
*-------------------------------------------------------------------
*/
...
...
@@ -537,6 +537,8 @@ void zMapRegionFreeDNA(ZMapRegion *region)
#ifdef ED_G_NEVER_INCLUDE_THIS_CODE
// ZMapPane functions
...
...
@@ -554,6 +556,7 @@ void zMapPaneNewBox2Col(ZMapPane pane, int elements)
GArray
*
zMapPaneSetBox2Col
(
ZMapPane
pane
,
ZMapColumn
*
col
,
int
index
)
{
return
g_array_insert_val
(
pane
->
box2col
,
index
,
col
);
...
...
@@ -598,6 +601,8 @@ void zMapPaneFreeBox2Seg(ZMapPane pane)
}
FooCanvasItem
*
zMapPaneGetGroup
(
ZMapPane
pane
)
{
return
pane
->
group
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment