add missing licencing information at the top of each source file
authorRichard Hughes <richard@hughsie.com>
Sun Jun 29 10:55:17 2008 +0100 (2008-06-29)
changeset 300455eaa569767
parent 299 d4f7f167b8bb
child 301 4124c37fd953
add missing licencing information at the top of each source file

The licence text is needed when razor is packaged for Debian. :-)
librazor/razor-internal.h
librazor/root.c
librazor/types.c
librazor/util.c
src/test-driver.c
     1.1 --- a/librazor/razor-internal.h	Sat Jun 28 20:34:29 2008 -0400
     1.2 +++ b/librazor/razor-internal.h	Sun Jun 29 10:55:17 2008 +0100
     1.3 @@ -1,3 +1,22 @@
     1.4 +/*
     1.5 + * Copyright (C) 2008  Kristian Høgsberg <krh@redhat.com>
     1.6 + * Copyright (C) 2008  Red Hat, Inc
     1.7 + *
     1.8 + * This program is free software; you can redistribute it and/or modify
     1.9 + * it under the terms of the GNU General Public License as published by
    1.10 + * the Free Software Foundation; either version 2 of the License, or
    1.11 + * (at your option) any later version.
    1.12 + *
    1.13 + * This program is distributed in the hope that it will be useful,
    1.14 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.15 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.16 + * GNU General Public License for more details.
    1.17 + *
    1.18 + * You should have received a copy of the GNU General Public License along
    1.19 + * with this program; if not, write to the Free Software Foundation, Inc.,
    1.20 + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
    1.21 + */
    1.22 +
    1.23  #ifndef _RAZOR_INTERNAL_H_
    1.24  #define _RAZOR_INTERNAL_H_
    1.25  
     2.1 --- a/librazor/root.c	Sat Jun 28 20:34:29 2008 -0400
     2.2 +++ b/librazor/root.c	Sun Jun 29 10:55:17 2008 +0100
     2.3 @@ -1,3 +1,22 @@
     2.4 +/*
     2.5 + * Copyright (C) 2008  Kristian Høgsberg <krh@redhat.com>
     2.6 + * Copyright (C) 2008  Red Hat, Inc
     2.7 + *
     2.8 + * This program is free software; you can redistribute it and/or modify
     2.9 + * it under the terms of the GNU General Public License as published by
    2.10 + * the Free Software Foundation; either version 2 of the License, or
    2.11 + * (at your option) any later version.
    2.12 + *
    2.13 + * This program is distributed in the hope that it will be useful,
    2.14 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    2.15 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    2.16 + * GNU General Public License for more details.
    2.17 + *
    2.18 + * You should have received a copy of the GNU General Public License along
    2.19 + * with this program; if not, write to the Free Software Foundation, Inc.,
    2.20 + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
    2.21 + */
    2.22 +
    2.23  #include <stdlib.h>
    2.24  #include <stdint.h>
    2.25  #include <stdio.h>
     3.1 --- a/librazor/types.c	Sat Jun 28 20:34:29 2008 -0400
     3.2 +++ b/librazor/types.c	Sun Jun 29 10:55:17 2008 +0100
     3.3 @@ -1,3 +1,22 @@
     3.4 +/*
     3.5 + * Copyright (C) 2008  Kristian Høgsberg <krh@redhat.com>
     3.6 + * Copyright (C) 2008  Red Hat, Inc
     3.7 + *
     3.8 + * This program is free software; you can redistribute it and/or modify
     3.9 + * it under the terms of the GNU General Public License as published by
    3.10 + * the Free Software Foundation; either version 2 of the License, or
    3.11 + * (at your option) any later version.
    3.12 + *
    3.13 + * This program is distributed in the hope that it will be useful,
    3.14 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    3.15 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    3.16 + * GNU General Public License for more details.
    3.17 + *
    3.18 + * You should have received a copy of the GNU General Public License along
    3.19 + * with this program; if not, write to the Free Software Foundation, Inc.,
    3.20 + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
    3.21 + */
    3.22 +
    3.23  #include <stdlib.h>
    3.24  #include <string.h>
    3.25  
     4.1 --- a/librazor/util.c	Sat Jun 28 20:34:29 2008 -0400
     4.2 +++ b/librazor/util.c	Sun Jun 29 10:55:17 2008 +0100
     4.3 @@ -1,3 +1,22 @@
     4.4 +/*
     4.5 + * Copyright (C) 2008  Kristian Høgsberg <krh@redhat.com>
     4.6 + * Copyright (C) 2008  Red Hat, Inc
     4.7 + *
     4.8 + * This program is free software; you can redistribute it and/or modify
     4.9 + * it under the terms of the GNU General Public License as published by
    4.10 + * the Free Software Foundation; either version 2 of the License, or
    4.11 + * (at your option) any later version.
    4.12 + *
    4.13 + * This program is distributed in the hope that it will be useful,
    4.14 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    4.15 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    4.16 + * GNU General Public License for more details.
    4.17 + *
    4.18 + * You should have received a copy of the GNU General Public License along
    4.19 + * with this program; if not, write to the Free Software Foundation, Inc.,
    4.20 + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
    4.21 + */
    4.22 +
    4.23  #include <limits.h>
    4.24  #include <string.h>
    4.25  #include <sys/stat.h>
     5.1 --- a/src/test-driver.c	Sat Jun 28 20:34:29 2008 -0400
     5.2 +++ b/src/test-driver.c	Sun Jun 29 10:55:17 2008 +0100
     5.3 @@ -1,3 +1,22 @@
     5.4 +/*
     5.5 + * Copyright (C) 2008  Kristian Høgsberg <krh@redhat.com>
     5.6 + * Copyright (C) 2008  Red Hat, Inc
     5.7 + *
     5.8 + * This program is free software; you can redistribute it and/or modify
     5.9 + * it under the terms of the GNU General Public License as published by
    5.10 + * the Free Software Foundation; either version 2 of the License, or
    5.11 + * (at your option) any later version.
    5.12 + *
    5.13 + * This program is distributed in the hope that it will be useful,
    5.14 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    5.15 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    5.16 + * GNU General Public License for more details.
    5.17 + *
    5.18 + * You should have received a copy of the GNU General Public License along
    5.19 + * with this program; if not, write to the Free Software Foundation, Inc.,
    5.20 + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
    5.21 + */
    5.22 +
    5.23  #include <stdio.h>
    5.24  #include <string.h>
    5.25  #include <stdarg.h>