]> ncurses.scripts.mit.edu Git - ncurses.git/blob - mk-dlls.sh.in
ncurses 5.7 - patch 20100918
[ncurses.git] / mk-dlls.sh.in
1 #!/bin/sh
2 # $Id: mk-dlls.sh.in,v 1.1 2010/09/25 22:29:49 juergen Exp $
3 ##############################################################################
4 # Copyright (c) 2008,2010 Free Software Foundation, Inc.                     #
5 #                                                                            #
6 # Permission is hereby granted, free of charge, to any person obtaining a    #
7 # copy of this software and associated documentation files (the "Software"), #
8 # to deal in the Software without restriction, including without limitation  #
9 # the rights to use, copy, modify, merge, publish, distribute, distribute    #
10 # with modifications, sublicense, and/or sell copies of the Software, and to #
11 # permit persons to whom the Software is furnished to do so, subject to the  #
12 # following conditions:                                                      #
13 #                                                                            #
14 # The above copyright notice and this permission notice shall be included in #
15 # all copies or substantial portions of the Software.                        #
16 #                                                                            #
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
18 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   #
19 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    #
20 # THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      #
21 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING    #
22 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER        #
23 # DEALINGS IN THE SOFTWARE.                                                  #
24 #                                                                            #
25 # Except as contained in this notice, the name(s) of the above copyright     #
26 # holders shall not be used in advertising or otherwise to promote the sale, #
27 # use or other dealings in this Software without prior written               #
28 # authorization.                                                             #
29 ##############################################################################
30 #
31 # Author: Juergen Pfeifer
32 #
33 # Build DLLs on MinGW
34 #
35 LANG=en_US @CC@ -v 2>&1 | grep Target | grep mingw
36 if [ $? -eq 1 ]; then
37   echo "$0 requires a mingw environment" >&2
38 else
39   if [ -d lib ]; then
40     cf="-shared"
41     lf="--enable-auto-import"
42     pushd lib 2>&1 >/dev/null
43       for t in "" "t"
44       do
45         for m in "" "_g"
46         do
47           if [ -f libncurses${t}${m}.a ]; then
48             f=libncurses${t}${m}.a
49             g=`basename $f .a | cut -c 4-`
50             gi=libw${g}.dll.a
51             td=tmp-${g}
52             rm -rf "${td}"
53             mkdir "${td}"
54             cd "${td}"
55               ar x ../${f} `ar t ../${f}`
56               @CC@ $cf -o w${g}.dll -Wl,--out-implib,${gi} -Wl,--output-def,w${g}.def -Wl,$lf `ar t ../$f` @LIBS@
57               lib //NOLOGO /MACHINE:i386 /DEF:w${g}.def
58               rm -f `ar t ../$f`
59               mv w${g}.dll ..
60               mv w${g}.lib ..
61               mv ${gi} ..
62             cd ..
63             rm -rf "${td}"
64
65             for l in panel menu form
66             do
67               for f in lib${l}${t}${m}.a
68               do
69                 g=`basename $f .a | cut -c 4-`
70                 td=tmp-${g}
71                 gi2=libw${g}.dll.a
72                 rm -rf "${td}"
73                 mkdir "${td}"
74                 echo $g
75                 cd "${td}"
76                   ar x ../$f `ar t ../$f`
77                   @CC@ $cf -o w${g}.dll -Wl,--out-implib,${gi2} -Wl,--output-def,w${g}.def -Wl,$lf `ar t ../$f` ../${gi} @LIBS@
78                   lib //NOLOGO /MACHINE:i386 /DEF:w${g}.def
79                   rm -f `ar t ../$f`
80                   mv w${g}.dll ..
81                   mv w${g}.lib ..
82                   mv ${gi2} ..
83                 cd ..
84                 rm -rf "${td}"
85               done
86             done
87           fi
88         done
89       done
90     popd
91   else
92     echo lib has not been built >&2
93   fi
94 fi