Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(6) |
Aug
(31) |
Sep
(34) |
Oct
(74) |
Nov
(88) |
Dec
(66) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(11) |
Feb
(21) |
Mar
(26) |
Apr
(1) |
May
(9) |
Jun
(2) |
Jul
|
Aug
(8) |
Sep
(8) |
Oct
(4) |
Nov
|
Dec
(8) |
2005 |
Jan
(34) |
Feb
(5) |
Mar
(1) |
Apr
(20) |
May
(34) |
Jun
(24) |
Jul
(28) |
Aug
(4) |
Sep
(3) |
Oct
(5) |
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
(15) |
Oct
|
Nov
(1) |
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(16) |
Oct
(5) |
Nov
(3) |
Dec
(4) |
2008 |
Jan
(1) |
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
(19) |
Dec
|
2009 |
Jan
|
Feb
(26) |
Mar
(20) |
Apr
(4) |
May
(11) |
Jun
(2) |
Jul
(4) |
Aug
(1) |
Sep
|
Oct
|
Nov
(21) |
Dec
(13) |
2010 |
Jan
(8) |
Feb
(1) |
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
2011 |
Jan
(12) |
Feb
|
Mar
(24) |
Apr
|
May
(6) |
Jun
(4) |
Jul
|
Aug
|
Sep
(15) |
Oct
|
Nov
(5) |
Dec
(16) |
2012 |
Jan
(64) |
Feb
(44) |
Mar
(137) |
Apr
(48) |
May
(53) |
Jun
(21) |
Jul
(34) |
Aug
(8) |
Sep
(2) |
Oct
|
Nov
(97) |
Dec
(3) |
2013 |
Jan
(10) |
Feb
(32) |
Mar
(34) |
Apr
(48) |
May
(7) |
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
2014 |
Jan
(48) |
Feb
|
Mar
(2) |
Apr
(1) |
May
(5) |
Jun
(9) |
Jul
|
Aug
(10) |
Sep
(1) |
Oct
(19) |
Nov
(4) |
Dec
(3) |
2015 |
Jan
(6) |
Feb
(7) |
Mar
(7) |
Apr
|
May
|
Jun
(10) |
Jul
(3) |
Aug
|
Sep
|
Oct
(3) |
Nov
|
Dec
(6) |
2016 |
Jan
(11) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
(7) |
May
(4) |
Jun
(23) |
Jul
(8) |
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
(4) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
|
1
|
2
(7) |
3
|
4
|
5
(6) |
6
(4) |
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
(1) |
18
|
19
|
20
(1) |
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
|
|
|
|
|
|
From: <spanne@us...> - 2008-11-06 19:17:18
|
Revision: 759 http://freeglut.svn.sourceforge.net/freeglut/?rev=759&view=rev Author: spanne Date: 2008-11-06 19:17:13 +0000 (Thu, 06 Nov 2008) Log Message: ----------- Ooops, forgot one file in the previous commit (fix for "--without-x"). Modified Paths: -------------- trunk/freeglut/freeglut/src/freeglut_main.c Modified: trunk/freeglut/freeglut/src/freeglut_main.c =================================================================== --- trunk/freeglut/freeglut/src/freeglut_main.c 2008-11-06 19:16:33 UTC (rev 758) +++ trunk/freeglut/freeglut/src/freeglut_main.c 2008-11-06 19:17:13 UTC (rev 759) @@ -308,7 +308,7 @@ * 32-bit, where the GLUT API return value is also overflowed. */ unsigned long fgSystemTime(void) { -#if TARGET_HOST_POSIX_X11 +#if HAVE_GETTIMEOFDAY struct timeval now; gettimeofday( &now, NULL ); return now.tv_usec/1000 + now.tv_sec*1000; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <spanne@us...> - 2008-11-06 19:16:44
|
Revision: 758 http://freeglut.svn.sourceforge.net/freeglut/?rev=758&view=rev Author: spanne Date: 2008-11-06 19:16:33 +0000 (Thu, 06 Nov 2008) Log Message: ----------- Use autoconf to detect gettimeofday instead of broken #ifdef. Note: freeglut compiles under Cygwin now, even when "--without-x" is used for configuration. Modified Paths: -------------- trunk/freeglut/freeglut/configure.ac Modified: trunk/freeglut/freeglut/configure.ac =================================================================== --- trunk/freeglut/freeglut/configure.ac 2008-11-06 18:57:44 UTC (rev 757) +++ trunk/freeglut/freeglut/configure.ac 2008-11-06 19:16:33 UTC (rev 758) @@ -57,6 +57,7 @@ AC_FUNC_VPRINTF AC_CHECK_LIBM AC_SUBST([LIBM]) +AC_CHECK_FUNCS([gettimeofday]) # Build time configuration. AC_ARG_ENABLE([replace-glut], This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <spanne@us...> - 2008-11-06 18:57:49
|
Revision: 757 http://freeglut.svn.sourceforge.net/freeglut/?rev=757&view=rev Author: spanne Date: 2008-11-06 18:57:44 +0000 (Thu, 06 Nov 2008) Log Message: ----------- We need to link against winmm under Cygwin when --without-x is used to get timeBeginPeriod, timeEndPeriod, joyGetPosEx and joyGetDevCaps. Modified Paths: -------------- trunk/freeglut/freeglut/configure.ac Modified: trunk/freeglut/freeglut/configure.ac =================================================================== --- trunk/freeglut/freeglut/configure.ac 2008-11-06 18:29:35 UTC (rev 756) +++ trunk/freeglut/freeglut/configure.ac 2008-11-06 18:57:44 UTC (rev 757) @@ -22,7 +22,7 @@ AC_PATH_XTRA if test x"$no_x" = xyes; then - GL_LIBS="-lopengl32 -lglu32 -lgdi32" + GL_LIBS="-lopengl32 -lglu32 -lgdi32 -lwinmm" LIBXXF86VM= LIBXI= VERSION_INFO= This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <spanne@us...> - 2008-11-06 18:29:42
|
Revision: 756 http://freeglut.svn.sourceforge.net/freeglut/?rev=756&view=rev Author: spanne Date: 2008-11-06 18:29:35 +0000 (Thu, 06 Nov 2008) Log Message: ----------- Fixed first parameter of CreateWindow call, used for multisampling on Windows. It compiles, but it is otherwise untested. Modified Paths: -------------- trunk/freeglut/freeglut/src/freeglut_window.c Modified: trunk/freeglut/freeglut/src/freeglut_window.c =================================================================== --- trunk/freeglut/freeglut/src/freeglut_window.c 2008-11-05 18:46:20 UTC (rev 755) +++ trunk/freeglut/freeglut/src/freeglut_window.c 2008-11-06 18:29:35 UTC (rev 756) @@ -376,17 +376,16 @@ HWND hWnd; HDC hDC, hDC_before=wglGetCurrentDC(); WNDCLASS wndCls; - ATOM atom; /* create a dummy window */ ZeroMemory(&wndCls, sizeof(wndCls)); - wndCls.lpfnWndProc = DefWindowProc; - wndCls.hInstance = fgDisplay.Instance; - wndCls.style = CS_OWNDC | CS_HREDRAW | CS_VREDRAW; - wndCls.lpszClassName = _T("FREEGLUT_dummy"); - atom = RegisterClass( &wndCls ); + wndCls.lpfnWndProc = DefWindowProc; + wndCls.hInstance = fgDisplay.Instance; + wndCls.style = CS_OWNDC | CS_HREDRAW | CS_VREDRAW; + wndCls.lpszClassName = _T("FREEGLUT_dummy"); + RegisterClass( &wndCls ); - hWnd=CreateWindow((LPCSTR)atom, _T(""), WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_OVERLAPPEDWINDOW , 0,0,0,0, 0, 0, fgDisplay.Instance, 0 ); + hWnd=CreateWindow(_T("FREEGLUT_dummy"), _T(""), WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_OVERLAPPEDWINDOW , 0,0,0,0, 0, 0, fgDisplay.Instance, 0 ); hDC=GetDC(hWnd); SetPixelFormat( hDC, pixelformat, ppfd ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |