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
5ad97d29
Commit
5ad97d29
authored
16 years ago
by
rds
Browse files
Options
Downloads
Patches
Plain Diff
64 bit config
parent
d3690876
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
scripts/build_config.linux-64.sh
+1
-1
1 addition, 1 deletion
scripts/build_config.linux-64.sh
src/runconfig
+23
-11
23 additions, 11 deletions
src/runconfig
with
24 additions
and
12 deletions
scripts/build_config.linux-64.sh
+
1
−
1
View file @
5ad97d29
...
...
@@ -3,7 +3,7 @@
# For some reason aceconn isn't installed in GTK_PREFIX
# This should change asap. Production foocanvas is!
ACECONN_PREFIX
=
~zmap/prefix/LINUX
ACECONN_PREFIX
=
~zmap/prefix/LINUX
_64
# This shouldn't get overwritten.
PKG_CONFIG
=
$GTK_PREFIX
/bin/pkg-config
...
...
This diff is collapsed.
Click to expand it.
src/runconfig
+
23
−
11
View file @
5ad97d29
...
...
@@ -52,18 +52,30 @@ case $opsys in
x86_64
)
locals
=
~zmap/prefix/LINUX_64
PATH
=
"
$locals
/bin:
$PATH
"
export
PATH
PKG_CONFIG_PATH
=
"
$locals
/lib/pkgconfig"
export
PKG_CONFIG_PATH
LD_LIBRARY_PATH
=
"
$locals
/lib"
export
LD_LIBRARY_PATH
# For some reason aceconn isn't installed in GTK_PREFIX
# This should change asap. Production foocanvas is!
if
[
"x
$ACECONN_PREFIX
"
!=
"x"
]
;
then
zmap_register_prefix_in_env
$ACECONN_PREFIX
zmap_register_prefix_as_rpath
$ACECONN_PREFIX
fi
# We need to find freetype2.pc in here. No idea why.
PKG_CONFIG_PATH
=
"/usr/lib/pkgconfig:
$PKG_CONFIG_PATH
"
zmap_register_prefix_in_env
$GTK_PREFIX
zmap_register_prefix_as_rpath
$GTK_PREFIX
if
[
"x
$FOOCANVAS_DEV
"
==
"x
$ZMAP_TRUE
"
]
;
then
zmap_register_prefix_in_env
$FOOCANVAS_PREFIX
zmap_register_prefix_as_rpath
$FOOCANVAS_PREFIX
fi
CFLAGS_args
=
'CFLAGS=-Wall'
# make sure zmap executable has path to foocanvas library.
LDFLAGS_args
=
"LDFLAGS=-Xlinker -rpath -Xlinker
$locals
/lib"
if
[
"x
$USE_GPROF
"
==
"x
$ZMAP_TRUE
"
]
;
then
LDFLAGS
=
"-pg
$LDFLAGS
"
fi
# Now add LDFLAGS to args so they get through to configure.
LDFLAGS_args
=
"
$LDFLAGS
$LDFLAGS_args
"
;;
# end x86_64
*
)
...
...
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