source: git/make_release @ 0728abe

RELEASE/1.1RELEASE/1.2debug-cidebug-ci-sanitisersfaster-cavernloglog-selectstereostereo-2025walls-datawalls-data-hanging-as-warningwarn-only-for-hanging-survey
Last change on this file since 0728abe was 6134f54, checked in by Olly Betts <olly@…>, 22 years ago

Removed support for DOS and RISC OS.

git-svn-id: file:///home/survex-svn/survex/branches/survex-1_1@2382 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100755
File size: 4.1 KB
Line 
1#! /bin/sh
2
3# flags to consider:
4# CFLAGS="-O2 -fomit-frame-pointer"
5# CXXFLAGS="-O2 -fno-rtti -fomit-frame-pointer"
6rel=yes
7if test x"$1" = x-t ; then
8   rel=
9   shift
10fi
11mk=${@-src rpm deb doc mingw}
12if test x"$rel" = xyes ; then
13   # Update debian changelog entry if necessary
14   # If it does get updated, then the next check will fail...
15   ./update-debcl.pl
16   # Check everything is checked into CVS
17   if ! cvs diff > /dev/null 2> /dev/null ; then
18      echo There are changes not checked into CVS - please rectify
19      exit 1
20   fi
21   # Update ChangeLog
22   CVS2CL=./cvs2cl.pl
23   if ! test -x $CVS2CL ; then
24      CVS2CL=../cvs2cl/cvs2cl.pl
25   fi
26   TAG="`sed 's/^CHANGELOG_FROM_TAG=//p;d' configure.in`"
27   if ! cvs log -r$TAG::|./fixchangelog.pl $TAG|$CVS2CL --stdin 2> /dev/null ; then
28      echo Failed to update ChangeLog from CVS
29      exit 1
30   fi
31fi
32if test -f Makefile ; then
33   if ! make distclean ; then
34      echo make distclean failed
35      exit 1
36   fi
37fi
38if test yes = "$rel" ; then
39   rm -f config.guess.new config.sub.new
40   # only check for new versions if the current ones are over a day old
41   perl -e '-M "config.guess" && -M "config.sub" && exit 1' ||\
42      wget ftp://ftp.gnu.org/gnu/config/config.guess -O config.guess.new &&\
43      wget ftp://ftp.gnu.org/gnu/config/config.sub -O config.sub.new &&\
44      chmod 755 config.guess.new config.sub.new &&\
45      mv config.guess.new config.guess && mv config.sub.new config.sub
46fi
47aclocal
48autoheader
49automake -a
50autoconf
51export CC
52export CXX
53CC=gcc-3.2
54CXX=g++-3.2
55if ! ./configure ; then
56   echo configure failed
57   exit 1
58fi
59if test yes = "$rel" ; then
60   export CFLAGS
61   export CXXFLAGS
62   # tell the preproceesor to be C89 - this makes it reject // comments
63# FIXME -Werror makes configure explode CFLAGS="-Werror -Wp,-std=c89"
64# FIXME   CXXFLAGS="-Werror"
65   CFLAGS="-Wp,-std=c89"
66   CXXFLAGS=
67   if ! make dist ; then # distcheck fails extend.tst for some reason!
68      echo make distcheck failed
69      exit 1
70   fi
71   CFLAGS=
72   CXXFLAGS=
73else
74   if ! make dist ; then
75      echo make dist failed
76      exit 1
77   fi
78fi
79if test x"$rel" = xyes && expr "$mk" : '.*\<rpm\>' || test x"$mk" = xrpm ; then
80   if rpm --version > /dev/null 2> /dev/null ; then
81      if ! make rpm ; then
82         echo make rpm failed
83         exit 1
84       fi
85   else
86       echo rpm not installed - skipping rpm generation
87   fi
88fi
89if test x"$rel" = xyes && expr "$mk" : '.*\<deb\>' || test x"$mk" = xdeb ; then
90   if ! make debian ; then
91      echo make debian failed
92      exit 1
93   fi
94fi
95if test x"$rel" = xyes && expr "$mk" : '.*\<doc\>' || test x"$mk" = xdoc ; then
96   if ! make dos_doc_exe ; then
97      echo make dos_doc_exe failed
98      exit 1
99   fi
100fi
101if ! make distclean ; then
102   echo make distclean failed
103   exit 1
104fi
105unset CC
106unset CXX
107if expr "$mk" : '.*\<mingw\>'; then
108   test -n "$build_platform" || build_platform=`sh config.guess`
109   SAVE_PATH="$PATH"
110   if test -d /usr/local/cross-tools/i386-mingw32msvc/bin ; then
111      # binaries from http://www.devolution.com/~slouken/SDL/Xmingw32/
112      PATH=/usr/local/cross-tools/bin:/usr/local/cross-tools/i386-mingw32msvc/bin:$PATH
113   else
114      if test -d /usr/i586-mingw32msvc/bin ; then
115         # debian mingw32 package
116         PATH=/usr/i586-mingw32msvc/bin:$PATH
117         CC=/usr/bin/i586-mingw32msvc-gcc
118         export CC
119         CXX=/usr/bin/i586-mingw32msvc-g++
120         export CXX
121      else
122         # variant of debian mingw32 package?
123         PATH=/usr/i386-mingw32msvc/bin:$PATH
124         CC=/usr/bin/i386-mingw32msvc-gcc
125         export CC
126         CXX=/usr/bin/i386-mingw32msvc-g++
127         export CXX
128      fi
129   fi
130   if ! ./configure --host=mingw32 --build="$build_platform" --with-x=no WXCONFIG=/opt/wxmsw-2.4.0/bin/wxmsw-2.4-i686-mingw32-config VLDFLAGS="-s -L/opt/rx-win32/lib" CPPFLAGS=-I/opt/rx-win32/include CAVEROT= CFLAGS=-Werror CXXFLAGS=-Werror ; then
131      echo mingw configure failed
132      exit 1
133   fi
134   if ! make ; then
135      echo mingw make failed
136      exit 1
137   fi
138   if ! make mingw_iss ; then
139      echo mingw make mingw_iss failed
140      exit 1
141   fi
142   if ! make distclean ; then
143      echo make distclean failed
144      exit 1
145   fi
146   PATH="$SAVE_PATH"
147   CC=
148   CXX=
149fi
Note: See TracBrowser for help on using the repository browser.