From 6cacbd0d82545a0e86b53de680730fe1aece3d5f Mon Sep 17 00:00:00 2001 From: Aleksey Demakov Date: Wed, 27 Feb 2008 08:53:40 +0000 Subject: [PATCH] use LGPL 2.1 for dpas, tools, tests, and doc --- ChangeLog | 4 ++++ doc/extract-docs.sh | 22 +++++++++++--------- doc/libjit.3 | 22 +++++++++++--------- dpas/dpas-builtin.c | 22 +++++++++++--------- dpas/dpas-function.c | 22 +++++++++++--------- dpas/dpas-internal.h | 22 +++++++++++--------- dpas/dpas-main.c | 22 +++++++++++--------- dpas/dpas-parser.y | 22 +++++++++++--------- dpas/dpas-scanner.l | 22 +++++++++++--------- dpas/dpas-scope.c | 22 +++++++++++--------- dpas/dpas-scope.h | 22 +++++++++++--------- dpas/dpas-semantics.h | 22 +++++++++++--------- dpas/dpas-types.c | 22 +++++++++++--------- dpas/dpas-types.h | 22 +++++++++++--------- tests/coerce.pas | 22 +++++++++++--------- tests/math.pas | 22 +++++++++++--------- tests/param.pas | 22 +++++++++++--------- tools/gen-apply.c | 22 +++++++++++--------- tools/gen-rules-parser.y | 22 +++++++++++--------- tools/gen-rules-scanner.l | 22 +++++++++++--------- tools/gen-sel-parser.y | 44 +++++++++++++++++++++------------------ tools/gen-sel-scanner.l | 22 +++++++++++--------- 22 files changed, 268 insertions(+), 220 deletions(-) diff --git a/ChangeLog b/ChangeLog index e5d59e5..72765b1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-02-26 Aleksey Demakov + + * use LGPL 2.1 for all the rest - dpas, tools, tests, and doc. + 2008-02-06 Aleksey Demakov * auto_gen.sh: by popular demand restore this file although it only diff --git a/doc/extract-docs.sh b/doc/extract-docs.sh index ccc8311..345bbc3 100755 --- a/doc/extract-docs.sh +++ b/doc/extract-docs.sh @@ -6,19 +6,21 @@ # # Copyright (C) 2004 Southern Storm Software, Pty Ltd. # -# 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. +# This file is part of the libjit library. # -# This program is distributed in the hope that it will be useful, +# The libjit library is free software: you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public License +# as published by the Free Software Foundation, either version 2.1 of +# the License, or (at your option) any later version. +# +# The libjit library 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. +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# You should have received a copy of the GNU Lesser General Public +# License along with the libjit library. If not, see +# . in_doc=false echo '' diff --git a/doc/libjit.3 b/doc/libjit.3 index 8dba013..57272e7 100644 --- a/doc/libjit.3 +++ b/doc/libjit.3 @@ -1,18 +1,20 @@ .\" Copyright (c) 2004 Southern Storm Software, Pty Ltd. .\" -.\" 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. +.\" This file is part of the libjit library. .\" -.\" This program is distributed in the hope that it will be useful, +.\" The libjit library is free software: you can redistribute it and/or +.\" modify it under the terms of the GNU Lesser General Public License +.\" as published by the Free Software Foundation, either version 2.1 of +.\" the License, or (at your option) any later version. +.\" +.\" The libjit library 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. +.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +.\" Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +.\" You should have received a copy of the GNU Lesser General Public +.\" License along with the libjit library. If not, see +.\" . .TH libjit 3 "18 April 2004" "Southern Storm Software" "Just-In-Time Compiler Library" .SH NAME libjit \- Just-In-Time Compiler Library diff --git a/dpas/dpas-builtin.c b/dpas/dpas-builtin.c index 8eafa4f..e43414d 100644 --- a/dpas/dpas-builtin.c +++ b/dpas/dpas-builtin.c @@ -3,19 +3,21 @@ * * Copyright (C) 2004 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . */ #include "dpas-internal.h" diff --git a/dpas/dpas-function.c b/dpas/dpas-function.c index f947e71..54299a3 100644 --- a/dpas/dpas-function.c +++ b/dpas/dpas-function.c @@ -3,19 +3,21 @@ * * Copyright (C) 2004 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . */ #include "dpas-internal.h" diff --git a/dpas/dpas-internal.h b/dpas/dpas-internal.h index 6c6ed16..ccc06b5 100644 --- a/dpas/dpas-internal.h +++ b/dpas/dpas-internal.h @@ -3,19 +3,21 @@ * * Copyright (C) 2004 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . */ #ifndef _DPAS_INTERNAL_H diff --git a/dpas/dpas-main.c b/dpas/dpas-main.c index 7c762a8..f8aab87 100644 --- a/dpas/dpas-main.c +++ b/dpas/dpas-main.c @@ -3,19 +3,21 @@ * * Copyright (C) 2004 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . */ #include "dpas-internal.h" diff --git a/dpas/dpas-parser.y b/dpas/dpas-parser.y index a5d651f..941da70 100644 --- a/dpas/dpas-parser.y +++ b/dpas/dpas-parser.y @@ -4,19 +4,21 @@ * * Copyright (C) 2004 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . */ #include "dpas-internal.h" diff --git a/dpas/dpas-scanner.l b/dpas/dpas-scanner.l index 23dccbd..952b802 100644 --- a/dpas/dpas-scanner.l +++ b/dpas/dpas-scanner.l @@ -4,19 +4,21 @@ * * Copyright (C) 2004 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . */ #include "dpas-internal.h" diff --git a/dpas/dpas-scope.c b/dpas/dpas-scope.c index 951b034..e9b1878 100644 --- a/dpas/dpas-scope.c +++ b/dpas/dpas-scope.c @@ -3,19 +3,21 @@ * * Copyright (C) 2004 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . */ #include "dpas-internal.h" diff --git a/dpas/dpas-scope.h b/dpas/dpas-scope.h index 6f41ce3..e4db719 100644 --- a/dpas/dpas-scope.h +++ b/dpas/dpas-scope.h @@ -3,19 +3,21 @@ * * Copyright (C) 2004 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . */ #ifndef _DPAS_SCOPE_H diff --git a/dpas/dpas-semantics.h b/dpas/dpas-semantics.h index d897771..5728f14 100644 --- a/dpas/dpas-semantics.h +++ b/dpas/dpas-semantics.h @@ -3,19 +3,21 @@ * * Copyright (C) 2004 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . */ #ifndef _DPAS_SEMANTICS_H diff --git a/dpas/dpas-types.c b/dpas/dpas-types.c index 696ad6b..9cc04ce 100644 --- a/dpas/dpas-types.c +++ b/dpas/dpas-types.c @@ -3,19 +3,21 @@ * * Copyright (C) 2004 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . */ #include "dpas-internal.h" diff --git a/dpas/dpas-types.h b/dpas/dpas-types.h index 9af30d0..eacc847 100644 --- a/dpas/dpas-types.h +++ b/dpas/dpas-types.h @@ -3,19 +3,21 @@ * * Copyright (C) 2004 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . */ #ifndef _DPAS_TYPES_H diff --git a/tests/coerce.pas b/tests/coerce.pas index 586b6c4..0855094 100644 --- a/tests/coerce.pas +++ b/tests/coerce.pas @@ -3,19 +3,21 @@ * * Copyright (C) 2004 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . *) program coerce; diff --git a/tests/math.pas b/tests/math.pas index efefdaa..2d57b0f 100644 --- a/tests/math.pas +++ b/tests/math.pas @@ -3,19 +3,21 @@ * * Copyright (C) 2004 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . *) program coerce; diff --git a/tests/param.pas b/tests/param.pas index 503e026..7cc9dab 100644 --- a/tests/param.pas +++ b/tests/param.pas @@ -3,19 +3,21 @@ * * Copyright (C) 2004 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . *) program local; diff --git a/tools/gen-apply.c b/tools/gen-apply.c index 47e4b92..05d698e 100644 --- a/tools/gen-apply.c +++ b/tools/gen-apply.c @@ -3,19 +3,21 @@ * * Copyright (C) 2004 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . */ #include diff --git a/tools/gen-rules-parser.y b/tools/gen-rules-parser.y index 3f8d733..f751ca4 100644 --- a/tools/gen-rules-parser.y +++ b/tools/gen-rules-parser.y @@ -4,19 +4,21 @@ * * Copyright (C) 2004, 2006-2007 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . */ #include diff --git a/tools/gen-rules-scanner.l b/tools/gen-rules-scanner.l index 208c36e..4360ec2 100644 --- a/tools/gen-rules-scanner.l +++ b/tools/gen-rules-scanner.l @@ -4,19 +4,21 @@ * * Copyright (C) 2004 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . */ #include "gen-rules-parser.h" diff --git a/tools/gen-sel-parser.y b/tools/gen-sel-parser.y index a2ae92f..6de154a 100644 --- a/tools/gen-sel-parser.y +++ b/tools/gen-sel-parser.y @@ -4,19 +4,21 @@ * * Copyright (C) 2004 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . */ #include @@ -956,19 +958,21 @@ PatternElement #define COPYRIGHT_MSG \ " * Copyright (C) 2004 Southern Storm Software, Pty Ltd.\n" \ " *\n" \ -" * This program is free software; you can redistribute it and/or modify\n" \ -" * it under the terms of the GNU General Public License as published by\n" \ -" * the Free Software Foundation; either version 2 of the License, or\n" \ -" * (at your option) any later version.\n" \ +" * This file is part of the libjit library.\n" \ +" *\n" \ +" * The libjit library is free software: you can redistribute it and/or\n" \ +" * modify it under the terms of the GNU Lesser General Public License\n" \ +" * as published by the Free Software Foundation, either version 2.1 of\n" \ +" * the License, or (at your option) any later version.\n" \ " *\n" \ -" * This program is distributed in the hope that it will be useful,\n" \ +" * The libjit library is distributed in the hope that it will be useful,\n" \ " * but WITHOUT ANY WARRANTY; without even the implied warranty of\n" \ -" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" \ -" * GNU General Public License for more details.\n" \ +" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n" \ +" * Lesser General Public License for more details.\n" \ " *\n" \ -" * You should have received a copy of the GNU General Public License\n" \ -" * along with this program; if not, write to the Free Software\n" \ -" * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n" +" * You should have received a copy of the GNU Lesser General Public\n" \ +" * License along with the libjit library. If not, see\n" \ +" * .\n" int main(int argc, char *argv[]) { diff --git a/tools/gen-sel-scanner.l b/tools/gen-sel-scanner.l index 2aa44ee..2dc9a33 100644 --- a/tools/gen-sel-scanner.l +++ b/tools/gen-sel-scanner.l @@ -4,19 +4,21 @@ * * Copyright (C) 2004 Southern Storm Software, Pty Ltd. * - * 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. + * This file is part of the libjit library. * - * This program is distributed in the hope that it will be useful, + * The libjit library is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 2.1 of + * the License, or (at your option) any later version. + * + * The libjit library 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. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU Lesser General Public + * License along with the libjit library. If not, see + * . */ #include "gen-sel-parser.h" -- 2.47.3