Here's a little patch that creates libraries ending with .so in the exports/lib directory. They are needed by the newly created binaries, at least on FreeBSD. The solution is similar to linux.

>From 9e71f741c7cb06306ab55cfa0b2262a5bf055760 Mon Sep 17 00:00:00 2001
From: Ulrich Wilkens <m...@uwilkens.de>
Date: Mon, 13 Aug 2012 03:12:04 +0200
Subject: [PATCH] create so-libs for bsd systems

---
 cde/config/cf/bsdLib.rules |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/cde/config/cf/bsdLib.rules b/cde/config/cf/bsdLib.rules
index 8c05222..9d872c9 100644
--- a/cde/config/cf/bsdLib.rules
+++ b/cde/config/cf/bsdLib.rules
@@ -52,7 +52,10 @@ Concat(lib,libname.so.rev):  solist $(EXTRALIBRARYDEPS)      
                @@\
        (cd down; $(LD) -o up/$@~ $(SHLIBLDFLAGS) solist $(REQUIREDLIBS)) @@\
        $(RM) $@                                                        @@\
        $(MV) $@~ $@                                                    @@\
+       $(RM) Concat(lib,libname.so)                                    @@\
+       $(LN) $@ Concat(lib,libname.so)                                 @@\
        LinkBuildLibrary($@)                                            @@\
+       LinkBuildLibrary(Concat(lib,libname.so))                        @@\
                                                                        @@\
 clean::                                                                        
@@\
        $(RM) Concat(lib,libname.so.rev)
-- 
1.7.10.3

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
cdesktopenv-devel mailing list
cdesktopenv-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cdesktopenv-devel

Reply via email to