diff options
Diffstat (limited to 'dilos/tdepim/debian/patches/dilos.patch')
-rw-r--r-- | dilos/tdepim/debian/patches/dilos.patch | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dilos/tdepim/debian/patches/dilos.patch b/dilos/tdepim/debian/patches/dilos.patch new file mode 100644 index 000000000..f8affdd33 --- /dev/null +++ b/dilos/tdepim/debian/patches/dilos.patch @@ -0,0 +1,39 @@ +Index: tdepim/cmake/modules/TDEMacros.cmake +=================================================================== +--- tdepim.orig/cmake/modules/TDEMacros.cmake ++++ tdepim/cmake/modules/TDEMacros.cmake +@@ -833,7 +833,7 @@ macro( tde_add_library _arg_target ) + + # set embedded archives + if( _embed ) +- list( INSERT _link 0 -Wl,-whole-archive ${_embed} -Wl,-no-whole-archive ) ++ list( INSERT _link 0 -Wl,-zallextract ${_embed} -Wl,-zdefaultextract ) + endif( _embed ) + + # set link libraries +Index: tdepim/mimelib/CMakeLists.txt +=================================================================== +--- tdepim.orig/mimelib/CMakeLists.txt ++++ tdepim/mimelib/CMakeLists.txt +@@ -43,7 +43,7 @@ tde_add_library( mimelib SHARED + dwstring.cpp text.cpp token.cpp uuencode.cpp + binhex.cpp + VERSION 1.0.1 +- LINK ${TQT_LIBRARIES} ${TDE_LIB_DIR}/libtdefakes_pic.a ++ LINK ${TQT_LIBRARIES} ${TDE_LIB_DIR}/libtdefakes_pic.a socket nsl + DESTINATION ${LIB_INSTALL_DIR} + ) + +Index: tdepim/kmail/kmfoldermbox.cpp +=================================================================== +--- tdepim.orig/kmail/kmfoldermbox.cpp ++++ tdepim/kmail/kmfoldermbox.cpp +@@ -46,7 +46,7 @@ + #include <ctype.h> + #include <unistd.h> + +-#ifdef HAVE_FCNTL_H ++#if defined(HAVE_FCNTL_H) || defined(__dilos__) + #include <fcntl.h> + #endif + |