From fa979f0f201377c7bff9661a6226370e9ef7a941 Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Fri, 15 Nov 2002 11:10:32 +0000 Subject: [PATCH] Corrected revision and id tags --- src/native/linux/Game.java | 41 +++++++++++++++++++++ src/native/linux/Makefile | 41 +++++++++++++++++++++ src/native/linux/org_lwjgl_Display.c | 2 +- src/native/linux/org_lwjgl_Sys.c | 4 +- src/native/linux/org_lwjgl_input_Keyboard.c | 4 +- src/native/linux/org_lwjgl_input_Mouse.c | 4 +- src/native/linux/org_lwjgl_opengl_BaseGL.c | 4 +- src/native/linux/org_lwjgl_opengl_CoreGL.c | 2 +- src/native/linux/org_lwjgl_opengl_GL.c | 2 +- src/native/linux/org_lwjgl_opengl_GLU.c | 2 +- 10 files changed, 94 insertions(+), 12 deletions(-) diff --git a/src/native/linux/Game.java b/src/native/linux/Game.java index 4c1cfc6e..78f217a4 100644 --- a/src/native/linux/Game.java +++ b/src/native/linux/Game.java @@ -1,3 +1,44 @@ +/* + * Copyright (c) 2002 Light Weight Java Game Library Project + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * * Neither the name of 'Light Weight Java Game Library' nor the names of + * its contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +/** + * $Id$ + * + * Simple test java program. + * + * @author elias_naur + * @version $Revision$ + */ + import org.lwjgl.*; import org.lwjgl.opengl.*; import org.lwjgl.input.*; diff --git a/src/native/linux/Makefile b/src/native/linux/Makefile index 7822e727..d9ce05cb 100644 --- a/src/native/linux/Makefile +++ b/src/native/linux/Makefile @@ -1,3 +1,44 @@ + +# Copyright (c) 2002 Light Weight Java Game Library Project +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# * Neither the name of 'Light Weight Java Game Library' nor the names of +# its contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# + +# +# $Id$ +# +# Linux specific Makefile to compile liblwjgl.so. +# +# author elias_naur +# version $Revision$ +# + GCC = gcc LINK = gcc JAVAHOME=/usr/java/j2sdk1.4.1_01 diff --git a/src/native/linux/org_lwjgl_Display.c b/src/native/linux/org_lwjgl_Display.c index fa2e37cd..96c99100 100644 --- a/src/native/linux/org_lwjgl_Display.c +++ b/src/native/linux/org_lwjgl_Display.c @@ -33,7 +33,7 @@ /** * $Id$ * - * Linux specific library for display handdling. + * Linux specific library for display handling. * * @author elias_naur * @version $Revision$ diff --git a/src/native/linux/org_lwjgl_Sys.c b/src/native/linux/org_lwjgl_Sys.c index 13550102..687b08b8 100644 --- a/src/native/linux/org_lwjgl_Sys.c +++ b/src/native/linux/org_lwjgl_Sys.c @@ -33,9 +33,9 @@ /** * $Id$ * - * Win32 system library. + * Linux system library. * - * @author cix_foo + * @author elias_naur * @version $Revision$ */ diff --git a/src/native/linux/org_lwjgl_input_Keyboard.c b/src/native/linux/org_lwjgl_input_Keyboard.c index 4abdd1c1..ab84edab 100644 --- a/src/native/linux/org_lwjgl_input_Keyboard.c +++ b/src/native/linux/org_lwjgl_input_Keyboard.c @@ -33,9 +33,9 @@ /** * $Id$ * - * Win32 keyboard handling. + * Linux keyboard handling. * - * @author cix_foo + * @author elias_naur * @version $Revision$ */ diff --git a/src/native/linux/org_lwjgl_input_Mouse.c b/src/native/linux/org_lwjgl_input_Mouse.c index eb17d3c5..0e90dcbd 100644 --- a/src/native/linux/org_lwjgl_input_Mouse.c +++ b/src/native/linux/org_lwjgl_input_Mouse.c @@ -33,9 +33,9 @@ /** * $Id$ * - * Win32 mouse handling. + * Linux mouse handling. * - * @author cix_foo + * @author elias_naur * @version $Revision$ */ diff --git a/src/native/linux/org_lwjgl_opengl_BaseGL.c b/src/native/linux/org_lwjgl_opengl_BaseGL.c index 75a98d33..f5285123 100644 --- a/src/native/linux/org_lwjgl_opengl_BaseGL.c +++ b/src/native/linux/org_lwjgl_opengl_BaseGL.c @@ -33,9 +33,9 @@ /** * $Id$ * - * Base Win32 functionality for GL. + * Base linux functionality for GL. * - * @author cix_foo + * @author elias_naur * @version $Revision$ */ diff --git a/src/native/linux/org_lwjgl_opengl_CoreGL.c b/src/native/linux/org_lwjgl_opengl_CoreGL.c index 999df306..24ddbac6 100644 --- a/src/native/linux/org_lwjgl_opengl_CoreGL.c +++ b/src/native/linux/org_lwjgl_opengl_CoreGL.c @@ -35,7 +35,7 @@ * * Core OpenGL functions. * - * @author cix_foo + * @author elias_naur * @version $Revision$ */ diff --git a/src/native/linux/org_lwjgl_opengl_GL.c b/src/native/linux/org_lwjgl_opengl_GL.c index 2c45227c..35acad8b 100644 --- a/src/native/linux/org_lwjgl_opengl_GL.c +++ b/src/native/linux/org_lwjgl_opengl_GL.c @@ -35,7 +35,7 @@ * * GL extensions library. * - * @author cix_foo + * @author elias_naur * @version $Revision$ */ diff --git a/src/native/linux/org_lwjgl_opengl_GLU.c b/src/native/linux/org_lwjgl_opengl_GLU.c index 2c03352f..61137dbb 100644 --- a/src/native/linux/org_lwjgl_opengl_GLU.c +++ b/src/native/linux/org_lwjgl_opengl_GLU.c @@ -35,7 +35,7 @@ * * GLU library. * - * @author cix_foo + * @author elias_naur * @version $Revision$ */