View | Details | Raw Unified | Return to bug 40915 | Differences between
and this patch

Collapse All | Expand All

(-)files/patch-plugins (+72 lines)
Line 0 Link Here
1
--- plugins/mgcp/Makefile.in.orig	Sat Jun 29 10:04:05 2002
2
+++ plugins/mgcp/Makefile.in	Tue Jul 23 13:14:22 2002
3
@@ -157,6 +157,7 @@
4
 plugindir = @PLUGIN_DIR@
5
 
6
 plugin_LTLIBRARIES = mgcp.la
7
+plugin_SOLIBRARIES = ${plugin_LTLIBRARIES:C/\.la$/.so/}
8
 mgcp_la_SOURCES = packet-mgcp.c moduleinfo.h
9
 mgcp_la_LDFLAGS = -module -avoid-version
10
 
11
@@ -225,10 +226,10 @@
12
 install-pluginLTLIBRARIES: $(plugin_LTLIBRARIES)
13
 	@$(NORMAL_INSTALL)
14
 	$(mkinstalldirs) $(DESTDIR)$(plugindir)
15
-	@list='$(plugin_LTLIBRARIES)'; for p in $$list; do \
16
-	  if test -f $$p; then \
17
+	@list='$(plugin_SOLIBRARIES)'; for p in $$list; do \
18
+	  if test -f .libs/$$p; then \
19
 	    echo "$(LIBTOOL)  --mode=install $(INSTALL) $$p $(DESTDIR)$(plugindir)/$$p"; \
20
-	    $(LIBTOOL)  --mode=install $(INSTALL) $$p $(DESTDIR)$(plugindir)/$$p; \
21
+	    $(INSTALL) .libs/$$p $(DESTDIR)$(plugindir)/$$p; \
22
 	  else :; fi; \
23
 	done
24
 
25
--- plugins/gryphon/Makefile.in.orig	Sat Jun 29 10:04:04 2002
26
+++ plugins/gryphon/Makefile.in	Tue Jul 23 13:13:20 2002
27
@@ -157,6 +157,7 @@
28
 plugindir = @PLUGIN_DIR@
29
 
30
 plugin_LTLIBRARIES = gryphon.la
31
+plugin_SOLIBRARIES = ${plugin_LTLIBRARIES:C/\.la$/.so/}
32
 gryphon_la_SOURCES = packet-gryphon.c packet-gryphon.h moduleinfo.h
33
 gryphon_la_LDFLAGS = -module -avoid-version
34
 
35
@@ -225,10 +226,10 @@
36
 install-pluginLTLIBRARIES: $(plugin_LTLIBRARIES)
37
 	@$(NORMAL_INSTALL)
38
 	$(mkinstalldirs) $(DESTDIR)$(plugindir)
39
-	@list='$(plugin_LTLIBRARIES)'; for p in $$list; do \
40
-	  if test -f $$p; then \
41
+	@list='$(plugin_SOLIBRARIES)'; for p in $$list; do \
42
+	  if test -f .libs/$$p; then \
43
 	    echo "$(LIBTOOL)  --mode=install $(INSTALL) $$p $(DESTDIR)$(plugindir)/$$p"; \
44
-	    $(LIBTOOL)  --mode=install $(INSTALL) $$p $(DESTDIR)$(plugindir)/$$p; \
45
+	    $(INSTALL) .libs/$$p $(DESTDIR)$(plugindir)/$$p; \
46
 	  else :; fi; \
47
 	done
48
 
49
--- plugins/giop/Makefile.in.orig	Sat Jun 29 10:04:05 2002
50
+++ plugins/giop/Makefile.in	Tue Jul 23 13:12:43 2002
51
@@ -160,6 +160,7 @@
52
 plugindir = @PLUGIN_DIR@
53
 
54
 plugin_LTLIBRARIES = cosnaming.la coseventcomm.la
55
+plugin_SOLIBRARIES = ${plugin_LTLIBRARIES:C/\.la$/.so/}
56
 cosnaming_la_SOURCES = packet-cosnaming.c moduleinfo.h
57
 cosnaming_la_LDFLAGS = -module -avoid-version
58
 
59
@@ -235,10 +236,10 @@
60
 install-pluginLTLIBRARIES: $(plugin_LTLIBRARIES)
61
 	@$(NORMAL_INSTALL)
62
 	$(mkinstalldirs) $(DESTDIR)$(plugindir)
63
-	@list='$(plugin_LTLIBRARIES)'; for p in $$list; do \
64
-	  if test -f $$p; then \
65
+	@list='$(plugin_SOLIBRARIES)'; for p in $$list; do \
66
+	  if test -f .libs/$$p; then \
67
 	    echo "$(LIBTOOL)  --mode=install $(INSTALL) $$p $(DESTDIR)$(plugindir)/$$p"; \
68
-	    $(LIBTOOL)  --mode=install $(INSTALL) $$p $(DESTDIR)$(plugindir)/$$p; \
69
+	    $(INSTALL) .libs/$$p $(DESTDIR)$(plugindir)/$$p; \
70
 	  else :; fi; \
71
 	done
72
 

Return to bug 40915