Skip to Content.
Sympa Menu

sm-grimoire-bugs - [SM-Grimoire-Bugs] [Bug 15993] New: glibc-2.14 breaks build of kdebase4-runtime

sm-grimoire-bugs AT lists.ibiblio.org

Subject: SourceMage Grimoire Bug List

List archive

Chronological Thread  
  • From: bugzilla-daemon AT bugs.sourcemage.org
  • To: sm-grimoire-bugs AT lists.ibiblio.org
  • Subject: [SM-Grimoire-Bugs] [Bug 15993] New: glibc-2.14 breaks build of kdebase4-runtime
  • Date: 7 Jun 2011 10:41:12 -0000

http://bugs.sourcemage.org/show_bug.cgi?id=15993

Summary: glibc-2.14 breaks build of kdebase4-runtime
Product: Codex
Version: z-rejected grimoire
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: kde4
AssignedTo: sm-grimoire-bugs AT lists.ibiblio.org
ReportedBy: treeve AT scarlet.be


kdebase4-runtime references rpc/rpc.h

It therefore needs a depends on libtirpc and the following patch, which works
for me

diff --git a/kioslave/nfs/CMakeLists.txt b/kioslave/nfs/CMakeLists.txt
index b973a73..6556769 100644
--- a/kioslave/nfs/CMakeLists.txt
+++ b/kioslave/nfs/CMakeLists.txt
@@ -3,8 +3,8 @@ set(kio_nfs_PART_SRCS kio_nfs.cpp mount_xdr.c nfs_prot_xdr.c )

kde4_add_plugin(kio_nfs ${kio_nfs_PART_SRCS})

-
-target_link_libraries(kio_nfs ${KDE4_KIO_LIBS})
+include_directories(/usr/include/tirpc)
+target_link_libraries(kio_nfs ${KDE4_KIO_LIBS} tirpc)

install(TARGETS kio_nfs DESTINATION ${PLUGIN_INSTALL_DIR} )

--
Configure bugmail: http://bugs.sourcemage.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.




Archive powered by MHonArc 2.6.24.

Top of Page