Skip to content

Commit 04af8b1

Browse files
committed
ivtools-2.0.8
1 parent 8c6a6f8 commit 04af8b1

File tree

10 files changed

+21
-27
lines changed

10 files changed

+21
-27
lines changed

CHANGES/CHANGES-2.0

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
December 28th 2021 ivtools-2.0.8
2+
3+
* fourth attempt at a release that might build with homebrew
4+
15
December 27th 2021 ivtools-2.0.7
26

37
* third attempt at a release that might build with homebrew

INSTALL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
INSTALL for ivtools-2.0
33

44

5-
Instructions for building ivtools-2.0.7 from source, the short version:
5+
Instructions for building ivtools-2.0.8 from source, the short version:
66

77
cp Makefile.orig Makefile // if cloned from github
88
./configure
@@ -38,7 +38,7 @@ Instructions for building ivtools-2.0.7 from source, the short version:
3838
- Scott Johnston, May-June 2020
3939

4040

41-
Instructions for building ivtools-2.0.7 from source, the long version:
41+
Instructions for building ivtools-2.0.8 from source, the long version:
4242

4343
0. Compilation Environment
4444

Imakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ MakeInSubdirsTop($(SUBDIRS))
1717
imake::
1818
-@if [ ! -f ./imake ]; then \
1919
echo building and installing ./imake; \
20-
gcc src/imake/imake.c -o imake; \
20+
gcc -I$(XINCDIR) src/imake/imake.c -o imake; \
2121
fi
2222

2323
clean::

Makefile.orig

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ DEPDRAWSERV = $(IVTOOLSSRC)/DrawServ/$(CPU)/libDrawServ.$(VERSION).dylib
6565

6666
PROJECTDIR = /proj
6767

68-
RELEASE = ivtools-2.0.7
68+
RELEASE = ivtools-2.0.8
6969

70-
VERSION = 2.0.7
70+
VERSION = 2.0.8
7171

7272
REPOSITORY_FILES = *.c *.cc *.cxx *.C *.h Imakefile *.def template README INSTALL VERSION MANIFEST COPYRIGHT ANNOUNCE README.ivmkcm *.patch *.bugfix.? *.script *.sed comutil.arg comterp.err comutil.ci comterp.arg comterp.ci site.def.SUN4 site.def.LINUX site.def.SGI site.def.HP800 site.def.ALPHA site.def.CYGWIN site.def.NETBSD site.def.FREEBSD WishList *.defaults *.cf HOWTO Copyright *.sh CHANGES CHANGES-0.? CHANGES-1.? *.cpp ivmkmf *.bash *.1 *.3 config.guess config.sub configure configure.in MANIFEST.perceps MANIFEST.comterp *.mk config.mk.in *.tmpl *.flt *.m4 config.defs.in
7373

@@ -299,12 +299,7 @@ PACKAGE = top_ivtools
299299
WORLDOPTS =
300300
SUBDIRS = src config
301301

302-
CPU:
303-
-@if [ ! -f /usr/local/bin/imake ]; then \
304-
echo building and installing /usr/local/bin/imake; \
305-
gcc src/imake/imake.c; \
306-
sudo install -c -m 0755 a.out /usr/local/bin/imake; \
307-
rm a.out; fi
302+
CPU: imake
308303
@$(SHELL) $(SCRIPTSRC)/cpu.sh $(CONFIGSRC)/arch.def
309304

310305
World::
@@ -600,7 +595,7 @@ cmcommit::
600595
done
601596

602597
imake::
603-
-@if [ ! -f ./imake ]; then echo building and installing ./imake; gcc src/imake/imake.c -o imake; fi
598+
-@if [ ! -f ./imake ]; then echo building and installing ./imake; gcc -I$(XINCDIR) src/imake/imake.c -o imake; fi
604599

605600
clean::
606601
@$(RM_CMD) make.makefile make.makefiles make.depend make.make make.imake

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
README for ivtools 2.0
33

44

5-
This directory contains a release of ivtools 2.0.7. You should read
5+
This directory contains a release of ivtools 2.0.8. You should read
66
the rest of this file for information on what ivtools is and the
77
INSTALL file for instructions on how to build it.
88

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Release 2.0.7
1+
Release 2.0.8

config/params.def

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* Name of the software release
2828
*/
2929
#ifndef Release
30-
#define Release ivtools-2.0.7
30+
#define Release ivtools-2.0.8
3131
#endif
3232

3333
RELEASE = Release
@@ -36,7 +36,7 @@
3636
* VersionNumber
3737
*/
3838
#ifndef Version
39-
#define Version 2.0.7
39+
#define Version 2.0.8
4040
#endif
4141

4242
VERSION = Version

config/rules.def

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,7 @@
1919
*/
2020
#ifndef MakeCPU
2121
#define MakeCPU() @@\
22-
CPU: @@\
23-
-@if [ ! -f /usr/local/bin/imake ]; then \ @@\
24-
echo building and installing /usr/local/bin/imake; \ @@\
25-
gcc src/imake/imake.c; \ @@\
26-
sudo install -c -m 0755 a.out /usr/local/bin/imake; \ @@\
27-
rm a.out; fi @@\
22+
CPU: imake @@\
2823
@$(SHELL) $(SCRIPTSRC)/cpu.sh $(CONFIGSRC)/arch.def
2924
#endif
3025

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5071,8 +5071,8 @@ echo writing \"XCONFIGDIR = $x_libraries/X11/config\"
50715071
echo XCONFIGDIR = $x_libraries/X11/config >config/config.mk
50725072
echo writing \"ABSTOP = `pwd`\"
50735073
echo ABSTOP = `pwd` >>config/config.mk
5074-
echo writing \"CPU = `make CPU XINCLUDES=$x_includes`\"
5075-
echo CPU = `make CPU XINCLUDES=$x_includes` >>config/config.mk
5074+
echo writing \"CPU = `make CPU XINCDIR=$x_includes`\"
5075+
echo CPU = `make CPU XINCDIR=$x_includes` >>config/config.mk
50765076
echo writing \"LIBSTDCPLUSPLUS2 = $LIBSTDCPLUSPLUS2\"
50775077
echo LIBSTDCPLUSPLUS2 = $LIBSTDCPLUSPLUS2 >>config/config.mk
50785078
echo writing \"LIBSTDCPLUSPLUS3 = $LIBSTDCPLUSPLUS3\"

src/include/ivstd/version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
#define IvtoolsVersion 2.0.7
2-
#define VersionString "2.0.7"
3-
#define ReleaseString "ivtools-2.0.7"
1+
#define IvtoolsVersion 2.0.8
2+
#define VersionString "2.0.8"
3+
#define ReleaseString "ivtools-2.0.8"

0 commit comments

Comments
 (0)