diff options
author | 2003-08-16 04:44:55 +0000 | |
---|---|---|
committer | 2003-08-16 04:44:55 +0000 | |
commit | d7ba9f86309c1cf48830b95afe7e9a4e1c973f90 (patch) | |
tree | 2846b1bc7f027d897c3d72e88f9256e6ce1d9701 /sys-libs/db/files | |
parent | Get db to link libdb* to correct dependencies ... for example if we use (diff) | |
download | gentoo-2-d7ba9f86309c1cf48830b95afe7e9a4e1c973f90.tar.gz gentoo-2-d7ba9f86309c1cf48830b95afe7e9a4e1c973f90.tar.bz2 gentoo-2-d7ba9f86309c1cf48830b95afe7e9a4e1c973f90.zip |
Get db to link libdb* to correct dependencies ... for example if we use
NPTL or NGPT, db detects usable mutexes, and should link against
libpthread, but does not do so ...
Diffstat (limited to 'sys-libs/db/files')
-rw-r--r-- | sys-libs/db/files/db-4.0.14-fix-dep-link.patch | 38 | ||||
-rw-r--r-- | sys-libs/db/files/digest-db-4.0.14-r1 | 1 |
2 files changed, 39 insertions, 0 deletions
diff --git a/sys-libs/db/files/db-4.0.14-fix-dep-link.patch b/sys-libs/db/files/db-4.0.14-fix-dep-link.patch new file mode 100644 index 000000000000..f54f064640e6 --- /dev/null +++ b/sys-libs/db/files/db-4.0.14-fix-dep-link.patch @@ -0,0 +1,38 @@ +--- db-4.0.14/dist/Makefile.in.orig 2003-08-16 06:21:53.763400112 +0200 ++++ db-4.0.14/dist/Makefile.in 2003-08-16 06:23:16.036892640 +0200 +@@ -58,7 +58,7 @@ + + LDFLAGS= @LDFLAGS@ + LIBS= @LIBS@ +-LIBSO_LIBS= @LIBSO_LIBS@ ++LIBSO_LIBS= @LIBSO_LIBS@ $(LIBS) + + libdb= libdb.a + libso_base= libdb +@@ -77,7 +77,7 @@ + CXX= @MAKEFILE_CXX@ + CXXLINK= @MAKEFILE_CXXLINK@ + XSOLINK= @MAKEFILE_XSOLINK@ +-LIBXSO_LIBS= @LIBXSO_LIBS@ ++LIBXSO_LIBS= @LIBXSO_LIBS@ $(LIBS) + + libcxx= libdb_cxx.a + libxso_base= libdb_cxx +@@ -93,7 +93,7 @@ + # Java support is optional and requires shared librarires. + ################################################## + CLASSPATH= $(JAVA_CLASSTOP) +-LIBJSO_LIBS= @LIBJSO_LIBS@ ++LIBJSO_LIBS= @LIBJSO_LIBS@ $(LIBS) + + JAR= @JAR@ + JAVAC= env CLASSPATH="$(CLASSPATH)" @JAVAC@ +@@ -121,7 +121,7 @@ + # Tcl support is optional and requires shared libraries. + ################################################## + TCFLAGS= @TCFLAGS@ +-LIBTSO_LIBS= @LIBTSO_LIBS@ ++LIBTSO_LIBS= @LIBTSO_LIBS@ $(LIBS) + libtso_base= libdb_tcl + libtso= $(libtso_base)-$(SOVERSION).@SOSUFFIX@ + libtso_static= $(libtso_base)-$(SOVERSION).a diff --git a/sys-libs/db/files/digest-db-4.0.14-r1 b/sys-libs/db/files/digest-db-4.0.14-r1 new file mode 100644 index 000000000000..cb9924c89b80 --- /dev/null +++ b/sys-libs/db/files/digest-db-4.0.14-r1 @@ -0,0 +1 @@ +MD5 12262c64fcd64b772e7cffad8e4d0ebc db-4.0.14.tar.gz 2701799 |