Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gajim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
l-n-s
gajim
Commits
2105a5fa
Commit
2105a5fa
authored
19 years ago
by
nkour
Browse files
Options
Downloads
Patches
Plain Diff
adding -fpic in makefile
parent
08f7c21f
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
debian/control
+1
-3
1 addition, 3 deletions
debian/control
src/Makefile
+1
-1
1 addition, 1 deletion
src/Makefile
with
2 additions
and
4 deletions
debian/control
+
1
−
3
View file @
2105a5fa
...
...
@@ -11,6 +11,4 @@ Section: net
Priority: optional
Depends: python (>= 2.3), python-glade2 (>= 2.4.0), python-gtk2 (>= 2.4.0)
Suggests: python-gnupginterface
Description: jabber client in python
Gajim is a Jabber client, like Psi, based on a plugin system.
logger and gtkgui plugins are included.
Description: Gajim is a GTK jabber client written in python.
This diff is collapsed.
Click to expand it.
src/Makefile
+
1
−
1
View file @
2105a5fa
# Set the C flags to include the GTK+ and Python libraries
PYTHONVER
=
`
python
-V
2>&1 |
awk
'{print $$2}'
|
cut
-f1
,2
-d
.
`
CFLAGS
=
`
pkg-config
--cflags
gtk+-2.0 pygtk-2.0
`
-I
/usr/include/python
$(
PYTHONVER
)
-I
.
CFLAGS
=
`
pkg-config
--cflags
gtk+-2.0 pygtk-2.0
-fpic
`
-I
/usr/include/python
$(
PYTHONVER
)
-I
.
LDFLAGS
=
`
pkg-config
--libs
gtk+-2.0 pygtk-2.0
`
# Build the shared object
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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