]> ncurses.scripts.mit.edu Git - ncurses.git/blob - mk-dlls.sh
ncurses 5.7 - patch 20100206
[ncurses.git] / mk-dlls.sh
1 #!/bin/sh
2 # $Id: mk-dlls.sh,v 1.2 2010/01/30 19:23:49 tom 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 gcc -v 2>&1 | grep specs | 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}.a
51             td=tmp-${g}
52             rm -rf "${td}"
53             mkdir "${td}"
54             cd "${td}"
55               ar x ../${f} `ar t ../${f}`
56               gcc $cf -o w${g}.dll -Wl,--out-implib,${gi} -Wl,--output-def,w${g}.def -Wl,$lf `ar t ../$f`
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 libw${g}.a ..
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                 rm -rf "${td}"
72                 mkdir "${td}"
73                 echo $g
74                 cd "${td}"
75                   ar x ../$f `ar t ../$f`
76                   gcc $cf -o w${g}.dll -Wl,--out-implib,libw${g}.a -Wl,--output-def,w${g}.def -Wl,$lf `ar t ../$f` ../${gi}
77                   lib //NOLOGO /MACHINE:i386 /DEF:w${g}.def
78                   rm -f `ar t ../$f`
79                   mv w${g}.dll ..
80                   mv w${g}.lib ..
81                   mv libw${g}.a ..
82                 cd ..
83                 rm -rf "${td}"
84               done
85             done
86           fi
87         done
88       done
89     popd
90   else
91     echo lib has not been built >&2
92   fi
93 fi