Gentoo Archives: gentoo-commits

From: "Alistair Bush (ali_bush)" <ali_bush@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/fec/files: fec-1.0.4-soname.patch
Date: Fri, 26 Feb 2010 12:24:30
Message-Id: E1NkzF6-00040w-TS@stork.gentoo.org
1 ali_bush 10/02/26 12:24:28
2
3 Added: fec-1.0.4-soname.patch
4 Log:
5 Fix build error. see #300401.
6 (Portage version: 2.1.7.17/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-java/fec/files/fec-1.0.4-soname.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/fec/files/fec-1.0.4-soname.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/fec/files/fec-1.0.4-soname.patch?rev=1.1&content-type=text/plain
13
14 Index: fec-1.0.4-soname.patch
15 ===================================================================
16 --- Makefile.bak 2010-02-27 00:51:38.000000000 +1300
17 +++ Makefile 2010-02-27 00:56:06.000000000 +1300
18 @@ -21,7 +21,8 @@
19 $(CC) $(CFLAGS) -DGF_BITS=8 -o fec fec8.o test.c
20
21 libfec8.so: fec8.o fec8-jinterf.o
22 - $(CC) $(LDFLAGS) -shared fec8-jinterf.o fec8.o -o libfec8.so
23 + $(CC) $(LDFLAGS) -shared fec8-jinterf.o fec8.o -o libfec8.so \
24 + -Wl,-soname=libfec8.so
25
26 fec8-jinterf.o: fec-jinterf.c
27 $(CC) $(CFLAGS) -DGF_BITS=8 -c \
28 @@ -35,7 +36,8 @@
29 $(CC) $(CFLAGS) -DGF_BITS=8 -S -o fec8.S fec.c
30
31 libfec16.so: fec16.o fec16-jinterf.o
32 - $(CC) $(LDFLAGS) -shared fec16-jinterf.o fec16.o -o libfec16.so
33 + $(CC) $(LDFLAGS) -shared fec16-jinterf.o fec16.o -o libfec16.so \
34 + -Wl,-soname=libfec16.so
35
36 fec16-jinterf.o: fec-jinterf.c
37 $(CC) $(CFLAGS) -DGF_BITS=16 -c \