Changeset 1326
- Timestamp:
- Nov 10, 2006, 3:30:22 PM (16 years ago)
- Location:
- toilet/trunk
- Files:
-
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
toilet/trunk/configure.ac
r1325 r1326 78 78 fonts/Makefile 79 79 doc/Makefile 80 doc/toilet.1 80 81 ]) 81 82 -
toilet/trunk/doc/Makefile.am
r1323 r1326 1 1 # $Id: Makefile.am 871 2006-09-25 15:58:33Z sam $ 2 2 3 EXTRA_DIST = $(man_MANS)3 EXTRA_DIST = toilet.1.in 4 4 5 5 man_MANS = toilet.1 -
toilet/trunk/doc/toilet.1.in
r1324 r1326 56 56 .B .tlf 57 57 files stored in the 58 .B /usr/share/figlet58 .B @datarootdir@/figlet 59 59 directory. There is also a special built-in font called 60 60 .I term … … 64 64 Specify the directory in which to look for fonts. The default value is set 65 65 at build time and usually defaults to 66 .B /usr/share/figlet.66 .B @datarootdir@/figlet. 67 67 .TP 68 68 .B \-w, \-\-width <width> -
toilet/trunk/src/Makefile.am
r1321 r1326 8 8 export.c export.h \ 9 9 term.c figlet.c 10 toilet_CPPFLAGS = -DFONTDIR=\"$(datadir)/figlet\" 10 11 toilet_CFLAGS = `pkg-config --cflags cucul` 11 12 toilet_LDFLAGS = `pkg-config --libs cucul` @GETOPT_LIBS@ @ZLIB_LIBS@ -
toilet/trunk/src/main.c
r1321 r1326 51 51 cx->export = "utf8"; 52 52 cx->font = "smblock"; 53 cx->dir = "/usr/share/figlet/";53 cx->dir = FONTDIR; 54 54 55 55 cx->term_width = 80;
Note: See TracChangeset
for help on using the changeset viewer.