Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
ed3531b
makefile: check for MSYS_NT target
jayrm Dec 31, 2018
086cbd0
makefile: avoid long AR command line for MSYS_NT build platform
jayrm Dec 31, 2018
6e6713b
build release script: update for mingw32/64
jayrm Jan 1, 2019
0581057
build release script: update for mingworg/mingw32
jayrm Jan 1, 2019
ef44535
fbdoc: copyright updates for 2019
jayrm Jan 4, 2019
df183b9
fbc: copyright update for 2019
jayrm Jan 4, 2019
cd7acd0
fbdoc: wiki snapshot 2019-01-01
jayrm Jan 1, 2019
aa3fceb
fbdoc: wiki snapshot 2019-01-12
jayrm Jan 13, 2019
e114f99
fbchkdoc: copyright update 2019
jayrm Jan 13, 2019
08ec6cf
fbdoc: wiki snapshot 2019-01-13
jayrm Jan 13, 2019
17228f1
fbdoc: examples/manual update 2019-01-13
jayrm Jan 13, 2019
516f2cd
fbdoc: wiki snaphot 2019-01-13
jayrm Jan 14, 2019
2663b32
makefile: create a use src/compiler/obj<target> for faster rebuilding…
jayrm Jan 19, 2019
89b899d
fbhelp: fix variable declaraion to compile on linux
jayrm Jan 25, 2019
58636f8
build release script: allow for src/compiler/obj/<target>, and cache …
jayrm Jan 19, 2019
faefeab
fbc-tests: unit-tests.mk, log-tests.mk
jayrm Jan 22, 2019
68b626f
build release script: add downloads for djgpp sockets and pthreads, p…
jayrm Jan 24, 2019
75ec904
fbc-tests: unit-tests.mk, fix command quoting for grep
jayrm Jan 27, 2019
2a313ae
fbc-tests: varargs.bas: snprintf() should be standard stdio function
jayrm Jan 27, 2019
cb13be6
fbdoc: helper makefile to build the fbdoc binaries
jayrm Jan 26, 2019
6f73bcb
examples: BASS: fix BASS_Init() return value check
jayrm Jan 26, 2019
a487bd6
build release script: add socket and pthread libraries for dos
jayrm Jan 27, 2019
a4d5422
build release script: add dxe3gen.exe to dos package
jayrm Jan 28, 2019
59462d1
fbdoc: wiki snapshot 2019-01-27
jayrm Jan 28, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
100 changes: 72 additions & 28 deletions contrib/release/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# to build (or a tag/branch name).
#
# The standalone fbc is built in the same directory as the normal fbc, by just
# rebuilding src/compiler/obj/fbc.o (that's all that's affected by
# rebuilding src/compiler/obj/$fbtarget/fbc.o (that's all that's affected by
# ENABLE_STANDALONE, except for the directory layout). This way we avoid
# unnecessary full rebuilds.
#
Expand Down Expand Up @@ -251,7 +251,7 @@ dos)

djver=205
gccver=710
djgppgccversiondir=7.1.0
djgppgccversiondir=7
bnuver=229
gdbver=771
djpkg=current
Expand All @@ -268,23 +268,31 @@ dos)
download_djgpp ${djpkg}/v2gnu/ fil41br2
download_djgpp ${djpkg}/v2gnu/ mak421b
download_djgpp ${djpkg}/v2gnu/ shl2011br2
download_djgpp ${djpkg}/v2gnu/ pth207b

download_djgpp ${djpkg}/v2tk/ ls080b

# Sources for stuff that goes into the FB-dos package (needs updating to new versions)
download_djgpp ${djpkg}/v2gnu/ bnu${bnuver}s
download_djgpp ${djpkg}/v2gnu/ gcc${gccver}s
download_djgpp ${djpkg}/v2gnu/ gdb${gdbver}s
download_djgpp ${djpkg}/v2/ djlsr${djver}

unzip -q ../input/DJGPP/djdev${djver}.zip
unzip -qo ../input/DJGPP/djdev${djver}.zip

unzip -qo ../input/DJGPP/shl2011br2.zip
unzip -qo ../input/DJGPP/fil41br2.zip
unzip -qo ../input/DJGPP/mak421b.zip
unzip -qo ../input/DJGPP/pth207b.zip

unzip -qo ../input/DJGPP/ls080b.zip

unzip -q ../input/DJGPP/shl2011br2.zip
unzip -q ../input/DJGPP/fil41br2.zip
unzip -q ../input/DJGPP/mak421b.zip
unzip -qo ../input/DJGPP/gdb${gdbver}b.zip
unzip -qo ../input/DJGPP/bnu${bnuver}b.zip
unzip -qo ../input/DJGPP/gcc${gccver}b.zip
unzip -qo ../input/DJGPP/gpp${gccver}b.zip

unzip -q ../input/DJGPP/gdb${gdbver}b.zip
unzip -q ../input/DJGPP/bnu${bnuver}b.zip
unzip -q ../input/DJGPP/gcc${gccver}b.zip
unzip -q ../input/DJGPP/gpp${gccver}b.zip
patch -p0 < ../djgpp-fix-pthread.patch
;;
win32)
get_mingww64_toolchain 32 i686
Expand Down Expand Up @@ -322,8 +330,14 @@ win32-mingworg)
download_extract_mingw mpfr-3.1.2-2-mingw32-dll.tar.lzma

# Add ddraw.h and dinput.h for FB's gfxlib2
copyfile "../input/MinGW.org/ddraw.h" "include/ddraw.h"
copyfile "../input/MinGW.org/dinput.h" "include/dinput.h"

# if ddraw.h & dinput.h were added manually:
# copyfile "../input/MinGW.org/ddraw.h" "include/ddraw.h"
# copyfile "../input/MinGW.org/dinput.h" "include/dinput.h"

# download link for dx80_mgw.zip from https://liballeg.org/old.html
download dx80_mgw.zip https://download.tuxfamily.org/allegro/files/dx80_mgw.zip
unzip ../input/dx80_mgw.zip include/ddraw.h include/dinput.h

# Work around http://sourceforge.net/p/mingw/bugs/2039/
patch -p0 < ../mingworg-fix-wcharh.patch
Expand Down Expand Up @@ -422,14 +436,17 @@ EOF
cmd /c build.bat

echo "building standalone fbc:"
rm fbc/src/compiler/obj/fbc.o
rm fbc/src/compiler/obj/$fbtarget/fbc.o
cmd /c buildsa.bat

mkdir -p fbc/bin/dos
cp bin/ar.exe bin/as.exe bin/gdb.exe bin/gprof.exe bin/ld.exe fbc/bin/dos/
cp bin/dxe3gen.exe fbc/bin/dos/
cp lib/crt0.o lib/gcrt0.o lib/libdbg.a lib/libemu.a lib/libm.a fbc/lib/dos/
cp lib/libstdcxx.a fbc/lib/dos/libstdcx.a
cp lib/libsupcxx.a fbc/lib/dos/libsupcx.a
cp lib/libsocket.a fbc/lib/dos/libsocket.a
cp lib/libpthread.a fbc/lib/dos/libpthread.a
cp lib/gcc/djgpp/$djgppgccversiondir/libgcc.a fbc/lib/dos/

cd fbc
Expand Down Expand Up @@ -461,11 +478,19 @@ linuxbuild() {
cp fbc/contrib/manifest/FreeBASIC-$fbtarget.lst ../output
}

windowsbuild() {
# Add our toolchain's bin/ to the PATH, so hopefully we'll only use
# its gcc and not one from the host
origPATH="$PATH"
export PATH="$PWD/bin:$PATH"
libffibuild() {

# do we already have the files we need?
if [ -f "../input/$libffi_title/$target/ffi.h" ]; then
if [ -f "../input/$libffi_title/$target/ffitarget.h" ]; then
if [ -f "../input/$libffi_title/$target/libffi.a" ]; then
echo
echo "using cached libffi: $libffi_title/$target"
echo
return
fi
fi
fi

echo
echo "building libffi"
Expand All @@ -475,16 +500,32 @@ windowsbuild() {
cd "$libffi_build"
if [ "$target" = win64 ]; then
CFLAGS=-O2 ../$libffi_title/configure --disable-shared --enable-static --build=x86_64-w64-mingw32 --host=x86_64-w64-mingw32
elif [ "$target" = win32 ]; then
# force host even for 32-bit, we might be cross compiling from x86_64 to x86
CFLAGS=-O2 ../$libffi_title/configure --disable-shared --enable-static --host=i686-w64-mingw32
else
CFLAGS=-O2 ../$libffi_title/configure --disable-shared --enable-static
fi
make
case "$target" in
win32) cp include/ffi.h include/ffitarget.h ../i686-w64-mingw32/include;;
win32-mingworg) cp include/ffi.h include/ffitarget.h ../include;;
win64) cp include/ffi.h include/ffitarget.h ../x86_64-w64-mingw32/include;;
esac
# stash some files in the input folder to make rebuilding faster
mkdir -p ../../input/$libffi_title/$target
cp include/ffi.h include/ffitarget.h ../../input/$libffi_title/$target
cp .libs/libffi.a ../../input/$libffi_title/$target
cd ..
}

windowsbuild() {
# Add our toolchain's bin/ to the PATH, so hopefully we'll only use
# its gcc and not one from the host
origPATH="$PATH"
export PATH="$PWD/bin:$PATH"

libffibuild
case "$target" in
win32) cp ../input/$libffi_title/$target/ffi.h ../input/$libffi_title/$target/ffitarget.h ./i686-w64-mingw32/include;;
win32-mingworg) cp ../input/$libffi_title/$target/ffi.h ../input/$libffi_title/$target/ffitarget.h ./include;;
win64) cp ../input/$libffi_title/$target/ffi.h ../input/$libffi_title/$target/ffitarget.h ./x86_64-w64-mingw32/include;;
esac

cd fbc
echo
Expand All @@ -503,7 +544,7 @@ windowsbuild() {
echo
echo "building standalone fbc"
echo
rm src/compiler/obj/fbc.o
rm src/compiler/obj/$fbtarget/fbc.o
make ENABLE_STANDALONE=1
cd ..

Expand Down Expand Up @@ -540,11 +581,14 @@ windowsbuild() {
;;
esac

# TODO: GoRC.exe should really be taken from its homepage
# <http://www.godevtool.com/>, but it was offline today
cp $bootfb_title/bin/$fbtarget/GoRC.exe fbc/bin/$fbtarget
# get GoRC.exe from previous fb release
# cp $bootfb_title/bin/$fbtarget/GoRC.exe fbc/bin/$fbtarget

# get GoRC.exe from author site
download "Gorc.zip" "http://www.godevtool.com/Gorc.zip"
unzip ../input/Gorc.zip GoRC.exe -d fbc/bin/$fbtarget

cp "$libffi_build"/.libs/libffi.a fbc/lib/$fbtarget
cp ../input/$libffi_title/$target/libffi.a fbc/lib/$fbtarget

# Reduce .exe sizes by dropping debug info
# (this was at least needed for MinGW.org's gdb, and probably nothing else,
Expand Down
20 changes: 20 additions & 0 deletions contrib/release/djgpp-pthread-types.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
--- pthread.h.orig 2007-04-13 15:37:00.000000000 -0400
+++ pthread.h 2019-01-03 15:54:18.000000000 -0500
@@ -110,11 +110,17 @@
*/
#include <sys/types.h> /* for ssize_t */
#include <sys/time.h> /* for struct timeval */
+#if 0
#include <sys/socket.h> /* for sockaddr */
+#endif
#include <signal.h> /* for sigset_t */
+#if 0
#include <sys/wtime.h> /* for struct timespec */
+#endif
#include <unistd.h> /* for off_t */
+#if 0
#include <sys/select.h>
+#endif

/*
* Unprotect namespace, so we can define our own variants now
4 changes: 2 additions & 2 deletions doc/fbc.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH FBC 1 "2014-09-16" "FreeBASIC Compiler 1.06.0" "FreeBASIC Compiler"
.TH FBC 1 "2019-01-01" "FreeBASIC Compiler 1.06.0" "FreeBASIC Compiler"
.SH NAME
fbc \- The FreeBASIC compiler
.SH DESCRIPTION
Expand Down Expand Up @@ -196,7 +196,7 @@ The full language specification and help is available in wiki format at
.B
http://www.freebasic.net/wiki/
.SH COPYRIGHT
Copyright \(co 2004\-2013 The FreeBASIC Development Team
Copyright \(co 2004\-2019 The FreeBASIC Development Team
.br
This is free software. You may redistribute copies of it under the terms of
the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/buffer.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/chkdocs.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/cmd_opts.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/cmd_opts.bi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define __FBCHKDOC_CMD_OPTS_BI__

'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/delextra.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/fmtcode.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/funcs.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/funcs.bi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define __FBCHKDOC_FUNCS_BI__

'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/funcsdir.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/getimage.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/getindex.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/getpage.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/mkerrlst.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/mkimglst.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/mkprntoc.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/putpage.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/readme.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
fbchkdoc - FreeBASIC Wiki Management Tools
Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)

A collection of utilities to help maintain the FreeBASIC documentation
at https://www.freebasic.net/wiki
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/rebuild.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/replace.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions doc/fbchkdoc/samps.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -451,7 +451,7 @@ function cmd_update_proc() as integer
h = freefile
open "changed.txt" for output as #h
for i = 1 to nchanges
print #h, " - " & changes(i) & " ? [example updated from SVN]"
print #h, " - " & changes(i) & " ? [example updated from repo]"
next
close #h

Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/samps_file.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/samps_logfile.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion doc/fbchkdoc/spell.bas
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'' fbchkdoc - FreeBASIC Wiki Management Tools
'' Copyright (C) 2008-2018 Jeffery R. Marshall (coder[at]execulink[dot]com)
'' Copyright (C) 2008-2019 Jeffery R. Marshall (coder[at]execulink[dot]com)
''
'' This program is free software; you can redistribute it and/or modify
'' it under the terms of the GNU General Public License as published by
Expand Down
Loading