plib-cvs Mailing List for PLIB (Page 36)
Brought to you by:
sjbaker
You can subscribe to this list here.
2002 |
Jan
(25) |
Feb
(10) |
Mar
(60) |
Apr
(49) |
May
(54) |
Jun
(94) |
Jul
(82) |
Aug
(251) |
Sep
(366) |
Oct
(17) |
Nov
(20) |
Dec
(14) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(12) |
Feb
(8) |
Mar
(2) |
Apr
(4) |
May
(5) |
Jun
(8) |
Jul
(23) |
Aug
(8) |
Sep
(7) |
Oct
(5) |
Nov
(20) |
Dec
(20) |
2004 |
Jan
(19) |
Feb
(70) |
Mar
(108) |
Apr
(24) |
May
(6) |
Jun
(5) |
Jul
|
Aug
(8) |
Sep
(18) |
Oct
(27) |
Nov
|
Dec
(13) |
2005 |
Jan
(19) |
Feb
(13) |
Mar
(1) |
Apr
|
May
(10) |
Jun
(1) |
Jul
(10) |
Aug
(5) |
Sep
(2) |
Oct
(2) |
Nov
(6) |
Dec
(4) |
2006 |
Jan
(9) |
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Sebastian U. <ud...@us...> - 2002-09-01 06:58:03
|
Update of /cvsroot/plib/plib/examples/src/sg In directory usw-pr-cvs1:/tmp/cvs-serv6971/sg Modified Files: sg_quat_test.cxx Log Message: Mac OS-X compatibility; Minor cleanups Index: sg_quat_test.cxx =================================================================== RCS file: /cvsroot/plib/plib/examples/src/sg/sg_quat_test.cxx,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- sg_quat_test.cxx 2 Oct 2000 18:07:39 -0000 1.5 +++ sg_quat_test.cxx 1 Sep 2002 06:57:58 -0000 1.6 @@ -27,26 +27,35 @@ Written by Michael Kurth (ku...@fu...) (neg...@ea...) */ #ifdef WIN32 -#include <windows.h> +# include <windows.h> #else -#include <unistd.h> +# include <unistd.h> #endif -#include <GL/glut.h> [...123 lines suppressed...] -void Reshape( int w, int h ) +static void Reshape( int w, int h ) { if( h == 0 ) @@ -237,7 +246,7 @@ glLoadIdentity( ) ; } -void Init( void ) +static void Init( void ) { glClearColor( 0.0, 0.0, 0.0, 0.0 ) ; @@ -275,3 +284,4 @@ glutMainLoop( ) ; return 0 ; } + |
From: Sebastian U. <ud...@us...> - 2002-09-01 06:58:03
|
Update of /cvsroot/plib/plib/examples/src/ssg/tux In directory usw-pr-cvs1:/tmp/cvs-serv6971/ssg/tux Modified Files: WavingFlag.cxx WavingFlagDemo.cxx tux_example.cxx Log Message: Mac OS-X compatibility; Minor cleanups Index: WavingFlag.cxx =================================================================== RCS file: /cvsroot/plib/plib/examples/src/ssg/tux/WavingFlag.cxx,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- WavingFlag.cxx 20 Dec 2001 15:55:48 -0000 1.5 +++ WavingFlag.cxx 1 Sep 2002 06:57:59 -0000 1.6 @@ -1,10 +1,20 @@ #ifdef WIN32 -#include <windows.h> +# include <windows.h> #else -#include <unistd.h> +# include <unistd.h> #endif -#include <GL/glut.h> -#include "plib/ssg.h" + +#ifdef FREEGLUT_IS_PRESENT +# include <GL/freeglut.h> +#else +# ifdef __APPLE__ +# include <GLUT/glut.h> +# else +# include <GL/glut.h> +# endif +#endif + +#include <plib/ssg.h> #include "WavingFlag.h" WavingFlag::WavingFlag( sgVec4 color, char *texture1, char *texture2, int s ) Index: WavingFlagDemo.cxx =================================================================== RCS file: /cvsroot/plib/plib/examples/src/ssg/tux/WavingFlagDemo.cxx,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- WavingFlagDemo.cxx 11 Jan 2001 00:04:37 -0000 1.4 +++ WavingFlagDemo.cxx 1 Sep 2002 06:57:59 -0000 1.5 @@ -1,10 +1,20 @@ #ifdef WIN32 -#include <windows.h> +# include <windows.h> #else -#include <unistd.h> +# include <unistd.h> #endif -#include <GL/glut.h> -#include "plib/ssg.h" + +#ifdef FREEGLUT_IS_PRESENT +# include <GL/freeglut.h> +#else +# ifdef __APPLE__ +# include <GLUT/glut.h> +# else +# include <GL/glut.h> +# endif +#endif + +#include <plib/ssg.h> #include "WavingFlag.h" @@ -16,7 +26,7 @@ The GLUT window reshape event */ -void reshape ( int w, int h ) +static void reshape ( int w, int h ) { glViewport ( 0, 0, w, h ) ; } @@ -27,14 +37,14 @@ The GLUT keyboard event */ -void keyboard ( unsigned char, int, int ) +static void keyboard ( unsigned char, int, int ) { exit ( 0 ) ; } -void idle () +static void idle () { static int lastTime = 0; int time = glutGet((GLenum)GLUT_ELAPSED_TIME); @@ -49,7 +59,7 @@ The GLUT redraw event */ -void redraw () +static void redraw () { sgCoord campos ; sgSetCoord ( & campos, 0.0f, -3.0f, 0.0f, 0.0f, 0.0f, 0.0f ) ; @@ -67,7 +77,7 @@ -void init_graphics () +static void init_graphics () { int fake_argc = 1 ; char *fake_argv[3] ; @@ -123,7 +133,7 @@ Load a simple database */ -void load_database () +static void load_database () { /* Set up the path to the data files @@ -157,3 +167,4 @@ glutMainLoop () ; return 0 ; } + Index: tux_example.cxx =================================================================== RCS file: /cvsroot/plib/plib/examples/src/ssg/tux/tux_example.cxx,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- tux_example.cxx 29 Sep 2000 17:29:03 -0000 1.3 +++ tux_example.cxx 1 Sep 2002 06:57:59 -0000 1.4 @@ -3,17 +3,26 @@ #include <ctype.h> #include <string.h> #ifdef WIN32 -#include <windows.h> +# include <windows.h> #else -#include <unistd.h> +# include <unistd.h> #endif #include <math.h> #include <plib/ssg.h> -#include <GL/glut.h> -ssgRoot *scene = NULL ; -ssgTransform *penguin = NULL ; -ssgTransform *pedestal = NULL ; +#ifdef FREEGLUT_IS_PRESENT +# include <GL/freeglut.h> +#else +# ifdef __APPLE__ +# include <GLUT/glut.h> +# else +# include <GL/glut.h> +# endif +#endif + +static ssgRoot *scene = NULL ; +static ssgTransform *penguin = NULL ; +static ssgTransform *pedestal = NULL ; /* @@ -21,7 +30,7 @@ for both Tux and the camera. */ -void update_motion () +static void update_motion () { static int frameno = 0 ; @@ -47,7 +56,7 @@ The GLUT window reshape event */ -void reshape ( int w, int h ) +static void reshape ( int w, int h ) { glViewport ( 0, 0, w, h ) ; } @@ -58,7 +67,7 @@ The GLUT keyboard event */ -void keyboard ( unsigned char, int, int ) +static void keyboard ( unsigned char, int, int ) { exit ( 0 ) ; } @@ -69,7 +78,7 @@ The GLUT redraw event */ -void redraw () +static void redraw () { update_motion () ; @@ -83,7 +92,7 @@ -void init_graphics () +static void init_graphics () { int fake_argc = 1 ; char *fake_argv[3] ; @@ -138,7 +147,7 @@ Load a simple database */ -void load_database () +static void load_database () { /* Set up the path to the data files |
From: Sebastian U. <ud...@us...> - 2002-09-01 06:58:03
|
Update of /cvsroot/plib/plib/examples/src/ssg/dynamics In directory usw-pr-cvs1:/tmp/cvs-serv6971/ssg/dynamics Modified Files: dynamics.cxx Log Message: Mac OS-X compatibility; Minor cleanups Index: dynamics.cxx =================================================================== RCS file: /cvsroot/plib/plib/examples/src/ssg/dynamics/dynamics.cxx,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- dynamics.cxx 30 Aug 2002 13:05:48 -0000 1.5 +++ dynamics.cxx 1 Sep 2002 06:57:58 -0000 1.6 @@ -3,14 +3,23 @@ #include <ctype.h> #include <string.h> #ifdef WIN32 -#include <windows.h> +# include <windows.h> #else -#include <unistd.h> +# include <unistd.h> #endif #include <math.h> #include <plib/ssg.h> [...102 lines suppressed...] int fake_argc = 1 ; char *fake_argv[3] ; @@ -319,7 +328,7 @@ } -void init_states () +static void init_states () { cube_state = new ssgSimpleState () ; cube_state -> setTexture ( "data/mg.rgb" ) ; @@ -348,7 +357,7 @@ -void load_database () +static void load_database () { /* Set up the path to the data files */ |
From: Sebastian U. <ud...@us...> - 2002-09-01 06:58:03
|
Update of /cvsroot/plib/plib/examples/src/pui In directory usw-pr-cvs1:/tmp/cvs-serv6971/pui Modified Files: PointPicker.cxx complex.cxx simple.cxx widget_list.cxx Log Message: Mac OS-X compatibility; Minor cleanups Index: PointPicker.cxx =================================================================== RCS file: /cvsroot/plib/plib/examples/src/pui/PointPicker.cxx,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- PointPicker.cxx 31 Aug 2002 14:55:16 -0000 1.14 +++ PointPicker.cxx 1 Sep 2002 06:57:58 -0000 1.15 @@ -21,13 +21,23 @@ #include <string.h> #include <time.h> #ifdef WIN32 -#include <windows.h> +# include <windows.h> #else -#include <unistd.h> +# include <unistd.h> #endif #include <math.h> -#include <GL/glut.h> -#include "plib/pu.h" + +#ifdef FREEGLUT_IS_PRESENT +# include <GL/freeglut.h> +#else +# ifdef __APPLE__ +# include <GLUT/glut.h> +# else +# include <GL/glut.h> +# endif +#endif + +#include <plib/pu.h> //#define VOODOO 1 Index: complex.cxx =================================================================== RCS file: /cvsroot/plib/plib/examples/src/pui/complex.cxx,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- complex.cxx 31 Aug 2002 14:55:16 -0000 1.20 +++ complex.cxx 1 Sep 2002 06:57:58 -0000 1.21 @@ -4,13 +4,23 @@ #include <string.h> #include <time.h> #ifdef WIN32 -#include <windows.h> +# include <windows.h> #else -#include <unistd.h> +# include <unistd.h> #endif #include <math.h> -#include <GL/glut.h> -#include "plib/pu.h" + +#ifdef FREEGLUT_IS_PRESENT +# include <GL/freeglut.h> +#else +# ifdef __APPLE__ +# include <GLUT/glut.h> +# else +# include <GL/glut.h> +# endif +#endif + +#include <plib/pu.h> //#define VOODOO 1 Index: simple.cxx =================================================================== RCS file: /cvsroot/plib/plib/examples/src/pui/simple.cxx,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- simple.cxx 1 Sep 2002 05:22:25 -0000 1.9 +++ simple.cxx 1 Sep 2002 06:57:58 -0000 1.10 @@ -3,12 +3,22 @@ #include <stdlib.h> #include <string.h> #ifdef WIN32 -#include <windows.h> +# include <windows.h> #else -#include <unistd.h> +# include <unistd.h> #endif #include <math.h> -#include <GL/glut.h> + +#ifdef FREEGLUT_IS_PRESENT +# include <GL/freeglut.h> +#else +# ifdef __APPLE__ +# include <GLUT/glut.h> +# else +# include <GL/glut.h> +# endif +#endif + #include <plib/pu.h> //#define VOODOO 1 Index: widget_list.cxx =================================================================== RCS file: /cvsroot/plib/plib/examples/src/pui/widget_list.cxx,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- widget_list.cxx 31 Aug 2002 14:55:16 -0000 1.13 +++ widget_list.cxx 1 Sep 2002 06:57:58 -0000 1.14 @@ -6,13 +6,23 @@ #include <string.h> #include <time.h> #ifdef WIN32 -#include <windows.h> +# include <windows.h> #else -#include <unistd.h> +# include <unistd.h> #endif #include <math.h> -#include <GL/glut.h> -#include "plib/pu.h" + +#ifdef FREEGLUT_IS_PRESENT +# include <GL/freeglut.h> +#else +# ifdef __APPLE__ +# include <GLUT/glut.h> +# else +# include <GL/glut.h> +# endif +#endif + +#include <plib/pu.h> //#define VOODOO 1 |
From: Sebastian U. <ud...@us...> - 2002-09-01 06:58:03
|
Update of /cvsroot/plib/plib/examples/src/ssg/state_test In directory usw-pr-cvs1:/tmp/cvs-serv6971/ssg/state_test Modified Files: stest.cxx Log Message: Mac OS-X compatibility; Minor cleanups Index: stest.cxx =================================================================== RCS file: /cvsroot/plib/plib/examples/src/ssg/state_test/stest.cxx,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- stest.cxx 20 Dec 2001 15:52:17 -0000 1.2 +++ stest.cxx 1 Sep 2002 06:57:59 -0000 1.3 @@ -3,24 +3,33 @@ #include <ctype.h> #include <string.h> #ifdef WIN32 -#include <windows.h> +# include <windows.h> #else -#include <unistd.h> +# include <unistd.h> #endif #include <math.h> #include <plib/ssg.h> [...63 lines suppressed...] int fake_argc = 1 ; char *fake_argv[3] ; @@ -141,7 +150,7 @@ -ssgEntity *make_herring () +static ssgEntity *make_herring () { big_red_switch = new ssgStateSelector ( 2 ) ; @@ -240,7 +249,7 @@ Load a simple database */ -void load_database () +static void load_database () { /* Set up the path to the data files |
From: Sebastian U. <ud...@us...> - 2002-09-01 06:58:03
|
Update of /cvsroot/plib/plib/examples/src/ssg/viewer In directory usw-pr-cvs1:/tmp/cvs-serv6971/ssg/viewer Modified Files: viewer.cxx Log Message: Mac OS-X compatibility; Minor cleanups Index: viewer.cxx =================================================================== RCS file: /cvsroot/plib/plib/examples/src/ssg/viewer/viewer.cxx,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- viewer.cxx 28 Dec 2001 23:12:56 -0000 1.21 +++ viewer.cxx 1 Sep 2002 06:57:59 -0000 1.22 @@ -17,13 +17,21 @@ #include <ctype.h> #include <string.h> #ifdef WIN32 -#include <windows.h> +# include <windows.h> #else -#include <unistd.h> +# include <unistd.h> #endif #include <math.h> [...254 lines suppressed...] puKeyboard ( key, PU_DOWN ) ; @@ -715,7 +723,7 @@ } } -void idle(void) +static void idle(void) { EyeEl += ElSpin; EyeAz += AzSpin; @@ -737,7 +745,7 @@ } } -void init_graphics () +static void init_graphics () { int fake_argc = 1 ; char *fake_argv[3] ; |
From: Sebastian U. <ud...@us...> - 2002-09-01 06:58:03
|
Update of /cvsroot/plib/plib/examples/src/ssg/water In directory usw-pr-cvs1:/tmp/cvs-serv6971/ssg/water Modified Files: water.cxx Log Message: Mac OS-X compatibility; Minor cleanups Index: water.cxx =================================================================== RCS file: /cvsroot/plib/plib/examples/src/ssg/water/water.cxx,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- water.cxx 31 Aug 2002 16:44:12 -0000 1.22 +++ water.cxx 1 Sep 2002 06:57:59 -0000 1.23 @@ -3,64 +3,73 @@ #include <ctype.h> #include <string.h> #ifdef WIN32 -#include <windows.h> +# include <windows.h> #else -#include <unistd.h> +# include <unistd.h> #endif #include <math.h> #include <plib/ssg.h> [...399 lines suppressed...] +static void load_database () { /* Set up the path to the data files */ @@ -764,7 +773,7 @@ } -void init_gui () +static void init_gui () { static puFont *sorority ; static fntTexFont *fnt ; @@ -962,6 +971,4 @@ glutMainLoop () ; return 0 ; } - - |
From: Sebastian U. <ud...@us...> - 2002-09-01 06:17:58
|
Update of /cvsroot/plib/plib/demos/p-guide In directory usw-pr-cvs1:/tmp/cvs-serv676 Modified Files: configure.in Log Message: Adopted a bunch of changes from the top-level configure.in Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/demos/p-guide/configure.in,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- configure.in 1 Sep 2002 01:08:00 -0000 1.4 +++ configure.in 1 Sep 2002 06:17:56 -0000 1.5 @@ -10,14 +10,17 @@ AC_PROG_CXXCPP AC_PROG_INSTALL -plib_suffix="-lplibjs -lplibpu -lplibfnt -lplibsg -lplibul" +plib_suffix="-lplibpu -lplibfnt -lplibsg -lplibul" AC_LANG_CPLUSPLUS + dnl Command line arguments. [...186 lines suppressed...] + WFLAG="-fullwarn"; + fi + ;; +*) + if test "x$CXX" = "xicpc" || test "x$CXX" = "xicc"; then + WFLAG="-w1" + fi + ;; +esac + +CFLAGS="$CFLAGS $WFLAG" +CXXFLAGS="$CXXFLAGS $WFLAG" -if test "x$ac_cv_lib_audio_ALopenport" = "xyes" ; then - dnl this is an SGI machine... - LIBS="$LIBS -laudio" -fi AC_OUTPUT( Makefile \ src/Makefile \ |
From: Sebastian U. <ud...@us...> - 2002-09-01 06:13:54
|
Update of /cvsroot/plib/plib/demos/exposer In directory usw-pr-cvs1:/tmp/cvs-serv32598 Modified Files: configure.in Log Message: Adopted a bunch of changes from the top-level configure.in [2] Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/demos/exposer/configure.in,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- configure.in 1 Sep 2002 05:54:52 -0000 1.13 +++ configure.in 1 Sep 2002 06:13:51 -0000 1.14 @@ -45,6 +45,8 @@ LIBS="$LIBS -lwinmm -lglut32 -lglu32 -lopengl32 -luser32 -lgdi32" ;; *-apple-darwin*) + dnl Mac OS X + LIBS="$LIBS -framework GLUT -lobjc -framework OpenGL -framework Carbon" ;; *) |
From: Sebastian U. <ud...@us...> - 2002-09-01 06:07:04
|
Update of /cvsroot/plib/plib/demos/ttt3d In directory usw-pr-cvs1:/tmp/cvs-serv31783 Modified Files: configure.in Log Message: Adopted a bunch of changes from the top-level configure.in Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/demos/ttt3d/configure.in,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- configure.in 1 Sep 2002 01:08:00 -0000 1.10 +++ configure.in 1 Sep 2002 06:07:01 -0000 1.11 @@ -14,10 +14,13 @@ AC_LANG_CPLUSPLUS + dnl Command line arguments. +dnl Don't use AC_HELP_STRING here as old versions of autoconf do not +dnl understand it. AC_ARG_WITH(GL, -AC_HELP_STRING([--with-GL=DIR], [set the prefix directory where GL resides]), +[ --with-GL=DIR set the prefix directory where GL resides], [...184 lines suppressed...] + WFLAG="-fullwarn"; + fi + ;; +*) + if test "x$CXX" = "xicpc" || test "x$CXX" = "xicc"; then + WFLAG="-w1" + fi + ;; +esac + +CFLAGS="$CFLAGS $WFLAG" +CXXFLAGS="$CXXFLAGS $WFLAG" -if test "x$ac_cv_lib_audio_ALopenport" = "xyes" ; then - dnl this is an SGI machine... - LIBS="$LIBS -laudio" -fi MY_EXPAND_DIR(ttt3d, "$datadir/games/$PACKAGE") AC_DEFINE_UNQUOTED(TTT3D_DATADIR, "$ttt3d_datadir") |
From: Sebastian U. <ud...@us...> - 2002-09-01 05:54:56
|
Update of /cvsroot/plib/plib/demos/exposer In directory usw-pr-cvs1:/tmp/cvs-serv30008 Modified Files: configure.in Log Message: Adopted a bunch of changes from the top-level configure.in Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/demos/exposer/configure.in,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- configure.in 1 Sep 2002 01:07:59 -0000 1.12 +++ configure.in 1 Sep 2002 05:54:52 -0000 1.13 @@ -3,6 +3,7 @@ AC_INIT(src/exposer.cxx) AM_INIT_AUTOMAKE(exposer, 0.0.1) + dnl Checks for programs. AC_PROG_CC AC_PROG_CPP @@ -14,10 +15,13 @@ AC_LANG_CPLUSPLUS [...189 lines suppressed...] + WFLAG="-fullwarn"; + fi + ;; +*) + if test "x$CXX" = "xicpc" || test "x$CXX" = "xicc"; then + WFLAG="-w1" + fi + ;; +esac + +CFLAGS="$CFLAGS $WFLAG" +CXXFLAGS="$CXXFLAGS $WFLAG" -if test "x$ac_cv_lib_audio_ALopenport" = "xyes" ; then - dnl this is an SGI machine... - LIBS="$LIBS -laudio" -fi AC_OUTPUT( Makefile \ data/Makefile \ |
From: Sebastian U. <ud...@us...> - 2002-09-01 05:40:56
|
Update of /cvsroot/plib/plib/examples In directory usw-pr-cvs1:/tmp/cvs-serv27922 Modified Files: configure.in Log Message: Added /usr/local/lib and /usr/local/include to compiler path Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/examples/configure.in,v retrieving revision 1.28 retrieving revision 1.29 diff -u -d -r1.28 -r1.29 --- configure.in 1 Sep 2002 05:21:26 -0000 1.28 +++ configure.in 1 Sep 2002 05:40:53 -0000 1.29 @@ -77,6 +77,9 @@ fi +CPPFLAGS="$CPPFLAGS -I/usr/local/include" +LDFLAGS="$LDFLAGS -L/usr/local/lib" + dnl Checks for library functions. dnl check for OpenGL related libraries |
From: Steve B. <sj...@us...> - 2002-09-01 05:27:02
|
Update of /cvsroot/plib/plib/src/js In directory usw-pr-cvs1:/tmp/cvs-serv25614/plib/src/js Modified Files: js.h Log Message: Added jsInit extern. Index: js.h =================================================================== RCS file: /cvsroot/plib/plib/src/js/js.h,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- js.h 22 Jun 2002 02:46:54 -0000 1.20 +++ js.h 1 Sep 2002 05:26:58 -0000 1.21 @@ -740,6 +740,9 @@ #endif } } ; + +extern void jsInit () ; + //lint -restore #endif |
From: Sebastian U. <ud...@us...> - 2002-09-01 05:22:57
|
Update of /cvsroot/plib/plib/examples/src/fnt In directory usw-pr-cvs1:/tmp/cvs-serv24796/src/fnt Modified Files: Makefile.am Log Message: Support for building only certain examples Index: Makefile.am =================================================================== RCS file: /cvsroot/plib/plib/examples/src/fnt/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile.am 7 Jul 2002 18:07:13 -0000 1.4 +++ Makefile.am 1 Sep 2002 05:22:24 -0000 1.5 @@ -1,3 +1,5 @@ +if BUILD_FNT + noinst_PROGRAMS = fnt_test slideshow fnt_test_SOURCES = fnt_test.cxx @@ -6,6 +8,8 @@ fnt_test_LDADD = -lplibfnt -lplibsg -lplibul $(GLUT_LIBS) $(OGL_LIBS) slideshow_LDADD = -lplibfnt -lplibsg -lplibul $(GLUT_LIBS) $(OGL_LIBS) + +endif EXTRA_DIST = fnt_test.dsp slideshow.dsp |
From: Sebastian U. <ud...@us...> - 2002-09-01 05:22:29
|
Update of /cvsroot/plib/plib/examples/src/ssg/tween_test In directory usw-pr-cvs1:/tmp/cvs-serv24796/src/ssg/tween_test Modified Files: Makefile.am Log Message: Support for building only certain examples Index: Makefile.am =================================================================== RCS file: /cvsroot/plib/plib/examples/src/ssg/tween_test/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile.am 7 Jul 2002 18:07:14 -0000 1.2 +++ Makefile.am 1 Sep 2002 05:22:26 -0000 1.3 @@ -1,9 +1,13 @@ +if BUILD_SSG + noinst_PROGRAMS = tween_test tween_test_SOURCES = tween_test.cxx tween_test_LDADD = -lplibssgaux -lplibssg -lplibsg -lplibul $(GLUT_LIBS) \ $(OGL_LIBS) + +endif EXTRA_DIST = tween_test.dsp |
From: Sebastian U. <ud...@us...> - 2002-09-01 05:22:29
|
Update of /cvsroot/plib/plib/examples/src/ssg/water In directory usw-pr-cvs1:/tmp/cvs-serv24796/src/ssg/water Modified Files: Makefile.am Log Message: Support for building only certain examples Index: Makefile.am =================================================================== RCS file: /cvsroot/plib/plib/examples/src/ssg/water/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Makefile.am 10 Aug 2002 08:57:36 -0000 1.3 +++ Makefile.am 1 Sep 2002 05:22:26 -0000 1.4 @@ -1,8 +1,12 @@ +if BUILD_SSG + noinst_PROGRAMS = water water_SOURCES = water.cxx water_LDADD = -lplibpu -lplibfnt -lplibssgaux -lplibssg -lplibsg -lplibul $(GLUT_LIBS) $(OGL_LIBS) + +endif EXTRA_DIST = water.dsp README |
From: Sebastian U. <ud...@us...> - 2002-09-01 05:22:29
|
Update of /cvsroot/plib/plib/examples/src/util In directory usw-pr-cvs1:/tmp/cvs-serv24796/src/util Modified Files: Makefile.am Log Message: Support for building only certain examples Index: Makefile.am =================================================================== RCS file: /cvsroot/plib/plib/examples/src/util/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile.am 3 Aug 2000 18:28:16 -0000 1.1 +++ Makefile.am 1 Sep 2002 05:22:26 -0000 1.2 @@ -1,8 +1,12 @@ +if BUILD_UL + noinst_PROGRAMS = test_dir test_dir_SOURCES = test_dir.cxx test_dir_LDADD = -lplibul + +endif EXTRA_DIST = test_dir.dsp |
From: Sebastian U. <ud...@us...> - 2002-09-01 05:22:29
|
Update of /cvsroot/plib/plib/examples/src/ssg/tux In directory usw-pr-cvs1:/tmp/cvs-serv24796/src/ssg/tux Modified Files: Makefile.am Log Message: Support for building only certain examples Index: Makefile.am =================================================================== RCS file: /cvsroot/plib/plib/examples/src/ssg/tux/Makefile.am,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Makefile.am 7 Jul 2002 18:07:14 -0000 1.7 +++ Makefile.am 1 Sep 2002 05:22:25 -0000 1.8 @@ -1,3 +1,5 @@ +if BUILD_SSG + noinst_PROGRAMS = tux_example WavingFlagDemo tux_example_SOURCES = tux_example.cxx @@ -5,6 +7,8 @@ tux_example_LDADD = -lplibssg -lplibsg -lplibul $(GLUT_LIBS) $(OGL_LIBS) WavingFlagDemo_LDADD = -lplibssg -lplibsg -lplibul $(GLUT_LIBS) $(OGL_LIBS) + +endif EXTRA_DIST = tux_example.dsp WavingFlag.dsp |
From: Sebastian U. <ud...@us...> - 2002-09-01 05:22:29
|
Update of /cvsroot/plib/plib/examples/src/ssg/viewer In directory usw-pr-cvs1:/tmp/cvs-serv24796/src/ssg/viewer Modified Files: Makefile.am Log Message: Support for building only certain examples Index: Makefile.am =================================================================== RCS file: /cvsroot/plib/plib/examples/src/ssg/viewer/Makefile.am,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- Makefile.am 7 Jul 2002 18:07:14 -0000 1.6 +++ Makefile.am 1 Sep 2002 05:22:26 -0000 1.7 @@ -1,9 +1,13 @@ +if BUILD_SSG + noinst_PROGRAMS = viewer viewer_SOURCES = viewer.cxx viewer_LDADD = -lplibssg -lplibpu -lplibfnt -lplibsg -lplibul $(GLUT_LIBS) \ $(OGL_LIBS) + +endif EXTRA_DIST = viewer.dsp |
From: Sebastian U. <ud...@us...> - 2002-09-01 05:22:29
|
Update of /cvsroot/plib/plib/examples/src/ssg/load_save In directory usw-pr-cvs1:/tmp/cvs-serv24796/src/ssg/load_save Modified Files: Makefile.am Log Message: Support for building only certain examples Index: Makefile.am =================================================================== RCS file: /cvsroot/plib/plib/examples/src/ssg/load_save/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Makefile.am 7 Jul 2002 18:07:13 -0000 1.3 +++ Makefile.am 1 Sep 2002 05:22:25 -0000 1.4 @@ -1,3 +1,5 @@ +if BUILD_SSG + noinst_PROGRAMS = load save load_SOURCES = load.cxx @@ -5,4 +7,8 @@ load_LDADD = -lplibssg -lplibsg -lplibul $(GLUT_LIBS) $(OGL_LIBS) save_LDADD = -lplibssg -lplibsg -lplibul $(GLUT_LIBS) $(OGL_LIBS) + +endif + +EXTRA_DIST = load.dsp save.dsp |
From: Sebastian U. <ud...@us...> - 2002-09-01 05:22:28
|
Update of /cvsroot/plib/plib/examples/src/ssg/dynamics In directory usw-pr-cvs1:/tmp/cvs-serv24796/src/ssg/dynamics Modified Files: Makefile.am Log Message: Support for building only certain examples Index: Makefile.am =================================================================== RCS file: /cvsroot/plib/plib/examples/src/ssg/dynamics/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile.am 11 Aug 2002 17:53:49 -0000 1.1 +++ Makefile.am 1 Sep 2002 05:22:25 -0000 1.2 @@ -1,8 +1,12 @@ +if BUILD_SSG + noinst_PROGRAMS = dynamics dynamics_SOURCES = dynamics.cxx dynamics_LDADD = -lplibpu -lplibfnt -lplibssgaux -lplibssg -lplibsg -lplibul $(GLUT_LIBS) $(OGL_LIBS) + +endif EXTRA_DIST = dynamics.dsp |
From: Sebastian U. <ud...@us...> - 2002-09-01 05:22:28
|
Update of /cvsroot/plib/plib/examples/src/ssg/majik In directory usw-pr-cvs1:/tmp/cvs-serv24796/src/ssg/majik Modified Files: Makefile.am Log Message: Support for building only certain examples Index: Makefile.am =================================================================== RCS file: /cvsroot/plib/plib/examples/src/ssg/majik/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile.am 1 Sep 2002 01:11:00 -0000 1.4 +++ Makefile.am 1 Sep 2002 05:22:25 -0000 1.5 @@ -1,3 +1,5 @@ +if BUILD_SSG + noinst_PROGRAMS = majik_demo majik_demo_SOURCES = elevation_map.h \ @@ -5,6 +7,8 @@ majik_demo.cxx majik_demo_LDADD = -lplibjs -lplibssg -lplibsg -lplibul $(GLUT_LIBS) $(OGL_LIBS) + +endif EXTRA_DIST = majik_demo.dsp |
From: Sebastian U. <ud...@us...> - 2002-09-01 05:22:28
|
Update of /cvsroot/plib/plib/examples/src/sl In directory usw-pr-cvs1:/tmp/cvs-serv24796/src/sl Modified Files: Makefile.am Log Message: Support for building only certain examples Index: Makefile.am =================================================================== RCS file: /cvsroot/plib/plib/examples/src/sl/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Makefile.am 7 Jul 2002 18:07:13 -0000 1.5 +++ Makefile.am 1 Sep 2002 05:22:25 -0000 1.6 @@ -1,3 +1,5 @@ +if BUILD_SL + noinst_PROGRAMS = example mod_demo example_SOURCES = example.cxx @@ -5,6 +7,8 @@ example_LDADD = -lplibsm -lplibsl -lplibul $(SND_LIBS) mod_demo_LDADD = -lplibsm -lplibsl -lplibul $(SND_LIBS) + +endif EXTRA_DIST = cuckoo.au scream.ub wheeee.ub zzap.wav tuxr.mod \ mod_demo.dsp example.dsp |
From: Sebastian U. <ud...@us...> - 2002-09-01 05:22:28
|
Update of /cvsroot/plib/plib/examples/src/ssg/state_test In directory usw-pr-cvs1:/tmp/cvs-serv24796/src/ssg/state_test Modified Files: Makefile.am Log Message: Support for building only certain examples Index: Makefile.am =================================================================== RCS file: /cvsroot/plib/plib/examples/src/ssg/state_test/Makefile.am,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- Makefile.am 7 Jul 2002 18:07:14 -0000 1.6 +++ Makefile.am 1 Sep 2002 05:22:25 -0000 1.7 @@ -1,8 +1,12 @@ +if BUILD_SSG + noinst_PROGRAMS = stest stest_SOURCES = stest.cxx stest_LDADD = -lplibssg -lplibsg -lplibul $(GLUT_LIBS) $(OGL_LIBS) + +endif EXTRA_DIST = herring.inta stest.dsp |
From: Sebastian U. <ud...@us...> - 2002-09-01 05:22:28
|
Update of /cvsroot/plib/plib/examples/src/sg In directory usw-pr-cvs1:/tmp/cvs-serv24796/src/sg Modified Files: Makefile.am Log Message: Support for building only certain examples Index: Makefile.am =================================================================== RCS file: /cvsroot/plib/plib/examples/src/sg/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Makefile.am 7 Jul 2002 18:07:13 -0000 1.3 +++ Makefile.am 1 Sep 2002 05:22:25 -0000 1.4 @@ -1,8 +1,12 @@ +if BUILD_SG + noinst_PROGRAMS = sg_quat_test sg_quat_test_SOURCES = sg_quat_test.cxx sg_quat_test_LDADD = -lplibsg -lplibul $(GLUT_LIBS) $(OGL_LIBS) + +endif EXTRA_DIST = sg_quat_test.dsp |