dec_number 0.0.0
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.
- data/README +20 -0
- data/dec_number.gemspec +13 -0
- data/ext/dec_number/Gemfile +4 -0
- data/ext/dec_number/NOTES +10 -0
- data/ext/dec_number/decNumber/ICU-license.html +45 -0
- data/ext/dec_number/decNumber/Makefile.am +3 -0
- data/ext/dec_number/decNumber/Makefile.in +680 -0
- data/ext/dec_number/decNumber/aclocal.m4 +8988 -0
- data/ext/dec_number/decNumber/autom4te.cache/output.0 +5107 -0
- data/ext/dec_number/decNumber/autom4te.cache/output.1 +6026 -0
- data/ext/dec_number/decNumber/autom4te.cache/output.2 +13468 -0
- data/ext/dec_number/decNumber/autom4te.cache/output.3 +13472 -0
- data/ext/dec_number/decNumber/autom4te.cache/requests +407 -0
- data/ext/dec_number/decNumber/autom4te.cache/traces.0 +352 -0
- data/ext/dec_number/decNumber/autom4te.cache/traces.1 +772 -0
- data/ext/dec_number/decNumber/autom4te.cache/traces.2 +591 -0
- data/ext/dec_number/decNumber/autom4te.cache/traces.3 +2362 -0
- data/ext/dec_number/decNumber/config.guess +1501 -0
- data/ext/dec_number/decNumber/config.h.in +142 -0
- data/ext/dec_number/decNumber/config.sub +1705 -0
- data/ext/dec_number/decNumber/configure +13468 -0
- data/ext/dec_number/decNumber/configure.ac +36 -0
- data/ext/dec_number/decNumber/decBasic.c +3908 -0
- data/ext/dec_number/decNumber/decCommon.c +1835 -0
- data/ext/dec_number/decNumber/decContext.c +437 -0
- data/ext/dec_number/decNumber/decContext.h +254 -0
- data/ext/dec_number/decNumber/decDPD.h +1185 -0
- data/ext/dec_number/decNumber/decDouble.c +140 -0
- data/ext/dec_number/decNumber/decDouble.h +155 -0
- data/ext/dec_number/decNumber/decNumber.c +8141 -0
- data/ext/dec_number/decNumber/decNumber.h +182 -0
- data/ext/dec_number/decNumber/decNumberLocal.h +757 -0
- data/ext/dec_number/decNumber/decPacked.c +220 -0
- data/ext/dec_number/decNumber/decPacked.h +52 -0
- data/ext/dec_number/decNumber/decQuad.c +135 -0
- data/ext/dec_number/decNumber/decQuad.h +177 -0
- data/ext/dec_number/decNumber/decSingle.c +71 -0
- data/ext/dec_number/decNumber/decSingle.h +86 -0
- data/ext/dec_number/decNumber/decimal128.c +553 -0
- data/ext/dec_number/decNumber/decimal128.h +81 -0
- data/ext/dec_number/decNumber/decimal32.c +476 -0
- data/ext/dec_number/decNumber/decimal32.h +81 -0
- data/ext/dec_number/decNumber/decimal64.c +839 -0
- data/ext/dec_number/decNumber/decimal64.h +83 -0
- data/ext/dec_number/decNumber/decnumber.pdf +0 -0
- data/ext/dec_number/decNumber/depcomp +630 -0
- data/ext/dec_number/decNumber/example1.c +38 -0
- data/ext/dec_number/decNumber/example2.c +52 -0
- data/ext/dec_number/decNumber/example3.c +64 -0
- data/ext/dec_number/decNumber/example4.c +61 -0
- data/ext/dec_number/decNumber/example5.c +36 -0
- data/ext/dec_number/decNumber/example6.c +61 -0
- data/ext/dec_number/decNumber/example7.c +35 -0
- data/ext/dec_number/decNumber/example8.c +39 -0
- data/ext/dec_number/decNumber/install-sh +520 -0
- data/ext/dec_number/decNumber/libdecNumber.a +0 -0
- data/ext/dec_number/decNumber/ltmain.sh +8745 -0
- data/ext/dec_number/decNumber/missing +376 -0
- data/ext/dec_number/decNumber/readme.txt +81 -0
- data/ext/dec_number/dec_number.c +464 -0
- data/ext/dec_number/extconf.rb +52 -0
- data/ext/dec_number/extconf2.rb +50 -0
- data/ext/dec_number/recompile.sh +3 -0
- data/ext/dec_number/test_dec_number.rb +236 -0
- data/ext/dec_number/test_numeric.rb +235 -0
- metadata +111 -0
@@ -0,0 +1,352 @@
|
|
1
|
+
m4trace:configure.ac:5: -1- AC_INIT([decNumber], [3.6.8], [mfc@uk.ibm.com])
|
2
|
+
m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?A[CHUM]_])
|
3
|
+
m4trace:configure.ac:5: -1- m4_pattern_forbid([_AC_])
|
4
|
+
m4trace:configure.ac:5: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
|
5
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^AS_FLAGS$])
|
6
|
+
m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?m4_])
|
7
|
+
m4trace:configure.ac:5: -1- m4_pattern_forbid([^dnl$])
|
8
|
+
m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?AS_])
|
9
|
+
m4trace:configure.ac:5: -1- AC_SUBST([SHELL])
|
10
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([SHELL])
|
11
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^SHELL$])
|
12
|
+
m4trace:configure.ac:5: -1- AC_SUBST([PATH_SEPARATOR])
|
13
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([PATH_SEPARATOR])
|
14
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PATH_SEPARATOR$])
|
15
|
+
m4trace:configure.ac:5: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME], ['AC_PACKAGE_NAME'])])
|
16
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([PACKAGE_NAME])
|
17
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_NAME$])
|
18
|
+
m4trace:configure.ac:5: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME], ['AC_PACKAGE_TARNAME'])])
|
19
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([PACKAGE_TARNAME])
|
20
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
|
21
|
+
m4trace:configure.ac:5: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION], ['AC_PACKAGE_VERSION'])])
|
22
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([PACKAGE_VERSION])
|
23
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_VERSION$])
|
24
|
+
m4trace:configure.ac:5: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING], ['AC_PACKAGE_STRING'])])
|
25
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([PACKAGE_STRING])
|
26
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_STRING$])
|
27
|
+
m4trace:configure.ac:5: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])])
|
28
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([PACKAGE_BUGREPORT])
|
29
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
|
30
|
+
m4trace:configure.ac:5: -1- AC_SUBST([PACKAGE_URL], [m4_ifdef([AC_PACKAGE_URL], ['AC_PACKAGE_URL'])])
|
31
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([PACKAGE_URL])
|
32
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_URL$])
|
33
|
+
m4trace:configure.ac:5: -1- AC_SUBST([exec_prefix], [NONE])
|
34
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([exec_prefix])
|
35
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^exec_prefix$])
|
36
|
+
m4trace:configure.ac:5: -1- AC_SUBST([prefix], [NONE])
|
37
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([prefix])
|
38
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^prefix$])
|
39
|
+
m4trace:configure.ac:5: -1- AC_SUBST([program_transform_name], [s,x,x,])
|
40
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([program_transform_name])
|
41
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^program_transform_name$])
|
42
|
+
m4trace:configure.ac:5: -1- AC_SUBST([bindir], ['${exec_prefix}/bin'])
|
43
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([bindir])
|
44
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^bindir$])
|
45
|
+
m4trace:configure.ac:5: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin'])
|
46
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([sbindir])
|
47
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^sbindir$])
|
48
|
+
m4trace:configure.ac:5: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec'])
|
49
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([libexecdir])
|
50
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^libexecdir$])
|
51
|
+
m4trace:configure.ac:5: -1- AC_SUBST([datarootdir], ['${prefix}/share'])
|
52
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([datarootdir])
|
53
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^datarootdir$])
|
54
|
+
m4trace:configure.ac:5: -1- AC_SUBST([datadir], ['${datarootdir}'])
|
55
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([datadir])
|
56
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^datadir$])
|
57
|
+
m4trace:configure.ac:5: -1- AC_SUBST([sysconfdir], ['${prefix}/etc'])
|
58
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([sysconfdir])
|
59
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^sysconfdir$])
|
60
|
+
m4trace:configure.ac:5: -1- AC_SUBST([sharedstatedir], ['${prefix}/com'])
|
61
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([sharedstatedir])
|
62
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^sharedstatedir$])
|
63
|
+
m4trace:configure.ac:5: -1- AC_SUBST([localstatedir], ['${prefix}/var'])
|
64
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([localstatedir])
|
65
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^localstatedir$])
|
66
|
+
m4trace:configure.ac:5: -1- AC_SUBST([includedir], ['${prefix}/include'])
|
67
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([includedir])
|
68
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^includedir$])
|
69
|
+
m4trace:configure.ac:5: -1- AC_SUBST([oldincludedir], ['/usr/include'])
|
70
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([oldincludedir])
|
71
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^oldincludedir$])
|
72
|
+
m4trace:configure.ac:5: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME],
|
73
|
+
['${datarootdir}/doc/${PACKAGE_TARNAME}'],
|
74
|
+
['${datarootdir}/doc/${PACKAGE}'])])
|
75
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([docdir])
|
76
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^docdir$])
|
77
|
+
m4trace:configure.ac:5: -1- AC_SUBST([infodir], ['${datarootdir}/info'])
|
78
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([infodir])
|
79
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^infodir$])
|
80
|
+
m4trace:configure.ac:5: -1- AC_SUBST([htmldir], ['${docdir}'])
|
81
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([htmldir])
|
82
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^htmldir$])
|
83
|
+
m4trace:configure.ac:5: -1- AC_SUBST([dvidir], ['${docdir}'])
|
84
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([dvidir])
|
85
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^dvidir$])
|
86
|
+
m4trace:configure.ac:5: -1- AC_SUBST([pdfdir], ['${docdir}'])
|
87
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([pdfdir])
|
88
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^pdfdir$])
|
89
|
+
m4trace:configure.ac:5: -1- AC_SUBST([psdir], ['${docdir}'])
|
90
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([psdir])
|
91
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^psdir$])
|
92
|
+
m4trace:configure.ac:5: -1- AC_SUBST([libdir], ['${exec_prefix}/lib'])
|
93
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([libdir])
|
94
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^libdir$])
|
95
|
+
m4trace:configure.ac:5: -1- AC_SUBST([localedir], ['${datarootdir}/locale'])
|
96
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([localedir])
|
97
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^localedir$])
|
98
|
+
m4trace:configure.ac:5: -1- AC_SUBST([mandir], ['${datarootdir}/man'])
|
99
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([mandir])
|
100
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^mandir$])
|
101
|
+
m4trace:configure.ac:5: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME])
|
102
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_NAME$])
|
103
|
+
m4trace:configure.ac:5: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */
|
104
|
+
@%:@undef PACKAGE_NAME])
|
105
|
+
m4trace:configure.ac:5: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME])
|
106
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
|
107
|
+
m4trace:configure.ac:5: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */
|
108
|
+
@%:@undef PACKAGE_TARNAME])
|
109
|
+
m4trace:configure.ac:5: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION])
|
110
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_VERSION$])
|
111
|
+
m4trace:configure.ac:5: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */
|
112
|
+
@%:@undef PACKAGE_VERSION])
|
113
|
+
m4trace:configure.ac:5: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING])
|
114
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_STRING$])
|
115
|
+
m4trace:configure.ac:5: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */
|
116
|
+
@%:@undef PACKAGE_STRING])
|
117
|
+
m4trace:configure.ac:5: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT])
|
118
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
|
119
|
+
m4trace:configure.ac:5: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */
|
120
|
+
@%:@undef PACKAGE_BUGREPORT])
|
121
|
+
m4trace:configure.ac:5: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_URL])
|
122
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_URL$])
|
123
|
+
m4trace:configure.ac:5: -1- AH_OUTPUT([PACKAGE_URL], [/* Define to the home page for this package. */
|
124
|
+
@%:@undef PACKAGE_URL])
|
125
|
+
m4trace:configure.ac:5: -1- AC_SUBST([DEFS])
|
126
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([DEFS])
|
127
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^DEFS$])
|
128
|
+
m4trace:configure.ac:5: -1- AC_SUBST([ECHO_C])
|
129
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([ECHO_C])
|
130
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^ECHO_C$])
|
131
|
+
m4trace:configure.ac:5: -1- AC_SUBST([ECHO_N])
|
132
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([ECHO_N])
|
133
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^ECHO_N$])
|
134
|
+
m4trace:configure.ac:5: -1- AC_SUBST([ECHO_T])
|
135
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([ECHO_T])
|
136
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^ECHO_T$])
|
137
|
+
m4trace:configure.ac:5: -1- AC_SUBST([LIBS])
|
138
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([LIBS])
|
139
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^LIBS$])
|
140
|
+
m4trace:configure.ac:5: -1- AC_SUBST([build_alias])
|
141
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([build_alias])
|
142
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^build_alias$])
|
143
|
+
m4trace:configure.ac:5: -1- AC_SUBST([host_alias])
|
144
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([host_alias])
|
145
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^host_alias$])
|
146
|
+
m4trace:configure.ac:5: -1- AC_SUBST([target_alias])
|
147
|
+
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([target_alias])
|
148
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^target_alias$])
|
149
|
+
m4trace:configure.ac:7: -1- AC_CONFIG_HEADERS([config.h])
|
150
|
+
m4trace:configure.ac:8: -1- AC_CONFIG_FILES([Makefile])
|
151
|
+
m4trace:configure.ac:11: -1- AC_SUBST([CC])
|
152
|
+
m4trace:configure.ac:11: -1- AC_SUBST_TRACE([CC])
|
153
|
+
m4trace:configure.ac:11: -1- m4_pattern_allow([^CC$])
|
154
|
+
m4trace:configure.ac:11: -1- AC_SUBST([CFLAGS])
|
155
|
+
m4trace:configure.ac:11: -1- AC_SUBST_TRACE([CFLAGS])
|
156
|
+
m4trace:configure.ac:11: -1- m4_pattern_allow([^CFLAGS$])
|
157
|
+
m4trace:configure.ac:11: -1- AC_SUBST([LDFLAGS])
|
158
|
+
m4trace:configure.ac:11: -1- AC_SUBST_TRACE([LDFLAGS])
|
159
|
+
m4trace:configure.ac:11: -1- m4_pattern_allow([^LDFLAGS$])
|
160
|
+
m4trace:configure.ac:11: -1- AC_SUBST([LIBS])
|
161
|
+
m4trace:configure.ac:11: -1- AC_SUBST_TRACE([LIBS])
|
162
|
+
m4trace:configure.ac:11: -1- m4_pattern_allow([^LIBS$])
|
163
|
+
m4trace:configure.ac:11: -1- AC_SUBST([CPPFLAGS])
|
164
|
+
m4trace:configure.ac:11: -1- AC_SUBST_TRACE([CPPFLAGS])
|
165
|
+
m4trace:configure.ac:11: -1- m4_pattern_allow([^CPPFLAGS$])
|
166
|
+
m4trace:configure.ac:11: -1- AC_SUBST([CC])
|
167
|
+
m4trace:configure.ac:11: -1- AC_SUBST_TRACE([CC])
|
168
|
+
m4trace:configure.ac:11: -1- m4_pattern_allow([^CC$])
|
169
|
+
m4trace:configure.ac:11: -1- AC_SUBST([CC])
|
170
|
+
m4trace:configure.ac:11: -1- AC_SUBST_TRACE([CC])
|
171
|
+
m4trace:configure.ac:11: -1- m4_pattern_allow([^CC$])
|
172
|
+
m4trace:configure.ac:11: -1- AC_SUBST([CC])
|
173
|
+
m4trace:configure.ac:11: -1- AC_SUBST_TRACE([CC])
|
174
|
+
m4trace:configure.ac:11: -1- m4_pattern_allow([^CC$])
|
175
|
+
m4trace:configure.ac:11: -1- AC_SUBST([CC])
|
176
|
+
m4trace:configure.ac:11: -1- AC_SUBST_TRACE([CC])
|
177
|
+
m4trace:configure.ac:11: -1- m4_pattern_allow([^CC$])
|
178
|
+
m4trace:configure.ac:11: -1- AC_SUBST([ac_ct_CC])
|
179
|
+
m4trace:configure.ac:11: -1- AC_SUBST_TRACE([ac_ct_CC])
|
180
|
+
m4trace:configure.ac:11: -1- m4_pattern_allow([^ac_ct_CC$])
|
181
|
+
m4trace:configure.ac:11: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext])
|
182
|
+
m4trace:configure.ac:11: -1- AC_SUBST_TRACE([EXEEXT])
|
183
|
+
m4trace:configure.ac:11: -1- m4_pattern_allow([^EXEEXT$])
|
184
|
+
m4trace:configure.ac:11: -1- AC_SUBST([OBJEXT], [$ac_cv_objext])
|
185
|
+
m4trace:configure.ac:11: -1- AC_SUBST_TRACE([OBJEXT])
|
186
|
+
m4trace:configure.ac:11: -1- m4_pattern_allow([^OBJEXT$])
|
187
|
+
m4trace:configure.ac:16: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
|
188
|
+
@%:@undef HAVE_STDINT_H])
|
189
|
+
m4trace:configure.ac:16: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
|
190
|
+
@%:@undef HAVE_STDLIB_H])
|
191
|
+
m4trace:configure.ac:16: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */
|
192
|
+
@%:@undef HAVE_STRING_H])
|
193
|
+
m4trace:configure.ac:16: -1- AC_SUBST([CPP])
|
194
|
+
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([CPP])
|
195
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^CPP$])
|
196
|
+
m4trace:configure.ac:16: -1- AC_SUBST([CPPFLAGS])
|
197
|
+
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([CPPFLAGS])
|
198
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^CPPFLAGS$])
|
199
|
+
m4trace:configure.ac:16: -1- AC_SUBST([CPP])
|
200
|
+
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([CPP])
|
201
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^CPP$])
|
202
|
+
m4trace:configure.ac:16: -1- AC_SUBST([GREP])
|
203
|
+
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([GREP])
|
204
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^GREP$])
|
205
|
+
m4trace:configure.ac:16: -1- AC_SUBST([EGREP])
|
206
|
+
m4trace:configure.ac:16: -1- AC_SUBST_TRACE([EGREP])
|
207
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^EGREP$])
|
208
|
+
m4trace:configure.ac:16: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
|
209
|
+
m4trace:configure.ac:16: -1- m4_pattern_allow([^STDC_HEADERS$])
|
210
|
+
m4trace:configure.ac:16: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
|
211
|
+
@%:@undef STDC_HEADERS])
|
212
|
+
m4trace:configure.ac:16: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
|
213
|
+
@%:@undef HAVE_SYS_TYPES_H])
|
214
|
+
m4trace:configure.ac:16: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */
|
215
|
+
@%:@undef HAVE_SYS_STAT_H])
|
216
|
+
m4trace:configure.ac:16: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
|
217
|
+
@%:@undef HAVE_STDLIB_H])
|
218
|
+
m4trace:configure.ac:16: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */
|
219
|
+
@%:@undef HAVE_STRING_H])
|
220
|
+
m4trace:configure.ac:16: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the <memory.h> header file. */
|
221
|
+
@%:@undef HAVE_MEMORY_H])
|
222
|
+
m4trace:configure.ac:16: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the <strings.h> header file. */
|
223
|
+
@%:@undef HAVE_STRINGS_H])
|
224
|
+
m4trace:configure.ac:16: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */
|
225
|
+
@%:@undef HAVE_INTTYPES_H])
|
226
|
+
m4trace:configure.ac:16: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
|
227
|
+
@%:@undef HAVE_STDINT_H])
|
228
|
+
m4trace:configure.ac:16: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
|
229
|
+
@%:@undef HAVE_UNISTD_H])
|
230
|
+
m4trace:configure.ac:19: -1- AC_DEFINE_TRACE_LITERAL([HAVE__BOOL])
|
231
|
+
m4trace:configure.ac:19: -1- m4_pattern_allow([^HAVE__BOOL$])
|
232
|
+
m4trace:configure.ac:19: -1- AH_OUTPUT([HAVE__BOOL], [/* Define to 1 if the system has the type `_Bool\'. */
|
233
|
+
@%:@undef HAVE__BOOL])
|
234
|
+
m4trace:configure.ac:19: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STDBOOL_H])
|
235
|
+
m4trace:configure.ac:19: -1- m4_pattern_allow([^HAVE_STDBOOL_H$])
|
236
|
+
m4trace:configure.ac:19: -1- AH_OUTPUT([HAVE_STDBOOL_H], [/* Define to 1 if stdbool.h conforms to C99. */
|
237
|
+
@%:@undef HAVE_STDBOOL_H])
|
238
|
+
m4trace:configure.ac:20: -1- AH_OUTPUT([inline], [/* Define to `__inline__\' or `__inline\' if that\'s what the C compiler
|
239
|
+
calls it, or to nothing if \'inline\' is not supported under any name. */
|
240
|
+
#ifndef __cplusplus
|
241
|
+
#undef inline
|
242
|
+
#endif])
|
243
|
+
m4trace:configure.ac:21: -1- AC_DEFINE_TRACE_LITERAL([int32_t])
|
244
|
+
m4trace:configure.ac:21: -1- m4_pattern_allow([^int32_t$])
|
245
|
+
m4trace:configure.ac:21: -1- AH_OUTPUT([int32_t], [/* Define to the type of a signed integer type of width exactly 32 bits if
|
246
|
+
such a type exists and the standard includes do not define it. */
|
247
|
+
@%:@undef int32_t])
|
248
|
+
m4trace:configure.ac:22: -1- AH_OUTPUT([restrict], [/* Define to the equivalent of the C99 \'restrict\' keyword, or to
|
249
|
+
nothing if this is not supported. Do not define if restrict is
|
250
|
+
supported directly. */
|
251
|
+
#undef restrict
|
252
|
+
/* Work around a bug in Sun C++: it does not support _Restrict or
|
253
|
+
__restrict__, even though the corresponding Sun C compiler ends up with
|
254
|
+
"#define restrict _Restrict" or "#define restrict __restrict__" in the
|
255
|
+
previous line. Perhaps some future version of Sun C++ will work with
|
256
|
+
restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
|
257
|
+
#if defined __SUNPRO_CC && !defined __RESTRICT
|
258
|
+
# define _Restrict
|
259
|
+
# define __restrict__
|
260
|
+
#endif])
|
261
|
+
m4trace:configure.ac:22: -1- AC_DEFINE_TRACE_LITERAL([restrict])
|
262
|
+
m4trace:configure.ac:22: -1- m4_pattern_allow([^restrict$])
|
263
|
+
m4trace:configure.ac:22: -1- AC_DEFINE_TRACE_LITERAL([restrict])
|
264
|
+
m4trace:configure.ac:22: -1- m4_pattern_allow([^restrict$])
|
265
|
+
m4trace:configure.ac:23: -1- AC_DEFINE_TRACE_LITERAL([size_t])
|
266
|
+
m4trace:configure.ac:23: -1- m4_pattern_allow([^size_t$])
|
267
|
+
m4trace:configure.ac:23: -1- AH_OUTPUT([size_t], [/* Define to `unsigned int\' if <sys/types.h> does not define. */
|
268
|
+
@%:@undef size_t])
|
269
|
+
m4trace:configure.ac:24: -1- AC_DEFINE_TRACE_LITERAL([uint16_t])
|
270
|
+
m4trace:configure.ac:24: -1- m4_pattern_allow([^uint16_t$])
|
271
|
+
m4trace:configure.ac:24: -1- AH_OUTPUT([uint16_t], [/* Define to the type of an unsigned integer type of width exactly 16 bits if
|
272
|
+
such a type exists and the standard includes do not define it. */
|
273
|
+
@%:@undef uint16_t])
|
274
|
+
m4trace:configure.ac:25: -1- AC_DEFINE_TRACE_LITERAL([_UINT32_T])
|
275
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^_UINT32_T$])
|
276
|
+
m4trace:configure.ac:25: -1- AH_OUTPUT([_UINT32_T], [/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
|
277
|
+
<pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
|
278
|
+
@%:@define below would cause a syntax error. */
|
279
|
+
@%:@undef _UINT32_T])
|
280
|
+
m4trace:configure.ac:25: -1- AC_DEFINE_TRACE_LITERAL([uint32_t])
|
281
|
+
m4trace:configure.ac:25: -1- m4_pattern_allow([^uint32_t$])
|
282
|
+
m4trace:configure.ac:25: -1- AH_OUTPUT([uint32_t], [/* Define to the type of an unsigned integer type of width exactly 32 bits if
|
283
|
+
such a type exists and the standard includes do not define it. */
|
284
|
+
@%:@undef uint32_t])
|
285
|
+
m4trace:configure.ac:26: -1- AC_DEFINE_TRACE_LITERAL([_UINT64_T])
|
286
|
+
m4trace:configure.ac:26: -1- m4_pattern_allow([^_UINT64_T$])
|
287
|
+
m4trace:configure.ac:26: -1- AH_OUTPUT([_UINT64_T], [/* Define for Solaris 2.5.1 so the uint64_t typedef from <sys/synch.h>,
|
288
|
+
<pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
|
289
|
+
@%:@define below would cause a syntax error. */
|
290
|
+
@%:@undef _UINT64_T])
|
291
|
+
m4trace:configure.ac:26: -1- AC_DEFINE_TRACE_LITERAL([uint64_t])
|
292
|
+
m4trace:configure.ac:26: -1- m4_pattern_allow([^uint64_t$])
|
293
|
+
m4trace:configure.ac:26: -1- AH_OUTPUT([uint64_t], [/* Define to the type of an unsigned integer type of width exactly 64 bits if
|
294
|
+
such a type exists and the standard includes do not define it. */
|
295
|
+
@%:@undef uint64_t])
|
296
|
+
m4trace:configure.ac:27: -1- AC_DEFINE_TRACE_LITERAL([_UINT8_T])
|
297
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^_UINT8_T$])
|
298
|
+
m4trace:configure.ac:27: -1- AH_OUTPUT([_UINT8_T], [/* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
|
299
|
+
<pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
|
300
|
+
@%:@define below would cause a syntax error. */
|
301
|
+
@%:@undef _UINT8_T])
|
302
|
+
m4trace:configure.ac:27: -1- AC_DEFINE_TRACE_LITERAL([uint8_t])
|
303
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^uint8_t$])
|
304
|
+
m4trace:configure.ac:27: -1- AH_OUTPUT([uint8_t], [/* Define to the type of an unsigned integer type of width exactly 8 bits if
|
305
|
+
such a type exists and the standard includes do not define it. */
|
306
|
+
@%:@undef uint8_t])
|
307
|
+
m4trace:configure.ac:30: -1- AC_LIBSOURCE([error.h])
|
308
|
+
m4trace:configure.ac:30: -1- AC_LIBSOURCE([error.c])
|
309
|
+
m4trace:configure.ac:30: -1- AC_LIBSOURCE([error.c])
|
310
|
+
m4trace:configure.ac:30: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS error.$ac_objext"])
|
311
|
+
m4trace:configure.ac:30: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
|
312
|
+
m4trace:configure.ac:30: -1- m4_pattern_allow([^LIB@&t@OBJS$])
|
313
|
+
m4trace:configure.ac:31: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
|
314
|
+
@%:@undef HAVE_STDLIB_H])
|
315
|
+
m4trace:configure.ac:31: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STDLIB_H])
|
316
|
+
m4trace:configure.ac:31: -1- m4_pattern_allow([^HAVE_STDLIB_H$])
|
317
|
+
m4trace:configure.ac:31: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MALLOC])
|
318
|
+
m4trace:configure.ac:31: -1- m4_pattern_allow([^HAVE_MALLOC$])
|
319
|
+
m4trace:configure.ac:31: -1- AH_OUTPUT([HAVE_MALLOC], [/* Define to 1 if your system has a GNU libc compatible `malloc\' function, and
|
320
|
+
to 0 otherwise. */
|
321
|
+
@%:@undef HAVE_MALLOC])
|
322
|
+
m4trace:configure.ac:31: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MALLOC])
|
323
|
+
m4trace:configure.ac:31: -1- m4_pattern_allow([^HAVE_MALLOC$])
|
324
|
+
m4trace:configure.ac:31: -1- AC_LIBSOURCE([malloc.c])
|
325
|
+
m4trace:configure.ac:31: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS malloc.$ac_objext"])
|
326
|
+
m4trace:configure.ac:31: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
|
327
|
+
m4trace:configure.ac:31: -1- m4_pattern_allow([^LIB@&t@OBJS$])
|
328
|
+
m4trace:configure.ac:31: -1- AC_DEFINE_TRACE_LITERAL([malloc])
|
329
|
+
m4trace:configure.ac:31: -1- m4_pattern_allow([^malloc$])
|
330
|
+
m4trace:configure.ac:31: -1- AH_OUTPUT([malloc], [/* Define to rpl_malloc if the replacement function should be used. */
|
331
|
+
@%:@undef malloc])
|
332
|
+
m4trace:configure.ac:32: -1- AH_OUTPUT([HAVE_FLOOR], [/* Define to 1 if you have the `floor\' function. */
|
333
|
+
@%:@undef HAVE_FLOOR])
|
334
|
+
m4trace:configure.ac:32: -1- AH_OUTPUT([HAVE_MEMSET], [/* Define to 1 if you have the `memset\' function. */
|
335
|
+
@%:@undef HAVE_MEMSET])
|
336
|
+
m4trace:configure.ac:32: -1- AH_OUTPUT([HAVE_SQRT], [/* Define to 1 if you have the `sqrt\' function. */
|
337
|
+
@%:@undef HAVE_SQRT])
|
338
|
+
m4trace:configure.ac:34: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
|
339
|
+
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
|
340
|
+
m4trace:configure.ac:34: -1- m4_pattern_allow([^LIB@&t@OBJS$])
|
341
|
+
m4trace:configure.ac:34: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
|
342
|
+
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([LTLIBOBJS])
|
343
|
+
m4trace:configure.ac:34: -1- m4_pattern_allow([^LTLIBOBJS$])
|
344
|
+
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([top_builddir])
|
345
|
+
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([top_build_prefix])
|
346
|
+
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([srcdir])
|
347
|
+
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([abs_srcdir])
|
348
|
+
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([top_srcdir])
|
349
|
+
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([abs_top_srcdir])
|
350
|
+
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([builddir])
|
351
|
+
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([abs_builddir])
|
352
|
+
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([abs_top_builddir])
|