diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-03-04 02:23:33 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-03-04 02:23:33 +0000 |
commit | 413b8a1457dad9f545d5ebeaaf50da905befbd3e (patch) | |
tree | 655c12804b7939c9536549ba59aa714d58ea6ef6 /dev-libs/libtommath/files | |
parent | Version bump #124867 by Alon Bar-Lev. (diff) | |
download | gentoo-2-413b8a1457dad9f545d5ebeaaf50da905befbd3e.tar.gz gentoo-2-413b8a1457dad9f545d5ebeaaf50da905befbd3e.tar.bz2 gentoo-2-413b8a1457dad9f545d5ebeaaf50da905befbd3e.zip |
touchup patch so we dont link against libstdc++ #124809 by Bruce Guenter
(Portage version: 2.1_pre5-r2)
Diffstat (limited to 'dev-libs/libtommath/files')
-rw-r--r-- | dev-libs/libtommath/files/libtommath-0.36-shared-lib.patch | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/dev-libs/libtommath/files/libtommath-0.36-shared-lib.patch b/dev-libs/libtommath/files/libtommath-0.36-shared-lib.patch index 4ad81df66f39..f558b620526f 100644 --- a/dev-libs/libtommath/files/libtommath-0.36-shared-lib.patch +++ b/dev-libs/libtommath/files/libtommath-0.36-shared-lib.patch @@ -1,18 +1,25 @@ patch by Bruce Guenter http://bugs.gentoo.org/124692 +http://bugs.gentoo.org/124809 --- libtommath-0.36/makefile.shared +++ libtommath-0.36/makefile.shared -@@ -84,7 +84,10 @@ - libtool --mode=link gcc *.lo -o $(LIBNAME) -rpath $(LIBPATH) -version-info $(VERSION) - libtool --mode=link gcc *.o -o $(LIBNAME_S) - ranlib $(LIBNAME_S) +@@ -81,11 +81,13 @@ + bn_mp_to_signed_bin_n.o bn_mp_to_unsigned_bin_n.o + + $(LIBNAME): $(OBJECTS) +- libtool --mode=link gcc *.lo -o $(LIBNAME) -rpath $(LIBPATH) -version-info $(VERSION) +- libtool --mode=link gcc *.o -o $(LIBNAME_S) +- ranlib $(LIBNAME_S) - libtool --mode=install install -c $(LIBNAME) $(LIBPATH)/$@ ++ libtool --mode=link --tag=CC gcc *.lo -o $(LIBNAME) -rpath $(LIBPATH) -version-info $(VERSION) ++ libtool --mode=link --tag=CC gcc *.o -o $(LIBNAME_S) + +install: $(LIBNAME) $(HEADERS) + install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(LIBPATH) -+ libtool --mode=install install -c $(LIBNAME) $(DESTDIR)$(LIBPATH)/$@ install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(INCPATH) ++ libtool --mode=install install -c $(LIBNAME) $(DESTDIR)$(LIBPATH)/$(LIBNAME) install -g $(GROUP) -o $(USER) $(HEADERS) $(DESTDIR)$(INCPATH) + test: $(LIBNAME) demo/demo.o |