Overview
| Comment: | Added a changelog to the build process. freecolor 0.8.6 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk | 0.8.6 |
| Files: | files | file ages | folders |
| SHA1: |
dbbc44698384fb348d6cd2be122a71dd |
| User & Date: | rkeene on 2005-10-18 15:03:32.000 |
| Other Links: | manifest | tags |
Context
|
2005-10-18
| ||
| 15:10 | Updated freecolor to work with libstatgrab 0.10.0 or greater. freecolor 0.8.7 check-in: 1022f63a36 user: rkeene tags: trunk, 0.8.7 | |
| 15:03 | Added a changelog to the build process. freecolor 0.8.6 check-in: dbbc446983 user: rkeene tags: trunk, 0.8.6 | |
|
2005-06-04
| ||
| 09:54 | Updated Makefile to create the `bindir' if it doesn't exist. freecolor 0.8.5 check-in: 2d4b9986fd user: rkeene tags: trunk, 0.8.5 | |
Changes
Modified freecolor.c
from [501fbe4673]
to [5a09c67ddb].
| ︙ | ︙ | |||
63 64 65 66 67 68 69 | #include <stdlib.h> #include <stdio.h> #ifndef NO_GETOPT #include <getopt.h> #endif #define BARLEN 35 #define HEADERLEN 14 | | | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
#include <stdlib.h>
#include <stdio.h>
#ifndef NO_GETOPT
#include <getopt.h>
#endif
#define BARLEN 35
#define HEADERLEN 14
#define VERSION "0.8.6"
extern char *optarg;
extern int optind, opterr, optopt;
void bargraph(float percent, float secondper, char marks[BARLEN+HEADERLEN],int usefull) {
char percentone[BARLEN], percenttwo[BARLEN], remain[BARLEN];
|
| ︙ | ︙ |
Modified makearch.info
from [5befe8aed6]
to [92ad0b566c].
| ︙ | ︙ | |||
13 14 15 16 17 18 19 |
# Space sperated list of documents, if they exist, they will be
# prefixed with the contents of the DOC_HDR file and substitution
# will occur:
# @@UTIL@@ becomes the utility name ${UTIL}
# @@VERS@@ becomes the utility version
# @@DATE@@ becomes the current date
| | | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# Space sperated list of documents, if they exist, they will be
# prefixed with the contents of the DOC_HDR file and substitution
# will occur:
# @@UTIL@@ becomes the utility name ${UTIL}
# @@VERS@@ becomes the utility version
# @@DATE@@ becomes the current date
DOCS="README ChangeLog"
DOC_HDR="HEADER"
# This script is executed immediately after copying the files
# to a temp directory to attempt to compile
BEFORE=""
# This script is executed immediately prior to creation of the
|
| ︙ | ︙ |