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.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
(17) |
Oct
(84) |
Nov
(25) |
Dec
(42) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(358) |
Feb
(256) |
Mar
(88) |
Apr
(55) |
May
(3) |
Jun
(4) |
Jul
(2) |
Aug
(2) |
Sep
(1) |
Oct
(14) |
Nov
(68) |
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
(3) |
Apr
(117) |
May
(101) |
Jun
(111) |
Jul
(67) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
31
(2) |
|
|
|
|
|
From: <rvirga@us...> - 2006-07-31 06:44:01
|
Revision: 776 Author: rvirga Date: 2006-07-30 23:43:56 -0700 (Sun, 30 Jul 2006) ViewCVS: http://svn.sourceforge.net/kboincspy/?rev=776&view=rev Log Message: ----------- simplified the autoconf/autoheader somewhat, since Autoconf does not use uppercase to identify itself anymore Modified Paths: -------------- trunk/kboincspy/admin/cvs.sh Modified: trunk/kboincspy/admin/cvs.sh =================================================================== --- trunk/kboincspy/admin/cvs.sh 2006-07-31 06:34:55 UTC (rev 775) +++ trunk/kboincspy/admin/cvs.sh 2006-07-31 06:43:56 UTC (rev 776) @@ -32,7 +32,7 @@ required_autoconf_version="2.53 or newer" AUTOCONF_VERSION=`$AUTOCONF --version | head -n 1` case $AUTOCONF_VERSION in - Autoconf*2.[5-9]* | autoconf*2.[5-9]* ) : ;; + Autoconf*2.5* | autoconf*2.[5-9]* ) : ;; "" ) echo "*** AUTOCONF NOT FOUND!." echo "*** KDE requires autoconf $required_autoconf_version" @@ -47,7 +47,7 @@ AUTOHEADER_VERSION=`$AUTOHEADER --version | head -n 1` case $AUTOHEADER_VERSION in - Autoconf*2.[5-9]* | autoheader*2.[5-9]* ) : ;; + Autoconf*2.5* | autoheader*2.[5-9]* ) : ;; "" ) echo "*** AUTOHEADER NOT FOUND!." echo "*** KDE requires autoheader $required_autoconf_version" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rvirga@us...> - 2006-07-31 06:35:01
|
Revision: 775 Author: rvirga Date: 2006-07-30 23:34:55 -0700 (Sun, 30 Jul 2006) ViewCVS: http://svn.sourceforge.net/kboincspy/?rev=775&view=rev Log Message: ----------- update the automake/autoheader check, to account for release 2.60 and beyond Modified Paths: -------------- trunk/kboincspy/admin/cvs.sh Modified: trunk/kboincspy/admin/cvs.sh =================================================================== --- trunk/kboincspy/admin/cvs.sh 2006-06-20 10:03:39 UTC (rev 774) +++ trunk/kboincspy/admin/cvs.sh 2006-07-31 06:34:55 UTC (rev 775) @@ -32,7 +32,7 @@ required_autoconf_version="2.53 or newer" AUTOCONF_VERSION=`$AUTOCONF --version | head -n 1` case $AUTOCONF_VERSION in - Autoconf*2.5* | autoconf*2.5* ) : ;; + Autoconf*2.[5-9]* | autoconf*2.[5-9]* ) : ;; "" ) echo "*** AUTOCONF NOT FOUND!." echo "*** KDE requires autoconf $required_autoconf_version" @@ -47,7 +47,7 @@ AUTOHEADER_VERSION=`$AUTOHEADER --version | head -n 1` case $AUTOHEADER_VERSION in - Autoconf*2.5* | autoheader*2.5* ) : ;; + Autoconf*2.[5-9]* | autoheader*2.[5-9]* ) : ;; "" ) echo "*** AUTOHEADER NOT FOUND!." echo "*** KDE requires autoheader $required_autoconf_version" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |