Check-in [2715c7bfba]
Not logged in
Overview
Comment:GUI statements could not be used with temp dir definition.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 2715c7bfba2ea5d8b913d9fec88a97b969d656cc
User & Date: peter 2022-08-17 04:56:40
Context
2022-08-17
05:24:51
[05bc2d86ee] Updated CHANGES. (user: peter tags: trunk)
04:56:40
[2715c7bfba] GUI statements could not be used with temp dir definition. (user: peter tags: trunk)
2022-08-16
18:42:35
[8c7c18a5eb] Performance improvement in string concatenation. (user: peter tags: trunk)
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to bacon_trunk/bacon.bac.

5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
								WRITELN "#include <Tree.h>" TO g_HFILE
								WRITELN "#include <Viewport.h>" TO g_HFILE
								WRITELN "#include <X11/Intrinsic.h>" TO g_HFILE
								WRITELN "#include <X11/Shell.h>" TO g_HFILE
								WRITELN "#include <X11/StringDefs.h>" TO g_HFILE
								WRITELN "#endif" TO g_HFILE
								g_CCFLAGS$ = g_CCFLAGS$ & " -I/usr/include/X11/Xaw"
								g_INCLUDE_FILES$ = g_INCLUDE_FILES$ & " " & g_TEMPDIR$ & "/" & MID$(g_SOURCEFILE$, INSTRREV(g_SOURCEFILE$, "/") + 1) & ".gui.h"
								g_LDFLAGS$ =  g_LDFLAGS$ & " -lXaw -lXmu -lXt -lX11"
							ENDIF
						ELSE
							EPRINT NL$, "Syntax error: argument to OPTION at line ", g_COUNTER, " in file '", g_CURFILE$, "' not recognized!"
							END 1
						END IF
					END IF







|







5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
								WRITELN "#include <Tree.h>" TO g_HFILE
								WRITELN "#include <Viewport.h>" TO g_HFILE
								WRITELN "#include <X11/Intrinsic.h>" TO g_HFILE
								WRITELN "#include <X11/Shell.h>" TO g_HFILE
								WRITELN "#include <X11/StringDefs.h>" TO g_HFILE
								WRITELN "#endif" TO g_HFILE
								g_CCFLAGS$ = g_CCFLAGS$ & " -I/usr/include/X11/Xaw"
								g_INCLUDE_FILES$ = g_INCLUDE_FILES$ & " " & MID$(g_SOURCEFILE$, INSTRREV(g_SOURCEFILE$, "/") + 1) & ".gui.h"
								g_LDFLAGS$ =  g_LDFLAGS$ & " -lXaw -lXmu -lXt -lX11"
							ENDIF
						ELSE
							EPRINT NL$, "Syntax error: argument to OPTION at line ", g_COUNTER, " in file '", g_CURFILE$, "' not recognized!"
							END 1
						END IF
					END IF

Changes to bacon_trunk/doc-pak/CHANGES.

1
2
3
4
5
6
7
8
9

10
11
12
13
14
15
16
+-----------------------------+
| 4.5.1 beta
+-----------------------------+
- New: INVERT function to invert keys/values in associative arrays (all versions)
- Imp: SORT now also can sort associative arrays (all versions)
- Imp: extended INDEX with INDEX$ for associative arrays (all versions)
- Imp: replaced 'which' for 'command -v' in shell searching (all versions)
- Imp: set SSL parameter 'SSL_OP_LEGACY_SERVER_CONNECT' explicitly so OpenSSL3 works with legacy sites (all versions)
- Imp: performance improvement in the concatenation operator (all versions)


August 1, 2022 - 4.5 stable
- New: added DLE$ for DOS Line Ending (all versions)
- New: added TYPE statement to set font type in ANSI compliant terminals (all versions)
- New: added SCREEN statement to save/restore the screen in ANSI compliant terminals (all versions)
- New: added INDEX to retrieve index number in array based on value (all versions)
- Imp: the VAR statement now allows all C types for variadic arguments (all versions)









>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
+-----------------------------+
| 4.5.1 beta
+-----------------------------+
- New: INVERT function to invert keys/values in associative arrays (all versions)
- Imp: SORT now also can sort associative arrays (all versions)
- Imp: extended INDEX with INDEX$ for associative arrays (all versions)
- Imp: replaced 'which' for 'command -v' in shell searching (all versions)
- Imp: set SSL parameter 'SSL_OP_LEGACY_SERVER_CONNECT' explicitly so OpenSSL3 works with legacy sites (all versions)
- Imp: performance improvement in the concatenation operator (all versions)
- Bug: GUI statements could not be compiled when temporary directory is defined (BaCon version - kudos barry)

August 1, 2022 - 4.5 stable
- New: added DLE$ for DOS Line Ending (all versions)
- New: added TYPE statement to set font type in ANSI compliant terminals (all versions)
- New: added SCREEN statement to save/restore the screen in ANSI compliant terminals (all versions)
- New: added INDEX to retrieve index number in array based on value (all versions)
- Imp: the VAR statement now allows all C types for variadic arguments (all versions)