| [d7acd89] | 1 | #! /bin/sh |
|---|
| [ae1309f] | 2 | |
|---|
| [098acb1] | 3 | set -e |
|---|
| 4 | |
|---|
| [ae1309f] | 5 | rel=yes |
|---|
| [e66be9a] | 6 | if test x"$1" = x-t ; then |
|---|
| [ae1309f] | 7 | rel= |
|---|
| [f30265a0] | 8 | shift |
|---|
| [d7acd89] | 9 | fi |
|---|
| [dd7674d] | 10 | |
|---|
| [ae1309f] | 11 | if test x"$rel" = xyes ; then |
|---|
| [d2980d2] | 12 | # Check everything is checked into SVN. |
|---|
| 13 | if svn st | grep -v '^?' | grep . > /dev/null 2> /dev/null ; then |
|---|
| 14 | echo 'There are changes not checked into SVN - please rectify' |
|---|
| 15 | echo 'If you just want to test, run with option -t' |
|---|
| 16 | exit 1 |
|---|
| 17 | fi |
|---|
| [098acb1] | 18 | |
|---|
| [d2980d2] | 19 | test ! -f Makefile || make distclean |
|---|
| 20 | cp -u /usr/share/misc/config.guess . |
|---|
| 21 | cp -u /usr/share/misc/config.sub . |
|---|
| 22 | autoreconf --force -i |
|---|
| 23 | ./configure CC=gcc CXX=g++ |
|---|
| [1a2570d] | 24 | make distcheck |
|---|
| [44ef5ec6] | 25 | # FIXME: setting c89 doesn't define unix and suppresses getc_unlocked(). |
|---|
| [d2980d2] | 26 | # Tell the preprocessor to be C89 - this makes it reject // comments |
|---|
| 27 | # FIXME -Werror makes configure explode CFLAGS="-Werror -Wp,-std=c89" |
|---|
| 28 | # FIXME CXXFLAGS="-Werror" |
|---|
| [f78ad72] | 29 | else |
|---|
| [d2980d2] | 30 | make dist |
|---|
| [e719df1] | 31 | fi |
|---|
| [098acb1] | 32 | |
|---|
| [d2980d2] | 33 | # Perform mingw build on a clean unpacked source tree from the release tarball |
|---|
| 34 | # so that (a) we don't need to "make distclean" on the source tree and (b) we |
|---|
| 35 | # ensure that any files required to build the mingw version and installer |
|---|
| 36 | # package are actually shipped in the source tarball. |
|---|
| 37 | tarball=`ls -1t survex-*.tar.gz` |
|---|
| 38 | tardir=`basename "$tarball" .tar.gz` |
|---|
| 39 | rm -rf "$tardir" |
|---|
| 40 | tar xf "$tarball" |
|---|
| 41 | cd "$tardir" |
|---|
| [098acb1] | 42 | |
|---|
| [0fd6750] | 43 | test -n "$build_platform" || build_platform=`sh config.guess` |
|---|
| 44 | SAVE_PATH=$PATH |
|---|
| 45 | if test -d /usr/i586-mingw32msvc/bin ; then |
|---|
| 46 | # debian mingw32 package |
|---|
| 47 | PATH=/usr/i586-mingw32msvc/bin:$PATH |
|---|
| 48 | CC=/usr/bin/i586-mingw32msvc-gcc |
|---|
| 49 | CXX=/usr/bin/i586-mingw32msvc-g++ |
|---|
| 50 | else |
|---|
| 51 | # variant of debian mingw32 package? |
|---|
| 52 | PATH=/usr/i386-mingw32msvc/bin:$PATH |
|---|
| 53 | CC=/usr/bin/i386-mingw32msvc-gcc |
|---|
| 54 | CXX=/usr/bin/i386-mingw32msvc-g++ |
|---|
| 55 | fi |
|---|
| 56 | wxc=/usr/lib/wx/config/i586-mingw32msvc-msw-unicode-release-static-2.8 |
|---|
| [d2980d2] | 57 | # Passing -Werror to configure causes AC_CHECK_FUNCS to fail, so pass it to |
|---|
| 58 | # make instead. |
|---|
| 59 | ./configure --host=mingw32 --build="$build_platform" CC="$CC" CXX="$CXX" CXXFLAGS="-fno-strict-aliasing -Werror" WX_CONFIG="$wxc" LDFLAGS=-s |
|---|
| [0fd6750] | 60 | make CFLAGS=-Werror |
|---|
| 61 | make mingw_iss |
|---|
| 62 | PATH=$SAVE_PATH |
|---|
| 63 | |
|---|
| [d2980d2] | 64 | mv survex-win32-*.exe .. |
|---|
| 65 | cd .. |
|---|
| 66 | |
|---|
| 67 | if test x"$rel" = xyes ; then |
|---|
| 68 | rm -rf "$tardir" |
|---|
| 69 | fi |
|---|
| [7b12c6d] | 70 | |
|---|
| 71 | VERSION=`sed 's/^VERSION *= *//p;d' Makefile` |
|---|
| 72 | REPO_ROOT=`svn info|sed 's/^Repository Root: //p;d'` |
|---|
| 73 | echo "To tag this release, run:" |
|---|
| 74 | echo svn cp -m"'Tagging $VERSION'" "$REPO_ROOT/trunk" "$REPO_ROOT/tags/$VERSION" |
|---|