summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-03-12 02:50:13 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-03-12 02:50:13 -0500
commitbd9887f10533eba76129f14f92ac971f11d1b1c0 (patch)
tree03850db39c29d493ccd0e4711a039fe25b5b9864
parenta12ec8aa4aa65cc74b2f5945fc76b181cf6fddb8 (diff)
copyright
-rw-r--r--Makefile2
-rw-r--r--freenect-server--http.c2
-rw-r--r--freenect-server--kinect.c25
-rw-r--r--freenect-server.sh2
-rw-r--r--mpjpeg.h2
-rw-r--r--util.c2
-rw-r--r--util.h2
7 files changed, 37 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 58da358..3a54db5 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,5 @@
+# Copyright 2016 Luke Shumaker
+
CFLAGS += -g -std=c99 -Wall -Werror -Wextra -pedantic
CPPFLAGS += -std=c99 -Wall -Werror -Wextra -pedantic
CPPFLAGS += -D_GNU_SOURCE
diff --git a/freenect-server--http.c b/freenect-server--http.c
index e1b91f0..6871ffb 100644
--- a/freenect-server--http.c
+++ b/freenect-server--http.c
@@ -1,3 +1,5 @@
+/* Copyright 2016 Luke Shumaker */
+
#include <error.h>
#include <errno.h>
#include <netdb.h> /* for {get,free}addrinfo() */
diff --git a/freenect-server--kinect.c b/freenect-server--kinect.c
index 2e817dc..4573a08 100644
--- a/freenect-server--kinect.c
+++ b/freenect-server--kinect.c
@@ -1,3 +1,28 @@
+/*
+ * This file is part of the OpenKinect Project. http://www.openkinect.org
+ *
+ * Copyright (c) 2010 Brandyn White (bwhite@dappervision.com)
+ * Copyright (c) 2016 Luke Shumaker (lukeshu@sbcglobal.net)
+ *
+ * This code is licensed to you under the terms of the Apache License, version
+ * 2.0, or, at your option, the terms of the GNU General Public License,
+ * version 2.0. See the APACHE20 and GPL2 files for the text of the licenses,
+ * or the following URLs:
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * http://www.gnu.org/licenses/gpl-2.0.txt
+ *
+ * If you redistribute this file in source form, modified or unmodified, you
+ * may:
+ * 1) Leave this header intact and distribute it under the same terms,
+ * accompanying it with the APACHE20 and GPL20 files, or
+ * 2) Delete the Apache 2.0 clause and accompany it with the GPL2 file, or
+ * 3) Delete the GPL v2 clause and accompany it with the APACHE20 file
+ * In all cases you must keep the copyright notice intact and include a copy
+ * of the CONTRIB file.
+ *
+ * Binary distributions must follow the binary distribution requirements of
+ * either License.
+ */
#include <errno.h>
#include <error.h>
#include <stdio.h>
diff --git a/freenect-server.sh b/freenect-server.sh
index a608df3..eebcd7f 100644
--- a/freenect-server.sh
+++ b/freenect-server.sh
@@ -1,4 +1,6 @@
#!/usr/bin/env bash
+# Copyright 2016 Luke Shumaker
+
d="$(dirname -- "$0")"
t="$(mktemp -d --tmpdir "${0##*/}.XXXXXXXXXX")"
diff --git a/mpjpeg.h b/mpjpeg.h
index 7a51006..85f4fcf 100644
--- a/mpjpeg.h
+++ b/mpjpeg.h
@@ -1,3 +1,5 @@
+/* Copyright 2016 Luke Shumaker */
+
#pragma once
#include <pthread.h>
diff --git a/util.c b/util.c
index 22b6dc6..85c4079 100644
--- a/util.c
+++ b/util.c
@@ -1,3 +1,5 @@
+/* Copyright 2016 Luke Shumaker */
+
#include <stdlib.h>
#include <error.h>
#include <errno.h>
diff --git a/util.h b/util.h
index 0eb8c19..e00c8b7 100644
--- a/util.h
+++ b/util.h
@@ -1,3 +1,5 @@
+/* Copyright 2016 Luke Shumaker */
+
#pragma once
#include <signal.h> /* for sig_atomic_t */