-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add conflict with older versions of ekg to prevent overwrite of lib…
…gadu.so. - hacked Makefile to install correct files instead of playing with them in post-install stage. Added file(s): - files/patch-Makefile.in PR: ports/99727 Submitted by: Marcin Wisnicki Approved by: maintainer timeout
- Loading branch information
Ion-Mihai Tetcu
authored and
Ion-Mihai Tetcu
committed
Jul 28, 2006
1 parent
e35cfa6
commit 122d8f9
Showing
2 changed files
with
30 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- lib/Makefile.in.orig Sat Jun 25 08:41:07 2005 | ||
+++ lib/Makefile.in Sun Jul 2 19:41:00 2006 | ||
@@ -27,7 +27,7 @@ | ||
|
||
SHAREDMM = libgadu.so | ||
SHAREDM = $(SHAREDMM).$(VERSION_MAJOR) | ||
-SHARED = $(SHAREDM).$(VERSION_MINOR) | ||
+SHARED = $(SHAREDM) | ||
STATIC = libgadu.a | ||
|
||
all: @static@ @shared@ | ||
@@ -57,7 +57,6 @@ | ||
|
||
$(SHARED): $(LOBJS) | ||
$(CC) -shared -Wl,-soname,libgadu.so.$(VERSION_MAJOR) -o $(SHARED) $(LOBJS) $(LIBS) -lc | ||
- $(LN_S) -f $(SHARED) $(SHAREDM) | ||
$(LN_S) -f $(SHARED) $(SHAREDMM) | ||
|
||
# | ||
@@ -82,7 +81,6 @@ | ||
|
||
install-shared: install-common @strip_libgadu_so@ | ||
$(INSTALL) -m 755 $(SHARED) $(DESTDIR)$(libdir) | ||
- cd $(DESTDIR)$(libdir) && $(LN_S) -f $(SHARED) $(SHAREDM) | ||
cd $(DESTDIR)$(libdir) && $(LN_S) -f $(SHARED) $(SHAREDMM) | ||
|
||
install-static: install-common |