~ubuntu-branches/ubuntu/intrepid/enigma/intrepid

« back to all changes in this revision

Viewing changes to etc/mingw32-configure.sh

  • Committer: Bazaar Package Importer
  • Author(s): Erich Schubert
  • Date: 2005-08-28 15:30:09 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050828153009-sky64kb6tcq37xt5
Tags: 0.92.1-1
* New upstream subversion checkout
* Remove menu.s3m, which we are allowed to distributed but not to modify
  also copyright notice is confusing... (Closes: #321669)
* Rebuild with new libzipios (Closes: #325405)
  I hope this works without a versioned build-dependency
* Added "enigma replaces enigma-data" for upgrades (Closes: #308558)
* Added notes about the fonts copyright.
* updated to policy 3.6.2.1 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
export CC="ccache i586-mingw32msvc-gcc"
4
 
# export CXX=i586-mingw32msvc-g++
5
 
export CXX="ccache i586-mingw32msvc-g++"
6
 
export CXXFLAGS="-g0"
7
 
export RANLIB=i586-mingw32msvc-ranlib
8
 
export AR=i586-mingw32msvc-ar
9
 
export WINDRES=i586-mingw32msvc-windres
10
 
cd ..
11
 
make distclean
12
 
PATH=/usr/i586-mingw32msvc/bin:$PATH \
13
 
        ./configure \
14
 
        --host=i586-mingw32msvc \
15
 
        --target=i586-mingw32msvc \
16
 
        --build=i586-linux \
17
 
        --enable-optimize \
18
 
        AR=i586-mingw32msvc-ar \
19
 
        $*
20