diff --git a/harbour/ChangeLog b/harbour/ChangeLog index ef7b94f9f5..88b11d8cf9 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,10 @@ +19990707-19:40:00 Eddie Runia + * source\rtl\asort.prg; source\rtl\objfunc.prg; source\runner\runner.c; + tests\working\runner.c; source\tools\debug.c; source\tools\stringp.prg + GPL Licensing added + * source\rtl\console.c; source\rtl\environ.c; source\rtl\tclass.prg + Partial Copyright added + 19990707-16:22:20 Bruno Cantero CVSed by Andi Jahja diff --git a/harbour/source/rtl/asort.prg b/harbour/source/rtl/asort.prg index b87fdc61e1..8a4e1547fd 100644 --- a/harbour/source/rtl/asort.prg +++ b/harbour/source/rtl/asort.prg @@ -6,6 +6,29 @@ * ASORT - Sort an array * * Copyright (C) 1999 Eddie Runia (eddie@runia.com) + * Part of the Harbour Project www.harbour-project.org + * + * 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 + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version, with one exception: + * + * The exception is that if you link the Harbour Runtime Library (HRL) + * and/or the Harbour Virtual Machine (HVM) with other files to produce + * an executable, this does not by itself cause the resulting executable + * to be covered by the GNU General Public License. Your use of that + * executable is in no way restricted on account of linking the HRL + * and/or HVM code into it. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit + * their web site at http://www.gnu.org/). */ // diff --git a/harbour/source/rtl/console.c b/harbour/source/rtl/console.c index 9820973c6a..0a014d2673 100644 --- a/harbour/source/rtl/console.c +++ b/harbour/source/rtl/console.c @@ -2,6 +2,12 @@ * $Id$ */ +/* + * Partial Copyright (C) 1999 Eddie Runia + * partial copyright regarding the following function : + * __ACCEPT() + */ + #ifdef WINDOWS #include #endif diff --git a/harbour/source/rtl/environ.c b/harbour/source/rtl/environ.c index 2213a70599..489c767db2 100644 --- a/harbour/source/rtl/environ.c +++ b/harbour/source/rtl/environ.c @@ -2,6 +2,12 @@ * $Id$ */ +/* + * Partial Copyright (C) 1999 Eddie Runia (eddie@runia.com) + * Partial copyright regarding the following function : + * __RUN() + */ + /* Note: The following #ifdef block for __IBMCPP__ must be ahead of any and all #include statements! */ diff --git a/harbour/source/rtl/objfunc.prg b/harbour/source/rtl/objfunc.prg index e2aa151683..b2226ca9de 100644 --- a/harbour/source/rtl/objfunc.prg +++ b/harbour/source/rtl/objfunc.prg @@ -8,6 +8,29 @@ * Contains additional object oriented functions * * Copyright (C) 1999 Eddie Runia (eddie@runia.com) + * Part of the Harbour Project www.harbour-project.org + * + * 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 + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version, with one exception: + * + * The exception is that if you link the Harbour Runtime Library (HRL) + * and/or the Harbour Virtual Machine (HVM) with other files to produce + * an executable, this does not by itself cause the resulting executable + * to be covered by the GNU General Public License. Your use of that + * executable is in no way restricted on account of linking the HRL + * and/or HVM code into it. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit + * their web site at http://www.gnu.org/). */ #define MET_METHOD 0 diff --git a/harbour/source/rtl/tclass.prg b/harbour/source/rtl/tclass.prg index f332b4d073..05b0ec158f 100644 --- a/harbour/source/rtl/tclass.prg +++ b/harbour/source/rtl/tclass.prg @@ -4,6 +4,13 @@ // Harbour Class TClass to build classes +/* + * Partial Copyright (C) 1999 Eddie Runia + * partial copyright regarding the following additions : + * Support for inheritance + * Support for default DATA values + */ + #define MET_METHOD 0 #define MET_DATA 1 #define MET_CLASSDATA 2 diff --git a/harbour/source/runner/runner.c b/harbour/source/runner/runner.c index df1f31ee15..bcf3936bdc 100644 --- a/harbour/source/runner/runner.c +++ b/harbour/source/runner/runner.c @@ -2,6 +2,29 @@ * Runner - Dynamic Library load routine * * Copyright (C) 1999 Eddie Runia (eddie@runia.com) + * Part of the Harbour Project www.harbour-project.org + * + * 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 + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version, with one exception: + * + * The exception is that if you link the Harbour Runtime Library (HRL) + * and/or the Harbour Virtual Machine (HVM) with other files to produce + * an executable, this does not by itself cause the resulting executable + * to be covered by the GNU General Public License. Your use of that + * executable is in no way restricted on account of linking the HRL + * and/or HVM code into it. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit + * their web site at http://www.gnu.org/). */ diff --git a/harbour/source/tools/debug.c b/harbour/source/tools/debug.c index b7507fa1d1..aaf8bf56b8 100644 --- a/harbour/source/tools/debug.c +++ b/harbour/source/tools/debug.c @@ -6,6 +6,29 @@ * Debug - Contains debugging functions * * Copyright (C) 1999 Eddie Runia (eddie@runia.com) + * Part of the Harbour Project www.harbour-project.org + * + * 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 + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version, with one exception: + * + * The exception is that if you link the Harbour Runtime Library (HRL) + * and/or the Harbour Virtual Machine (HVM) with other files to produce + * an executable, this does not by itself cause the resulting executable + * to be covered by the GNU General Public License. Your use of that + * executable is in no way restricted on account of linking the HRL + * and/or HVM code into it. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit + * their web site at http://www.gnu.org/). */ /* $Doc$ diff --git a/harbour/source/tools/stringp.prg b/harbour/source/tools/stringp.prg index d5edeb8bcd..3e82e34092 100644 --- a/harbour/source/tools/stringp.prg +++ b/harbour/source/tools/stringp.prg @@ -6,6 +6,29 @@ * STRINGP - Misc. string functions * * Copyright (C) 1999 Eddie Runia (eddie@runia.com) + * Part of the Harbour Project www.harbour-project.org + * + * 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 + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version, with one exception: + * + * The exception is that if you link the Harbour Runtime Library (HRL) + * and/or the Harbour Virtual Machine (HVM) with other files to produce + * an executable, this does not by itself cause the resulting executable + * to be covered by the GNU General Public License. Your use of that + * executable is in no way restricted on account of linking the HRL + * and/or HVM code into it. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit + * their web site at http://www.gnu.org/). */ #define DATA_SYMBOL 1 diff --git a/harbour/tests/working/runner.c b/harbour/tests/working/runner.c index e9e1d10968..5fecee33dd 100644 --- a/harbour/tests/working/runner.c +++ b/harbour/tests/working/runner.c @@ -2,6 +2,29 @@ * Runner - Dynamic object load routine * * Copyright (C) 1999 Eddie Runia (eddie@runia.com) + * Part of the Harbour Project www.harbour-project.org + * + * 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 + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version, with one exception: + * + * The exception is that if you link the Harbour Runtime Library (HRL) + * and/or the Harbour Virtual Machine (HVM) with other files to produce + * an executable, this does not by itself cause the resulting executable + * to be covered by the GNU General Public License. Your use of that + * executable is in no way restricted on account of linking the HRL + * and/or HVM code into it. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit + * their web site at http://www.gnu.org/). */