tnef 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/ext/tnef/ChangeLog +18 -0
- data/ext/tnef/Makefile.in +185 -132
- data/ext/tnef/NEWS +4 -1
- data/ext/tnef/aclocal.m4 +440 -266
- data/ext/tnef/autom4te.cache/output.0 +7001 -0
- data/ext/tnef/autom4te.cache/output.1 +7001 -0
- data/ext/tnef/autom4te.cache/requests +159 -0
- data/ext/tnef/autom4te.cache/traces.0 +545 -0
- data/ext/tnef/autom4te.cache/traces.1 +1036 -0
- data/ext/tnef/compile +347 -0
- data/ext/tnef/config.log +971 -0
- data/ext/tnef/configure +380 -194
- data/ext/tnef/configure.in +1 -1
- data/ext/tnef/contrib/evolution.helper +43 -0
- data/ext/tnef/contrib/evolution.helper.README +11 -0
- data/ext/tnef/contrib/tnef-alpine.perl +91 -0
- data/ext/tnef/contrib/tnef-alpine.perl.README +10 -0
- data/ext/tnef/doc/Makefile +659 -0
- data/ext/tnef/doc/Makefile.in +171 -135
- data/ext/tnef/doc/tnef.1 +185 -0
- data/ext/tnef/doc/tnef.1.in +34 -32
- data/ext/tnef/doc/www/Makefile +585 -0
- data/ext/tnef/doc/www/Makefile.in +158 -115
- data/ext/tnef/doc/www/cgi-bin/Makefile +405 -0
- data/ext/tnef/doc/www/cgi-bin/Makefile.in +83 -18
- data/ext/tnef/doc/www/htdocs/Makefile +405 -0
- data/ext/tnef/doc/www/htdocs/Makefile.in +83 -18
- data/ext/tnef/doc/www/htdocs/index.html +51 -0
- data/ext/tnef/doc/www/htdocs/style.css +13 -0
- data/ext/tnef/src/Makefile.in +193 -135
- data/ext/tnef/src/replace/Makefile.in +148 -55
- data/ext/tnef/src/tnef.c +10 -8
- data/ext/tnef/test-driver +127 -0
- data/ext/tnef/tests/Makefile.in +158 -115
- data/ext/tnef/tests/cmdline/Attic/mime-types.baseline +3 -0
- data/ext/tnef/tests/cmdline/Attic/mime-types.test +11 -0
- data/ext/tnef/tests/cmdline/Makefile.in +441 -110
- data/ext/tnef/tests/cmdline/body-test.html.baseline +95 -95
- data/ext/tnef/tests/cmdline/body.baseline +2 -2
- data/ext/tnef/tests/cmdline/interactive.baseline +0 -0
- data/ext/tnef/tests/cmdline/message.html.baseline +95 -95
- data/ext/tnef/tests/cmdline/version.baseline +2 -2
- data/ext/tnef/tests/files/Makefile.in +515 -205
- data/ext/tnef/tests/files/baselines/Makefile.in +83 -18
- data/ext/tnef/tests/files/datafiles/Makefile.in +83 -18
- data/lib/tnef/version.rb +1 -1
- metadata +34 -18
data/ext/tnef/doc/tnef.1.in
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
|
1
|
+
.\" -*- nroff -*-
|
2
|
+
.TH TNEF 1
|
2
3
|
.SH NAME
|
3
4
|
.nf \" fill off
|
4
5
|
tnef \- decode Microsoft's Transport Neutral Encapsulation Format
|
@@ -17,16 +18,16 @@ decodes e-mail attachments encoded in Microsoft's Transport Neutral
|
|
17
18
|
Encapsulation Format (hereafter, TNEF), which "wraps"
|
18
19
|
Microsoft e-mail attachments.
|
19
20
|
.PP
|
20
|
-
|
21
|
+
Unfortunately, these "wrapped" attachments are inaccessible to
|
21
22
|
any e-mail client that does not understand TNEF.
|
22
|
-
|
23
|
-
the
|
23
|
+
Fortunately, the
|
24
24
|
.B tnef
|
25
25
|
filter can be used by any MIME-aware client to unpack these attachments.
|
26
26
|
.SH OPTIONS
|
27
27
|
.TP
|
28
28
|
\fB\-f\fP FILE, \fB\-\-file\fP=FILE
|
29
|
-
use FILE as input ('-' denotes stdin).
|
29
|
+
use FILE as input ('-' denotes stdin).
|
30
|
+
When this option is omitted,
|
30
31
|
.B tnef
|
31
32
|
reads data from stdin.
|
32
33
|
.TP
|
@@ -55,27 +56,34 @@ For security reasons, paths to attached files are
|
|
55
56
|
ignored by default.
|
56
57
|
.TP
|
57
58
|
\fB\-\-save\-body FILE\fP
|
58
|
-
Save message body data found in the TNEF data.
|
59
|
+
Save message body data found in the TNEF data.
|
60
|
+
There can be up to
|
59
61
|
three message bodies in the file, plain text, HTML encoded, and RTF
|
60
|
-
encoded.
|
62
|
+
encoded.
|
63
|
+
Which are saved is specified by the \-\-body-pref option.
|
61
64
|
By default the message bodies are written to a file named message with
|
62
65
|
an extension based upon the type (txt, html, rtf).
|
63
66
|
.TP
|
64
67
|
\fB\-\-body\-pref PREF\fP
|
65
68
|
Specifies which of the possibly three message body formats will be
|
66
|
-
saved.
|
67
|
-
|
69
|
+
saved.
|
70
|
+
PREF can be up to three characters long and each character
|
71
|
+
must be one of 'r', 'h', or 't' specifying RTF, HTML or text.
|
72
|
+
The
|
68
73
|
order is the order that the data will be checked, the first type found
|
69
|
-
will be saved.
|
70
|
-
|
74
|
+
will be saved.
|
75
|
+
If PREF is the special value of 'all' then any and all
|
76
|
+
message body data found will be saved.
|
77
|
+
The default is 'rht'.
|
71
78
|
.TP
|
72
79
|
\fB\-\-save-rtf FILE\fP
|
73
|
-
DEPRECATED.
|
80
|
+
DEPRECATED.
|
81
|
+
Equivalent to \-\-save-body=FILE \-\-body-pref=r
|
74
82
|
.TP
|
75
|
-
\fB\-h, \-\-help\fP
|
83
|
+
\fB\-h, \-\-help\fP
|
76
84
|
show usage message.
|
77
85
|
.TP
|
78
|
-
\fB\-V, \-\-version\fP
|
86
|
+
\fB\-V, \-\-version\fP
|
79
87
|
display version and copyright.
|
80
88
|
.TP
|
81
89
|
\fB\-v, \-\-verbose\fP
|
@@ -88,12 +96,12 @@ The following example demonstrates typical
|
|
88
96
|
.B tnef
|
89
97
|
usage with a popular Unix mail client called "mutt".
|
90
98
|
.nf
|
91
|
-
.SS "Step 1
|
92
|
-
.fi
|
99
|
+
.SS "Step 1 \(em Configure ~/.mailcap"
|
93
100
|
Mutt can't use
|
94
101
|
.B tnef
|
95
102
|
for its intended purpose until an appropriate content type definition
|
96
|
-
exists in ~/.mailcap .
|
103
|
+
exists in ~/.mailcap .
|
104
|
+
Here's a sample definition:
|
97
105
|
.PP
|
98
106
|
.RS
|
99
107
|
application/ms\-tnef; tnef \-w %s
|
@@ -105,7 +113,7 @@ This mailcap entry says that whenever the MIME content type:
|
|
105
113
|
application/ms\-tnef
|
106
114
|
.RE
|
107
115
|
.PP
|
108
|
-
is encountered, use this command to decode it:
|
116
|
+
is encountered, use this command to decode it:
|
109
117
|
.PP
|
110
118
|
.RS
|
111
119
|
tnef \-w %s
|
@@ -116,16 +124,15 @@ The latter command string invokes
|
|
116
124
|
specifying both the \fB\-w\fP option and the attachment (created as a
|
117
125
|
temporary file) as command line arguments.
|
118
126
|
.nf
|
119
|
-
.SS "Step 2
|
120
|
-
.fi
|
127
|
+
.SS "Step 2 \(em Add The Filter To $PATH"
|
121
128
|
Mutt can't invoke
|
122
129
|
.B
|
123
130
|
tnef
|
124
131
|
if the filter isn't accessible via $PATH.
|
125
132
|
.nf
|
126
|
-
.SS "Step 3
|
127
|
-
.
|
128
|
-
|
133
|
+
.SS "Step 3 \(em Test Mutt"
|
134
|
+
Use mutt to read a message that includes a TNEF attachment.
|
135
|
+
Mutt will
|
129
136
|
note that an attachment of type "application/ms\-tnef is unsupported".
|
130
137
|
.PP
|
131
138
|
Press the "v" key to open mutt's "view attachment" menu.
|
@@ -140,20 +147,19 @@ using the command line syntax specified in ~/.mailcap (step 1).
|
|
140
147
|
then decodes all file(s) included in the TNEF attachment, prompting
|
141
148
|
for confirmation prior to creating an individual file (refer to
|
142
149
|
.B \-w
|
143
|
-
option above).
|
150
|
+
option above).
|
144
151
|
.B \-w
|
145
152
|
is useful here because it gives the end user a chance to
|
146
153
|
view the filename(s) included in the mail message.
|
147
154
|
.PP
|
148
155
|
Note that Mutt's attachment menu also supports a pipe option, which permits
|
149
|
-
the user to pipe attachments to an external filter (how convenient).
|
156
|
+
the user to pipe attachments to an external filter (how convenient).
|
150
157
|
So, to list the contents of a TNEF attachment prior to decoding it, press
|
151
158
|
the "|" key and enter this command:
|
152
159
|
.PP
|
153
160
|
.RS
|
154
161
|
tnef \-t
|
155
162
|
.RE
|
156
|
-
.PP
|
157
163
|
.SH "SEE ALSO"
|
158
164
|
.BR metamail (1),
|
159
165
|
.BR mailcap (4),
|
@@ -162,7 +168,7 @@ other email clients.
|
|
162
168
|
.SH "AUTHOR"
|
163
169
|
Mark Simpson.
|
164
170
|
.SH "REPORTING BUGS"
|
165
|
-
Report bugs to
|
171
|
+
Report bugs to
|
166
172
|
.nh \"no hyphenation
|
167
173
|
Mark Simpson <@PACKAGE_BUGREPORT@>
|
168
174
|
.hy 1 \"enable hyphenation
|
@@ -176,8 +182,4 @@ http://support.microsoft.com/support/kb/articles/Q136/2/04.asp
|
|
176
182
|
.fi
|
177
183
|
.PP
|
178
184
|
describes how to configure Microsoft email clients so that the TNEF format
|
179
|
-
is disabled when sending messages
|
180
|
-
to non-TNEF-compatible clients.
|
181
|
-
|
182
|
-
|
183
|
-
|
185
|
+
is disabled when sending messages to non-TNEF-compatible clients.
|
@@ -0,0 +1,585 @@
|
|
1
|
+
# Makefile.in generated by automake 1.14 from Makefile.am.
|
2
|
+
# doc/www/Makefile. Generated from Makefile.in by configure.
|
3
|
+
|
4
|
+
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
|
5
|
+
|
6
|
+
# This Makefile.in is free software; the Free Software Foundation
|
7
|
+
# gives unlimited permission to copy and/or distribute it,
|
8
|
+
# with or without modifications, as long as this notice is preserved.
|
9
|
+
|
10
|
+
# This program is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
12
|
+
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
13
|
+
# PARTICULAR PURPOSE.
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
|
18
|
+
am__make_running_with_option = \
|
19
|
+
case $${target_option-} in \
|
20
|
+
?) ;; \
|
21
|
+
*) echo "am__make_running_with_option: internal error: invalid" \
|
22
|
+
"target option '$${target_option-}' specified" >&2; \
|
23
|
+
exit 1;; \
|
24
|
+
esac; \
|
25
|
+
has_opt=no; \
|
26
|
+
sane_makeflags=$$MAKEFLAGS; \
|
27
|
+
if $(am__is_gnu_make); then \
|
28
|
+
sane_makeflags=$$MFLAGS; \
|
29
|
+
else \
|
30
|
+
case $$MAKEFLAGS in \
|
31
|
+
*\\[\ \ ]*) \
|
32
|
+
bs=\\; \
|
33
|
+
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
34
|
+
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
35
|
+
esac; \
|
36
|
+
fi; \
|
37
|
+
skip_next=no; \
|
38
|
+
strip_trailopt () \
|
39
|
+
{ \
|
40
|
+
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
41
|
+
}; \
|
42
|
+
for flg in $$sane_makeflags; do \
|
43
|
+
test $$skip_next = yes && { skip_next=no; continue; }; \
|
44
|
+
case $$flg in \
|
45
|
+
*=*|--*) continue;; \
|
46
|
+
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
47
|
+
-*I?*) strip_trailopt 'I';; \
|
48
|
+
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
49
|
+
-*O?*) strip_trailopt 'O';; \
|
50
|
+
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
51
|
+
-*l?*) strip_trailopt 'l';; \
|
52
|
+
-[dEDm]) skip_next=yes;; \
|
53
|
+
-[JT]) skip_next=yes;; \
|
54
|
+
esac; \
|
55
|
+
case $$flg in \
|
56
|
+
*$$target_option*) has_opt=yes; break;; \
|
57
|
+
esac; \
|
58
|
+
done; \
|
59
|
+
test $$has_opt = yes
|
60
|
+
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
61
|
+
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
62
|
+
pkgdatadir = $(datadir)/tnef
|
63
|
+
pkgincludedir = $(includedir)/tnef
|
64
|
+
pkglibdir = $(libdir)/tnef
|
65
|
+
pkglibexecdir = $(libexecdir)/tnef
|
66
|
+
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
67
|
+
install_sh_DATA = $(install_sh) -c -m 644
|
68
|
+
install_sh_PROGRAM = $(install_sh) -c
|
69
|
+
install_sh_SCRIPT = $(install_sh) -c
|
70
|
+
INSTALL_HEADER = $(INSTALL_DATA)
|
71
|
+
transform = $(program_transform_name)
|
72
|
+
NORMAL_INSTALL = :
|
73
|
+
PRE_INSTALL = :
|
74
|
+
POST_INSTALL = :
|
75
|
+
NORMAL_UNINSTALL = :
|
76
|
+
PRE_UNINSTALL = :
|
77
|
+
POST_UNINSTALL = :
|
78
|
+
subdir = doc/www
|
79
|
+
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
|
80
|
+
$(top_srcdir)/mkinstalldirs
|
81
|
+
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
82
|
+
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
83
|
+
$(top_srcdir)/configure.in
|
84
|
+
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
85
|
+
$(ACLOCAL_M4)
|
86
|
+
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
87
|
+
CONFIG_HEADER = $(top_builddir)/src/config.h
|
88
|
+
CONFIG_CLEAN_FILES =
|
89
|
+
CONFIG_CLEAN_VPATH_FILES =
|
90
|
+
AM_V_P = $(am__v_P_$(V))
|
91
|
+
am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
|
92
|
+
am__v_P_0 = false
|
93
|
+
am__v_P_1 = :
|
94
|
+
AM_V_GEN = $(am__v_GEN_$(V))
|
95
|
+
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
|
96
|
+
am__v_GEN_0 = @echo " GEN " $@;
|
97
|
+
am__v_GEN_1 =
|
98
|
+
AM_V_at = $(am__v_at_$(V))
|
99
|
+
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
100
|
+
am__v_at_0 = @
|
101
|
+
am__v_at_1 =
|
102
|
+
SOURCES =
|
103
|
+
DIST_SOURCES =
|
104
|
+
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
|
105
|
+
ctags-recursive dvi-recursive html-recursive info-recursive \
|
106
|
+
install-data-recursive install-dvi-recursive \
|
107
|
+
install-exec-recursive install-html-recursive \
|
108
|
+
install-info-recursive install-pdf-recursive \
|
109
|
+
install-ps-recursive install-recursive installcheck-recursive \
|
110
|
+
installdirs-recursive pdf-recursive ps-recursive \
|
111
|
+
tags-recursive uninstall-recursive
|
112
|
+
am__can_run_installinfo = \
|
113
|
+
case $$AM_UPDATE_INFO_DIR in \
|
114
|
+
n|no|NO) false;; \
|
115
|
+
*) (install-info --version) >/dev/null 2>&1;; \
|
116
|
+
esac
|
117
|
+
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
118
|
+
distclean-recursive maintainer-clean-recursive
|
119
|
+
am__recursive_targets = \
|
120
|
+
$(RECURSIVE_TARGETS) \
|
121
|
+
$(RECURSIVE_CLEAN_TARGETS) \
|
122
|
+
$(am__extra_recursive_targets)
|
123
|
+
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
124
|
+
distdir
|
125
|
+
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
126
|
+
# Read a list of newline-separated strings from the standard input,
|
127
|
+
# and print each of them once, without duplicates. Input order is
|
128
|
+
# *not* preserved.
|
129
|
+
am__uniquify_input = $(AWK) '\
|
130
|
+
BEGIN { nonempty = 0; } \
|
131
|
+
{ items[$$0] = 1; nonempty = 1; } \
|
132
|
+
END { if (nonempty) { for (i in items) print i; }; } \
|
133
|
+
'
|
134
|
+
# Make sure the list of sources is unique. This is necessary because,
|
135
|
+
# e.g., the same source file might be shared among _SOURCES variables
|
136
|
+
# for different programs/libraries.
|
137
|
+
am__define_uniq_tagged_files = \
|
138
|
+
list='$(am__tagged_files)'; \
|
139
|
+
unique=`for i in $$list; do \
|
140
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
141
|
+
done | $(am__uniquify_input)`
|
142
|
+
ETAGS = etags
|
143
|
+
CTAGS = ctags
|
144
|
+
DIST_SUBDIRS = $(SUBDIRS)
|
145
|
+
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
146
|
+
am__relativize = \
|
147
|
+
dir0=`pwd`; \
|
148
|
+
sed_first='s,^\([^/]*\)/.*$$,\1,'; \
|
149
|
+
sed_rest='s,^[^/]*/*,,'; \
|
150
|
+
sed_last='s,^.*/\([^/]*\)$$,\1,'; \
|
151
|
+
sed_butlast='s,/*[^/]*$$,,'; \
|
152
|
+
while test -n "$$dir1"; do \
|
153
|
+
first=`echo "$$dir1" | sed -e "$$sed_first"`; \
|
154
|
+
if test "$$first" != "."; then \
|
155
|
+
if test "$$first" = ".."; then \
|
156
|
+
dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
|
157
|
+
dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
|
158
|
+
else \
|
159
|
+
first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
|
160
|
+
if test "$$first2" = "$$first"; then \
|
161
|
+
dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
|
162
|
+
else \
|
163
|
+
dir2="../$$dir2"; \
|
164
|
+
fi; \
|
165
|
+
dir0="$$dir0"/"$$first"; \
|
166
|
+
fi; \
|
167
|
+
fi; \
|
168
|
+
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
|
169
|
+
done; \
|
170
|
+
reldir="$$dir2"
|
171
|
+
ACLOCAL = aclocal-1.14
|
172
|
+
AMTAR = $${TAR-tar}
|
173
|
+
AM_DEFAULT_VERBOSITY = 1
|
174
|
+
AUTOCONF = autoconf
|
175
|
+
AUTOHEADER = autoheader
|
176
|
+
AUTOMAKE = automake-1.14
|
177
|
+
AWK = awk
|
178
|
+
CC = gcc
|
179
|
+
CCDEPMODE = depmode=gcc3
|
180
|
+
CFLAGS = -I/opt/boxen/homebrew/include
|
181
|
+
CPP = gcc -E
|
182
|
+
CPPFLAGS =
|
183
|
+
CXX = g++
|
184
|
+
CXXDEPMODE = depmode=gcc3
|
185
|
+
CXXFLAGS = -g -O2
|
186
|
+
CYGPATH_W = echo
|
187
|
+
DEFS = -DHAVE_CONFIG_H
|
188
|
+
DEPDIR = .deps
|
189
|
+
ECHO_C = \c
|
190
|
+
ECHO_N =
|
191
|
+
ECHO_T =
|
192
|
+
EGREP = /usr/bin/grep -E
|
193
|
+
EXEEXT =
|
194
|
+
GREP = /usr/bin/grep
|
195
|
+
INSTALL = /usr/bin/install -c
|
196
|
+
INSTALL_DATA = ${INSTALL} -m 644
|
197
|
+
INSTALL_PROGRAM = ${INSTALL}
|
198
|
+
INSTALL_SCRIPT = ${INSTALL}
|
199
|
+
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
|
200
|
+
LDFLAGS = -L/opt/boxen/homebrew/lib
|
201
|
+
LIBOBJS =
|
202
|
+
LIBS =
|
203
|
+
LN_S = ln -s
|
204
|
+
LTLIBOBJS =
|
205
|
+
MAINT = #
|
206
|
+
MAKEINFO = makeinfo
|
207
|
+
MKDIR_P = ../.././install-sh -c -d
|
208
|
+
OBJEXT = o
|
209
|
+
PACKAGE = tnef
|
210
|
+
PACKAGE_BUGREPORT = verdammelt@users.sourceforge.net
|
211
|
+
PACKAGE_NAME = tnef
|
212
|
+
PACKAGE_STRING = tnef 1.4.10
|
213
|
+
PACKAGE_TARNAME = tnef
|
214
|
+
PACKAGE_URL =
|
215
|
+
PACKAGE_VERSION = 1.4.10
|
216
|
+
PATH_SEPARATOR = :
|
217
|
+
RANLIB = ranlib
|
218
|
+
SET_MAKE =
|
219
|
+
SHELL = /bin/sh
|
220
|
+
STRIP =
|
221
|
+
VERSION = 1.4.10
|
222
|
+
abs_builddir = /Users/mgrosser/Code/tools/tnef/ext/tnef/doc/www
|
223
|
+
abs_srcdir = /Users/mgrosser/Code/tools/tnef/ext/tnef/doc/www
|
224
|
+
abs_top_builddir = /Users/mgrosser/Code/tools/tnef/ext/tnef
|
225
|
+
abs_top_srcdir = /Users/mgrosser/Code/tools/tnef/ext/tnef
|
226
|
+
ac_ct_CC = gcc
|
227
|
+
ac_ct_CXX = g++
|
228
|
+
am__include = include
|
229
|
+
am__leading_dot = .
|
230
|
+
am__quote =
|
231
|
+
am__tar = $${TAR-tar} chof - "$$tardir"
|
232
|
+
am__untar = $${TAR-tar} xf -
|
233
|
+
bindir = ${exec_prefix}/bin
|
234
|
+
build_alias =
|
235
|
+
builddir = .
|
236
|
+
datadir = ${datarootdir}
|
237
|
+
datarootdir = ${prefix}/share
|
238
|
+
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
|
239
|
+
dvidir = ${docdir}
|
240
|
+
exec_prefix = ${prefix}
|
241
|
+
host_alias =
|
242
|
+
htmldir = ${docdir}
|
243
|
+
includedir = ${prefix}/include
|
244
|
+
infodir = ${datarootdir}/info
|
245
|
+
install_sh = ${SHELL} /Users/mgrosser/Code/tools/tnef/ext/tnef/install-sh
|
246
|
+
libdir = ${exec_prefix}/lib
|
247
|
+
libexecdir = ${exec_prefix}/libexec
|
248
|
+
localedir = ${datarootdir}/locale
|
249
|
+
localstatedir = ${prefix}/var
|
250
|
+
mandir = ${datarootdir}/man
|
251
|
+
mkdir_p = $(MKDIR_P)
|
252
|
+
oldincludedir = /usr/include
|
253
|
+
pdfdir = ${docdir}
|
254
|
+
prefix = /usr/local
|
255
|
+
program_transform_name = s,x,x,
|
256
|
+
psdir = ${docdir}
|
257
|
+
sbindir = ${exec_prefix}/sbin
|
258
|
+
sharedstatedir = ${prefix}/com
|
259
|
+
srcdir = .
|
260
|
+
sysconfdir = ${prefix}/etc
|
261
|
+
target_alias =
|
262
|
+
top_build_prefix = ../../
|
263
|
+
top_builddir = ../..
|
264
|
+
top_srcdir = ../..
|
265
|
+
EXTRA_DIST =
|
266
|
+
SUBDIRS = cgi-bin htdocs
|
267
|
+
WEB_LOC = verdammelt@tnef.sf.net:/home/groups/t/tn/tnef/
|
268
|
+
WEB_TEST_LOC = ~damned/public_html/tnef-www/
|
269
|
+
all: all-recursive
|
270
|
+
|
271
|
+
.SUFFIXES:
|
272
|
+
$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps)
|
273
|
+
@for dep in $?; do \
|
274
|
+
case '$(am__configure_deps)' in \
|
275
|
+
*$$dep*) \
|
276
|
+
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
277
|
+
&& { if test -f $@; then exit 0; else break; fi; }; \
|
278
|
+
exit 1;; \
|
279
|
+
esac; \
|
280
|
+
done; \
|
281
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/www/Makefile'; \
|
282
|
+
$(am__cd) $(top_srcdir) && \
|
283
|
+
$(AUTOMAKE) --gnu doc/www/Makefile
|
284
|
+
.PRECIOUS: Makefile
|
285
|
+
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
286
|
+
@case '$?' in \
|
287
|
+
*config.status*) \
|
288
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
289
|
+
*) \
|
290
|
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
291
|
+
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
292
|
+
esac;
|
293
|
+
|
294
|
+
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
295
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
296
|
+
|
297
|
+
$(top_srcdir)/configure: # $(am__configure_deps)
|
298
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
299
|
+
$(ACLOCAL_M4): # $(am__aclocal_m4_deps)
|
300
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
301
|
+
$(am__aclocal_m4_deps):
|
302
|
+
|
303
|
+
# This directory's subdirectories are mostly independent; you can cd
|
304
|
+
# into them and run 'make' without going through this Makefile.
|
305
|
+
# To change the values of 'make' variables: instead of editing Makefiles,
|
306
|
+
# (1) if the variable is set in 'config.status', edit 'config.status'
|
307
|
+
# (which will cause the Makefiles to be regenerated when you run 'make');
|
308
|
+
# (2) otherwise, pass the desired values on the 'make' command line.
|
309
|
+
$(am__recursive_targets):
|
310
|
+
@fail=; \
|
311
|
+
if $(am__make_keepgoing); then \
|
312
|
+
failcom='fail=yes'; \
|
313
|
+
else \
|
314
|
+
failcom='exit 1'; \
|
315
|
+
fi; \
|
316
|
+
dot_seen=no; \
|
317
|
+
target=`echo $@ | sed s/-recursive//`; \
|
318
|
+
case "$@" in \
|
319
|
+
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
320
|
+
*) list='$(SUBDIRS)' ;; \
|
321
|
+
esac; \
|
322
|
+
for subdir in $$list; do \
|
323
|
+
echo "Making $$target in $$subdir"; \
|
324
|
+
if test "$$subdir" = "."; then \
|
325
|
+
dot_seen=yes; \
|
326
|
+
local_target="$$target-am"; \
|
327
|
+
else \
|
328
|
+
local_target="$$target"; \
|
329
|
+
fi; \
|
330
|
+
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
331
|
+
|| eval $$failcom; \
|
332
|
+
done; \
|
333
|
+
if test "$$dot_seen" = "no"; then \
|
334
|
+
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
335
|
+
fi; test -z "$$fail"
|
336
|
+
|
337
|
+
ID: $(am__tagged_files)
|
338
|
+
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
339
|
+
tags: tags-recursive
|
340
|
+
TAGS: tags
|
341
|
+
|
342
|
+
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
343
|
+
set x; \
|
344
|
+
here=`pwd`; \
|
345
|
+
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
346
|
+
include_option=--etags-include; \
|
347
|
+
empty_fix=.; \
|
348
|
+
else \
|
349
|
+
include_option=--include; \
|
350
|
+
empty_fix=; \
|
351
|
+
fi; \
|
352
|
+
list='$(SUBDIRS)'; for subdir in $$list; do \
|
353
|
+
if test "$$subdir" = .; then :; else \
|
354
|
+
test ! -f $$subdir/TAGS || \
|
355
|
+
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
|
356
|
+
fi; \
|
357
|
+
done; \
|
358
|
+
$(am__define_uniq_tagged_files); \
|
359
|
+
shift; \
|
360
|
+
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
361
|
+
test -n "$$unique" || unique=$$empty_fix; \
|
362
|
+
if test $$# -gt 0; then \
|
363
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
364
|
+
"$$@" $$unique; \
|
365
|
+
else \
|
366
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
367
|
+
$$unique; \
|
368
|
+
fi; \
|
369
|
+
fi
|
370
|
+
ctags: ctags-recursive
|
371
|
+
|
372
|
+
CTAGS: ctags
|
373
|
+
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
374
|
+
$(am__define_uniq_tagged_files); \
|
375
|
+
test -z "$(CTAGS_ARGS)$$unique" \
|
376
|
+
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
377
|
+
$$unique
|
378
|
+
|
379
|
+
GTAGS:
|
380
|
+
here=`$(am__cd) $(top_builddir) && pwd` \
|
381
|
+
&& $(am__cd) $(top_srcdir) \
|
382
|
+
&& gtags -i $(GTAGS_ARGS) "$$here"
|
383
|
+
cscopelist: cscopelist-recursive
|
384
|
+
|
385
|
+
cscopelist-am: $(am__tagged_files)
|
386
|
+
list='$(am__tagged_files)'; \
|
387
|
+
case "$(srcdir)" in \
|
388
|
+
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
389
|
+
*) sdir=$(subdir)/$(srcdir) ;; \
|
390
|
+
esac; \
|
391
|
+
for i in $$list; do \
|
392
|
+
if test -f "$$i"; then \
|
393
|
+
echo "$(subdir)/$$i"; \
|
394
|
+
else \
|
395
|
+
echo "$$sdir/$$i"; \
|
396
|
+
fi; \
|
397
|
+
done >> $(top_builddir)/cscope.files
|
398
|
+
|
399
|
+
distclean-tags:
|
400
|
+
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
401
|
+
|
402
|
+
distdir: $(DISTFILES)
|
403
|
+
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
404
|
+
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
405
|
+
list='$(DISTFILES)'; \
|
406
|
+
dist_files=`for file in $$list; do echo $$file; done | \
|
407
|
+
sed -e "s|^$$srcdirstrip/||;t" \
|
408
|
+
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
409
|
+
case $$dist_files in \
|
410
|
+
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
411
|
+
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
412
|
+
sort -u` ;; \
|
413
|
+
esac; \
|
414
|
+
for file in $$dist_files; do \
|
415
|
+
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
416
|
+
if test -d $$d/$$file; then \
|
417
|
+
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
418
|
+
if test -d "$(distdir)/$$file"; then \
|
419
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
420
|
+
fi; \
|
421
|
+
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
422
|
+
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
423
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
424
|
+
fi; \
|
425
|
+
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
426
|
+
else \
|
427
|
+
test -f "$(distdir)/$$file" \
|
428
|
+
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
429
|
+
|| exit 1; \
|
430
|
+
fi; \
|
431
|
+
done
|
432
|
+
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
433
|
+
if test "$$subdir" = .; then :; else \
|
434
|
+
$(am__make_dryrun) \
|
435
|
+
|| test -d "$(distdir)/$$subdir" \
|
436
|
+
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|
437
|
+
|| exit 1; \
|
438
|
+
dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
|
439
|
+
$(am__relativize); \
|
440
|
+
new_distdir=$$reldir; \
|
441
|
+
dir1=$$subdir; dir2="$(top_distdir)"; \
|
442
|
+
$(am__relativize); \
|
443
|
+
new_top_distdir=$$reldir; \
|
444
|
+
echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
|
445
|
+
echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
|
446
|
+
($(am__cd) $$subdir && \
|
447
|
+
$(MAKE) $(AM_MAKEFLAGS) \
|
448
|
+
top_distdir="$$new_top_distdir" \
|
449
|
+
distdir="$$new_distdir" \
|
450
|
+
am__remove_distdir=: \
|
451
|
+
am__skip_length_check=: \
|
452
|
+
am__skip_mode_fix=: \
|
453
|
+
distdir) \
|
454
|
+
|| exit 1; \
|
455
|
+
fi; \
|
456
|
+
done
|
457
|
+
check-am: all-am
|
458
|
+
check: check-recursive
|
459
|
+
all-am: Makefile
|
460
|
+
installdirs: installdirs-recursive
|
461
|
+
installdirs-am:
|
462
|
+
install: install-recursive
|
463
|
+
install-exec: install-exec-recursive
|
464
|
+
install-data: install-data-recursive
|
465
|
+
uninstall: uninstall-recursive
|
466
|
+
|
467
|
+
install-am: all-am
|
468
|
+
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
469
|
+
|
470
|
+
installcheck: installcheck-recursive
|
471
|
+
install-strip:
|
472
|
+
if test -z '$(STRIP)'; then \
|
473
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
474
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
475
|
+
install; \
|
476
|
+
else \
|
477
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
478
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
479
|
+
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
480
|
+
fi
|
481
|
+
mostlyclean-generic:
|
482
|
+
|
483
|
+
clean-generic:
|
484
|
+
|
485
|
+
distclean-generic:
|
486
|
+
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
487
|
+
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
488
|
+
|
489
|
+
maintainer-clean-generic:
|
490
|
+
@echo "This command is intended for maintainers to use"
|
491
|
+
@echo "it deletes files that may require special tools to rebuild."
|
492
|
+
clean: clean-recursive
|
493
|
+
|
494
|
+
clean-am: clean-generic mostlyclean-am
|
495
|
+
|
496
|
+
distclean: distclean-recursive
|
497
|
+
-rm -f Makefile
|
498
|
+
distclean-am: clean-am distclean-generic distclean-tags
|
499
|
+
|
500
|
+
dvi: dvi-recursive
|
501
|
+
|
502
|
+
dvi-am:
|
503
|
+
|
504
|
+
html: html-recursive
|
505
|
+
|
506
|
+
html-am:
|
507
|
+
|
508
|
+
info: info-recursive
|
509
|
+
|
510
|
+
info-am:
|
511
|
+
|
512
|
+
install-data-am:
|
513
|
+
|
514
|
+
install-dvi: install-dvi-recursive
|
515
|
+
|
516
|
+
install-dvi-am:
|
517
|
+
|
518
|
+
install-exec-am:
|
519
|
+
|
520
|
+
install-html: install-html-recursive
|
521
|
+
|
522
|
+
install-html-am:
|
523
|
+
|
524
|
+
install-info: install-info-recursive
|
525
|
+
|
526
|
+
install-info-am:
|
527
|
+
|
528
|
+
install-man:
|
529
|
+
|
530
|
+
install-pdf: install-pdf-recursive
|
531
|
+
|
532
|
+
install-pdf-am:
|
533
|
+
|
534
|
+
install-ps: install-ps-recursive
|
535
|
+
|
536
|
+
install-ps-am:
|
537
|
+
|
538
|
+
installcheck-am:
|
539
|
+
|
540
|
+
maintainer-clean: maintainer-clean-recursive
|
541
|
+
-rm -f Makefile
|
542
|
+
maintainer-clean-am: distclean-am maintainer-clean-generic
|
543
|
+
|
544
|
+
mostlyclean: mostlyclean-recursive
|
545
|
+
|
546
|
+
mostlyclean-am: mostlyclean-generic
|
547
|
+
|
548
|
+
pdf: pdf-recursive
|
549
|
+
|
550
|
+
pdf-am:
|
551
|
+
|
552
|
+
ps: ps-recursive
|
553
|
+
|
554
|
+
ps-am:
|
555
|
+
|
556
|
+
uninstall-am:
|
557
|
+
|
558
|
+
.MAKE: $(am__recursive_targets) install-am install-strip
|
559
|
+
|
560
|
+
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
|
561
|
+
check-am clean clean-generic cscopelist-am ctags ctags-am \
|
562
|
+
distclean distclean-generic distclean-tags distdir dvi dvi-am \
|
563
|
+
html html-am info info-am install install-am install-data \
|
564
|
+
install-data-am install-dvi install-dvi-am install-exec \
|
565
|
+
install-exec-am install-html install-html-am install-info \
|
566
|
+
install-info-am install-man install-pdf install-pdf-am \
|
567
|
+
install-ps install-ps-am install-strip installcheck \
|
568
|
+
installcheck-am installdirs installdirs-am maintainer-clean \
|
569
|
+
maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
|
570
|
+
pdf-am ps ps-am tags tags-am uninstall uninstall-am
|
571
|
+
|
572
|
+
|
573
|
+
web-build web-test web-push:
|
574
|
+
list='$(SUBDIRS)'; for subdir in $$list; do \
|
575
|
+
test "$$subdir" = . \
|
576
|
+
|| (cd $$subdir \
|
577
|
+
&& $(MAKE) $(AM_MAKEFLAGS) \
|
578
|
+
WEB_LOC=$(WEB_LOC)$$subdir/ \
|
579
|
+
WEB_TEST_LOC=$(WEB_TEST_LOC)$$subdir/ \
|
580
|
+
$@); \
|
581
|
+
done
|
582
|
+
|
583
|
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
584
|
+
# Otherwise a system limit (for SysV at least) may be exceeded.
|
585
|
+
.NOEXPORT:
|