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.
Files changed (48) hide show
  1. checksums.yaml +7 -0
  2. data/ext/tnef/ChangeLog +18 -0
  3. data/ext/tnef/Makefile.in +185 -132
  4. data/ext/tnef/NEWS +4 -1
  5. data/ext/tnef/aclocal.m4 +440 -266
  6. data/ext/tnef/autom4te.cache/output.0 +7001 -0
  7. data/ext/tnef/autom4te.cache/output.1 +7001 -0
  8. data/ext/tnef/autom4te.cache/requests +159 -0
  9. data/ext/tnef/autom4te.cache/traces.0 +545 -0
  10. data/ext/tnef/autom4te.cache/traces.1 +1036 -0
  11. data/ext/tnef/compile +347 -0
  12. data/ext/tnef/config.log +971 -0
  13. data/ext/tnef/configure +380 -194
  14. data/ext/tnef/configure.in +1 -1
  15. data/ext/tnef/contrib/evolution.helper +43 -0
  16. data/ext/tnef/contrib/evolution.helper.README +11 -0
  17. data/ext/tnef/contrib/tnef-alpine.perl +91 -0
  18. data/ext/tnef/contrib/tnef-alpine.perl.README +10 -0
  19. data/ext/tnef/doc/Makefile +659 -0
  20. data/ext/tnef/doc/Makefile.in +171 -135
  21. data/ext/tnef/doc/tnef.1 +185 -0
  22. data/ext/tnef/doc/tnef.1.in +34 -32
  23. data/ext/tnef/doc/www/Makefile +585 -0
  24. data/ext/tnef/doc/www/Makefile.in +158 -115
  25. data/ext/tnef/doc/www/cgi-bin/Makefile +405 -0
  26. data/ext/tnef/doc/www/cgi-bin/Makefile.in +83 -18
  27. data/ext/tnef/doc/www/htdocs/Makefile +405 -0
  28. data/ext/tnef/doc/www/htdocs/Makefile.in +83 -18
  29. data/ext/tnef/doc/www/htdocs/index.html +51 -0
  30. data/ext/tnef/doc/www/htdocs/style.css +13 -0
  31. data/ext/tnef/src/Makefile.in +193 -135
  32. data/ext/tnef/src/replace/Makefile.in +148 -55
  33. data/ext/tnef/src/tnef.c +10 -8
  34. data/ext/tnef/test-driver +127 -0
  35. data/ext/tnef/tests/Makefile.in +158 -115
  36. data/ext/tnef/tests/cmdline/Attic/mime-types.baseline +3 -0
  37. data/ext/tnef/tests/cmdline/Attic/mime-types.test +11 -0
  38. data/ext/tnef/tests/cmdline/Makefile.in +441 -110
  39. data/ext/tnef/tests/cmdline/body-test.html.baseline +95 -95
  40. data/ext/tnef/tests/cmdline/body.baseline +2 -2
  41. data/ext/tnef/tests/cmdline/interactive.baseline +0 -0
  42. data/ext/tnef/tests/cmdline/message.html.baseline +95 -95
  43. data/ext/tnef/tests/cmdline/version.baseline +2 -2
  44. data/ext/tnef/tests/files/Makefile.in +515 -205
  45. data/ext/tnef/tests/files/baselines/Makefile.in +83 -18
  46. data/ext/tnef/tests/files/datafiles/Makefile.in +83 -18
  47. data/lib/tnef/version.rb +1 -1
  48. metadata +34 -18
@@ -0,0 +1,347 @@
1
+ #! /bin/sh
2
+ # Wrapper for compilers which do not understand '-c -o'.
3
+
4
+ scriptversion=2012-10-14.11; # UTC
5
+
6
+ # Copyright (C) 1999-2013 Free Software Foundation, Inc.
7
+ # Written by Tom Tromey <tromey@cygnus.com>.
8
+ #
9
+ # This program is free software; you can redistribute it and/or modify
10
+ # it under the terms of the GNU General Public License as published by
11
+ # the Free Software Foundation; either version 2, or (at your option)
12
+ # any later version.
13
+ #
14
+ # This program is distributed in the hope that it will be useful,
15
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ # GNU General Public License for more details.
18
+ #
19
+ # You should have received a copy of the GNU General Public License
20
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+
22
+ # As a special exception to the GNU General Public License, if you
23
+ # distribute this file as part of a program that contains a
24
+ # configuration script generated by Autoconf, you may include it under
25
+ # the same distribution terms that you use for the rest of that program.
26
+
27
+ # This file is maintained in Automake, please report
28
+ # bugs to <bug-automake@gnu.org> or send patches to
29
+ # <automake-patches@gnu.org>.
30
+
31
+ nl='
32
+ '
33
+
34
+ # We need space, tab and new line, in precisely that order. Quoting is
35
+ # there to prevent tools from complaining about whitespace usage.
36
+ IFS=" "" $nl"
37
+
38
+ file_conv=
39
+
40
+ # func_file_conv build_file lazy
41
+ # Convert a $build file to $host form and store it in $file
42
+ # Currently only supports Windows hosts. If the determined conversion
43
+ # type is listed in (the comma separated) LAZY, no conversion will
44
+ # take place.
45
+ func_file_conv ()
46
+ {
47
+ file=$1
48
+ case $file in
49
+ / | /[!/]*) # absolute file, and not a UNC file
50
+ if test -z "$file_conv"; then
51
+ # lazily determine how to convert abs files
52
+ case `uname -s` in
53
+ MINGW*)
54
+ file_conv=mingw
55
+ ;;
56
+ CYGWIN*)
57
+ file_conv=cygwin
58
+ ;;
59
+ *)
60
+ file_conv=wine
61
+ ;;
62
+ esac
63
+ fi
64
+ case $file_conv/,$2, in
65
+ *,$file_conv,*)
66
+ ;;
67
+ mingw/*)
68
+ file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
69
+ ;;
70
+ cygwin/*)
71
+ file=`cygpath -m "$file" || echo "$file"`
72
+ ;;
73
+ wine/*)
74
+ file=`winepath -w "$file" || echo "$file"`
75
+ ;;
76
+ esac
77
+ ;;
78
+ esac
79
+ }
80
+
81
+ # func_cl_dashL linkdir
82
+ # Make cl look for libraries in LINKDIR
83
+ func_cl_dashL ()
84
+ {
85
+ func_file_conv "$1"
86
+ if test -z "$lib_path"; then
87
+ lib_path=$file
88
+ else
89
+ lib_path="$lib_path;$file"
90
+ fi
91
+ linker_opts="$linker_opts -LIBPATH:$file"
92
+ }
93
+
94
+ # func_cl_dashl library
95
+ # Do a library search-path lookup for cl
96
+ func_cl_dashl ()
97
+ {
98
+ lib=$1
99
+ found=no
100
+ save_IFS=$IFS
101
+ IFS=';'
102
+ for dir in $lib_path $LIB
103
+ do
104
+ IFS=$save_IFS
105
+ if $shared && test -f "$dir/$lib.dll.lib"; then
106
+ found=yes
107
+ lib=$dir/$lib.dll.lib
108
+ break
109
+ fi
110
+ if test -f "$dir/$lib.lib"; then
111
+ found=yes
112
+ lib=$dir/$lib.lib
113
+ break
114
+ fi
115
+ if test -f "$dir/lib$lib.a"; then
116
+ found=yes
117
+ lib=$dir/lib$lib.a
118
+ break
119
+ fi
120
+ done
121
+ IFS=$save_IFS
122
+
123
+ if test "$found" != yes; then
124
+ lib=$lib.lib
125
+ fi
126
+ }
127
+
128
+ # func_cl_wrapper cl arg...
129
+ # Adjust compile command to suit cl
130
+ func_cl_wrapper ()
131
+ {
132
+ # Assume a capable shell
133
+ lib_path=
134
+ shared=:
135
+ linker_opts=
136
+ for arg
137
+ do
138
+ if test -n "$eat"; then
139
+ eat=
140
+ else
141
+ case $1 in
142
+ -o)
143
+ # configure might choose to run compile as 'compile cc -o foo foo.c'.
144
+ eat=1
145
+ case $2 in
146
+ *.o | *.[oO][bB][jJ])
147
+ func_file_conv "$2"
148
+ set x "$@" -Fo"$file"
149
+ shift
150
+ ;;
151
+ *)
152
+ func_file_conv "$2"
153
+ set x "$@" -Fe"$file"
154
+ shift
155
+ ;;
156
+ esac
157
+ ;;
158
+ -I)
159
+ eat=1
160
+ func_file_conv "$2" mingw
161
+ set x "$@" -I"$file"
162
+ shift
163
+ ;;
164
+ -I*)
165
+ func_file_conv "${1#-I}" mingw
166
+ set x "$@" -I"$file"
167
+ shift
168
+ ;;
169
+ -l)
170
+ eat=1
171
+ func_cl_dashl "$2"
172
+ set x "$@" "$lib"
173
+ shift
174
+ ;;
175
+ -l*)
176
+ func_cl_dashl "${1#-l}"
177
+ set x "$@" "$lib"
178
+ shift
179
+ ;;
180
+ -L)
181
+ eat=1
182
+ func_cl_dashL "$2"
183
+ ;;
184
+ -L*)
185
+ func_cl_dashL "${1#-L}"
186
+ ;;
187
+ -static)
188
+ shared=false
189
+ ;;
190
+ -Wl,*)
191
+ arg=${1#-Wl,}
192
+ save_ifs="$IFS"; IFS=','
193
+ for flag in $arg; do
194
+ IFS="$save_ifs"
195
+ linker_opts="$linker_opts $flag"
196
+ done
197
+ IFS="$save_ifs"
198
+ ;;
199
+ -Xlinker)
200
+ eat=1
201
+ linker_opts="$linker_opts $2"
202
+ ;;
203
+ -*)
204
+ set x "$@" "$1"
205
+ shift
206
+ ;;
207
+ *.cc | *.CC | *.cxx | *.CXX | *.[cC]++)
208
+ func_file_conv "$1"
209
+ set x "$@" -Tp"$file"
210
+ shift
211
+ ;;
212
+ *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO])
213
+ func_file_conv "$1" mingw
214
+ set x "$@" "$file"
215
+ shift
216
+ ;;
217
+ *)
218
+ set x "$@" "$1"
219
+ shift
220
+ ;;
221
+ esac
222
+ fi
223
+ shift
224
+ done
225
+ if test -n "$linker_opts"; then
226
+ linker_opts="-link$linker_opts"
227
+ fi
228
+ exec "$@" $linker_opts
229
+ exit 1
230
+ }
231
+
232
+ eat=
233
+
234
+ case $1 in
235
+ '')
236
+ echo "$0: No command. Try '$0 --help' for more information." 1>&2
237
+ exit 1;
238
+ ;;
239
+ -h | --h*)
240
+ cat <<\EOF
241
+ Usage: compile [--help] [--version] PROGRAM [ARGS]
242
+
243
+ Wrapper for compilers which do not understand '-c -o'.
244
+ Remove '-o dest.o' from ARGS, run PROGRAM with the remaining
245
+ arguments, and rename the output as expected.
246
+
247
+ If you are trying to build a whole package this is not the
248
+ right script to run: please start by reading the file 'INSTALL'.
249
+
250
+ Report bugs to <bug-automake@gnu.org>.
251
+ EOF
252
+ exit $?
253
+ ;;
254
+ -v | --v*)
255
+ echo "compile $scriptversion"
256
+ exit $?
257
+ ;;
258
+ cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
259
+ func_cl_wrapper "$@" # Doesn't return...
260
+ ;;
261
+ esac
262
+
263
+ ofile=
264
+ cfile=
265
+
266
+ for arg
267
+ do
268
+ if test -n "$eat"; then
269
+ eat=
270
+ else
271
+ case $1 in
272
+ -o)
273
+ # configure might choose to run compile as 'compile cc -o foo foo.c'.
274
+ # So we strip '-o arg' only if arg is an object.
275
+ eat=1
276
+ case $2 in
277
+ *.o | *.obj)
278
+ ofile=$2
279
+ ;;
280
+ *)
281
+ set x "$@" -o "$2"
282
+ shift
283
+ ;;
284
+ esac
285
+ ;;
286
+ *.c)
287
+ cfile=$1
288
+ set x "$@" "$1"
289
+ shift
290
+ ;;
291
+ *)
292
+ set x "$@" "$1"
293
+ shift
294
+ ;;
295
+ esac
296
+ fi
297
+ shift
298
+ done
299
+
300
+ if test -z "$ofile" || test -z "$cfile"; then
301
+ # If no '-o' option was seen then we might have been invoked from a
302
+ # pattern rule where we don't need one. That is ok -- this is a
303
+ # normal compilation that the losing compiler can handle. If no
304
+ # '.c' file was seen then we are probably linking. That is also
305
+ # ok.
306
+ exec "$@"
307
+ fi
308
+
309
+ # Name of file we expect compiler to create.
310
+ cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'`
311
+
312
+ # Create the lock directory.
313
+ # Note: use '[/\\:.-]' here to ensure that we don't use the same name
314
+ # that we are using for the .o file. Also, base the name on the expected
315
+ # object file name, since that is what matters with a parallel build.
316
+ lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d
317
+ while true; do
318
+ if mkdir "$lockdir" >/dev/null 2>&1; then
319
+ break
320
+ fi
321
+ sleep 1
322
+ done
323
+ # FIXME: race condition here if user kills between mkdir and trap.
324
+ trap "rmdir '$lockdir'; exit 1" 1 2 15
325
+
326
+ # Run the compile.
327
+ "$@"
328
+ ret=$?
329
+
330
+ if test -f "$cofile"; then
331
+ test "$cofile" = "$ofile" || mv "$cofile" "$ofile"
332
+ elif test -f "${cofile}bj"; then
333
+ test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
334
+ fi
335
+
336
+ rmdir "$lockdir"
337
+ exit $ret
338
+
339
+ # Local Variables:
340
+ # mode: shell-script
341
+ # sh-indentation: 2
342
+ # eval: (add-hook 'write-file-hooks 'time-stamp)
343
+ # time-stamp-start: "scriptversion="
344
+ # time-stamp-format: "%:y-%02m-%02d.%02H"
345
+ # time-stamp-time-zone: "UTC"
346
+ # time-stamp-end: "; # UTC"
347
+ # End:
@@ -0,0 +1,971 @@
1
+ This file contains any messages produced by compilers while
2
+ running configure, to aid debugging if configure makes a mistake.
3
+
4
+ It was created by tnef configure 1.4.10, which was
5
+ generated by GNU Autoconf 2.69. Invocation command line was
6
+
7
+ $ ./configure CFLAGS=-I/opt/boxen/homebrew/include LDFLAGS=-L/opt/boxen/homebrew/lib --no-create --no-recursion
8
+
9
+ ## --------- ##
10
+ ## Platform. ##
11
+ ## --------- ##
12
+
13
+ hostname = 2335-MGrosser.local
14
+ uname -m = x86_64
15
+ uname -r = 13.0.0
16
+ uname -s = Darwin
17
+ uname -v = Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
18
+
19
+ /usr/bin/uname -p = i386
20
+ /bin/uname -X = unknown
21
+
22
+ /bin/arch = unknown
23
+ /usr/bin/arch -k = unknown
24
+ /usr/convex/getsysinfo = unknown
25
+ /usr/bin/hostinfo = Mach kernel version:
26
+ Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
27
+ Kernel configured for up to 4 processors.
28
+ 2 processors are physically available.
29
+ 4 processors are logically available.
30
+ Processor type: i486 (Intel 80486)
31
+ Processors active: 0 1 2 3
32
+ Primary memory available: 8.00 gigabytes
33
+ Default processor set: 183 tasks, 1029 threads, 4 processors
34
+ Load average: 1.20, Mach factor: 2.79
35
+ /bin/machine = unknown
36
+ /usr/bin/oslevel = unknown
37
+ /bin/universe = unknown
38
+
39
+ PATH: /Users/mgrosser/Applications/eclipse-adt/sdk/tools
40
+ PATH: /Users/mgrosser/Applications/eclipse-adt/sdk/platform-tools/
41
+ PATH: /opt/boxen/rbenv/shims
42
+ PATH: bin
43
+ PATH: /opt/boxen/heroku/bin
44
+ PATH: /opt/boxen/rbenv/shims
45
+ PATH: /opt/boxen/rbenv/bin
46
+ PATH: /opt/boxen/rbenv/plugins/ruby-build/bin
47
+ PATH: node_modules/.bin
48
+ PATH: /opt/boxen/nodenv/shims
49
+ PATH: /opt/boxen/nodenv/bin
50
+ PATH: /opt/boxen/bin
51
+ PATH: /opt/boxen/homebrew/bin
52
+ PATH: /opt/boxen/homebrew/sbin
53
+ PATH: ~/dotfiles/bin
54
+ PATH: ~/dotfiles/secret/bin
55
+ PATH: /usr/local/bin
56
+ PATH: /usr/bin
57
+ PATH: /bin
58
+ PATH: /usr/sbin
59
+ PATH: /sbin
60
+ PATH: /usr/local/bin
61
+ PATH: /opt/X11/bin
62
+
63
+
64
+ ## ----------- ##
65
+ ## Core tests. ##
66
+ ## ----------- ##
67
+
68
+ configure:2535: checking for a BSD-compatible install
69
+ configure:2603: result: /usr/bin/install -c
70
+ configure:2614: checking whether build environment is sane
71
+ configure:2669: result: yes
72
+ configure:2707: WARNING: 'missing' script is too old or missing
73
+ configure:2820: checking for a thread-safe mkdir -p
74
+ configure:2859: result: ./install-sh -c -d
75
+ configure:2866: checking for gawk
76
+ configure:2896: result: no
77
+ configure:2866: checking for mawk
78
+ configure:2896: result: no
79
+ configure:2866: checking for nawk
80
+ configure:2896: result: no
81
+ configure:2866: checking for awk
82
+ configure:2882: found /usr/bin/awk
83
+ configure:2893: result: awk
84
+ configure:2904: checking whether make sets $(MAKE)
85
+ configure:2926: result: yes
86
+ configure:2955: checking whether make supports nested variables
87
+ configure:2972: result: yes
88
+ configure:3105: checking for gawk
89
+ configure:3132: result: awk
90
+ configure:3191: checking for gcc
91
+ configure:3207: found /usr/bin/gcc
92
+ configure:3218: result: gcc
93
+ configure:3447: checking for C compiler version
94
+ configure:3456: gcc --version >&5
95
+ Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn)
96
+ Target: x86_64-apple-darwin13.0.0
97
+ Thread model: posix
98
+ Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
99
+ configure:3467: $? = 0
100
+ configure:3456: gcc -v >&5
101
+ Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
102
+ Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn)
103
+ Target: x86_64-apple-darwin13.0.0
104
+ Thread model: posix
105
+ configure:3467: $? = 0
106
+ configure:3456: gcc -V >&5
107
+ clang: error: argument to '-V' is missing (expected 1 value)
108
+ clang: error: no input files
109
+ configure:3467: $? = 1
110
+ configure:3456: gcc -qversion >&5
111
+ clang: error: no input files
112
+ configure:3467: $? = 1
113
+ configure:3487: checking whether the C compiler works
114
+ configure:3509: gcc -I/opt/boxen/homebrew/include -L/opt/boxen/homebrew/lib conftest.c >&5
115
+ configure:3513: $? = 0
116
+ configure:3561: result: yes
117
+ configure:3564: checking for C compiler default output file name
118
+ configure:3566: result: a.out
119
+ configure:3572: checking for suffix of executables
120
+ configure:3579: gcc -o conftest -I/opt/boxen/homebrew/include -L/opt/boxen/homebrew/lib conftest.c >&5
121
+ configure:3583: $? = 0
122
+ configure:3605: result:
123
+ configure:3627: checking whether we are cross compiling
124
+ configure:3635: gcc -o conftest -I/opt/boxen/homebrew/include -L/opt/boxen/homebrew/lib conftest.c >&5
125
+ configure:3639: $? = 0
126
+ configure:3646: ./conftest
127
+ configure:3650: $? = 0
128
+ configure:3665: result: no
129
+ configure:3670: checking for suffix of object files
130
+ configure:3692: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
131
+ configure:3696: $? = 0
132
+ configure:3717: result: o
133
+ configure:3721: checking whether we are using the GNU C compiler
134
+ configure:3740: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
135
+ configure:3740: $? = 0
136
+ configure:3749: result: yes
137
+ configure:3758: checking whether gcc accepts -g
138
+ configure:3778: gcc -c -g conftest.c >&5
139
+ configure:3778: $? = 0
140
+ configure:3819: result: yes
141
+ configure:3836: checking for gcc option to accept ISO C89
142
+ configure:3899: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
143
+ configure:3899: $? = 0
144
+ configure:3912: result: none needed
145
+ configure:3937: checking whether gcc understands -c and -o together
146
+ configure:3959: gcc -c conftest.c -o conftest2.o
147
+ configure:3962: $? = 0
148
+ configure:3959: gcc -c conftest.c -o conftest2.o
149
+ configure:3962: $? = 0
150
+ configure:3974: result: yes
151
+ configure:4002: checking for style of include used by make
152
+ configure:4030: result: GNU
153
+ configure:4056: checking dependency style of gcc
154
+ configure:4167: result: gcc3
155
+ configure:4187: checking how to run the C preprocessor
156
+ configure:4218: gcc -E conftest.c
157
+ configure:4218: $? = 0
158
+ configure:4232: gcc -E conftest.c
159
+ conftest.c:11:10: fatal error: 'ac_nonexistent.h' file not found
160
+ #include <ac_nonexistent.h>
161
+ ^
162
+ 1 error generated.
163
+ configure:4232: $? = 1
164
+ configure: failed program was:
165
+ | /* confdefs.h */
166
+ | #define PACKAGE_NAME "tnef"
167
+ | #define PACKAGE_TARNAME "tnef"
168
+ | #define PACKAGE_VERSION "1.4.10"
169
+ | #define PACKAGE_STRING "tnef 1.4.10"
170
+ | #define PACKAGE_BUGREPORT "verdammelt@users.sourceforge.net"
171
+ | #define PACKAGE_URL ""
172
+ | #define PACKAGE "tnef"
173
+ | #define VERSION "1.4.10"
174
+ | /* end confdefs.h. */
175
+ | #include <ac_nonexistent.h>
176
+ configure:4257: result: gcc -E
177
+ configure:4277: gcc -E conftest.c
178
+ configure:4277: $? = 0
179
+ configure:4291: gcc -E conftest.c
180
+ conftest.c:11:10: fatal error: 'ac_nonexistent.h' file not found
181
+ #include <ac_nonexistent.h>
182
+ ^
183
+ 1 error generated.
184
+ configure:4291: $? = 1
185
+ configure: failed program was:
186
+ | /* confdefs.h */
187
+ | #define PACKAGE_NAME "tnef"
188
+ | #define PACKAGE_TARNAME "tnef"
189
+ | #define PACKAGE_VERSION "1.4.10"
190
+ | #define PACKAGE_STRING "tnef 1.4.10"
191
+ | #define PACKAGE_BUGREPORT "verdammelt@users.sourceforge.net"
192
+ | #define PACKAGE_URL ""
193
+ | #define PACKAGE "tnef"
194
+ | #define VERSION "1.4.10"
195
+ | /* end confdefs.h. */
196
+ | #include <ac_nonexistent.h>
197
+ configure:4377: checking for g++
198
+ configure:4393: found /usr/bin/g++
199
+ configure:4404: result: g++
200
+ configure:4431: checking for C++ compiler version
201
+ configure:4440: g++ --version >&5
202
+ Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn)
203
+ Target: x86_64-apple-darwin13.0.0
204
+ Thread model: posix
205
+ Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
206
+ configure:4451: $? = 0
207
+ configure:4440: g++ -v >&5
208
+ Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
209
+ Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn)
210
+ Target: x86_64-apple-darwin13.0.0
211
+ Thread model: posix
212
+ configure:4451: $? = 0
213
+ configure:4440: g++ -V >&5
214
+ clang: error: argument to '-V' is missing (expected 1 value)
215
+ clang: error: no input files
216
+ configure:4451: $? = 1
217
+ configure:4440: g++ -qversion >&5
218
+ clang: error: no input files
219
+ configure:4451: $? = 1
220
+ configure:4455: checking whether we are using the GNU C++ compiler
221
+ configure:4474: g++ -c conftest.cpp >&5
222
+ configure:4474: $? = 0
223
+ configure:4483: result: yes
224
+ configure:4492: checking whether g++ accepts -g
225
+ configure:4512: g++ -c -g conftest.cpp >&5
226
+ configure:4512: $? = 0
227
+ configure:4553: result: yes
228
+ configure:4578: checking dependency style of g++
229
+ configure:4689: result: gcc3
230
+ configure:4705: checking whether ln -s works
231
+ configure:4709: result: yes
232
+ configure:4759: checking for ranlib
233
+ configure:4775: found /usr/bin/ranlib
234
+ configure:4786: result: ranlib
235
+ configure:4810: checking for gettext in -lintl
236
+ configure:4835: gcc -o conftest -I/opt/boxen/homebrew/include -L/opt/boxen/homebrew/lib conftest.c -lintl >&5
237
+ ld: library not found for -lintl
238
+ clang: error: linker command failed with exit code 1 (use -v to see invocation)
239
+ configure:4835: $? = 1
240
+ configure: failed program was:
241
+ | /* confdefs.h */
242
+ | #define PACKAGE_NAME "tnef"
243
+ | #define PACKAGE_TARNAME "tnef"
244
+ | #define PACKAGE_VERSION "1.4.10"
245
+ | #define PACKAGE_STRING "tnef 1.4.10"
246
+ | #define PACKAGE_BUGREPORT "verdammelt@users.sourceforge.net"
247
+ | #define PACKAGE_URL ""
248
+ | #define PACKAGE "tnef"
249
+ | #define VERSION "1.4.10"
250
+ | /* end confdefs.h. */
251
+ |
252
+ | /* Override any GCC internal prototype to avoid an error.
253
+ | Use char because int might match the return type of a GCC
254
+ | builtin and then its argument prototype would still apply. */
255
+ | #ifdef __cplusplus
256
+ | extern "C"
257
+ | #endif
258
+ | char gettext ();
259
+ | int
260
+ | main ()
261
+ | {
262
+ | return gettext ();
263
+ | ;
264
+ | return 0;
265
+ | }
266
+ configure:4844: result: no
267
+ configure:4857: checking for grep that handles long lines and -e
268
+ configure:4915: result: /usr/bin/grep
269
+ configure:4920: checking for egrep
270
+ configure:4982: result: /usr/bin/grep -E
271
+ configure:4987: checking for ANSI C header files
272
+ configure:5007: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
273
+ configure:5007: $? = 0
274
+ configure:5080: gcc -o conftest -I/opt/boxen/homebrew/include -L/opt/boxen/homebrew/lib conftest.c >&5
275
+ configure:5080: $? = 0
276
+ configure:5080: ./conftest
277
+ configure:5080: $? = 0
278
+ configure:5091: result: yes
279
+ configure:5104: checking for sys/types.h
280
+ configure:5104: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
281
+ configure:5104: $? = 0
282
+ configure:5104: result: yes
283
+ configure:5104: checking for sys/stat.h
284
+ configure:5104: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
285
+ configure:5104: $? = 0
286
+ configure:5104: result: yes
287
+ configure:5104: checking for stdlib.h
288
+ configure:5104: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
289
+ configure:5104: $? = 0
290
+ configure:5104: result: yes
291
+ configure:5104: checking for string.h
292
+ configure:5104: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
293
+ configure:5104: $? = 0
294
+ configure:5104: result: yes
295
+ configure:5104: checking for memory.h
296
+ configure:5104: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
297
+ configure:5104: $? = 0
298
+ configure:5104: result: yes
299
+ configure:5104: checking for strings.h
300
+ configure:5104: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
301
+ configure:5104: $? = 0
302
+ configure:5104: result: yes
303
+ configure:5104: checking for inttypes.h
304
+ configure:5104: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
305
+ configure:5104: $? = 0
306
+ configure:5104: result: yes
307
+ configure:5104: checking for stdint.h
308
+ configure:5104: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
309
+ configure:5104: $? = 0
310
+ configure:5104: result: yes
311
+ configure:5104: checking for unistd.h
312
+ configure:5104: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
313
+ configure:5104: $? = 0
314
+ configure:5104: result: yes
315
+ configure:5118: checking libintl.h usability
316
+ configure:5118: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
317
+ conftest.c:54:10: fatal error: 'libintl.h' file not found
318
+ #include <libintl.h>
319
+ ^
320
+ 1 error generated.
321
+ configure:5118: $? = 1
322
+ configure: failed program was:
323
+ | /* confdefs.h */
324
+ | #define PACKAGE_NAME "tnef"
325
+ | #define PACKAGE_TARNAME "tnef"
326
+ | #define PACKAGE_VERSION "1.4.10"
327
+ | #define PACKAGE_STRING "tnef 1.4.10"
328
+ | #define PACKAGE_BUGREPORT "verdammelt@users.sourceforge.net"
329
+ | #define PACKAGE_URL ""
330
+ | #define PACKAGE "tnef"
331
+ | #define VERSION "1.4.10"
332
+ | #define STDC_HEADERS 1
333
+ | #define HAVE_SYS_TYPES_H 1
334
+ | #define HAVE_SYS_STAT_H 1
335
+ | #define HAVE_STDLIB_H 1
336
+ | #define HAVE_STRING_H 1
337
+ | #define HAVE_MEMORY_H 1
338
+ | #define HAVE_STRINGS_H 1
339
+ | #define HAVE_INTTYPES_H 1
340
+ | #define HAVE_STDINT_H 1
341
+ | #define HAVE_UNISTD_H 1
342
+ | /* end confdefs.h. */
343
+ | #include <stdio.h>
344
+ | #ifdef HAVE_SYS_TYPES_H
345
+ | # include <sys/types.h>
346
+ | #endif
347
+ | #ifdef HAVE_SYS_STAT_H
348
+ | # include <sys/stat.h>
349
+ | #endif
350
+ | #ifdef STDC_HEADERS
351
+ | # include <stdlib.h>
352
+ | # include <stddef.h>
353
+ | #else
354
+ | # ifdef HAVE_STDLIB_H
355
+ | # include <stdlib.h>
356
+ | # endif
357
+ | #endif
358
+ | #ifdef HAVE_STRING_H
359
+ | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
360
+ | # include <memory.h>
361
+ | # endif
362
+ | # include <string.h>
363
+ | #endif
364
+ | #ifdef HAVE_STRINGS_H
365
+ | # include <strings.h>
366
+ | #endif
367
+ | #ifdef HAVE_INTTYPES_H
368
+ | # include <inttypes.h>
369
+ | #endif
370
+ | #ifdef HAVE_STDINT_H
371
+ | # include <stdint.h>
372
+ | #endif
373
+ | #ifdef HAVE_UNISTD_H
374
+ | # include <unistd.h>
375
+ | #endif
376
+ | #include <libintl.h>
377
+ configure:5118: result: no
378
+ configure:5118: checking libintl.h presence
379
+ configure:5118: gcc -E conftest.c
380
+ conftest.c:21:10: fatal error: 'libintl.h' file not found
381
+ #include <libintl.h>
382
+ ^
383
+ 1 error generated.
384
+ configure:5118: $? = 1
385
+ configure: failed program was:
386
+ | /* confdefs.h */
387
+ | #define PACKAGE_NAME "tnef"
388
+ | #define PACKAGE_TARNAME "tnef"
389
+ | #define PACKAGE_VERSION "1.4.10"
390
+ | #define PACKAGE_STRING "tnef 1.4.10"
391
+ | #define PACKAGE_BUGREPORT "verdammelt@users.sourceforge.net"
392
+ | #define PACKAGE_URL ""
393
+ | #define PACKAGE "tnef"
394
+ | #define VERSION "1.4.10"
395
+ | #define STDC_HEADERS 1
396
+ | #define HAVE_SYS_TYPES_H 1
397
+ | #define HAVE_SYS_STAT_H 1
398
+ | #define HAVE_STDLIB_H 1
399
+ | #define HAVE_STRING_H 1
400
+ | #define HAVE_MEMORY_H 1
401
+ | #define HAVE_STRINGS_H 1
402
+ | #define HAVE_INTTYPES_H 1
403
+ | #define HAVE_STDINT_H 1
404
+ | #define HAVE_UNISTD_H 1
405
+ | /* end confdefs.h. */
406
+ | #include <libintl.h>
407
+ configure:5118: result: no
408
+ configure:5118: checking for libintl.h
409
+ configure:5118: result: no
410
+ configure:5128: checking whether basename is declared
411
+ configure:5128: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
412
+ conftest.c:61:10: error: use of undeclared identifier 'basename'
413
+ (void) basename;
414
+ ^
415
+ 1 error generated.
416
+ configure:5128: $? = 1
417
+ configure: failed program was:
418
+ | /* confdefs.h */
419
+ | #define PACKAGE_NAME "tnef"
420
+ | #define PACKAGE_TARNAME "tnef"
421
+ | #define PACKAGE_VERSION "1.4.10"
422
+ | #define PACKAGE_STRING "tnef 1.4.10"
423
+ | #define PACKAGE_BUGREPORT "verdammelt@users.sourceforge.net"
424
+ | #define PACKAGE_URL ""
425
+ | #define PACKAGE "tnef"
426
+ | #define VERSION "1.4.10"
427
+ | #define STDC_HEADERS 1
428
+ | #define HAVE_SYS_TYPES_H 1
429
+ | #define HAVE_SYS_STAT_H 1
430
+ | #define HAVE_STDLIB_H 1
431
+ | #define HAVE_STRING_H 1
432
+ | #define HAVE_MEMORY_H 1
433
+ | #define HAVE_STRINGS_H 1
434
+ | #define HAVE_INTTYPES_H 1
435
+ | #define HAVE_STDINT_H 1
436
+ | #define HAVE_UNISTD_H 1
437
+ | /* end confdefs.h. */
438
+ | #include <stdio.h>
439
+ | #ifdef HAVE_SYS_TYPES_H
440
+ | # include <sys/types.h>
441
+ | #endif
442
+ | #ifdef HAVE_SYS_STAT_H
443
+ | # include <sys/stat.h>
444
+ | #endif
445
+ | #ifdef STDC_HEADERS
446
+ | # include <stdlib.h>
447
+ | # include <stddef.h>
448
+ | #else
449
+ | # ifdef HAVE_STDLIB_H
450
+ | # include <stdlib.h>
451
+ | # endif
452
+ | #endif
453
+ | #ifdef HAVE_STRING_H
454
+ | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
455
+ | # include <memory.h>
456
+ | # endif
457
+ | # include <string.h>
458
+ | #endif
459
+ | #ifdef HAVE_STRINGS_H
460
+ | # include <strings.h>
461
+ | #endif
462
+ | #ifdef HAVE_INTTYPES_H
463
+ | # include <inttypes.h>
464
+ | #endif
465
+ | #ifdef HAVE_STDINT_H
466
+ | # include <stdint.h>
467
+ | #endif
468
+ | #ifdef HAVE_UNISTD_H
469
+ | # include <unistd.h>
470
+ | #endif
471
+ | int
472
+ | main ()
473
+ | {
474
+ | #ifndef basename
475
+ | #ifdef __cplusplus
476
+ | (void) basename;
477
+ | #else
478
+ | (void) basename;
479
+ | #endif
480
+ | #endif
481
+ |
482
+ | ;
483
+ | return 0;
484
+ | }
485
+ configure:5128: result: no
486
+ configure:5140: checking for size_t
487
+ configure:5140: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
488
+ configure:5140: $? = 0
489
+ configure:5140: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
490
+ conftest.c:58:21: error: expected expression
491
+ if (sizeof ((size_t)))
492
+ ^
493
+ 1 error generated.
494
+ configure:5140: $? = 1
495
+ configure: failed program was:
496
+ | /* confdefs.h */
497
+ | #define PACKAGE_NAME "tnef"
498
+ | #define PACKAGE_TARNAME "tnef"
499
+ | #define PACKAGE_VERSION "1.4.10"
500
+ | #define PACKAGE_STRING "tnef 1.4.10"
501
+ | #define PACKAGE_BUGREPORT "verdammelt@users.sourceforge.net"
502
+ | #define PACKAGE_URL ""
503
+ | #define PACKAGE "tnef"
504
+ | #define VERSION "1.4.10"
505
+ | #define STDC_HEADERS 1
506
+ | #define HAVE_SYS_TYPES_H 1
507
+ | #define HAVE_SYS_STAT_H 1
508
+ | #define HAVE_STDLIB_H 1
509
+ | #define HAVE_STRING_H 1
510
+ | #define HAVE_MEMORY_H 1
511
+ | #define HAVE_STRINGS_H 1
512
+ | #define HAVE_INTTYPES_H 1
513
+ | #define HAVE_STDINT_H 1
514
+ | #define HAVE_UNISTD_H 1
515
+ | #define HAVE_DECL_BASENAME 0
516
+ | /* end confdefs.h. */
517
+ | #include <stdio.h>
518
+ | #ifdef HAVE_SYS_TYPES_H
519
+ | # include <sys/types.h>
520
+ | #endif
521
+ | #ifdef HAVE_SYS_STAT_H
522
+ | # include <sys/stat.h>
523
+ | #endif
524
+ | #ifdef STDC_HEADERS
525
+ | # include <stdlib.h>
526
+ | # include <stddef.h>
527
+ | #else
528
+ | # ifdef HAVE_STDLIB_H
529
+ | # include <stdlib.h>
530
+ | # endif
531
+ | #endif
532
+ | #ifdef HAVE_STRING_H
533
+ | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
534
+ | # include <memory.h>
535
+ | # endif
536
+ | # include <string.h>
537
+ | #endif
538
+ | #ifdef HAVE_STRINGS_H
539
+ | # include <strings.h>
540
+ | #endif
541
+ | #ifdef HAVE_INTTYPES_H
542
+ | # include <inttypes.h>
543
+ | #endif
544
+ | #ifdef HAVE_STDINT_H
545
+ | # include <stdint.h>
546
+ | #endif
547
+ | #ifdef HAVE_UNISTD_H
548
+ | # include <unistd.h>
549
+ | #endif
550
+ | int
551
+ | main ()
552
+ | {
553
+ | if (sizeof ((size_t)))
554
+ | return 0;
555
+ | ;
556
+ | return 0;
557
+ | }
558
+ configure:5140: result: yes
559
+ configure:5151: checking whether stat file-mode macros are broken
560
+ configure:5178: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
561
+ configure:5178: $? = 0
562
+ configure:5185: result: no
563
+ configure:5195: checking for an ANSI C-conforming const
564
+ configure:5261: gcc -c -I/opt/boxen/homebrew/include conftest.c >&5
565
+ configure:5261: $? = 0
566
+ configure:5268: result: yes
567
+ configure:5280: checking size of int
568
+ configure:5285: gcc -o conftest -I/opt/boxen/homebrew/include -L/opt/boxen/homebrew/lib conftest.c >&5
569
+ configure:5285: $? = 0
570
+ configure:5285: ./conftest
571
+ configure:5285: $? = 0
572
+ configure:5299: result: 4
573
+ configure:5310: checking for strdup
574
+ configure:5310: gcc -o conftest -I/opt/boxen/homebrew/include -L/opt/boxen/homebrew/lib conftest.c >&5
575
+ conftest.c:46:6: warning: incompatible redeclaration of library function 'strdup' [-Wincompatible-library-redeclaration]
576
+ char strdup ();
577
+ ^
578
+ conftest.c:46:6: note: 'strdup' is a builtin with type 'char *(const char *)'
579
+ 1 warning generated.
580
+ configure:5310: $? = 0
581
+ configure:5310: result: yes
582
+ configure:5323: checking for getopt_long
583
+ configure:5323: gcc -o conftest -I/opt/boxen/homebrew/include -L/opt/boxen/homebrew/lib conftest.c >&5
584
+ configure:5323: $? = 0
585
+ configure:5323: result: yes
586
+ configure:5336: checking for basename
587
+ configure:5336: gcc -o conftest -I/opt/boxen/homebrew/include -L/opt/boxen/homebrew/lib conftest.c >&5
588
+ configure:5336: $? = 0
589
+ configure:5336: result: yes
590
+ configure:5353: checking for strrchr
591
+ configure:5353: gcc -o conftest -I/opt/boxen/homebrew/include -L/opt/boxen/homebrew/lib conftest.c >&5
592
+ conftest.c:49:6: warning: incompatible redeclaration of library function 'strrchr' [-Wincompatible-library-redeclaration]
593
+ char strrchr ();
594
+ ^
595
+ conftest.c:49:6: note: 'strrchr' is a builtin with type 'char *(const char *, int)'
596
+ 1 warning generated.
597
+ configure:5353: $? = 0
598
+ configure:5353: result: yes
599
+ configure:5353: checking for memmove
600
+ configure:5353: gcc -o conftest -I/opt/boxen/homebrew/include -L/opt/boxen/homebrew/lib conftest.c >&5
601
+ conftest.c:50:6: warning: incompatible redeclaration of library function 'memmove' [-Wincompatible-library-redeclaration]
602
+ char memmove ();
603
+ ^
604
+ conftest.c:50:6: note: 'memmove' is a builtin with type 'void *(void *, const void *, unsigned long)'
605
+ 1 warning generated.
606
+ configure:5353: $? = 0
607
+ configure:5353: result: yes
608
+ configure:5353: checking for memset
609
+ configure:5353: gcc -o conftest -I/opt/boxen/homebrew/include -L/opt/boxen/homebrew/lib conftest.c >&5
610
+ conftest.c:51:6: warning: incompatible redeclaration of library function 'memset' [-Wincompatible-library-redeclaration]
611
+ char memset ();
612
+ ^
613
+ conftest.c:51:6: note: 'memset' is a builtin with type 'void *(void *, int, unsigned long)'
614
+ 1 warning generated.
615
+ configure:5353: $? = 0
616
+ configure:5353: result: yes
617
+ configure:5353: checking for strtoul
618
+ configure:5353: gcc -o conftest -I/opt/boxen/homebrew/include -L/opt/boxen/homebrew/lib conftest.c >&5
619
+ configure:5353: $? = 0
620
+ configure:5353: result: yes
621
+ configure:5364: checking for vprintf
622
+ configure:5364: gcc -o conftest -I/opt/boxen/homebrew/include -L/opt/boxen/homebrew/lib conftest.c >&5
623
+ conftest.c:53:6: warning: incompatible redeclaration of library function 'vprintf' [-Wincompatible-library-redeclaration]
624
+ char vprintf ();
625
+ ^
626
+ conftest.c:53:6: note: 'vprintf' is a builtin with type 'int (const char *, __va_list_tag *)'
627
+ 1 warning generated.
628
+ configure:5364: $? = 0
629
+ configure:5364: result: yes
630
+ configure:5370: checking for _doprnt
631
+ configure:5370: gcc -o conftest -I/opt/boxen/homebrew/include -L/opt/boxen/homebrew/lib conftest.c >&5
632
+ Undefined symbols for architecture x86_64:
633
+ "__doprnt", referenced from:
634
+ _main in conftest-VTkMGO.o
635
+ ld: symbol(s) not found for architecture x86_64
636
+ clang: error: linker command failed with exit code 1 (use -v to see invocation)
637
+ configure:5370: $? = 1
638
+ configure: failed program was:
639
+ | /* confdefs.h */
640
+ | #define PACKAGE_NAME "tnef"
641
+ | #define PACKAGE_TARNAME "tnef"
642
+ | #define PACKAGE_VERSION "1.4.10"
643
+ | #define PACKAGE_STRING "tnef 1.4.10"
644
+ | #define PACKAGE_BUGREPORT "verdammelt@users.sourceforge.net"
645
+ | #define PACKAGE_URL ""
646
+ | #define PACKAGE "tnef"
647
+ | #define VERSION "1.4.10"
648
+ | #define STDC_HEADERS 1
649
+ | #define HAVE_SYS_TYPES_H 1
650
+ | #define HAVE_SYS_STAT_H 1
651
+ | #define HAVE_STDLIB_H 1
652
+ | #define HAVE_STRING_H 1
653
+ | #define HAVE_MEMORY_H 1
654
+ | #define HAVE_STRINGS_H 1
655
+ | #define HAVE_INTTYPES_H 1
656
+ | #define HAVE_STDINT_H 1
657
+ | #define HAVE_UNISTD_H 1
658
+ | #define HAVE_DECL_BASENAME 0
659
+ | #define SIZEOF_INT 4
660
+ | #define HAVE_STRDUP 1
661
+ | #define HAVE_GETOPT_LONG 1
662
+ | #define HAVE_BASENAME 1
663
+ | #define HAVE_STRRCHR 1
664
+ | #define HAVE_MEMMOVE 1
665
+ | #define HAVE_MEMSET 1
666
+ | #define HAVE_STRTOUL 1
667
+ | #define HAVE_VPRINTF 1
668
+ | /* end confdefs.h. */
669
+ | /* Define _doprnt to an innocuous variant, in case <limits.h> declares _doprnt.
670
+ | For example, HP-UX 11i <limits.h> declares gettimeofday. */
671
+ | #define _doprnt innocuous__doprnt
672
+ |
673
+ | /* System header to define __stub macros and hopefully few prototypes,
674
+ | which can conflict with char _doprnt (); below.
675
+ | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
676
+ | <limits.h> exists even on freestanding compilers. */
677
+ |
678
+ | #ifdef __STDC__
679
+ | # include <limits.h>
680
+ | #else
681
+ | # include <assert.h>
682
+ | #endif
683
+ |
684
+ | #undef _doprnt
685
+ |
686
+ | /* Override any GCC internal prototype to avoid an error.
687
+ | Use char because int might match the return type of a GCC
688
+ | builtin and then its argument prototype would still apply. */
689
+ | #ifdef __cplusplus
690
+ | extern "C"
691
+ | #endif
692
+ | char _doprnt ();
693
+ | /* The GNU C library defines this for functions which it implements
694
+ | to always fail with ENOSYS. Some functions are actually named
695
+ | something starting with __ and the normal name is an alias. */
696
+ | #if defined __stub__doprnt || defined __stub____doprnt
697
+ | choke me
698
+ | #endif
699
+ |
700
+ | int
701
+ | main ()
702
+ | {
703
+ | return _doprnt ();
704
+ | ;
705
+ | return 0;
706
+ | }
707
+ configure:5370: result: no
708
+ configure:5383: checking for stdlib.h
709
+ configure:5383: result: yes
710
+ configure:5393: checking for GNU libc compatible malloc
711
+ configure:5417: gcc -o conftest -I/opt/boxen/homebrew/include -L/opt/boxen/homebrew/lib conftest.c >&5
712
+ configure:5417: $? = 0
713
+ configure:5417: ./conftest
714
+ configure:5417: $? = 0
715
+ configure:5427: result: yes
716
+ configure:5452: checking whether to enable maintainer-specific portions of Makefiles
717
+ configure:5461: result: no
718
+ configure:5634: checking that generated files are newer than configure
719
+ configure:5640: result: done
720
+ configure:5671: creating ./config.status
721
+
722
+ ## ---------------- ##
723
+ ## Cache variables. ##
724
+ ## ---------------- ##
725
+
726
+ ac_cv_c_compiler_gnu=yes
727
+ ac_cv_c_const=yes
728
+ ac_cv_cxx_compiler_gnu=yes
729
+ ac_cv_env_CCC_set=
730
+ ac_cv_env_CCC_value=
731
+ ac_cv_env_CC_set=
732
+ ac_cv_env_CC_value=
733
+ ac_cv_env_CFLAGS_set=set
734
+ ac_cv_env_CFLAGS_value=-I/opt/boxen/homebrew/include
735
+ ac_cv_env_CPPFLAGS_set=
736
+ ac_cv_env_CPPFLAGS_value=
737
+ ac_cv_env_CPP_set=
738
+ ac_cv_env_CPP_value=
739
+ ac_cv_env_CXXFLAGS_set=
740
+ ac_cv_env_CXXFLAGS_value=
741
+ ac_cv_env_CXX_set=
742
+ ac_cv_env_CXX_value=
743
+ ac_cv_env_LDFLAGS_set=set
744
+ ac_cv_env_LDFLAGS_value=-L/opt/boxen/homebrew/lib
745
+ ac_cv_env_LIBS_set=
746
+ ac_cv_env_LIBS_value=
747
+ ac_cv_env_build_alias_set=
748
+ ac_cv_env_build_alias_value=
749
+ ac_cv_env_host_alias_set=
750
+ ac_cv_env_host_alias_value=
751
+ ac_cv_env_target_alias_set=
752
+ ac_cv_env_target_alias_value=
753
+ ac_cv_func__doprnt=no
754
+ ac_cv_func_basename=yes
755
+ ac_cv_func_getopt_long=yes
756
+ ac_cv_func_malloc_0_nonnull=yes
757
+ ac_cv_func_memmove=yes
758
+ ac_cv_func_memset=yes
759
+ ac_cv_func_strdup=yes
760
+ ac_cv_func_strrchr=yes
761
+ ac_cv_func_strtoul=yes
762
+ ac_cv_func_vprintf=yes
763
+ ac_cv_have_decl_basename=no
764
+ ac_cv_header_inttypes_h=yes
765
+ ac_cv_header_libintl_h=no
766
+ ac_cv_header_memory_h=yes
767
+ ac_cv_header_stat_broken=no
768
+ ac_cv_header_stdc=yes
769
+ ac_cv_header_stdint_h=yes
770
+ ac_cv_header_stdlib_h=yes
771
+ ac_cv_header_string_h=yes
772
+ ac_cv_header_strings_h=yes
773
+ ac_cv_header_sys_stat_h=yes
774
+ ac_cv_header_sys_types_h=yes
775
+ ac_cv_header_unistd_h=yes
776
+ ac_cv_lib_intl_gettext=no
777
+ ac_cv_objext=o
778
+ ac_cv_path_EGREP='/usr/bin/grep -E'
779
+ ac_cv_path_GREP=/usr/bin/grep
780
+ ac_cv_path_install='/usr/bin/install -c'
781
+ ac_cv_prog_AWK=awk
782
+ ac_cv_prog_CPP='gcc -E'
783
+ ac_cv_prog_ac_ct_CC=gcc
784
+ ac_cv_prog_ac_ct_CXX=g++
785
+ ac_cv_prog_ac_ct_RANLIB=ranlib
786
+ ac_cv_prog_cc_c89=
787
+ ac_cv_prog_cc_g=yes
788
+ ac_cv_prog_cxx_g=yes
789
+ ac_cv_prog_make_make_set=yes
790
+ ac_cv_sizeof_int=4
791
+ ac_cv_type_size_t=yes
792
+ am_cv_CC_dependencies_compiler_type=gcc3
793
+ am_cv_CXX_dependencies_compiler_type=gcc3
794
+ am_cv_make_support_nested_variables=yes
795
+ am_cv_prog_cc_c_o=yes
796
+
797
+ ## ----------------- ##
798
+ ## Output variables. ##
799
+ ## ----------------- ##
800
+
801
+ ACLOCAL='aclocal-1.14'
802
+ AMDEPBACKSLASH='\'
803
+ AMDEP_FALSE='#'
804
+ AMDEP_TRUE=''
805
+ AMTAR='$${TAR-tar}'
806
+ AM_BACKSLASH='\'
807
+ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
808
+ AM_DEFAULT_VERBOSITY='1'
809
+ AM_V='$(V)'
810
+ AUTOCONF='autoconf'
811
+ AUTOHEADER='autoheader'
812
+ AUTOMAKE='automake-1.14'
813
+ AWK='awk'
814
+ CC='gcc'
815
+ CCDEPMODE='depmode=gcc3'
816
+ CFLAGS='-I/opt/boxen/homebrew/include'
817
+ CPP='gcc -E'
818
+ CPPFLAGS=''
819
+ CXX='g++'
820
+ CXXDEPMODE='depmode=gcc3'
821
+ CXXFLAGS='-g -O2'
822
+ CYGPATH_W='echo'
823
+ DEFS='-DHAVE_CONFIG_H'
824
+ DEPDIR='.deps'
825
+ ECHO_C='\c'
826
+ ECHO_N=''
827
+ ECHO_T=''
828
+ EGREP='/usr/bin/grep -E'
829
+ EXEEXT=''
830
+ GREP='/usr/bin/grep'
831
+ INSTALL_DATA='${INSTALL} -m 644'
832
+ INSTALL_PROGRAM='${INSTALL}'
833
+ INSTALL_SCRIPT='${INSTALL}'
834
+ INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
835
+ LDFLAGS='-L/opt/boxen/homebrew/lib'
836
+ LIBOBJS=''
837
+ LIBS=''
838
+ LN_S='ln -s'
839
+ LTLIBOBJS=''
840
+ MAINT='#'
841
+ MAINTAINER_MODE_FALSE=''
842
+ MAINTAINER_MODE_TRUE='#'
843
+ MAKEINFO='makeinfo'
844
+ MKDIR_P='./install-sh -c -d'
845
+ OBJEXT='o'
846
+ PACKAGE='tnef'
847
+ PACKAGE_BUGREPORT='verdammelt@users.sourceforge.net'
848
+ PACKAGE_NAME='tnef'
849
+ PACKAGE_STRING='tnef 1.4.10'
850
+ PACKAGE_TARNAME='tnef'
851
+ PACKAGE_URL=''
852
+ PACKAGE_VERSION='1.4.10'
853
+ PATH_SEPARATOR=':'
854
+ RANLIB='ranlib'
855
+ SET_MAKE=''
856
+ SHELL='/bin/sh'
857
+ STRIP=''
858
+ VERSION='1.4.10'
859
+ ac_ct_CC='gcc'
860
+ ac_ct_CXX='g++'
861
+ am__EXEEXT_FALSE=''
862
+ am__EXEEXT_TRUE='#'
863
+ am__fastdepCC_FALSE='#'
864
+ am__fastdepCC_TRUE=''
865
+ am__fastdepCXX_FALSE='#'
866
+ am__fastdepCXX_TRUE=''
867
+ am__include='include'
868
+ am__isrc=''
869
+ am__leading_dot='.'
870
+ am__nodep='_no'
871
+ am__quote=''
872
+ am__tar='$${TAR-tar} chof - "$$tardir"'
873
+ am__untar='$${TAR-tar} xf -'
874
+ bindir='${exec_prefix}/bin'
875
+ build_alias=''
876
+ datadir='${datarootdir}'
877
+ datarootdir='${prefix}/share'
878
+ docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
879
+ dvidir='${docdir}'
880
+ exec_prefix='${prefix}'
881
+ host_alias=''
882
+ htmldir='${docdir}'
883
+ includedir='${prefix}/include'
884
+ infodir='${datarootdir}/info'
885
+ install_sh='${SHELL} /Users/mgrosser/Code/tools/tnef/ext/tnef/install-sh'
886
+ libdir='${exec_prefix}/lib'
887
+ libexecdir='${exec_prefix}/libexec'
888
+ localedir='${datarootdir}/locale'
889
+ localstatedir='${prefix}/var'
890
+ mandir='${datarootdir}/man'
891
+ mkdir_p='$(MKDIR_P)'
892
+ oldincludedir='/usr/include'
893
+ pdfdir='${docdir}'
894
+ prefix='/usr/local'
895
+ program_transform_name='s,x,x,'
896
+ psdir='${docdir}'
897
+ sbindir='${exec_prefix}/sbin'
898
+ sharedstatedir='${prefix}/com'
899
+ sysconfdir='${prefix}/etc'
900
+ target_alias=''
901
+
902
+ ## ----------- ##
903
+ ## confdefs.h. ##
904
+ ## ----------- ##
905
+
906
+ /* confdefs.h */
907
+ #define PACKAGE_NAME "tnef"
908
+ #define PACKAGE_TARNAME "tnef"
909
+ #define PACKAGE_VERSION "1.4.10"
910
+ #define PACKAGE_STRING "tnef 1.4.10"
911
+ #define PACKAGE_BUGREPORT "verdammelt@users.sourceforge.net"
912
+ #define PACKAGE_URL ""
913
+ #define PACKAGE "tnef"
914
+ #define VERSION "1.4.10"
915
+ #define STDC_HEADERS 1
916
+ #define HAVE_SYS_TYPES_H 1
917
+ #define HAVE_SYS_STAT_H 1
918
+ #define HAVE_STDLIB_H 1
919
+ #define HAVE_STRING_H 1
920
+ #define HAVE_MEMORY_H 1
921
+ #define HAVE_STRINGS_H 1
922
+ #define HAVE_INTTYPES_H 1
923
+ #define HAVE_STDINT_H 1
924
+ #define HAVE_UNISTD_H 1
925
+ #define HAVE_DECL_BASENAME 0
926
+ #define SIZEOF_INT 4
927
+ #define HAVE_STRDUP 1
928
+ #define HAVE_GETOPT_LONG 1
929
+ #define HAVE_BASENAME 1
930
+ #define HAVE_STRRCHR 1
931
+ #define HAVE_MEMMOVE 1
932
+ #define HAVE_MEMSET 1
933
+ #define HAVE_STRTOUL 1
934
+ #define HAVE_VPRINTF 1
935
+ #define HAVE_STDLIB_H 1
936
+ #define HAVE_MALLOC 1
937
+
938
+ configure: exit 0
939
+
940
+ ## ---------------------- ##
941
+ ## Running config.status. ##
942
+ ## ---------------------- ##
943
+
944
+ This file was extended by tnef config.status 1.4.10, which was
945
+ generated by GNU Autoconf 2.69. Invocation command line was
946
+
947
+ CONFIG_FILES =
948
+ CONFIG_HEADERS =
949
+ CONFIG_LINKS =
950
+ CONFIG_COMMANDS =
951
+ $ ./config.status
952
+
953
+ on 2335-MGrosser.local
954
+
955
+ config.status:889: creating Makefile
956
+ config.status:889: creating BUGS
957
+ config.status:889: creating tnef.spec
958
+ config.status:889: creating doc/Makefile
959
+ config.status:889: creating doc/tnef.1
960
+ config.status:889: creating doc/www/Makefile
961
+ config.status:889: creating doc/www/cgi-bin/Makefile
962
+ config.status:889: creating doc/www/htdocs/Makefile
963
+ config.status:889: creating src/Makefile
964
+ config.status:889: creating src/replace/Makefile
965
+ config.status:889: creating tests/Makefile
966
+ config.status:889: creating tests/cmdline/Makefile
967
+ config.status:889: creating tests/files/Makefile
968
+ config.status:889: creating tests/files/baselines/Makefile
969
+ config.status:889: creating tests/files/datafiles/Makefile
970
+ config.status:889: creating src/config.h
971
+ config.status:1118: executing depfiles commands