libtool-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 09/10] Create import libraries instead of links to the real libra


From: KO Myung-Hun
Subject: [PATCH 09/10] Create import libraries instead of links to the real library on OS/2
Date: Thu, 23 Feb 2012 00:02:02 +0900

---
 build-aux/ltmain.m4sh |   23 ++++++++++++++++++++---
 1 files changed, 20 insertions(+), 3 deletions(-)

diff --git a/build-aux/ltmain.m4sh b/build-aux/ltmain.m4sh
index 8cae2c3..690b44b 100644
--- a/build-aux/ltmain.m4sh
+++ b/build-aux/ltmain.m4sh
@@ -2240,8 +2240,17 @@ func_mode_install ()
            # so we also need to try rm && ln -s.
            for linkname
            do
-             test "$linkname" != "$realname" \
-               && func_show_eval "(cd $destdir && { $LN_S -f $realname 
$linkname || { $RM $linkname && $LN_S $realname $linkname; }; })"
+             if test "$linkname" != "$realname"; then
+               case $host_os in
+               os2*)
+                 # Create import libraries instead of links on OS/2
+                 func_show_eval "(emximp -o $destdir/$linkname 
$dir/${linkname%%_dll.$libext}.def)"
+                 ;;
+               *)
+                 func_show_eval "(cd $destdir && { $LN_S -f $realname 
$linkname || { $RM $linkname && $LN_S $realname $linkname; }; })"
+                 ;;
+               esac
+             fi
            done
          fi
 
@@ -7839,7 +7848,15 @@ EOF
        # Create links to the real library.
        for linkname in $linknames; do
          if test "$realname" != "$linkname"; then
-           func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S 
"$realname" "$linkname")' 'exit $?'
+           case $host_os in
+           os2*)
+             # Create import libraries instead of links on OS/2
+             func_show_eval '(emximp -o $output_objdir/$linkname 
$output_objdir/$libname.def)' 'exit $?'
+             ;;
+           *)
+             func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S 
"$realname" "$linkname")' 'exit $?'
+             ;;
+           esac
          fi
        done
 
-- 
1.7.3.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]