2 # $Id: mk-dlls.sh.in,v 1.3 2010/12/25 22:25:41 tom Exp $
3 ##############################################################################
4 # Copyright (c) 2008,2010 Free Software Foundation, Inc. #
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: #
14 # The above copyright notice and this permission notice shall be included in #
15 # all copies or substantial portions of the Software. #
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. #
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 #
29 ##############################################################################
31 # Author: Juergen Pfeifer
35 LC_ALL
=C @CC@
-v 2>&1 |
grep Target |
grep mingw
37 echo "$0 requires a mingw environment" >&2
40 cat > "$TEMP/tmp-dll/arch.c" <<EOF
44 printf("%d",8*sizeof(void*));
54 echo $ARCH > mingw_arch
55 echo Building DLLs and Import Libraries
for Win
${ARCH}
59 lf
="--enable-auto-import"
60 pushd lib
2>&1 >/dev
/null
65 if [ -f libncurses
${t}${m}.a
]; then
66 f
=libncurses
${t}${m}.a
74 ar x
"${bd}/${f}" `ar t "${bd}/${f}"`
75 @CC@ $cf -o w${g}.dll -Wl,--out-implib,${gi} -Wl,--output-def,w${g}.def -Wl,$lf `ar t "${bd}/$f"` @LIBS@
76 lib
//NOLOGO
/MACHINE
:i386
/DEF
:w
${g}.def
77 rm -f `ar t "${bd}/$f"`
84 for l
in panel menu form
86 for f
in lib
${l}${t}${m}.a
96 ar x
"${bd}/$f" `ar t "${bd}/$f"`
97 @CC@
$cf -o w
${g}.dll -Wl,--out-implib,${gi2} -Wl,--output-def,w${g}.def -Wl,$lf `ar t "${bd}/$f"` "${bd}/${gi}" @LIBS@
98 lib //NOLOGO /MACHINE:i386 /DEF:w${g}.def
99 rm -f `ar t "${bd}/$f"`
112 echo lib has not been built >&2