Next | Query returned 46 messages, browsing 21 to 30 | Previous

History of commit frequency

CVS Commit History:


   2012-02-08 01:19:42 by Steven Drake | Files touched by this commit (2)
Log message:
Comply the the C++ spec by making a variable that is assigned the result
of a strchr(const char *, int c) call a constant.

(i.e. use obache@ suggestion as a better way to fix the strchr problem.)
   2012-02-04 08:53:26 by Steven Drake | Files touched by this commit (2)
Log message:
Add a cast to a strrchr call.
   2012-02-04 08:51:28 by Steven Drake | Files touched by this commit (1)
Log message:
$NetBSD$

--- src/Util.cpp.orig	2005-04-17 10:58:09.000000000 +0000
+++ src/Util.cpp
@@ -288,7 +288,7 @@ Util :: fileAddDate ( const char * str )
     strftime( strdate, 128, "[%m-%d-%Y-%H-%M-%S]", localtime (&now));

     // search for the part before the extension of the file name
-    if ( !(last = strrchr( str, '.')) ) {
+    if ( !(last = (char *) strrchr( str, '.')) ) {
         last = (char *) str + strlen( str);
     }
   2011-06-19 06:50:09 by David A. Holland | Files touched by this commit (2)
Log message:
Don't build with -pedantic; it causes 32-bit builds to fail.
   2009-06-14 19:32:26 by Joerg Sonnenberger | Files touched by this commit (250)
Log message:
Remove @dirrm entries from PLISTs
   2008-08-02 19:43:57 by David A. Holland | Files touched by this commit (3)
Log message:
Fix broken amd64 build.
   2008-03-02 07:10:34 by Johnny C. Lam | Files touched by this commit (82)
Log message:
Mechanical changes to add full DESTDIR support to packages that install
their files via a custom do-install target.
   2007-12-02 14:04:16 by Thomas Klausner | Files touched by this commit (35)
Log message:
Update HOMEPAGES and MASTER_SITES; from Sergey Svishchev.
   2007-02-22 20:01:28 by Thomas Klausner | Files touched by this commit (134) | Package updated
Log message:
pkglint cleanup; update HOMEPAGE/MASTER_SITES.
   2007-01-07 13:25:55 by Thomas Klausner | Files touched by this commit (56)
Log message:
PKGREVISION bump for flac shlib major bump and corresponding ABI
depends bump.

Next | Query returned 46 messages, browsing 21 to 30 | Previous