Minor updates.
This commit is contained in:
parent
d526c45a52
commit
986047af9b
@ -1,5 +1,10 @@
|
||||
# Change Log
|
||||
|
||||
## [0.36] - 2017-12-27
|
||||
### Minor updates, no significant code changes.
|
||||
- Minor changes to avoid a few compile warnings.
|
||||
- Updates to email address, URL, copyright notices.
|
||||
|
||||
## [0.35] - 2016-06-23
|
||||
### Added CHANGELOG.md
|
||||
|
||||
|
||||
7
INSTALL
7
INSTALL
@ -1,11 +1,10 @@
|
||||
tumble: build a PDF file from image files
|
||||
Copyright 2003 Eric Smith <eric@brouhaha.com>
|
||||
$Id: INSTALL,v 1.1 2003/03/16 07:37:16 eric Exp $
|
||||
Copyright 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
|
||||
Tumble requires libtiff, which in turn requires libjpeg and libz:
|
||||
Tumble requires libtiff, which in turn requires libjpeg and zlib:
|
||||
|
||||
http://www.libtiff.org/
|
||||
http://www.???.org */
|
||||
https://www.zlib.net/
|
||||
|
||||
Building Tumble requires GNU Make, GCC, Bison, and Flex, all of which are
|
||||
free software provided by the Free Software Foundation. These are provided
|
||||
|
||||
5
Makefile
5
Makefile
@ -1,7 +1,6 @@
|
||||
# tumble: build a PDF file from image files
|
||||
# Makefile
|
||||
# $Id: Makefile,v 1.41 2003/04/10 01:02:12 eric Exp $
|
||||
# Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
# Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License version 2 as
|
||||
@ -64,7 +63,7 @@ YFLAGS = -d -v
|
||||
# let me know why so I can improve this Makefile.
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
VERSION = 0.35
|
||||
VERSION = 0.36
|
||||
|
||||
PACKAGE = tumble
|
||||
|
||||
|
||||
3
README
3
README
@ -1,6 +1,5 @@
|
||||
tumble: build a PDF file from image files
|
||||
Copyright 2003 Eric Smith <eric@brouhaha.com>
|
||||
$Id: README,v 1.2 2003/03/19 22:54:07 eric Exp $
|
||||
Copyright 2003-2017 Eric Smith <spacewar@gmail.com>
|
||||
|
||||
Tumble is a utility to construct PDF files from one or more image
|
||||
files. Supported input image file formats are JPEG, and black and
|
||||
|
||||
3
bitblt.c
3
bitblt.c
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* bitblt routines
|
||||
* $Id: bitblt.c,v 1.17 2003/03/16 07:27:06 eric Exp $
|
||||
* Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
3
bitblt.h
3
bitblt.h
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* bitblt routines
|
||||
* $Id: bitblt.h,v 1.17 2003/03/13 00:57:05 eric Exp $
|
||||
* Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* G4 compression
|
||||
* $Id: bitblt_g4.c,v 1.14 2003/03/13 00:57:05 eric Exp $
|
||||
* Copyright 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* bitblt table generator
|
||||
* $Id: bitblt_table_gen.c,v 1.8 2003/08/18 01:59:41 eric Exp $
|
||||
* Copyright 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* G4 table generator
|
||||
* $Id: g4_table_gen.c,v 1.4 2003/03/13 00:57:05 eric Exp $
|
||||
* Copyright 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
@ -37,7 +36,7 @@ void emit_code (int indent, char *code, int last, bool comment, int cval)
|
||||
|
||||
printf ("%*s{ ", indent, "");
|
||||
|
||||
printf ("%d, ", strlen (code));
|
||||
printf ("%d, ", (int) strlen (code));
|
||||
|
||||
for (i = 0; i < strlen (code); i++)
|
||||
switch (code [i])
|
||||
|
||||
3
parser.y
3
parser.y
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* Parser
|
||||
* $Id: parser.y,v 1.18 2003/03/13 00:57:05 eric Exp $
|
||||
* Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
3
pdf.c
3
pdf.c
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* PDF routines
|
||||
* $Id: pdf.c,v 1.13 2003/03/14 00:57:40 eric Exp $
|
||||
* Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
3
pdf.h
3
pdf.h
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* PDF routines
|
||||
* $Id: pdf.h,v 1.13 2003/03/19 23:53:09 eric Exp $
|
||||
* Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* PDF routines
|
||||
* $Id: pdf_bookmark.c,v 1.6 2003/03/13 00:57:05 eric Exp $
|
||||
* Copyright 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
3
pdf_g4.c
3
pdf_g4.c
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* PDF routines
|
||||
* $Id: pdf_g4.c,v 1.16 2003/03/19 23:44:53 eric Exp $
|
||||
* Copyright 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* PDF routines
|
||||
* $Id: pdf_jpeg.c,v 1.5 2003/03/19 23:53:09 eric Exp $
|
||||
* Copyright 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* PDF routines
|
||||
* $Id: pdf_name_tree.c,v 1.10 2003/03/14 00:24:37 eric Exp $
|
||||
* Copyright 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* PDF routines
|
||||
* $Id: pdf_name_tree.h,v 1.4 2003/03/14 00:24:37 eric Exp $
|
||||
* Copyright 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* PDF routines
|
||||
* $Id: pdf_page_label.c,v 1.2 2003/03/14 00:56:38 eric Exp $
|
||||
* Copyright 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
* PDF routines
|
||||
* Copyright 2004 Daniel Gloeckner
|
||||
*
|
||||
* Derived from pdf_jpeg.c written 2003 by Eric Smith <eric at brouhaha.com>
|
||||
* Derived from pdf_jpeg.c written 2003 by Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* PDF routines
|
||||
* $Id: pdf_prim.c,v 1.13 2003/03/19 23:44:53 eric Exp $
|
||||
* Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* PDF routines
|
||||
* $Id: pdf_prim.h,v 1.10 2003/03/13 00:57:05 eric Exp $
|
||||
* Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* PDF routines
|
||||
* $Id: pdf_private.h,v 1.8 2003/03/14 00:24:37 eric Exp $
|
||||
* Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* PDF routines
|
||||
* $Id: pdf_text.c,v 1.2 2003/03/13 00:57:05 eric Exp $
|
||||
* Copyright 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* PDF routines
|
||||
* $Id: pdf_util.c,v 1.6 2003/03/13 00:57:05 eric Exp $
|
||||
* Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* PDF routines
|
||||
* $Id: pdf_util.h,v 1.6 2003/03/13 00:57:05 eric Exp $
|
||||
* Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* Lexical analyzer
|
||||
* $Id: scanner.l,v 1.18 2003/03/13 00:57:05 eric Exp $
|
||||
* Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* Semantic routines for spec file parser
|
||||
* $Id: semantics.c,v 1.23 2003/03/19 07:39:55 eric Exp $
|
||||
* Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
@ -480,7 +479,7 @@ void output_set_colormap (rgb_t black_color, rgb_t white_color)
|
||||
last_output_context->colormap.white_map = white_color;
|
||||
}
|
||||
|
||||
void yyerror (char *s)
|
||||
void yyerror (const char *s)
|
||||
{
|
||||
fprintf (stderr, "%d: %s\n", line, s);
|
||||
}
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* Semantic routines for spec file parser
|
||||
* $Id: semantics.h,v 1.15 2003/03/16 05:58:26 eric Exp $
|
||||
* Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
@ -116,7 +115,7 @@ extern int bookmark_level;
|
||||
|
||||
/* Bison interface */
|
||||
extern int yyparse (void);
|
||||
void yyerror (char *s);
|
||||
void yyerror (const char *s);
|
||||
|
||||
/* semantic routines for input statements */
|
||||
void input_push_context (void);
|
||||
|
||||
7
tumble.c
7
tumble.c
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* Main program
|
||||
* $Id: tumble.c,v 1.43 2003/04/10 01:02:12 eric Exp $
|
||||
* Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
@ -76,8 +75,8 @@ bool close_pdf_output_files (void);
|
||||
void usage (void)
|
||||
{
|
||||
fprintf (stderr, "\n");
|
||||
fprintf (stderr, "tumble version " MAKESTR(TUMBLE_VERSION) " - Copyright 2001-2003 Eric Smith <eric@brouhaha.com>\n");
|
||||
fprintf (stderr, "http://tumble.brouhaha.com/\n");
|
||||
fprintf (stderr, "tumble version " MAKESTR(TUMBLE_VERSION) " - Copyright 2001-2017 Eric Smith <spacewar@gmail.com>\n");
|
||||
fprintf (stderr, "https://github.com/brouhaha/tumble/\n");
|
||||
fprintf (stderr, "\n");
|
||||
fprintf (stderr, "usage:\n");
|
||||
#ifdef CTL_LANG
|
||||
|
||||
3
tumble.h
3
tumble.h
@ -1,8 +1,7 @@
|
||||
/*
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* $Id: tumble.h,v 1.17 2003/03/19 22:54:07 eric Exp $
|
||||
* Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* Input handler dispatch
|
||||
* $Id: tumble_input.c,v 1.4 2003/03/25 01:38:08 eric Exp $
|
||||
* Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -1,8 +1,7 @@
|
||||
/*
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* $Id: tumble_input.h,v 1.3 2003/04/10 00:47:30 eric Exp $
|
||||
* Copyright 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -1,8 +1,7 @@
|
||||
/*
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* $Id: tumble_jpeg.c,v 1.4 2003/03/20 06:55:27 eric Exp $
|
||||
* Copyright 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -1,8 +1,7 @@
|
||||
/*
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* $Id: tumble_pbm.c,v 1.1 2003/04/10 00:47:30 eric Exp $
|
||||
* Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
*
|
||||
* Copyright 2004 Daniel Gloeckner
|
||||
*
|
||||
* Derived from tumble_jpeg.c written 2003 by Eric Smith <eric at brouhaha.com>
|
||||
* Derived from tumble_jpeg.c written 2003 by Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
@ -1,8 +1,7 @@
|
||||
/*
|
||||
* tumble: build a PDF file from image files
|
||||
*
|
||||
* $Id: tumble_tiff.c,v 1.5 2003/03/20 07:22:23 eric Exp $
|
||||
* Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
|
||||
* Copyright 2001, 2002, 2003, 2017 Eric Smith <spacewar@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user