-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
200 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#! /bin/sh | ||
# Guess values for system-dependent variables and create Makefiles. | ||
# Generated by GNU Autoconf 2.71 for pdfview 0.1.0. | ||
# Generated by GNU Autoconf 2.71 for pdfview 0.3.0. | ||
# | ||
# Report bugs to <[email protected]>. | ||
# | ||
|
@@ -610,8 +610,8 @@ MAKEFLAGS= | |
# Identity of this package. | ||
PACKAGE_NAME='pdfview' | ||
PACKAGE_TARNAME='pdfview' | ||
PACKAGE_VERSION='0.1.0' | ||
PACKAGE_STRING='pdfview 0.1.0' | ||
PACKAGE_VERSION='0.3.0' | ||
PACKAGE_STRING='pdfview 0.3.0' | ||
PACKAGE_BUGREPORT='[email protected]' | ||
PACKAGE_URL='' | ||
|
||
|
@@ -1228,7 +1228,7 @@ if test "$ac_init_help" = "long"; then | |
# Omit some internal or obsolete options to make the list less imposing. | ||
# This message is too long to be a string in the A/UX 3.1 sh. | ||
cat <<_ACEOF | ||
\`configure' configures pdfview 0.1.0 to adapt to many kinds of systems. | ||
\`configure' configures pdfview 0.3.0 to adapt to many kinds of systems. | ||
Usage: $0 [OPTION]... [VAR=VALUE]... | ||
|
@@ -1290,7 +1290,7 @@ fi | |
|
||
if test -n "$ac_init_help"; then | ||
case $ac_init_help in | ||
short | recursive ) echo "Configuration of pdfview 0.1.0:";; | ||
short | recursive ) echo "Configuration of pdfview 0.3.0:";; | ||
esac | ||
cat <<\_ACEOF | ||
|
@@ -1370,7 +1370,7 @@ fi | |
test -n "$ac_init_help" && exit $ac_status | ||
if $ac_init_version; then | ||
cat <<\_ACEOF | ||
pdfview configure 0.1.0 | ||
pdfview configure 0.3.0 | ||
generated by GNU Autoconf 2.71 | ||
Copyright (C) 2021 Free Software Foundation, Inc. | ||
|
@@ -1493,7 +1493,7 @@ cat >config.log <<_ACEOF | |
This file contains any messages produced by compilers while | ||
running configure, to aid debugging if configure makes a mistake. | ||
It was created by pdfview $as_me 0.1.0, which was | ||
It was created by pdfview $as_me 0.3.0, which was | ||
generated by GNU Autoconf 2.71. Invocation command line was | ||
$ $0$ac_configure_args_raw | ||
|
@@ -6733,7 +6733,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 | |
# report actual input values of CONFIG_FILES etc. instead of their | ||
# values after options handling. | ||
ac_log=" | ||
This file was extended by pdfview $as_me 0.1.0, which was | ||
This file was extended by pdfview $as_me 0.3.0, which was | ||
generated by GNU Autoconf 2.71. Invocation command line was | ||
CONFIG_FILES = $CONFIG_FILES | ||
|
@@ -6788,7 +6788,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\ | |
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 | ||
ac_cs_config='$ac_cs_config_escaped' | ||
ac_cs_version="\\ | ||
pdfview config.status 0.1.0 | ||
pdfview config.status 0.3.0 | ||
configured by $0, generated by GNU Autoconf 2.71, | ||
with options \\"\$ac_cs_config\\" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
dnl -*- Autoconf -*- | ||
dnl Process this file with autoconf to produce a configure script. | ||
|
||
AC_INIT([pdfview],[0.1.0],[[email protected]]) | ||
AC_INIT([pdfview],[0.3.0],[[email protected]]) | ||
|
||
# We want to turn on warnings if we are using gcc and the user did | ||
# not specify CFLAGS. The autoconf check for the C compiler sets the | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,18 +2,27 @@ | |
.SH NAME | ||
pdfview \- a simple utility for viewing the text in PDFs | ||
.SH SYNOPSIS | ||
pdfview [\-q] [\-n] [files] | ||
pdfview [\-q] [\-n] [\-e expression [\-i]] [files] | ||
.SH DESCRIPTION | ||
pdfview is a simple utility for viewing the text in a PDF. | ||
.TP | ||
.B \-e expression | ||
Enables expression matching - only lines matching the specified | ||
expression will be printed. | ||
.TP | ||
.B \-i | ||
Enables case insensitive matching. If an expression is not | ||
specified, this option is ignored. | ||
.TP | ||
.B \-q | ||
Enables quiet mode \- pdfview will not print out error messages. | ||
Enables quiet mode \- error messages will not be printed. | ||
.TP | ||
.B \-n | ||
Enables page numbering \- pdfview will prefix each line of a | ||
given pdf with the filename and page number | ||
Enables page numbering \- each line of a given pdf will be | ||
prefixed with the filename and page number. | ||
.SH PLATFORMS | ||
pdfview has been tested on MacOSX 11.x (BigSur) on M1. It | ||
should work on MacOSX 10.4 (Tiger) and newer. | ||
should work on MacOSX 10.4 (Tiger) and newer. Expression | ||
matching should be available on MacOSX 10.7 (Lion) and newer. | ||
.SH HISTORY | ||
pdfview was written by Sriranga Veeraraghavan <[email protected]>. | ||
pdfview was written by Sriranga Veeraraghavan. |
Oops, something went wrong.