plib-cvs Mailing List for PLIB (Page 50)
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: Dave M. <mc...@us...> - 2002-07-01 02:51:20
|
Update of /cvsroot/plib/plib/src/ssg In directory usw-pr-cvs1:/tmp/cvs-serv4648/ssg Modified Files: ssgLoadMD2.cxx ssgLoadTGA.cxx Log Message: removed malloc/free Index: ssgLoadMD2.cxx =================================================================== RCS file: /cvsroot/plib/plib/src/ssg/ssgLoadMD2.cxx,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- ssgLoadMD2.cxx 10 Jun 2002 16:34:32 -0000 1.13 +++ ssgLoadMD2.cxx 1 Jul 2002 02:51:15 -0000 1.14 @@ -207,7 +207,7 @@ fseek(loader_fd, offset, SEEK_SET); frames = new t_frame[header.numFrames]; - vertices = (t_vertex **)malloc(header.numFrames * sizeof(t_vertex *)); + vertices = new t_vertex* [header.numFrames]; for(int i=0; i<header.numFrames; i++){ vertices[i] = new t_vertex[header.numVertices]; Index: ssgLoadTGA.cxx =================================================================== RCS file: /cvsroot/plib/plib/src/ssg/ssgLoadTGA.cxx,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- ssgLoadTGA.cxx 7 Nov 2001 23:51:10 -0000 1.7 +++ ssgLoadTGA.cxx 1 Jul 2002 02:51:16 -0000 1.8 @@ -53,14 +53,14 @@ } maxLen = fileinfo.st_size; - pData = (char *) malloc(maxLen); + pData = new char [maxLen]; fread (pData, maxLen, 1, tfile); fclose (tfile); pData[0] = 0x00; if( memcmp( pData, DEF_targaHeaderContent, DEF_targaHeaderLength ) != 0 ) { ulSetError ( UL_WARNING, "ssgLoadTexture: Failed to load '%s'. Not a targa (apparently).", fname); - free (pData); + delete[] pData; return false ; } @@ -79,7 +79,7 @@ if( ( width <= 0 ) || ( height <= 0 ) ) { ulSetError ( UL_WARNING, "ssgLoadTexture: Failed to load '%s'. Width and height < 0.", fname); - free (pData); + delete[] pData; return false ; } @@ -90,7 +90,7 @@ if( !( is24Bit || is32Bit ) ) { ulSetError ( UL_WARNING, "ssgLoadTexture: Failed to load '%s'. Not 24 or 32 bit.", fname); - free (pData); + delete[] pData; return false ; } @@ -122,7 +122,7 @@ texels[ loop + 2 ] = tempC; } - free(pData); + delete[] pData; if ( info != NULL ) { |
From: Dave M. <mc...@us...> - 2002-07-01 02:43:00
|
Update of /cvsroot/plib/plib/src/net In directory usw-pr-cvs1:/tmp/cvs-serv1626 Modified Files: netChat.cxx netMonitor.h Log Message: removed strdup/free Index: netChat.cxx =================================================================== RCS file: /cvsroot/plib/plib/src/net/netChat.cxx,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- netChat.cxx 7 Nov 2001 23:51:09 -0000 1.3 +++ netChat.cxx 1 Jul 2002 02:42:57 -0000 1.4 @@ -26,8 +26,8 @@ void netChat::setTerminator (const char* t) { - if (terminator) ::free(terminator); - terminator = strdup(t); + if (terminator) delete[] terminator; + terminator = ulStrDup(t); } const char* Index: netMonitor.h =================================================================== RCS file: /cvsroot/plib/plib/src/net/netMonitor.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- netMonitor.h 18 Dec 2001 16:55:07 -0000 1.6 +++ netMonitor.h 1 Jul 2002 02:42:57 -0000 1.7 @@ -62,9 +62,9 @@ netMonitorServer( cchar* _name, int port ) { - name = strdup(_name); - password = strdup("") ; - prompt = strdup(">>> "); + name = ulStrDup(_name); + password = ulStrDup("") ; + prompt = ulStrDup(">>> "); cmdfunc = 0 ; active = 0 ; @@ -77,22 +77,22 @@ ~netMonitorServer() { - ::free(name); - ::free(password) ; - ::free(prompt) ; + delete[] name ; + delete[] password ; + delete[] prompt ; } cchar* getPassword () const { return password; } void setPassword ( cchar* string ) { - ::free(password) ; - password = strdup ( string?string:"" ) ; + delete[] password ; + password = ulStrDup ( string?string:"" ) ; } void setPrompt ( cchar* string ) { - ::free(prompt) ; - prompt = strdup ( string?string:"" ) ; + delete[] prompt ; + prompt = ulStrDup ( string?string:"" ) ; } void setCommandFunc ( void (*func)(cchar*) ) |
From: Sebastian U. <ud...@us...> - 2002-07-01 01:31:34
|
Update of /cvsroot/plib/plib/demos/widgy In directory usw-pr-cvs1:/tmp/cvs-serv27203 Removed Files: AUTHORS autogen.sh ChangeLog configure.in COPYING INSTALL Makefile.am NEWS README widgy.dsw Log Message: Removed WIDGY from CVS again - for now --- AUTHORS DELETED --- --- autogen.sh DELETED --- --- ChangeLog DELETED --- --- configure.in DELETED --- --- COPYING DELETED --- --- INSTALL DELETED --- --- Makefile.am DELETED --- --- NEWS DELETED --- --- README DELETED --- --- widgy.dsw DELETED --- |
From: Sebastian U. <ud...@us...> - 2002-07-01 01:31:05
|
Update of /cvsroot/plib/plib/demos/widgy/src In directory usw-pr-cvs1:/tmp/cvs-serv26955/src Removed Files: Makefile.am widgy.dsp Log Message: Removed WIDGY from CVS again - for now --- Makefile.am DELETED --- --- widgy.dsp DELETED --- |
From: Sebastian U. <ud...@us...> - 2002-07-01 01:28:39
|
Update of /cvsroot/plib/plib/demos/p-guide In directory usw-pr-cvs1:/tmp/cvs-serv25762/demos/p-guide Modified Files: autogen.sh Log Message: Erik Hofman: Changes for IRIX Index: autogen.sh =================================================================== RCS file: /cvsroot/plib/plib/demos/p-guide/autogen.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- autogen.sh 8 May 2002 22:49:55 -0000 1.1 +++ autogen.sh 1 Jul 2002 01:28:36 -0000 1.2 @@ -1,9 +1,16 @@ #!/bin/sh +OSTYPE=`uname -s` + +AMFLAGS="--add-missing" +if test "$OSTYPE" = "IRIX" -o "$OSTYPE" = "IRIX64"; then + AMFLAGS=$AMFLAGS" --include-deps"; +fi + echo "Running aclocal" aclocal echo "Running automake" -automake --add-missing +automake $AMFLAGS echo "Running autoconf" autoconf |
From: Sebastian U. <ud...@us...> - 2002-07-01 01:28:39
|
Update of /cvsroot/plib/plib/demos/ttt3d In directory usw-pr-cvs1:/tmp/cvs-serv25762/demos/ttt3d Modified Files: autogen.sh Log Message: Erik Hofman: Changes for IRIX Index: autogen.sh =================================================================== RCS file: /cvsroot/plib/plib/demos/ttt3d/autogen.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- autogen.sh 16 Dec 2001 19:10:52 -0000 1.1 +++ autogen.sh 1 Jul 2002 01:28:36 -0000 1.2 @@ -1,9 +1,16 @@ #!/bin/sh +OSTYPE=`uname -s` + +AMFLAGS="--add-missing" +if test "$OSTYPE" = "IRIX" -o "$OSTYPE" = "IRIX64"; then + AMFLAGS=$AMFLAGS" --include-deps"; +fi + echo "Running aclocal" aclocal echo "Running automake" -automake --add-missing +automake $AMFLAGS echo "Running autoconf" autoconf |
From: Sebastian U. <ud...@us...> - 2002-07-01 01:28:39
|
Update of /cvsroot/plib/plib/tools In directory usw-pr-cvs1:/tmp/cvs-serv25762/tools Modified Files: autogen.sh Log Message: Erik Hofman: Changes for IRIX Index: autogen.sh =================================================================== RCS file: /cvsroot/plib/plib/tools/autogen.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- autogen.sh 16 Dec 2001 19:10:52 -0000 1.1 +++ autogen.sh 1 Jul 2002 01:28:36 -0000 1.2 @@ -1,9 +1,16 @@ #!/bin/sh +OSTYPE=`uname -s` + +AMFLAGS="--add-missing" +if test "$OSTYPE" = "IRIX" -o "$OSTYPE" = "IRIX64"; then + AMFLAGS=$AMFLAGS" --include-deps"; +fi + echo "Running aclocal" aclocal echo "Running automake" -automake --add-missing +automake $AMFLAGS echo "Running autoconf" autoconf |
From: Sebastian U. <ud...@us...> - 2002-07-01 01:28:39
|
Update of /cvsroot/plib/plib/demos/exposer In directory usw-pr-cvs1:/tmp/cvs-serv25762/demos/exposer Modified Files: autogen.sh Log Message: Erik Hofman: Changes for IRIX Index: autogen.sh =================================================================== RCS file: /cvsroot/plib/plib/demos/exposer/autogen.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- autogen.sh 16 Dec 2001 19:10:52 -0000 1.1 +++ autogen.sh 1 Jul 2002 01:28:36 -0000 1.2 @@ -1,9 +1,16 @@ #!/bin/sh +OSTYPE=`uname -s` + +AMFLAGS="--add-missing" +if test "$OSTYPE" = "IRIX" -o "$OSTYPE" = "IRIX64"; then + AMFLAGS=$AMFLAGS" --include-deps"; +fi + echo "Running aclocal" aclocal echo "Running automake" -automake --add-missing +automake $AMFLAGS echo "Running autoconf" autoconf |
From: Sebastian U. <ud...@us...> - 2002-07-01 01:28:39
|
Update of /cvsroot/plib/plib/examples In directory usw-pr-cvs1:/tmp/cvs-serv25762/examples Modified Files: autogen.sh Log Message: Erik Hofman: Changes for IRIX Index: autogen.sh =================================================================== RCS file: /cvsroot/plib/plib/examples/autogen.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- autogen.sh 16 Dec 2001 19:10:52 -0000 1.1 +++ autogen.sh 1 Jul 2002 01:28:36 -0000 1.2 @@ -1,9 +1,16 @@ #!/bin/sh +OSTYPE=`uname -s` + +AMFLAGS="--add-missing" +if test "$OSTYPE" = "IRIX" -o "$OSTYPE" = "IRIX64"; then + AMFLAGS=$AMFLAGS" --include-deps"; +fi + echo "Running aclocal" aclocal echo "Running automake" -automake --add-missing +automake $AMFLAGS echo "Running autoconf" autoconf |
From: Sebastian U. <ud...@us...> - 2002-07-01 01:23:52
|
Update of /cvsroot/plib/plib/src/sl In directory usw-pr-cvs1:/tmp/cvs-serv22621 Modified Files: slDSP.cxx Log Message: Erik Hofman: Modifications for IRIX compatibility Index: slDSP.cxx =================================================================== RCS file: /cvsroot/plib/plib/src/sl/slDSP.cxx,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- slDSP.cxx 19 Apr 2002 23:28:23 -0000 1.16 +++ slDSP.cxx 1 Jul 2002 01:23:49 -0000 1.17 @@ -636,36 +636,34 @@ return; } - init_bytes = 1024 * 32; - if (_bps == 8) init_bytes /= 2; - if (_stereo) init_bytes /= 2; + init_bytes = 1024 * 16; - config = alNewConfig(); - alSetChannels(config, _stereo ? AL_STEREO : AL_MONO); - alSetWidth(config, _bps == 8 ? AL_SAMPLE_8 : AL_SAMPLE_16); [...109 lines suppressed...] return (float) samples_remain / (float) rate ; } @@ -742,11 +740,14 @@ float slDSP::secondsUsed () { int samples_used; - + if ( error ) return 0.0f ; - samples_used = alGetFilled(port); + samples_used = ALgetfilled(port); + + if ( stereo ) samples_used /= 2 ; + if ( bps == 16 ) samples_used /= 2 ; return (float) samples_used / (float) rate ; } |
From: Sebastian U. <ud...@us...> - 2002-07-01 01:21:07
|
Update of /cvsroot/plib/plib/demos/p-guide In directory usw-pr-cvs1:/tmp/cvs-serv21781 Modified Files: configure.in Log Message: Updates for OS-X / IRIX, cleanups, improvements Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/demos/p-guide/configure.in,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- configure.in 12 Jun 2002 11:27:22 -0000 1.2 +++ configure.in 1 Jul 2002 01:21:04 -0000 1.3 @@ -14,9 +14,47 @@ AC_LANG_CPLUSPLUS +dnl Command line arguments. + +AC_ARG_WITH(GL, +AC_HELP_STRING([--with-GL=DIR], [set the prefix directory where GL resides]), +GL_PREFIX=$withval, GL_PREFIX=auto) + +if test "x$GL_PREFIX" != "xauto"; then + LDFLAGS="$LDFLAGS -L$GL_PREFIX/lib" [...94 lines suppressed...] +fi -dnl Checks for header files. +dnl Check PLIB library +AC_CHECK_LIB(plibul, ulInit, true, +AC_MSG_ERROR([there seems to be a problem with the PLIB libraries])) -AC_HEADER_STDC +dnl Check SGI audio library +AC_CHECK_LIB(audio, ALopenport) -AC_CHECK_HEADERS(GL/gl.h GL/glut.h) -AC_CHECK_HEADER(windows.h, AC_DEFINE(WIN32)) +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-07-01 01:14:38
|
Update of /cvsroot/plib/plib/demos/exposer In directory usw-pr-cvs1:/tmp/cvs-serv19113/demos/exposer Modified Files: configure.in Log Message: Don't need the check for socklen_t here Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/demos/exposer/configure.in,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- configure.in 1 Jul 2002 01:09:28 -0000 1.10 +++ configure.in 1 Jul 2002 01:14:35 -0000 1.11 @@ -140,26 +140,6 @@ LIBS="$LIBS -laudio" fi -dnl Checks for typedefs, structures, and compiler characteristics. - -dnl check for socklen_t (in Unix98) -AC_MSG_CHECKING(for socklen_t) -AC_TRY_COMPILE([ -#include <sys/types.h> -#include <sys/socket.h> -socklen_t x; -],[],[ -AC_MSG_RESULT(yes)],[ -AC_TRY_COMPILE([ -#include <sys/types.h> -#include <sys/socket.h> -int accept (int, struct sockaddr *, size_t *); -],[],[ -AC_MSG_RESULT(size_t) -AC_DEFINE(socklen_t,size_t)], [ -AC_MSG_RESULT(int) -AC_DEFINE(socklen_t,int)])]) - AC_OUTPUT( Makefile \ data/Makefile \ doc/Makefile \ |
From: Sebastian U. <ud...@us...> - 2002-07-01 01:14:38
|
Update of /cvsroot/plib/plib/demos/ttt3d In directory usw-pr-cvs1:/tmp/cvs-serv19113/demos/ttt3d Modified Files: configure.in Log Message: Don't need the check for socklen_t here Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/demos/ttt3d/configure.in,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- configure.in 1 Jul 2002 01:09:28 -0000 1.8 +++ configure.in 1 Jul 2002 01:14:35 -0000 1.9 @@ -140,26 +140,6 @@ LIBS="$LIBS -laudio" fi -dnl Checks for typedefs, structures, and compiler characteristics. - -dnl check for socklen_t (in Unix98) -AC_MSG_CHECKING(for socklen_t) -AC_TRY_COMPILE([ -#include <sys/types.h> -#include <sys/socket.h> -socklen_t x; -],[],[ -AC_MSG_RESULT(yes)],[ -AC_TRY_COMPILE([ -#include <sys/types.h> -#include <sys/socket.h> -int accept (int, struct sockaddr *, size_t *); -],[],[ -AC_MSG_RESULT(size_t) -AC_DEFINE(socklen_t,size_t)], [ -AC_MSG_RESULT(int) -AC_DEFINE(socklen_t,int)])]) - MY_EXPAND_DIR(ttt3d, "$datadir/games/$PACKAGE") AC_DEFINE_UNQUOTED(TTT3D_DATADIR, "$ttt3d_datadir") |
From: Sebastian U. <ud...@us...> - 2002-07-01 01:14:38
|
Update of /cvsroot/plib/plib/examples In directory usw-pr-cvs1:/tmp/cvs-serv19113/examples Modified Files: configure.in Log Message: Don't need the check for socklen_t here Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/examples/configure.in,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- configure.in 1 Jul 2002 01:05:27 -0000 1.22 +++ configure.in 1 Jul 2002 01:14:35 -0000 1.23 @@ -138,26 +138,6 @@ LIBS="$LIBS -laudio" fi -dnl Checks for typedefs, structures, and compiler characteristics. - -dnl check for socklen_t (in Unix98) -AC_MSG_CHECKING(for socklen_t) -AC_TRY_COMPILE([ -#include <sys/types.h> -#include <sys/socket.h> -socklen_t x; -],[],[ -AC_MSG_RESULT(yes)],[ -AC_TRY_COMPILE([ -#include <sys/types.h> -#include <sys/socket.h> -int accept (int, struct sockaddr *, size_t *); -],[],[ -AC_MSG_RESULT(size_t) -AC_DEFINE(socklen_t,size_t)], [ -AC_MSG_RESULT(int) -AC_DEFINE(socklen_t,int)])]) - AC_OUTPUT( \ Makefile \ src/Makefile \ |
From: Sebastian U. <ud...@us...> - 2002-07-01 01:14:37
|
Update of /cvsroot/plib/plib/tools In directory usw-pr-cvs1:/tmp/cvs-serv19113/tools Modified Files: configure.in Log Message: Don't need the check for socklen_t here Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/tools/configure.in,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- configure.in 1 Jul 2002 01:05:27 -0000 1.4 +++ configure.in 1 Jul 2002 01:14:35 -0000 1.5 @@ -132,26 +132,6 @@ LIBS="$LIBS -laudio" fi -dnl Checks for typedefs, structures, and compiler characteristics. - -dnl check for socklen_t (in Unix98) -AC_MSG_CHECKING(for socklen_t) -AC_TRY_COMPILE([ -#include <sys/types.h> -#include <sys/socket.h> -socklen_t x; -],[],[ -AC_MSG_RESULT(yes)],[ -AC_TRY_COMPILE([ -#include <sys/types.h> -#include <sys/socket.h> -int accept (int, struct sockaddr *, size_t *); -],[],[ -AC_MSG_RESULT(size_t) -AC_DEFINE(socklen_t,size_t)], [ -AC_MSG_RESULT(int) -AC_DEFINE(socklen_t,int)])]) - AC_OUTPUT( \ Makefile \ src/Makefile \ |
From: Sebastian U. <ud...@us...> - 2002-07-01 01:09:31
|
Update of /cvsroot/plib/plib/demos/exposer In directory usw-pr-cvs1:/tmp/cvs-serv15841/exposer Modified Files: configure.in Log Message: Fix to previous change Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/demos/exposer/configure.in,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- configure.in 1 Jul 2002 01:05:27 -0000 1.9 +++ configure.in 1 Jul 2002 01:09:28 -0000 1.10 @@ -62,7 +62,7 @@ dnl CygWin under Windoze. dnl OpenGL libraries - LIBS="$LIBS -lwinmm -lglut32 -lglu32 -lopengl32 -luser32 -lgdi32" + LIBS="$plib_suffix $LIBS -lwinmm -lglut32 -lglu32 -lopengl32 -luser32 -lgdi32" ;; *) dnl Check for X11 |
From: Sebastian U. <ud...@us...> - 2002-07-01 01:09:31
|
Update of /cvsroot/plib/plib/demos/ttt3d In directory usw-pr-cvs1:/tmp/cvs-serv15841/ttt3d Modified Files: configure.in Log Message: Fix to previous change Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/demos/ttt3d/configure.in,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- configure.in 1 Jul 2002 01:05:27 -0000 1.7 +++ configure.in 1 Jul 2002 01:09:28 -0000 1.8 @@ -62,7 +62,7 @@ dnl CygWin under Windoze. dnl OpenGL libraries - LIBS="$LIBS -lwinmm -lglut32 -lglu32 -lopengl32 -luser32 -lgdi32" + LIBS="$plib_suffix $LIBS -lwinmm -lglut32 -lglu32 -lopengl32 -luser32 -lgdi32" ;; *) dnl Check for X11 |
From: Sebastian U. <ud...@us...> - 2002-07-01 01:05:30
|
Update of /cvsroot/plib/plib/demos/exposer In directory usw-pr-cvs1:/tmp/cvs-serv13117/demos/exposer Modified Files: configure.in Log Message: Don't check for ranlib Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/demos/exposer/configure.in,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- configure.in 1 Jul 2002 00:52:12 -0000 1.8 +++ configure.in 1 Jul 2002 01:05:27 -0000 1.9 @@ -9,7 +9,6 @@ AC_PROG_CXX AC_PROG_CXXCPP AC_PROG_INSTALL -AC_PROG_RANLIB plib_suffix="-lplibsl -lplibssgaux -lplibssg -lplibpu -lplibfnt -lplibsg -lplibul" |
From: Sebastian U. <ud...@us...> - 2002-07-01 01:05:30
|
Update of /cvsroot/plib/plib/demos/ttt3d In directory usw-pr-cvs1:/tmp/cvs-serv13117/demos/ttt3d Modified Files: configure.in Log Message: Don't check for ranlib Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/demos/ttt3d/configure.in,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- configure.in 1 Jul 2002 00:59:25 -0000 1.6 +++ configure.in 1 Jul 2002 01:05:27 -0000 1.7 @@ -9,7 +9,6 @@ AC_PROG_CXX AC_PROG_CXXCPP AC_PROG_INSTALL -AC_PROG_RANLIB plib_suffix="-lplibsl -lplibssgaux -lplibssg -lplibpu -lplibfnt -lplibsg -lplibul" |
From: Sebastian U. <ud...@us...> - 2002-07-01 01:05:30
|
Update of /cvsroot/plib/plib/examples In directory usw-pr-cvs1:/tmp/cvs-serv13117/examples Modified Files: configure.in Log Message: Don't check for ranlib Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/examples/configure.in,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- configure.in 1 Jul 2002 00:32:22 -0000 1.21 +++ configure.in 1 Jul 2002 01:05:27 -0000 1.22 @@ -9,7 +9,6 @@ AC_PROG_CXX AC_PROG_CXXCPP AC_PROG_INSTALL -AC_PROG_RANLIB AC_LANG_CPLUSPLUS |
From: Sebastian U. <ud...@us...> - 2002-07-01 01:05:29
|
Update of /cvsroot/plib/plib/tools In directory usw-pr-cvs1:/tmp/cvs-serv13117/tools Modified Files: configure.in Log Message: Don't check for ranlib Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/tools/configure.in,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- configure.in 1 Jul 2002 00:32:22 -0000 1.3 +++ configure.in 1 Jul 2002 01:05:27 -0000 1.4 @@ -9,7 +9,6 @@ AC_PROG_CXX AC_PROG_CXXCPP AC_PROG_INSTALL -AC_PROG_RANLIB AC_LANG_CPLUSPLUS |
From: Sebastian U. <ud...@us...> - 2002-07-01 00:59:28
|
Update of /cvsroot/plib/plib/demos/ttt3d In directory usw-pr-cvs1:/tmp/cvs-serv10219 Modified Files: configure.in Log Message: Updates for OS-X / IRIX, cleanups, improvements Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/demos/ttt3d/configure.in,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- configure.in 12 Jun 2002 11:27:22 -0000 1.5 +++ configure.in 1 Jul 2002 00:59:25 -0000 1.6 @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(src/ttt3d.cxx) -AM_INIT_AUTOMAKE(ttt3d, 0.0.0) +AM_INIT_AUTOMAKE(ttt3d, 0.0.1) dnl Checks for programs. AC_PROG_CC @@ -15,9 +15,47 @@ AC_LANG_CPLUSPLUS [...149 lines suppressed...] +dnl check for socklen_t (in Unix98) +AC_MSG_CHECKING(for socklen_t) +AC_TRY_COMPILE([ +#include <sys/types.h> +#include <sys/socket.h> +socklen_t x; +],[],[ +AC_MSG_RESULT(yes)],[ +AC_TRY_COMPILE([ +#include <sys/types.h> +#include <sys/socket.h> +int accept (int, struct sockaddr *, size_t *); +],[],[ +AC_MSG_RESULT(size_t) +AC_DEFINE(socklen_t,size_t)], [ +AC_MSG_RESULT(int) +AC_DEFINE(socklen_t,int)])]) MY_EXPAND_DIR(ttt3d, "$datadir/games/$PACKAGE") AC_DEFINE_UNQUOTED(TTT3D_DATADIR, "$ttt3d_datadir") |
From: Sebastian U. <ud...@us...> - 2002-07-01 00:52:15
|
Update of /cvsroot/plib/plib/demos/exposer In directory usw-pr-cvs1:/tmp/cvs-serv7520 Modified Files: configure.in Log Message: Updates for OS-X / IRIX, cleanups, improvements Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/demos/exposer/configure.in,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- configure.in 12 Jun 2002 11:27:22 -0000 1.7 +++ configure.in 1 Jul 2002 00:52:12 -0000 1.8 @@ -15,9 +15,47 @@ AC_LANG_CPLUSPLUS +dnl Command line arguments. + +AC_ARG_WITH(GL, +AC_HELP_STRING([--with-GL=DIR], [set the prefix directory where GL resides]), +GL_PREFIX=$withval, GL_PREFIX=auto) + +if test "x$GL_PREFIX" != "xauto"; then + LDFLAGS="$LDFLAGS -L$GL_PREFIX/lib" [...140 lines suppressed...] +dnl check for socklen_t (in Unix98) +AC_MSG_CHECKING(for socklen_t) +AC_TRY_COMPILE([ +#include <sys/types.h> +#include <sys/socket.h> +socklen_t x; +],[],[ +AC_MSG_RESULT(yes)],[ +AC_TRY_COMPILE([ +#include <sys/types.h> +#include <sys/socket.h> +int accept (int, struct sockaddr *, size_t *); +],[],[ +AC_MSG_RESULT(size_t) +AC_DEFINE(socklen_t,size_t)], [ +AC_MSG_RESULT(int) +AC_DEFINE(socklen_t,int)])]) AC_OUTPUT( Makefile \ data/Makefile \ |
From: Sebastian U. <ud...@us...> - 2002-07-01 00:32:25
|
Update of /cvsroot/plib/plib/tools In directory usw-pr-cvs1:/tmp/cvs-serv412/tools Modified Files: configure.in Log Message: Updates for OS-X / IRIX, cleanups, improvements Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/tools/configure.in,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- configure.in 11 Jan 2001 16:21:04 -0000 1.2 +++ configure.in 1 Jul 2002 00:32:22 -0000 1.3 @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(src/af2rgb/af2rgb.cxx) -AM_INIT_AUTOMAKE(plib_tools, 1.0.0) +AM_INIT_AUTOMAKE(plib_tools, 1.5.2) dnl Checks for programs. AC_PROG_CC @@ -11,57 +11,75 @@ AC_PROG_INSTALL AC_PROG_RANLIB [...202 lines suppressed...] +dnl check for socklen_t (in Unix98) +AC_MSG_CHECKING(for socklen_t) +AC_TRY_COMPILE([ +#include <sys/types.h> +#include <sys/socket.h> +socklen_t x; +],[],[ +AC_MSG_RESULT(yes)],[ +AC_TRY_COMPILE([ +#include <sys/types.h> +#include <sys/socket.h> +int accept (int, struct sockaddr *, size_t *); +],[],[ +AC_MSG_RESULT(size_t) +AC_DEFINE(socklen_t,size_t)], [ +AC_MSG_RESULT(int) +AC_DEFINE(socklen_t,int)])]) AC_OUTPUT( \ Makefile \ |
From: Sebastian U. <ud...@us...> - 2002-07-01 00:32:25
|
Update of /cvsroot/plib/plib/examples In directory usw-pr-cvs1:/tmp/cvs-serv412/examples Modified Files: configure.in Log Message: Updates for OS-X / IRIX, cleanups, improvements Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/examples/configure.in,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- configure.in 12 Jun 2002 11:27:22 -0000 1.20 +++ configure.in 1 Jul 2002 00:32:22 -0000 1.21 @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(src/js/js_demo.cxx) -AM_INIT_AUTOMAKE(plib_examples, 1.4.1) +AM_INIT_AUTOMAKE(plib_examples, 1.5.2) dnl Checks for programs. AC_PROG_CC @@ -11,13 +11,49 @@ AC_PROG_INSTALL AC_PROG_RANLIB [...157 lines suppressed...] ],[],[ -AC_MSG_RESULT(size_t) +AC_MSG_RESULT(size_t) AC_DEFINE(socklen_t,size_t)], [ -AC_MSG_RESULT(int) +AC_MSG_RESULT(int) AC_DEFINE(socklen_t,int)])]) AC_OUTPUT( \ @@ -153,8 +177,7 @@ src/fnt/Makefile \ src/net/Makefile \ src/net/client_server/Makefile \ - src/net/http_get/Makefile \ - src/net/net_echo/Makefile \ + src/net/http_get/Makefile \ + src/net/net_echo/Makefile \ src/util/Makefile ) - |