Codebase list dbus-sharp-glib / eda9c28
New upstream snapshot. Debian Janitor 2 years ago
11 changed file(s) with 1628 addition(s) and 1194 deletion(s). Raw diff Collapse all Expand all
+170
-172
INSTALL less more
00 Installation Instructions
11 *************************
22
3 Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation,
4 Inc.
3 Copyright (C) 1994-1996, 1999-2002, 2004-2017, 2020-2021 Free
4 Software Foundation, Inc.
55
66 Copying and distribution of this file, with or without modification,
77 are permitted in any medium without royalty provided the copyright
1111 Basic Installation
1212 ==================
1313
14 Briefly, the shell commands `./configure; make; make install' should
15 configure, build, and install this package. The following
16 more-detailed instructions are generic; see the `README' file for
14 Briefly, the shell command './configure && make && make install'
15 should configure, build, and install this package. The following
16 more-detailed instructions are generic; see the 'README' file for
1717 instructions specific to this package. Some packages provide this
18 `INSTALL' file but do not implement all of the features documented
18 'INSTALL' file but do not implement all of the features documented
1919 below. The lack of an optional feature in a given package is not
2020 necessarily a bug. More recommendations for GNU packages can be found
2121 in *note Makefile Conventions: (standards)Makefile Conventions.
2222
23 The `configure' shell script attempts to guess correct values for
23 The 'configure' shell script attempts to guess correct values for
2424 various system-dependent variables used during compilation. It uses
25 those values to create a `Makefile' in each directory of the package.
26 It may also create one or more `.h' files containing system-dependent
27 definitions. Finally, it creates a shell script `config.status' that
25 those values to create a 'Makefile' in each directory of the package.
26 It may also create one or more '.h' files containing system-dependent
27 definitions. Finally, it creates a shell script 'config.status' that
2828 you can run in the future to recreate the current configuration, and a
29 file `config.log' containing compiler output (useful mainly for
30 debugging `configure').
31
32 It can also use an optional file (typically called `config.cache'
33 and enabled with `--cache-file=config.cache' or simply `-C') that saves
34 the results of its tests to speed up reconfiguring. Caching is
35 disabled by default to prevent problems with accidental use of stale
36 cache files.
29 file 'config.log' containing compiler output (useful mainly for
30 debugging 'configure').
31
32 It can also use an optional file (typically called 'config.cache' and
33 enabled with '--cache-file=config.cache' or simply '-C') that saves the
34 results of its tests to speed up reconfiguring. Caching is disabled by
35 default to prevent problems with accidental use of stale cache files.
3736
3837 If you need to do unusual things to compile the package, please try
39 to figure out how `configure' could check whether to do them, and mail
40 diffs or instructions to the address given in the `README' so they can
38 to figure out how 'configure' could check whether to do them, and mail
39 diffs or instructions to the address given in the 'README' so they can
4140 be considered for the next release. If you are using the cache, and at
42 some point `config.cache' contains results you don't want to keep, you
41 some point 'config.cache' contains results you don't want to keep, you
4342 may remove or edit it.
4443
45 The file `configure.ac' (or `configure.in') is used to create
46 `configure' by a program called `autoconf'. You need `configure.ac' if
47 you want to change it or regenerate `configure' using a newer version
48 of `autoconf'.
44 The file 'configure.ac' (or 'configure.in') is used to create
45 'configure' by a program called 'autoconf'. You need 'configure.ac' if
46 you want to change it or regenerate 'configure' using a newer version of
47 'autoconf'.
4948
5049 The simplest way to compile this package is:
5150
52 1. `cd' to the directory containing the package's source code and type
53 `./configure' to configure the package for your system.
54
55 Running `configure' might take a while. While running, it prints
51 1. 'cd' to the directory containing the package's source code and type
52 './configure' to configure the package for your system.
53
54 Running 'configure' might take a while. While running, it prints
5655 some messages telling which features it is checking for.
5756
58 2. Type `make' to compile the package.
59
60 3. Optionally, type `make check' to run any self-tests that come with
57 2. Type 'make' to compile the package.
58
59 3. Optionally, type 'make check' to run any self-tests that come with
6160 the package, generally using the just-built uninstalled binaries.
6261
63 4. Type `make install' to install the programs and any data files and
62 4. Type 'make install' to install the programs and any data files and
6463 documentation. When installing into a prefix owned by root, it is
6564 recommended that the package be configured and built as a regular
66 user, and only the `make install' phase executed with root
65 user, and only the 'make install' phase executed with root
6766 privileges.
6867
69 5. Optionally, type `make installcheck' to repeat any self-tests, but
68 5. Optionally, type 'make installcheck' to repeat any self-tests, but
7069 this time using the binaries in their final installed location.
7170 This target does not install anything. Running this target as a
72 regular user, particularly if the prior `make install' required
71 regular user, particularly if the prior 'make install' required
7372 root privileges, verifies that the installation completed
7473 correctly.
7574
7675 6. You can remove the program binaries and object files from the
77 source code directory by typing `make clean'. To also remove the
78 files that `configure' created (so you can compile the package for
79 a different kind of computer), type `make distclean'. There is
80 also a `make maintainer-clean' target, but that is intended mainly
76 source code directory by typing 'make clean'. To also remove the
77 files that 'configure' created (so you can compile the package for
78 a different kind of computer), type 'make distclean'. There is
79 also a 'make maintainer-clean' target, but that is intended mainly
8180 for the package's developers. If you use it, you may have to get
8281 all sorts of other programs in order to regenerate files that came
8382 with the distribution.
8483
85 7. Often, you can also type `make uninstall' to remove the installed
84 7. Often, you can also type 'make uninstall' to remove the installed
8685 files again. In practice, not all packages have tested that
8786 uninstallation works correctly, even though it is required by the
8887 GNU Coding Standards.
8988
90 8. Some packages, particularly those that use Automake, provide `make
89 8. Some packages, particularly those that use Automake, provide 'make
9190 distcheck', which can by used by developers to test that all other
92 targets like `make install' and `make uninstall' work correctly.
91 targets like 'make install' and 'make uninstall' work correctly.
9392 This target is generally not run by end users.
9493
9594 Compilers and Options
9695 =====================
9796
9897 Some systems require unusual options for compilation or linking that
99 the `configure' script does not know about. Run `./configure --help'
98 the 'configure' script does not know about. Run './configure --help'
10099 for details on some of the pertinent environment variables.
101100
102 You can give `configure' initial values for configuration parameters
103 by setting variables in the command line or in the environment. Here
104 is an example:
101 You can give 'configure' initial values for configuration parameters
102 by setting variables in the command line or in the environment. Here is
103 an example:
105104
106105 ./configure CC=c99 CFLAGS=-g LIBS=-lposix
107106
112111
113112 You can compile the package for more than one kind of computer at the
114113 same time, by placing the object files for each architecture in their
115 own directory. To do this, you can use GNU `make'. `cd' to the
114 own directory. To do this, you can use GNU 'make'. 'cd' to the
116115 directory where you want the object files and executables to go and run
117 the `configure' script. `configure' automatically checks for the
118 source code in the directory that `configure' is in and in `..'. This
119 is known as a "VPATH" build.
120
121 With a non-GNU `make', it is safer to compile the package for one
116 the 'configure' script. 'configure' automatically checks for the source
117 code in the directory that 'configure' is in and in '..'. This is known
118 as a "VPATH" build.
119
120 With a non-GNU 'make', it is safer to compile the package for one
122121 architecture at a time in the source code directory. After you have
123 installed the package for one architecture, use `make distclean' before
122 installed the package for one architecture, use 'make distclean' before
124123 reconfiguring for another architecture.
125124
126125 On MacOS X 10.5 and later systems, you can create libraries and
127126 executables that work on multiple system types--known as "fat" or
128 "universal" binaries--by specifying multiple `-arch' options to the
129 compiler but only a single `-arch' option to the preprocessor. Like
127 "universal" binaries--by specifying multiple '-arch' options to the
128 compiler but only a single '-arch' option to the preprocessor. Like
130129 this:
131130
132131 ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
135134
136135 This is not guaranteed to produce working output in all cases, you
137136 may have to build one architecture at a time and combine the results
138 using the `lipo' tool if you have problems.
137 using the 'lipo' tool if you have problems.
139138
140139 Installation Names
141140 ==================
142141
143 By default, `make install' installs the package's commands under
144 `/usr/local/bin', include files under `/usr/local/include', etc. You
145 can specify an installation prefix other than `/usr/local' by giving
146 `configure' the option `--prefix=PREFIX', where PREFIX must be an
142 By default, 'make install' installs the package's commands under
143 '/usr/local/bin', include files under '/usr/local/include', etc. You
144 can specify an installation prefix other than '/usr/local' by giving
145 'configure' the option '--prefix=PREFIX', where PREFIX must be an
147146 absolute file name.
148147
149148 You can specify separate installation prefixes for
150149 architecture-specific files and architecture-independent files. If you
151 pass the option `--exec-prefix=PREFIX' to `configure', the package uses
150 pass the option '--exec-prefix=PREFIX' to 'configure', the package uses
152151 PREFIX as the prefix for installing programs and libraries.
153152 Documentation and other data files still use the regular prefix.
154153
155154 In addition, if you use an unusual directory layout you can give
156 options like `--bindir=DIR' to specify different values for particular
157 kinds of files. Run `configure --help' for a list of the directories
158 you can set and what kinds of files go in them. In general, the
159 default for these options is expressed in terms of `${prefix}', so that
160 specifying just `--prefix' will affect all of the other directory
155 options like '--bindir=DIR' to specify different values for particular
156 kinds of files. Run 'configure --help' for a list of the directories
157 you can set and what kinds of files go in them. In general, the default
158 for these options is expressed in terms of '${prefix}', so that
159 specifying just '--prefix' will affect all of the other directory
161160 specifications that were not explicitly provided.
162161
163162 The most portable way to affect installation locations is to pass the
164 correct locations to `configure'; however, many packages provide one or
163 correct locations to 'configure'; however, many packages provide one or
165164 both of the following shortcuts of passing variable assignments to the
166 `make install' command line to change installation locations without
165 'make install' command line to change installation locations without
167166 having to reconfigure or recompile.
168167
169168 The first method involves providing an override variable for each
170 affected directory. For example, `make install
169 affected directory. For example, 'make install
171170 prefix=/alternate/directory' will choose an alternate location for all
172171 directory configuration variables that were expressed in terms of
173 `${prefix}'. Any directories that were specified during `configure',
174 but not in terms of `${prefix}', must each be overridden at install
175 time for the entire installation to be relocated. The approach of
176 makefile variable overrides for each directory variable is required by
177 the GNU Coding Standards, and ideally causes no recompilation.
178 However, some platforms have known limitations with the semantics of
179 shared libraries that end up requiring recompilation when using this
180 method, particularly noticeable in packages that use GNU Libtool.
181
182 The second method involves providing the `DESTDIR' variable. For
183 example, `make install DESTDIR=/alternate/directory' will prepend
184 `/alternate/directory' before all installation names. The approach of
185 `DESTDIR' overrides is not required by the GNU Coding Standards, and
172 '${prefix}'. Any directories that were specified during 'configure',
173 but not in terms of '${prefix}', must each be overridden at install time
174 for the entire installation to be relocated. The approach of makefile
175 variable overrides for each directory variable is required by the GNU
176 Coding Standards, and ideally causes no recompilation. However, some
177 platforms have known limitations with the semantics of shared libraries
178 that end up requiring recompilation when using this method, particularly
179 noticeable in packages that use GNU Libtool.
180
181 The second method involves providing the 'DESTDIR' variable. For
182 example, 'make install DESTDIR=/alternate/directory' will prepend
183 '/alternate/directory' before all installation names. The approach of
184 'DESTDIR' overrides is not required by the GNU Coding Standards, and
186185 does not work on platforms that have drive letters. On the other hand,
187186 it does better at avoiding recompilation issues, and works well even
188 when some directory options were not specified in terms of `${prefix}'
189 at `configure' time.
187 when some directory options were not specified in terms of '${prefix}'
188 at 'configure' time.
190189
191190 Optional Features
192191 =================
193192
194193 If the package supports it, you can cause programs to be installed
195 with an extra prefix or suffix on their names by giving `configure' the
196 option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
197
198 Some packages pay attention to `--enable-FEATURE' options to
199 `configure', where FEATURE indicates an optional part of the package.
200 They may also pay attention to `--with-PACKAGE' options, where PACKAGE
201 is something like `gnu-as' or `x' (for the X Window System). The
202 `README' should mention any `--enable-' and `--with-' options that the
194 with an extra prefix or suffix on their names by giving 'configure' the
195 option '--program-prefix=PREFIX' or '--program-suffix=SUFFIX'.
196
197 Some packages pay attention to '--enable-FEATURE' options to
198 'configure', where FEATURE indicates an optional part of the package.
199 They may also pay attention to '--with-PACKAGE' options, where PACKAGE
200 is something like 'gnu-as' or 'x' (for the X Window System). The
201 'README' should mention any '--enable-' and '--with-' options that the
203202 package recognizes.
204203
205 For packages that use the X Window System, `configure' can usually
204 For packages that use the X Window System, 'configure' can usually
206205 find the X include and library files automatically, but if it doesn't,
207 you can use the `configure' options `--x-includes=DIR' and
208 `--x-libraries=DIR' to specify their locations.
206 you can use the 'configure' options '--x-includes=DIR' and
207 '--x-libraries=DIR' to specify their locations.
209208
210209 Some packages offer the ability to configure how verbose the
211 execution of `make' will be. For these packages, running `./configure
210 execution of 'make' will be. For these packages, running './configure
212211 --enable-silent-rules' sets the default to minimal output, which can be
213 overridden with `make V=1'; while running `./configure
212 overridden with 'make V=1'; while running './configure
214213 --disable-silent-rules' sets the default to verbose, which can be
215 overridden with `make V=0'.
214 overridden with 'make V=0'.
216215
217216 Particular systems
218217 ==================
219218
220 On HP-UX, the default C compiler is not ANSI C compatible. If GNU
221 CC is not installed, it is recommended to use the following options in
219 On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC
220 is not installed, it is recommended to use the following options in
222221 order to use an ANSI C compiler:
223222
224223 ./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
225224
226225 and if that doesn't work, install pre-built binaries of GCC for HP-UX.
227226
228 HP-UX `make' updates targets which have the same time stamps as
229 their prerequisites, which makes it generally unusable when shipped
230 generated files such as `configure' are involved. Use GNU `make'
231 instead.
227 HP-UX 'make' updates targets which have the same timestamps as their
228 prerequisites, which makes it generally unusable when shipped generated
229 files such as 'configure' are involved. Use GNU 'make' instead.
232230
233231 On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
234 parse its `<wchar.h>' header file. The option `-nodtk' can be used as
235 a workaround. If GNU CC is not installed, it is therefore recommended
236 to try
232 parse its '<wchar.h>' header file. The option '-nodtk' can be used as a
233 workaround. If GNU CC is not installed, it is therefore recommended to
234 try
237235
238236 ./configure CC="cc"
239237
241239
242240 ./configure CC="cc -nodtk"
243241
244 On Solaris, don't put `/usr/ucb' early in your `PATH'. This
242 On Solaris, don't put '/usr/ucb' early in your 'PATH'. This
245243 directory contains several dysfunctional programs; working variants of
246 these programs are available in `/usr/bin'. So, if you need `/usr/ucb'
247 in your `PATH', put it _after_ `/usr/bin'.
248
249 On Haiku, software installed for all users goes in `/boot/common',
250 not `/usr/local'. It is recommended to use the following options:
244 these programs are available in '/usr/bin'. So, if you need '/usr/ucb'
245 in your 'PATH', put it _after_ '/usr/bin'.
246
247 On Haiku, software installed for all users goes in '/boot/common',
248 not '/usr/local'. It is recommended to use the following options:
251249
252250 ./configure --prefix=/boot/common
253251
254252 Specifying the System Type
255253 ==========================
256254
257 There may be some features `configure' cannot figure out
255 There may be some features 'configure' cannot figure out
258256 automatically, but needs to determine by the type of machine the package
259257 will run on. Usually, assuming the package is built to be run on the
260 _same_ architectures, `configure' can figure that out, but if it prints
258 _same_ architectures, 'configure' can figure that out, but if it prints
261259 a message saying it cannot guess the machine type, give it the
262 `--build=TYPE' option. TYPE can either be a short name for the system
263 type, such as `sun4', or a canonical name which has the form:
260 '--build=TYPE' option. TYPE can either be a short name for the system
261 type, such as 'sun4', or a canonical name which has the form:
264262
265263 CPU-COMPANY-SYSTEM
266264
269267 OS
270268 KERNEL-OS
271269
272 See the file `config.sub' for the possible values of each field. If
273 `config.sub' isn't included in this package, then this package doesn't
270 See the file 'config.sub' for the possible values of each field. If
271 'config.sub' isn't included in this package, then this package doesn't
274272 need to know the machine type.
275273
276274 If you are _building_ compiler tools for cross-compiling, you should
277 use the option `--target=TYPE' to select the type of system they will
275 use the option '--target=TYPE' to select the type of system they will
278276 produce code for.
279277
280278 If you want to _use_ a cross compiler, that generates code for a
281279 platform different from the build platform, you should specify the
282280 "host" platform (i.e., that on which the generated programs will
283 eventually be run) with `--host=TYPE'.
281 eventually be run) with '--host=TYPE'.
284282
285283 Sharing Defaults
286284 ================
287285
288 If you want to set default values for `configure' scripts to share,
289 you can create a site shell script called `config.site' that gives
290 default values for variables like `CC', `cache_file', and `prefix'.
291 `configure' looks for `PREFIX/share/config.site' if it exists, then
292 `PREFIX/etc/config.site' if it exists. Or, you can set the
293 `CONFIG_SITE' environment variable to the location of the site script.
294 A warning: not all `configure' scripts look for a site script.
286 If you want to set default values for 'configure' scripts to share,
287 you can create a site shell script called 'config.site' that gives
288 default values for variables like 'CC', 'cache_file', and 'prefix'.
289 'configure' looks for 'PREFIX/share/config.site' if it exists, then
290 'PREFIX/etc/config.site' if it exists. Or, you can set the
291 'CONFIG_SITE' environment variable to the location of the site script.
292 A warning: not all 'configure' scripts look for a site script.
295293
296294 Defining Variables
297295 ==================
298296
299297 Variables not defined in a site shell script can be set in the
300 environment passed to `configure'. However, some packages may run
298 environment passed to 'configure'. However, some packages may run
301299 configure again during the build, and the customized values of these
302300 variables may be lost. In order to avoid this problem, you should set
303 them in the `configure' command line, using `VAR=value'. For example:
301 them in the 'configure' command line, using 'VAR=value'. For example:
304302
305303 ./configure CC=/usr/local2/bin/gcc
306304
307 causes the specified `gcc' to be used as the C compiler (unless it is
305 causes the specified 'gcc' to be used as the C compiler (unless it is
308306 overridden in the site shell script).
309307
310 Unfortunately, this technique does not work for `CONFIG_SHELL' due to
311 an Autoconf limitation. Until the limitation is lifted, you can use
312 this workaround:
308 Unfortunately, this technique does not work for 'CONFIG_SHELL' due to an
309 Autoconf limitation. Until the limitation is lifted, you can use this
310 workaround:
313311
314312 CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
315313
316 `configure' Invocation
314 'configure' Invocation
317315 ======================
318316
319 `configure' recognizes the following options to control how it
317 'configure' recognizes the following options to control how it
320318 operates.
321319
322 `--help'
323 `-h'
324 Print a summary of all of the options to `configure', and exit.
325
326 `--help=short'
327 `--help=recursive'
320 '--help'
321 '-h'
322 Print a summary of all of the options to 'configure', and exit.
323
324 '--help=short'
325 '--help=recursive'
328326 Print a summary of the options unique to this package's
329 `configure', and exit. The `short' variant lists options used
330 only in the top level, while the `recursive' variant lists options
331 also present in any nested packages.
332
333 `--version'
334 `-V'
335 Print the version of Autoconf used to generate the `configure'
327 'configure', and exit. The 'short' variant lists options used only
328 in the top level, while the 'recursive' variant lists options also
329 present in any nested packages.
330
331 '--version'
332 '-V'
333 Print the version of Autoconf used to generate the 'configure'
336334 script, and exit.
337335
338 `--cache-file=FILE'
336 '--cache-file=FILE'
339337 Enable the cache: use and save the results of the tests in FILE,
340 traditionally `config.cache'. FILE defaults to `/dev/null' to
338 traditionally 'config.cache'. FILE defaults to '/dev/null' to
341339 disable caching.
342340
343 `--config-cache'
344 `-C'
345 Alias for `--cache-file=config.cache'.
346
347 `--quiet'
348 `--silent'
349 `-q'
341 '--config-cache'
342 '-C'
343 Alias for '--cache-file=config.cache'.
344
345 '--quiet'
346 '--silent'
347 '-q'
350348 Do not print messages saying which checks are being made. To
351 suppress all normal output, redirect it to `/dev/null' (any error
349 suppress all normal output, redirect it to '/dev/null' (any error
352350 messages will still be shown).
353351
354 `--srcdir=DIR'
352 '--srcdir=DIR'
355353 Look for the package's source code in directory DIR. Usually
356 `configure' can determine that directory automatically.
357
358 `--prefix=DIR'
359 Use DIR as the installation prefix. *note Installation Names::
360 for more details, including other options available for fine-tuning
361 the installation locations.
362
363 `--no-create'
364 `-n'
354 'configure' can determine that directory automatically.
355
356 '--prefix=DIR'
357 Use DIR as the installation prefix. *note Installation Names:: for
358 more details, including other options available for fine-tuning the
359 installation locations.
360
361 '--no-create'
362 '-n'
365363 Run the configure checks, but stop before creating any output
366364 files.
367365
368 `configure' also accepts some other, not widely useful, options. Run
369 `configure --help' for more details.
366 'configure' also accepts some other, not widely useful, options. Run
367 'configure --help' for more details.
0 # Makefile.in generated by automake 1.13.2 from Makefile.am.
0 # Makefile.in generated by automake 1.16.5 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2021 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
1414 @SET_MAKE@
1515
1616 VPATH = @srcdir@
17 am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
17 am__is_gnu_make = { \
18 if test -z '$(MAKELEVEL)'; then \
19 false; \
20 elif test -n '$(MAKE_HOST)'; then \
21 true; \
22 elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
23 true; \
24 else \
25 false; \
26 fi; \
27 }
1828 am__make_running_with_option = \
1929 case $${target_option-} in \
2030 ?) ;; \
7686 PRE_UNINSTALL = :
7787 POST_UNINSTALL = :
7888 subdir = .
79 DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog \
80 $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
81 $(top_srcdir)/configure $(am__configure_deps) \
82 $(srcdir)/dbus-sharp-glib-2.0.pc.in COPYING install-sh missing
8389 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
8490 am__aclocal_m4_deps = $(top_srcdir)/configure.ac
8591 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
8692 $(ACLOCAL_M4)
93 DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
94 $(am__configure_deps) $(am__DIST_COMMON)
8795 am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
8896 configure.lineno config.status.lineno
8997 mkinstalldirs = $(install_sh) -d
152160 $(RECURSIVE_CLEAN_TARGETS) \
153161 $(am__extra_recursive_targets)
154162 AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
155 cscope distdir dist dist-all distcheck
163 cscope distdir distdir-am dist dist-all distcheck
156164 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
157165 # Read a list of newline-separated strings from the standard input,
158166 # and print each of them once, without duplicates. Input order is
170178 unique=`for i in $$list; do \
171179 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
172180 done | $(am__uniquify_input)`
173 ETAGS = etags
174 CTAGS = ctags
175 CSCOPE = cscope
176181 DIST_SUBDIRS = $(SUBDIRS)
182 am__DIST_COMMON = $(srcdir)/Makefile.in \
183 $(srcdir)/dbus-sharp-glib-2.0.pc.in AUTHORS COPYING ChangeLog \
184 INSTALL NEWS README install-sh missing
177185 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
178186 distdir = $(PACKAGE)-$(VERSION)
179187 top_distdir = $(distdir)
212220 DIST_ARCHIVES = $(distdir).tar.gz
213221 GZIP_ENV = --best
214222 DIST_TARGETS = dist-gzip
223 # Exists only to be overridden by the user if desired.
224 AM_DISTCHECK_DVI_TARGET = dvi
215225 distuninstallcheck_listfiles = find . -type f -print
216226 am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
217227 | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
224234 AUTOHEADER = @AUTOHEADER@
225235 AUTOMAKE = @AUTOMAKE@
226236 AWK = @AWK@
237 CSCOPE = @CSCOPE@
238 CTAGS = @CTAGS@
227239 CYGPATH_W = @CYGPATH_W@
228240 DBUS_SHARP_CFLAGS = @DBUS_SHARP_CFLAGS@
229241 DBUS_SHARP_LIBS = @DBUS_SHARP_LIBS@
231243 ECHO_C = @ECHO_C@
232244 ECHO_N = @ECHO_N@
233245 ECHO_T = @ECHO_T@
246 ETAGS = @ETAGS@
234247 GACUTIL = @GACUTIL@
235 GMCS = @GMCS@
236248 INSTALL = @INSTALL@
237249 INSTALL_DATA = @INSTALL_DATA@
238250 INSTALL_PROGRAM = @INSTALL_PROGRAM@
243255 LTLIBOBJS = @LTLIBOBJS@
244256 MAINT = @MAINT@
245257 MAKEINFO = @MAKEINFO@
258 MCS = @MCS@
246259 MKDIR_P = @MKDIR_P@
247260 MONO_CFLAGS = @MONO_CFLAGS@
248261 MONO_LIBS = @MONO_LIBS@
292305 prefix = @prefix@
293306 program_transform_name = @program_transform_name@
294307 psdir = @psdir@
308 runstatedir = @runstatedir@
295309 sbindir = @sbindir@
296310 sharedstatedir = @sharedstatedir@
297311 srcdir = @srcdir@
338352 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
339353 $(am__cd) $(top_srcdir) && \
340354 $(AUTOMAKE) --gnu Makefile
341 .PRECIOUS: Makefile
342355 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
343356 @case '$?' in \
344357 *config.status*) \
345358 echo ' $(SHELL) ./config.status'; \
346359 $(SHELL) ./config.status;; \
347360 *) \
348 echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
349 cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
361 echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
362 cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
350363 esac;
351364
352365 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
486499 distclean-tags:
487500 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
488501 -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
489
490 distdir: $(DISTFILES)
502 distdir: $(BUILT_SOURCES)
503 $(MAKE) $(AM_MAKEFLAGS) distdir-am
504
505 distdir-am: $(DISTFILES)
491506 $(am__remove_distdir)
492507 test -d "$(distdir)" || mkdir "$(distdir)"
493508 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
552567 ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
553568 || chmod -R a+r "$(distdir)"
554569 dist-gzip: distdir
555 tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
570 tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
556571 $(am__post_remove_distdir)
557572
558573 dist-bzip2: distdir
567582 tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
568583 $(am__post_remove_distdir)
569584
585 dist-zstd: distdir
586 tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst
587 $(am__post_remove_distdir)
588
570589 dist-tarZ: distdir
590 @echo WARNING: "Support for distribution archives compressed with" \
591 "legacy program 'compress' is deprecated." >&2
592 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
571593 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
572594 $(am__post_remove_distdir)
573595
574596 dist-shar: distdir
575 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
597 @echo WARNING: "Support for shar distribution archives is" \
598 "deprecated." >&2
599 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
600 shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
576601 $(am__post_remove_distdir)
577602
578603 dist-zip: distdir
590615 distcheck: dist
591616 case '$(DIST_ARCHIVES)' in \
592617 *.tar.gz*) \
593 GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
618 eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
594619 *.tar.bz2*) \
595620 bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
596621 *.tar.lz*) \
600625 *.tar.Z*) \
601626 uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
602627 *.shar.gz*) \
603 GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
628 eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
604629 *.zip*) \
605630 unzip $(distdir).zip ;;\
631 *.tar.zst*) \
632 zstd -dc $(distdir).tar.zst | $(am__untar) ;;\
606633 esac
607634 chmod -R a-w $(distdir)
608635 chmod u+w $(distdir)
609 mkdir $(distdir)/_build $(distdir)/_inst
636 mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
610637 chmod a-w $(distdir)
611638 test -d $(distdir)/_build || exit 0; \
612639 dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
613640 && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
614641 && am__cwd=`pwd` \
615 && $(am__cd) $(distdir)/_build \
616 && ../configure --srcdir=.. --prefix="$$dc_install_base" \
642 && $(am__cd) $(distdir)/_build/sub \
643 && ../../configure \
617644 $(AM_DISTCHECK_CONFIGURE_FLAGS) \
618645 $(DISTCHECK_CONFIGURE_FLAGS) \
646 --srcdir=../.. --prefix="$$dc_install_base" \
619647 && $(MAKE) $(AM_MAKEFLAGS) \
620 && $(MAKE) $(AM_MAKEFLAGS) dvi \
648 && $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \
621649 && $(MAKE) $(AM_MAKEFLAGS) check \
622650 && $(MAKE) $(AM_MAKEFLAGS) install \
623651 && $(MAKE) $(AM_MAKEFLAGS) installcheck \
783811 am--refresh check check-am clean clean-cscope clean-generic \
784812 cscope cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \
785813 dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \
786 distcheck distclean distclean-generic distclean-tags \
814 dist-zstd distcheck distclean distclean-generic distclean-tags \
787815 distcleancheck distdir distuninstallcheck dvi dvi-am html \
788816 html-am info info-am install install-am install-data \
789817 install-data-am install-dvi install-dvi-am install-exec \
795823 mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \
796824 uninstall-am uninstall-pkgconfigDATA
797825
826 .PRECIOUS: Makefile
827
798828
799829 # Tell versions [3.59,3.63) of GNU make to not export all variables.
800830 # Otherwise a system limit (for SysV at least) may be exceeded.
0 # generated automatically by aclocal 1.13.2 -*- Autoconf -*-
1
2 # Copyright (C) 1996-2013 Free Software Foundation, Inc.
0 # generated automatically by aclocal 1.16.5 -*- Autoconf -*-
1
2 # Copyright (C) 1996-2021 Free Software Foundation, Inc.
33
44 # This file is free software; the Free Software Foundation
55 # gives unlimited permission to copy and/or distribute it,
1313 m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
1414 m4_ifndef([AC_AUTOCONF_VERSION],
1515 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
16 m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
17 [m4_warning([this file was generated for autoconf 2.69.
16 m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.71],,
17 [m4_warning([this file was generated for autoconf 2.71.
1818 You have another version of autoconf. It may work, but is not guaranteed to.
1919 If you have problems, you may need to regenerate the build system entirely.
2020 To do so, use the procedure documented by the package, typically 'autoreconf'.])])
2121
22 # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
23 # serial 1 (pkg-config-0.24)
24 #
25 # Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
26 #
27 # This program is free software; you can redistribute it and/or modify
28 # it under the terms of the GNU General Public License as published by
29 # the Free Software Foundation; either version 2 of the License, or
30 # (at your option) any later version.
31 #
32 # This program is distributed in the hope that it will be useful, but
33 # WITHOUT ANY WARRANTY; without even the implied warranty of
34 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
35 # General Public License for more details.
36 #
37 # You should have received a copy of the GNU General Public License
38 # along with this program; if not, write to the Free Software
39 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
40 #
41 # As a special exception to the GNU General Public License, if you
42 # distribute this file as part of a program that contains a
43 # configuration script generated by Autoconf, you may include it under
44 # the same distribution terms that you use for the rest of that program.
45
46 # PKG_PROG_PKG_CONFIG([MIN-VERSION])
47 # ----------------------------------
22 # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
23 # serial 12 (pkg-config-0.29.2)
24
25 dnl Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
26 dnl Copyright © 2012-2015 Dan Nicholson <dbn.lists@gmail.com>
27 dnl
28 dnl This program is free software; you can redistribute it and/or modify
29 dnl it under the terms of the GNU General Public License as published by
30 dnl the Free Software Foundation; either version 2 of the License, or
31 dnl (at your option) any later version.
32 dnl
33 dnl This program is distributed in the hope that it will be useful, but
34 dnl WITHOUT ANY WARRANTY; without even the implied warranty of
35 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
36 dnl General Public License for more details.
37 dnl
38 dnl You should have received a copy of the GNU General Public License
39 dnl along with this program; if not, write to the Free Software
40 dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
41 dnl 02111-1307, USA.
42 dnl
43 dnl As a special exception to the GNU General Public License, if you
44 dnl distribute this file as part of a program that contains a
45 dnl configuration script generated by Autoconf, you may include it under
46 dnl the same distribution terms that you use for the rest of that
47 dnl program.
48
49 dnl PKG_PREREQ(MIN-VERSION)
50 dnl -----------------------
51 dnl Since: 0.29
52 dnl
53 dnl Verify that the version of the pkg-config macros are at least
54 dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's
55 dnl installed version of pkg-config, this checks the developer's version
56 dnl of pkg.m4 when generating configure.
57 dnl
58 dnl To ensure that this macro is defined, also add:
59 dnl m4_ifndef([PKG_PREREQ],
60 dnl [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])])
61 dnl
62 dnl See the "Since" comment for each macro you use to see what version
63 dnl of the macros you require.
64 m4_defun([PKG_PREREQ],
65 [m4_define([PKG_MACROS_VERSION], [0.29.2])
66 m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1,
67 [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])])
68 ])dnl PKG_PREREQ
69
70 dnl PKG_PROG_PKG_CONFIG([MIN-VERSION])
71 dnl ----------------------------------
72 dnl Since: 0.16
73 dnl
74 dnl Search for the pkg-config tool and set the PKG_CONFIG variable to
75 dnl first found in the path. Checks that the version of pkg-config found
76 dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is
77 dnl used since that's the first version where most current features of
78 dnl pkg-config existed.
4879 AC_DEFUN([PKG_PROG_PKG_CONFIG],
4980 [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
5081 m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
6697 PKG_CONFIG=""
6798 fi
6899 fi[]dnl
69 ])# PKG_PROG_PKG_CONFIG
70
71 # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
72 #
73 # Check to see whether a particular set of modules exists. Similar
74 # to PKG_CHECK_MODULES(), but does not set variables or print errors.
75 #
76 # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
77 # only at the first occurence in configure.ac, so if the first place
78 # it's called might be skipped (such as if it is within an "if", you
79 # have to call PKG_CHECK_EXISTS manually
80 # --------------------------------------------------------------
100 ])dnl PKG_PROG_PKG_CONFIG
101
102 dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
103 dnl -------------------------------------------------------------------
104 dnl Since: 0.18
105 dnl
106 dnl Check to see whether a particular set of modules exists. Similar to
107 dnl PKG_CHECK_MODULES(), but does not set variables or print errors.
108 dnl
109 dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
110 dnl only at the first occurence in configure.ac, so if the first place
111 dnl it's called might be skipped (such as if it is within an "if", you
112 dnl have to call PKG_CHECK_EXISTS manually
81113 AC_DEFUN([PKG_CHECK_EXISTS],
82114 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
83115 if test -n "$PKG_CONFIG" && \
87119 $3])dnl
88120 fi])
89121
90 # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
91 # ---------------------------------------------
122 dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
123 dnl ---------------------------------------------
124 dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting
125 dnl pkg_failed based on the result.
92126 m4_define([_PKG_CONFIG],
93127 [if test -n "$$1"; then
94128 pkg_cv_[]$1="$$1"
100134 else
101135 pkg_failed=untried
102136 fi[]dnl
103 ])# _PKG_CONFIG
104
105 # _PKG_SHORT_ERRORS_SUPPORTED
106 # -----------------------------
137 ])dnl _PKG_CONFIG
138
139 dnl _PKG_SHORT_ERRORS_SUPPORTED
140 dnl ---------------------------
141 dnl Internal check to see if pkg-config supports short errors.
107142 AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
108143 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])
109144 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
111146 else
112147 _pkg_short_errors_supported=no
113148 fi[]dnl
114 ])# _PKG_SHORT_ERRORS_SUPPORTED
115
116
117 # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
118 # [ACTION-IF-NOT-FOUND])
119 #
120 #
121 # Note that if there is a possibility the first call to
122 # PKG_CHECK_MODULES might not happen, you should be sure to include an
123 # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
124 #
125 #
126 # --------------------------------------------------------------
149 ])dnl _PKG_SHORT_ERRORS_SUPPORTED
150
151
152 dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
153 dnl [ACTION-IF-NOT-FOUND])
154 dnl --------------------------------------------------------------
155 dnl Since: 0.4.0
156 dnl
157 dnl Note that if there is a possibility the first call to
158 dnl PKG_CHECK_MODULES might not happen, you should be sure to include an
159 dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
127160 AC_DEFUN([PKG_CHECK_MODULES],
128161 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
129162 AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
130163 AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
131164
132165 pkg_failed=no
133 AC_MSG_CHECKING([for $1])
166 AC_MSG_CHECKING([for $2])
134167
135168 _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
136169 _PKG_CONFIG([$1][_LIBS], [libs], [$2])
140173 See the pkg-config man page for more details.])
141174
142175 if test $pkg_failed = yes; then
143 AC_MSG_RESULT([no])
176 AC_MSG_RESULT([no])
144177 _PKG_SHORT_ERRORS_SUPPORTED
145178 if test $_pkg_short_errors_supported = yes; then
146179 $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
147 else
180 else
148181 $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
149182 fi
150183 # Put the nasty error message in config.log where it belongs
161194 _PKG_TEXT])[]dnl
162195 ])
163196 elif test $pkg_failed = untried; then
164 AC_MSG_RESULT([no])
197 AC_MSG_RESULT([no])
165198 m4_default([$4], [AC_MSG_FAILURE(
166199 [The pkg-config script could not be found or is too old. Make sure it
167200 is in your PATH or set the PKG_CONFIG environment variable to the full
177210 AC_MSG_RESULT([yes])
178211 $3
179212 fi[]dnl
180 ])# PKG_CHECK_MODULES
181
182
183 # PKG_INSTALLDIR(DIRECTORY)
184 # -------------------------
185 # Substitutes the variable pkgconfigdir as the location where a module
186 # should install pkg-config .pc files. By default the directory is
187 # $libdir/pkgconfig, but the default can be changed by passing
188 # DIRECTORY. The user can override through the --with-pkgconfigdir
189 # parameter.
213 ])dnl PKG_CHECK_MODULES
214
215
216 dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
217 dnl [ACTION-IF-NOT-FOUND])
218 dnl ---------------------------------------------------------------------
219 dnl Since: 0.29
220 dnl
221 dnl Checks for existence of MODULES and gathers its build flags with
222 dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags
223 dnl and VARIABLE-PREFIX_LIBS from --libs.
224 dnl
225 dnl Note that if there is a possibility the first call to
226 dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to
227 dnl include an explicit call to PKG_PROG_PKG_CONFIG in your
228 dnl configure.ac.
229 AC_DEFUN([PKG_CHECK_MODULES_STATIC],
230 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
231 _save_PKG_CONFIG=$PKG_CONFIG
232 PKG_CONFIG="$PKG_CONFIG --static"
233 PKG_CHECK_MODULES($@)
234 PKG_CONFIG=$_save_PKG_CONFIG[]dnl
235 ])dnl PKG_CHECK_MODULES_STATIC
236
237
238 dnl PKG_INSTALLDIR([DIRECTORY])
239 dnl -------------------------
240 dnl Since: 0.27
241 dnl
242 dnl Substitutes the variable pkgconfigdir as the location where a module
243 dnl should install pkg-config .pc files. By default the directory is
244 dnl $libdir/pkgconfig, but the default can be changed by passing
245 dnl DIRECTORY. The user can override through the --with-pkgconfigdir
246 dnl parameter.
190247 AC_DEFUN([PKG_INSTALLDIR],
191248 [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
192249 m4_pushdef([pkg_description],
197254 AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
198255 m4_popdef([pkg_default])
199256 m4_popdef([pkg_description])
200 ]) dnl PKG_INSTALLDIR
201
202
203 # PKG_NOARCH_INSTALLDIR(DIRECTORY)
204 # -------------------------
205 # Substitutes the variable noarch_pkgconfigdir as the location where a
206 # module should install arch-independent pkg-config .pc files. By
207 # default the directory is $datadir/pkgconfig, but the default can be
208 # changed by passing DIRECTORY. The user can override through the
209 # --with-noarch-pkgconfigdir parameter.
257 ])dnl PKG_INSTALLDIR
258
259
260 dnl PKG_NOARCH_INSTALLDIR([DIRECTORY])
261 dnl --------------------------------
262 dnl Since: 0.27
263 dnl
264 dnl Substitutes the variable noarch_pkgconfigdir as the location where a
265 dnl module should install arch-independent pkg-config .pc files. By
266 dnl default the directory is $datadir/pkgconfig, but the default can be
267 dnl changed by passing DIRECTORY. The user can override through the
268 dnl --with-noarch-pkgconfigdir parameter.
210269 AC_DEFUN([PKG_NOARCH_INSTALLDIR],
211270 [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
212271 m4_pushdef([pkg_description],
217276 AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
218277 m4_popdef([pkg_default])
219278 m4_popdef([pkg_description])
220 ]) dnl PKG_NOARCH_INSTALLDIR
221
222
223 # PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
224 # [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
225 # -------------------------------------------
226 # Retrieves the value of the pkg-config variable for the given module.
279 ])dnl PKG_NOARCH_INSTALLDIR
280
281
282 dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
283 dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
284 dnl -------------------------------------------
285 dnl Since: 0.28
286 dnl
287 dnl Retrieves the value of the pkg-config variable for the given module.
227288 AC_DEFUN([PKG_CHECK_VAR],
228289 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
229290 AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
232293 AS_VAR_COPY([$1], [pkg_cv_][$1])
233294
234295 AS_VAR_IF([$1], [""], [$5], [$4])dnl
235 ])# PKG_CHECK_VAR
236
237 # Copyright (C) 2002-2013 Free Software Foundation, Inc.
296 ])dnl PKG_CHECK_VAR
297
298 # Copyright (C) 2002-2021 Free Software Foundation, Inc.
238299 #
239300 # This file is free software; the Free Software Foundation
240301 # gives unlimited permission to copy and/or distribute it,
246307 # generated from the m4 files accompanying Automake X.Y.
247308 # (This private macro should not be called outside this file.)
248309 AC_DEFUN([AM_AUTOMAKE_VERSION],
249 [am__api_version='1.13'
310 [am__api_version='1.16'
250311 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
251312 dnl require some minimum version. Point them to the right macro.
252 m4_if([$1], [1.13.2], [],
313 m4_if([$1], [1.16.5], [],
253314 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
254315 ])
255316
265326 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
266327 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
267328 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
268 [AM_AUTOMAKE_VERSION([1.13.2])dnl
329 [AM_AUTOMAKE_VERSION([1.16.5])dnl
269330 m4_ifndef([AC_AUTOCONF_VERSION],
270331 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
271332 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
272333
273334 # AM_AUX_DIR_EXPAND -*- Autoconf -*-
274335
275 # Copyright (C) 2001-2013 Free Software Foundation, Inc.
336 # Copyright (C) 2001-2021 Free Software Foundation, Inc.
276337 #
277338 # This file is free software; the Free Software Foundation
278339 # gives unlimited permission to copy and/or distribute it,
317378 # configured tree to be moved without reconfiguration.
318379
319380 AC_DEFUN([AM_AUX_DIR_EXPAND],
320 [dnl Rely on autoconf to set up CDPATH properly.
321 AC_PREREQ([2.50])dnl
322 # expand $ac_aux_dir to an absolute path
323 am_aux_dir=`cd $ac_aux_dir && pwd`
381 [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
382 # Expand $ac_aux_dir to an absolute path.
383 am_aux_dir=`cd "$ac_aux_dir" && pwd`
324384 ])
325385
326386 # AM_CONDITIONAL -*- Autoconf -*-
327387
328 # Copyright (C) 1997-2013 Free Software Foundation, Inc.
388 # Copyright (C) 1997-2021 Free Software Foundation, Inc.
329389 #
330390 # This file is free software; the Free Software Foundation
331391 # gives unlimited permission to copy and/or distribute it,
358418
359419 # Do all the work for Automake. -*- Autoconf -*-
360420
361 # Copyright (C) 1996-2013 Free Software Foundation, Inc.
421 # Copyright (C) 1996-2021 Free Software Foundation, Inc.
362422 #
363423 # This file is free software; the Free Software Foundation
364424 # gives unlimited permission to copy and/or distribute it,
366426
367427 # This macro actually does too much. Some checks are only needed if
368428 # your package does certain things. But this isn't really a big deal.
429
430 dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O.
431 m4_define([AC_PROG_CC],
432 m4_defn([AC_PROG_CC])
433 [_AM_PROG_CC_C_O
434 ])
369435
370436 # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
371437 # AM_INIT_AUTOMAKE([OPTIONS])
380446 # release and drop the old call support.
381447 AC_DEFUN([AM_INIT_AUTOMAKE],
382448 [AC_PREREQ([2.65])dnl
449 m4_ifdef([_$0_ALREADY_INIT],
450 [m4_fatal([$0 expanded multiple times
451 ]m4_defn([_$0_ALREADY_INIT]))],
452 [m4_define([_$0_ALREADY_INIT], m4_expansion_stack)])dnl
383453 dnl Autoconf wants to disallow AM_ names. We explicitly allow
384454 dnl the ones we care about.
385455 m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
416486 [_AM_SET_OPTIONS([$1])dnl
417487 dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
418488 m4_if(
419 m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
489 m4_ifset([AC_PACKAGE_NAME], [ok]):m4_ifset([AC_PACKAGE_VERSION], [ok]),
420490 [ok:ok],,
421491 [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
422492 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
439509 AC_REQUIRE([AC_PROG_MKDIR_P])dnl
440510 # For better backward compatibility. To be removed once Automake 1.9.x
441511 # dies out for good. For more background, see:
442 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
443 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
512 # <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
513 # <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
444514 AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
445 # We need awk for the "check" target. The system "awk" is bad on
446 # some platforms.
515 # We need awk for the "check" target (and possibly the TAP driver). The
516 # system "awk" is bad on some platforms.
447517 AC_REQUIRE([AC_PROG_AWK])dnl
448518 AC_REQUIRE([AC_PROG_MAKE_SET])dnl
449519 AC_REQUIRE([AM_SET_LEADING_DOT])dnl
468538 [m4_define([AC_PROG_OBJCXX],
469539 m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
470540 ])
541 # Variables for tags utilities; see am/tags.am
542 if test -z "$CTAGS"; then
543 CTAGS=ctags
544 fi
545 AC_SUBST([CTAGS])
546 if test -z "$ETAGS"; then
547 ETAGS=etags
548 fi
549 AC_SUBST([ETAGS])
550 if test -z "$CSCOPE"; then
551 CSCOPE=cscope
552 fi
553 AC_SUBST([CSCOPE])
554
471555 AC_REQUIRE([AM_SILENT_RULES])dnl
472556 dnl The testsuite driver may need to know about EXEEXT, so add the
473557 dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This
475559 AC_CONFIG_COMMANDS_PRE(dnl
476560 [m4_provide_if([_AM_COMPILER_EXEEXT],
477561 [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
562
563 # POSIX will say in a future version that running "rm -f" with no argument
564 # is OK; and we want to be able to make that assumption in our Makefile
565 # recipes. So use an aggressive probe to check that the usage we want is
566 # actually supported "in the wild" to an acceptable degree.
567 # See automake bug#10828.
568 # To make any issue more visible, cause the running configure to be aborted
569 # by default if the 'rm' program in use doesn't match our expectations; the
570 # user can still override this though.
571 if rm -f && rm -fr && rm -rf; then : OK; else
572 cat >&2 <<'END'
573 Oops!
574
575 Your 'rm' program seems unable to run without file operands specified
576 on the command line, even when the '-f' option is present. This is contrary
577 to the behaviour of most rm programs out there, and not conforming with
578 the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
579
580 Please tell bug-automake@gnu.org about your system, including the value
581 of your $PATH and any error possibly output before this message. This
582 can help us improve future automake versions.
583
584 END
585 if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
586 echo 'Configuration will proceed anyway, since you have set the' >&2
587 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
588 echo >&2
589 else
590 cat >&2 <<'END'
591 Aborting the configuration process, to ensure you take notice of the issue.
592
593 You can download and install GNU coreutils to get an 'rm' implementation
594 that behaves properly: <https://www.gnu.org/software/coreutils/>.
595
596 If you want to complete the configuration process using your problematic
597 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
598 to "yes", and re-run configure.
599
600 END
601 AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
602 fi
603 fi
604 dnl The trailing newline in this macro's definition is deliberate, for
605 dnl backward compatibility and to allow trailing 'dnl'-style comments
606 dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.
478607 ])
479608
480609 dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
482611 dnl mangled by Autoconf and run in a shell conditional statement.
483612 m4_define([_AC_COMPILER_EXEEXT],
484613 m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
485
486614
487615 # When config.status generates a header, we must update the stamp-h file.
488616 # This file resides in the same directory as the config header
505633 done
506634 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
507635
508 # Copyright (C) 2001-2013 Free Software Foundation, Inc.
636 # Copyright (C) 2001-2021 Free Software Foundation, Inc.
509637 #
510638 # This file is free software; the Free Software Foundation
511639 # gives unlimited permission to copy and/or distribute it,
516644 # Define $install_sh.
517645 AC_DEFUN([AM_PROG_INSTALL_SH],
518646 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
519 if test x"${install_sh}" != xset; then
647 if test x"${install_sh+set}" != xset; then
520648 case $am_aux_dir in
521649 *\ * | *\ *)
522650 install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
526654 fi
527655 AC_SUBST([install_sh])])
528656
529 # Copyright (C) 2003-2013 Free Software Foundation, Inc.
657 # Copyright (C) 2003-2021 Free Software Foundation, Inc.
530658 #
531659 # This file is free software; the Free Software Foundation
532660 # gives unlimited permission to copy and/or distribute it,
548676 # Add --enable-maintainer-mode option to configure. -*- Autoconf -*-
549677 # From Jim Meyering
550678
551 # Copyright (C) 1996-2013 Free Software Foundation, Inc.
679 # Copyright (C) 1996-2021 Free Software Foundation, Inc.
552680 #
553681 # This file is free software; the Free Software Foundation
554682 # gives unlimited permission to copy and/or distribute it,
583711
584712 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
585713
586 # Copyright (C) 1997-2013 Free Software Foundation, Inc.
714 # Copyright (C) 1997-2021 Free Software Foundation, Inc.
587715 #
588716 # This file is free software; the Free Software Foundation
589717 # gives unlimited permission to copy and/or distribute it,
604732 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
605733 AC_REQUIRE_AUX_FILE([missing])dnl
606734 if test x"${MISSING+set}" != xset; then
607 case $am_aux_dir in
608 *\ * | *\ *)
609 MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
610 *)
611 MISSING="\${SHELL} $am_aux_dir/missing" ;;
612 esac
735 MISSING="\${SHELL} '$am_aux_dir/missing'"
613736 fi
614737 # Use eval to expand $SHELL
615738 if eval "$MISSING --is-lightweight"; then
622745
623746 # Helper functions for option handling. -*- Autoconf -*-
624747
625 # Copyright (C) 2001-2013 Free Software Foundation, Inc.
748 # Copyright (C) 2001-2021 Free Software Foundation, Inc.
626749 #
627750 # This file is free software; the Free Software Foundation
628751 # gives unlimited permission to copy and/or distribute it,
653776
654777 # Check to make sure that the build environment is sane. -*- Autoconf -*-
655778
656 # Copyright (C) 1996-2013 Free Software Foundation, Inc.
779 # Copyright (C) 1996-2021 Free Software Foundation, Inc.
657780 #
658781 # This file is free software; the Free Software Foundation
659782 # gives unlimited permission to copy and/or distribute it,
734857 rm -f conftest.file
735858 ])
736859
737 # Copyright (C) 2009-2013 Free Software Foundation, Inc.
860 # Copyright (C) 2009-2021 Free Software Foundation, Inc.
738861 #
739862 # This file is free software; the Free Software Foundation
740863 # gives unlimited permission to copy and/or distribute it,
794917 _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
795918 ])
796919
797 # Copyright (C) 2001-2013 Free Software Foundation, Inc.
920 # Copyright (C) 2001-2021 Free Software Foundation, Inc.
798921 #
799922 # This file is free software; the Free Software Foundation
800923 # gives unlimited permission to copy and/or distribute it,
822945 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
823946 AC_SUBST([INSTALL_STRIP_PROGRAM])])
824947
825 # Copyright (C) 2006-2013 Free Software Foundation, Inc.
948 # Copyright (C) 2006-2021 Free Software Foundation, Inc.
826949 #
827950 # This file is free software; the Free Software Foundation
828951 # gives unlimited permission to copy and/or distribute it,
841964
842965 # Check how to create a tarball. -*- Autoconf -*-
843966
844 # Copyright (C) 2004-2013 Free Software Foundation, Inc.
967 # Copyright (C) 2004-2021 Free Software Foundation, Inc.
845968 #
846969 # This file is free software; the Free Software Foundation
847970 # gives unlimited permission to copy and/or distribute it,
00 #! /bin/sh
11 # Guess values for system-dependent variables and create Makefiles.
2 # Generated by GNU Autoconf 2.69 for dbus-sharp-glib 0.6.0.
2 # Generated by GNU Autoconf 2.71 for dbus-sharp-glib 0.6.0.
33 #
44 #
5 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
5 # Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation,
6 # Inc.
67 #
78 #
89 # This configure script is free software; the Free Software Foundation
1314
1415 # Be more Bourne compatible
1516 DUALCASE=1; export DUALCASE # for MKS sh
16 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
17 as_nop=:
18 if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1
19 then :
1720 emulate sh
1821 NULLCMD=:
1922 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
2023 # is contrary to our usage. Disable this feature.
2124 alias -g '${1+"$@"}'='"$@"'
2225 setopt NO_GLOB_SUBST
23 else
26 else $as_nop
2427 case `(set -o) 2>/dev/null` in #(
2528 *posix*) :
2629 set -o posix ;; #(
3033 fi
3134
3235
36
37 # Reset variables that may have inherited troublesome values from
38 # the environment.
39
40 # IFS needs to be set, to space, tab, and newline, in precisely that order.
41 # (If _AS_PATH_WALK were called with IFS unset, it would have the
42 # side effect of setting IFS to empty, thus disabling word splitting.)
43 # Quoting is to prevent editors from complaining about space-tab.
3344 as_nl='
3445 '
3546 export as_nl
36 # Printing a long string crashes Solaris 7 /usr/bin/printf.
37 as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
38 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
39 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
40 # Prefer a ksh shell builtin over an external printf program on Solaris,
41 # but without wasting forks for bash or zsh.
42 if test -z "$BASH_VERSION$ZSH_VERSION" \
43 && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
44 as_echo='print -r --'
45 as_echo_n='print -rn --'
46 elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
47 as_echo='printf %s\n'
48 as_echo_n='printf %s'
49 else
50 if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
51 as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
52 as_echo_n='/usr/ucb/echo -n'
53 else
54 as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
55 as_echo_n_body='eval
56 arg=$1;
57 case $arg in #(
58 *"$as_nl"*)
59 expr "X$arg" : "X\\(.*\\)$as_nl";
60 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
61 esac;
62 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
63 '
64 export as_echo_n_body
65 as_echo_n='sh -c $as_echo_n_body as_echo'
66 fi
67 export as_echo_body
68 as_echo='sh -c $as_echo_body as_echo'
69 fi
47 IFS=" "" $as_nl"
48
49 PS1='$ '
50 PS2='> '
51 PS4='+ '
52
53 # Ensure predictable behavior from utilities with locale-dependent output.
54 LC_ALL=C
55 export LC_ALL
56 LANGUAGE=C
57 export LANGUAGE
58
59 # We cannot yet rely on "unset" to work, but we need these variables
60 # to be unset--not just set to an empty or harmless value--now, to
61 # avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct
62 # also avoids known problems related to "unset" and subshell syntax
63 # in other old shells (e.g. bash 2.01 and pdksh 5.2.14).
64 for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH
65 do eval test \${$as_var+y} \
66 && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
67 done
68
69 # Ensure that fds 0, 1, and 2 are open.
70 if (exec 3>&0) 2>/dev/null; then :; else exec 0</dev/null; fi
71 if (exec 3>&1) 2>/dev/null; then :; else exec 1>/dev/null; fi
72 if (exec 3>&2) ; then :; else exec 2>/dev/null; fi
7073
7174 # The user is always right.
72 if test "${PATH_SEPARATOR+set}" != set; then
75 if ${PATH_SEPARATOR+false} :; then
7376 PATH_SEPARATOR=:
7477 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
7578 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
7780 }
7881 fi
7982
80
81 # IFS
82 # We need space, tab and new line, in precisely that order. Quoting is
83 # there to prevent editors from complaining about space-tab.
84 # (If _AS_PATH_WALK were called with IFS unset, it would disable word
85 # splitting by setting IFS to empty value.)
86 IFS=" "" $as_nl"
8783
8884 # Find who we are. Look in the path if we contain no directory separator.
8985 as_myself=
9389 for as_dir in $PATH
9490 do
9591 IFS=$as_save_IFS
96 test -z "$as_dir" && as_dir=.
97 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
92 case $as_dir in #(((
93 '') as_dir=./ ;;
94 */) ;;
95 *) as_dir=$as_dir/ ;;
96 esac
97 test -r "$as_dir$0" && as_myself=$as_dir$0 && break
9898 done
9999 IFS=$as_save_IFS
100100
106106 as_myself=$0
107107 fi
108108 if test ! -f "$as_myself"; then
109 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
109 printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
110110 exit 1
111111 fi
112112
113 # Unset variables that we do not need and which cause bugs (e.g. in
114 # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
115 # suppresses any "Segmentation fault" message there. '((' could
116 # trigger a bug in pdksh 5.2.14.
117 for as_var in BASH_ENV ENV MAIL MAILPATH
118 do eval test x\${$as_var+set} = xset \
119 && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
120 done
121 PS1='$ '
122 PS2='> '
123 PS4='+ '
124
125 # NLS nuisances.
126 LC_ALL=C
127 export LC_ALL
128 LANGUAGE=C
129 export LANGUAGE
130
131 # CDPATH.
132 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
133113
134114 # Use a proper internal environment variable to ensure we don't fall
135115 # into an infinite loop, continuously re-executing ourselves.
151131 exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
152132 # Admittedly, this is quite paranoid, since all the known shells bail
153133 # out after a failed `exec'.
154 $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
155 as_fn_exit 255
134 printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2
135 exit 255
156136 fi
157137 # We don't want this to propagate to other subprocesses.
158138 { _as_can_reexec=; unset _as_can_reexec;}
159139 if test "x$CONFIG_SHELL" = x; then
160 as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
140 as_bourne_compatible="as_nop=:
141 if test \${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1
142 then :
161143 emulate sh
162144 NULLCMD=:
163145 # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
164146 # is contrary to our usage. Disable this feature.
165147 alias -g '\${1+\"\$@\"}'='\"\$@\"'
166148 setopt NO_GLOB_SUBST
167 else
149 else \$as_nop
168150 case \`(set -o) 2>/dev/null\` in #(
169151 *posix*) :
170152 set -o posix ;; #(
184166 as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
185167 as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
186168 as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
187 if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
188
189 else
169 if ( set x; as_fn_ret_success y && test x = \"\$1\" )
170 then :
171
172 else \$as_nop
190173 exitcode=1; echo positional parameters were not saved.
191174 fi
192175 test x\$exitcode = x0 || exit 1
176 blah=\$(echo \$(echo blah))
177 test x\"\$blah\" = xblah || exit 1
193178 test -x / || exit 1"
194179 as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
195180 as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
196181 eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
197182 test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
198 if (eval "$as_required") 2>/dev/null; then :
183 if (eval "$as_required") 2>/dev/null
184 then :
199185 as_have_required=yes
200 else
186 else $as_nop
201187 as_have_required=no
202188 fi
203 if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
204
205 else
189 if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null
190 then :
191
192 else $as_nop
206193 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
207194 as_found=false
208195 for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
209196 do
210197 IFS=$as_save_IFS
211 test -z "$as_dir" && as_dir=.
198 case $as_dir in #(((
199 '') as_dir=./ ;;
200 */) ;;
201 *) as_dir=$as_dir/ ;;
202 esac
212203 as_found=:
213204 case $as_dir in #(
214205 /*)
215206 for as_base in sh bash ksh sh5; do
216207 # Try only shells that exist, to save several forks.
217 as_shell=$as_dir/$as_base
208 as_shell=$as_dir$as_base
218209 if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
219 { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
210 as_run=a "$as_shell" -c "$as_bourne_compatible""$as_required" 2>/dev/null
211 then :
220212 CONFIG_SHELL=$as_shell as_have_required=yes
221 if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
213 if as_run=a "$as_shell" -c "$as_bourne_compatible""$as_suggested" 2>/dev/null
214 then :
222215 break 2
223216 fi
224217 fi
226219 esac
227220 as_found=false
228221 done
229 $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
230 { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
222 IFS=$as_save_IFS
223 if $as_found
224 then :
225
226 else $as_nop
227 if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
228 as_run=a "$SHELL" -c "$as_bourne_compatible""$as_required" 2>/dev/null
229 then :
231230 CONFIG_SHELL=$SHELL as_have_required=yes
232 fi; }
233 IFS=$as_save_IFS
234
235
236 if test "x$CONFIG_SHELL" != x; then :
231 fi
232 fi
233
234
235 if test "x$CONFIG_SHELL" != x
236 then :
237237 export CONFIG_SHELL
238238 # We cannot yet assume a decent shell, so we have to provide a
239239 # neutralization value for shells without unset; and this also
251251 exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
252252 # Admittedly, this is quite paranoid, since all the known shells bail
253253 # out after a failed `exec'.
254 $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
254 printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2
255255 exit 255
256256 fi
257257
258 if test x$as_have_required = xno; then :
259 $as_echo "$0: This script requires a shell more modern than all"
260 $as_echo "$0: the shells that I found on your system."
261 if test x${ZSH_VERSION+set} = xset ; then
262 $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
263 $as_echo "$0: be upgraded to zsh 4.3.4 or later."
258 if test x$as_have_required = xno
259 then :
260 printf "%s\n" "$0: This script requires a shell more modern than all"
261 printf "%s\n" "$0: the shells that I found on your system."
262 if test ${ZSH_VERSION+y} ; then
263 printf "%s\n" "$0: In particular, zsh $ZSH_VERSION has bugs and should"
264 printf "%s\n" "$0: be upgraded to zsh 4.3.4 or later."
264265 else
265 $as_echo "$0: Please tell bug-autoconf@gnu.org about your system,
266 printf "%s\n" "$0: Please tell bug-autoconf@gnu.org about your system,
266267 $0: including any error possibly output before this
267268 $0: message. Then install a modern shell, or manually run
268269 $0: the script under such a shell if you do have one."
289290 }
290291 as_unset=as_fn_unset
291292
293
292294 # as_fn_set_status STATUS
293295 # -----------------------
294296 # Set $? to STATUS, without forking.
306308 as_fn_set_status $1
307309 exit $1
308310 } # as_fn_exit
311 # as_fn_nop
312 # ---------
313 # Do nothing but, unlike ":", preserve the value of $?.
314 as_fn_nop ()
315 {
316 return $?
317 }
318 as_nop=as_fn_nop
309319
310320 # as_fn_mkdir_p
311321 # -------------
320330 as_dirs=
321331 while :; do
322332 case $as_dir in #(
323 *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
333 *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
324334 *) as_qdir=$as_dir;;
325335 esac
326336 as_dirs="'$as_qdir' $as_dirs"
329339 X"$as_dir" : 'X\(//\)[^/]' \| \
330340 X"$as_dir" : 'X\(//\)$' \| \
331341 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
332 $as_echo X"$as_dir" |
342 printf "%s\n" X"$as_dir" |
333343 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
334344 s//\1/
335345 q
368378 # advantage of any shell optimizations that allow amortized linear growth over
369379 # repeated appends, instead of the typical quadratic growth present in naive
370380 # implementations.
371 if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
381 if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null
382 then :
372383 eval 'as_fn_append ()
373384 {
374385 eval $1+=\$2
375386 }'
376 else
387 else $as_nop
377388 as_fn_append ()
378389 {
379390 eval $1=\$$1\$2
385396 # Perform arithmetic evaluation on the ARGs, and store the result in the
386397 # global $as_val. Take advantage of shells that can avoid forks. The arguments
387398 # must be portable across $(()) and expr.
388 if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
399 if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null
400 then :
389401 eval 'as_fn_arith ()
390402 {
391403 as_val=$(( $* ))
392404 }'
393 else
405 else $as_nop
394406 as_fn_arith ()
395407 {
396408 as_val=`expr "$@" || test $? -eq 1`
397409 }
398410 fi # as_fn_arith
399411
412 # as_fn_nop
413 # ---------
414 # Do nothing but, unlike ":", preserve the value of $?.
415 as_fn_nop ()
416 {
417 return $?
418 }
419 as_nop=as_fn_nop
400420
401421 # as_fn_error STATUS ERROR [LINENO LOG_FD]
402422 # ----------------------------------------
408428 as_status=$1; test $as_status -eq 0 && as_status=1
409429 if test "$4"; then
410430 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
411 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
431 printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
412432 fi
413 $as_echo "$as_me: error: $2" >&2
433 printf "%s\n" "$as_me: error: $2" >&2
414434 as_fn_exit $as_status
415435 } # as_fn_error
416436
437457 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
438458 X"$0" : 'X\(//\)$' \| \
439459 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
440 $as_echo X/"$0" |
460 printf "%s\n" X/"$0" |
441461 sed '/^.*\/\([^/][^/]*\)\/*$/{
442462 s//\1/
443463 q
481501 s/-\n.*//
482502 ' >$as_me.lineno &&
483503 chmod +x "$as_me.lineno" ||
484 { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
504 { printf "%s\n" "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
485505
486506 # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
487507 # already done that, so ensure we don't try to do so again and fall
495515 exit
496516 }
497517
518
519 # Determine whether it's possible to make 'echo' print without a newline.
520 # These variables are no longer used directly by Autoconf, but are AC_SUBSTed
521 # for compatibility with existing Makefiles.
498522 ECHO_C= ECHO_N= ECHO_T=
499523 case `echo -n x` in #(((((
500524 -n*)
507531 *)
508532 ECHO_N='-n';;
509533 esac
534
535 # For backward compatibility with old third-party macros, we provide
536 # the shell variables $as_echo and $as_echo_n. New code should use
537 # AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively.
538 as_echo='printf %s\n'
539 as_echo_n='printf %s'
540
510541
511542 rm -f conf$$ conf$$.exe conf$$.file
512543 if test -d conf$$.dir; then
586617 DBUS_SHARP_LIBS
587618 DBUS_SHARP_CFLAGS
588619 GACUTIL
589 GMCS
620 MCS
590621 MONO_LIBS
591622 MONO_CFLAGS
592623 PKG_CONFIG_LIBDIR
600631 AM_DEFAULT_VERBOSITY
601632 AM_DEFAULT_V
602633 AM_V
634 CSCOPE
635 ETAGS
636 CTAGS
603637 am__untar
604638 am__tar
605639 AMTAR
642676 docdir
643677 oldincludedir
644678 includedir
679 runstatedir
645680 localstatedir
646681 sharedstatedir
647682 sysconfdir
715750 sysconfdir='${prefix}/etc'
716751 sharedstatedir='${prefix}/com'
717752 localstatedir='${prefix}/var'
753 runstatedir='${localstatedir}/run'
718754 includedir='${prefix}/include'
719755 oldincludedir='/usr/include'
720756 docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
744780 *) ac_optarg=yes ;;
745781 esac
746782
747 # Accept the important Cygnus configure options, so we can diagnose typos.
748
749783 case $ac_dashdash$ac_option in
750784 --)
751785 ac_dashdash=yes ;;
786820 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
787821 # Reject names that are not valid shell variable names.
788822 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
789 as_fn_error $? "invalid feature name: $ac_useropt"
823 as_fn_error $? "invalid feature name: \`$ac_useropt'"
790824 ac_useropt_orig=$ac_useropt
791 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
825 ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
792826 case $ac_user_opts in
793827 *"
794828 "enable_$ac_useropt"
812846 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
813847 # Reject names that are not valid shell variable names.
814848 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
815 as_fn_error $? "invalid feature name: $ac_useropt"
849 as_fn_error $? "invalid feature name: \`$ac_useropt'"
816850 ac_useropt_orig=$ac_useropt
817 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
851 ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
818852 case $ac_user_opts in
819853 *"
820854 "enable_$ac_useropt"
9671001 | -silent | --silent | --silen | --sile | --sil)
9681002 silent=yes ;;
9691003
1004 -runstatedir | --runstatedir | --runstatedi | --runstated \
1005 | --runstate | --runstat | --runsta | --runst | --runs \
1006 | --run | --ru | --r)
1007 ac_prev=runstatedir ;;
1008 -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \
1009 | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \
1010 | --run=* | --ru=* | --r=*)
1011 runstatedir=$ac_optarg ;;
1012
9701013 -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
9711014 ac_prev=sbindir ;;
9721015 -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
10161059 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
10171060 # Reject names that are not valid shell variable names.
10181061 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1019 as_fn_error $? "invalid package name: $ac_useropt"
1062 as_fn_error $? "invalid package name: \`$ac_useropt'"
10201063 ac_useropt_orig=$ac_useropt
1021 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1064 ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
10221065 case $ac_user_opts in
10231066 *"
10241067 "with_$ac_useropt"
10321075 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
10331076 # Reject names that are not valid shell variable names.
10341077 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1035 as_fn_error $? "invalid package name: $ac_useropt"
1078 as_fn_error $? "invalid package name: \`$ac_useropt'"
10361079 ac_useropt_orig=$ac_useropt
1037 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1080 ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
10381081 case $ac_user_opts in
10391082 *"
10401083 "with_$ac_useropt"
10781121
10791122 *)
10801123 # FIXME: should be removed in autoconf 3.0.
1081 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
1124 printf "%s\n" "$as_me: WARNING: you should use --build, --host, --target" >&2
10821125 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1083 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
1126 printf "%s\n" "$as_me: WARNING: invalid host type: $ac_option" >&2
10841127 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
10851128 ;;
10861129
10961139 case $enable_option_checking in
10971140 no) ;;
10981141 fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
1099 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
1142 *) printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
11001143 esac
11011144 fi
11021145
11041147 for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
11051148 datadir sysconfdir sharedstatedir localstatedir includedir \
11061149 oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
1107 libdir localedir mandir
1150 libdir localedir mandir runstatedir
11081151 do
11091152 eval ac_val=\$$ac_var
11101153 # Remove trailing slashes.
11601203 X"$as_myself" : 'X\(//\)[^/]' \| \
11611204 X"$as_myself" : 'X\(//\)$' \| \
11621205 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
1163 $as_echo X"$as_myself" |
1206 printf "%s\n" X"$as_myself" |
11641207 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
11651208 s//\1/
11661209 q
12571300 --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
12581301 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
12591302 --localstatedir=DIR modifiable single-machine data [PREFIX/var]
1303 --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run]
12601304 --libdir=DIR object code libraries [EPREFIX/lib]
12611305 --includedir=DIR C header files [PREFIX/include]
12621306 --oldincludedir=DIR C header files for non-gcc [/usr/include]
13291373 case "$ac_dir" in
13301374 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
13311375 *)
1332 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
1376 ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'`
13331377 # A ".." for each directory in $ac_dir_suffix.
1334 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1378 ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
13351379 case $ac_top_builddir_sub in
13361380 "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
13371381 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
13591403 ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
13601404
13611405 cd "$ac_dir" || { ac_status=$?; continue; }
1362 # Check for guested configure.
1406 # Check for configure.gnu first; this name is used for a wrapper for
1407 # Metaconfig's "Configure" on case-insensitive file systems.
13631408 if test -f "$ac_srcdir/configure.gnu"; then
13641409 echo &&
13651410 $SHELL "$ac_srcdir/configure.gnu" --help=recursive
13671412 echo &&
13681413 $SHELL "$ac_srcdir/configure" --help=recursive
13691414 else
1370 $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
1415 printf "%s\n" "$as_me: WARNING: no configuration information is in $ac_dir" >&2
13711416 fi || ac_status=$?
13721417 cd "$ac_pwd" || { ac_status=$?; break; }
13731418 done
13771422 if $ac_init_version; then
13781423 cat <<\_ACEOF
13791424 dbus-sharp-glib configure 0.6.0
1380 generated by GNU Autoconf 2.69
1381
1382 Copyright (C) 2012 Free Software Foundation, Inc.
1425 generated by GNU Autoconf 2.71
1426
1427 Copyright (C) 2021 Free Software Foundation, Inc.
13831428 This configure script is free software; the Free Software Foundation
13841429 gives unlimited permission to copy, distribute and modify it.
13851430 _ACEOF
13891434 ## ------------------------ ##
13901435 ## Autoconf initialization. ##
13911436 ## ------------------------ ##
1437 ac_configure_args_raw=
1438 for ac_arg
1439 do
1440 case $ac_arg in
1441 *\'*)
1442 ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1443 esac
1444 as_fn_append ac_configure_args_raw " '$ac_arg'"
1445 done
1446
1447 case $ac_configure_args_raw in
1448 *$as_nl*)
1449 ac_safe_unquote= ;;
1450 *)
1451 ac_unsafe_z='|&;<>()$`\\"*?[ '' ' # This string ends in space, tab.
1452 ac_unsafe_a="$ac_unsafe_z#~"
1453 ac_safe_unquote="s/ '\\([^$ac_unsafe_a][^$ac_unsafe_z]*\\)'/ \\1/g"
1454 ac_configure_args_raw=` printf "%s\n" "$ac_configure_args_raw" | sed "$ac_safe_unquote"`;;
1455 esac
1456
13921457 cat >config.log <<_ACEOF
13931458 This file contains any messages produced by compilers while
13941459 running configure, to aid debugging if configure makes a mistake.
13951460
13961461 It was created by dbus-sharp-glib $as_me 0.6.0, which was
1397 generated by GNU Autoconf 2.69. Invocation command line was
1398
1399 $ $0 $@
1462 generated by GNU Autoconf 2.71. Invocation command line was
1463
1464 $ $0$ac_configure_args_raw
14001465
14011466 _ACEOF
14021467 exec 5>>config.log
14291494 for as_dir in $PATH
14301495 do
14311496 IFS=$as_save_IFS
1432 test -z "$as_dir" && as_dir=.
1433 $as_echo "PATH: $as_dir"
1497 case $as_dir in #(((
1498 '') as_dir=./ ;;
1499 */) ;;
1500 *) as_dir=$as_dir/ ;;
1501 esac
1502 printf "%s\n" "PATH: $as_dir"
14341503 done
14351504 IFS=$as_save_IFS
14361505
14651534 | -silent | --silent | --silen | --sile | --sil)
14661535 continue ;;
14671536 *\'*)
1468 ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1537 ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
14691538 esac
14701539 case $ac_pass in
14711540 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
15001569 # WARNING: Use '\'' to represent an apostrophe within the trap.
15011570 # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
15021571 trap 'exit_status=$?
1572 # Sanitize IFS.
1573 IFS=" "" $as_nl"
15031574 # Save into config.log some information that might help in debugging.
15041575 {
15051576 echo
15061577
1507 $as_echo "## ---------------- ##
1578 printf "%s\n" "## ---------------- ##
15081579 ## Cache variables. ##
15091580 ## ---------------- ##"
15101581 echo
15151586 case $ac_val in #(
15161587 *${as_nl}*)
15171588 case $ac_var in #(
1518 *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
1519 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
1589 *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
1590 printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
15201591 esac
15211592 case $ac_var in #(
15221593 _ | IFS | as_nl) ;; #(
15401611 )
15411612 echo
15421613
1543 $as_echo "## ----------------- ##
1614 printf "%s\n" "## ----------------- ##
15441615 ## Output variables. ##
15451616 ## ----------------- ##"
15461617 echo
15481619 do
15491620 eval ac_val=\$$ac_var
15501621 case $ac_val in
1551 *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1622 *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
15521623 esac
1553 $as_echo "$ac_var='\''$ac_val'\''"
1624 printf "%s\n" "$ac_var='\''$ac_val'\''"
15541625 done | sort
15551626 echo
15561627
15571628 if test -n "$ac_subst_files"; then
1558 $as_echo "## ------------------- ##
1629 printf "%s\n" "## ------------------- ##
15591630 ## File substitutions. ##
15601631 ## ------------------- ##"
15611632 echo
15631634 do
15641635 eval ac_val=\$$ac_var
15651636 case $ac_val in
1566 *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1637 *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
15671638 esac
1568 $as_echo "$ac_var='\''$ac_val'\''"
1639 printf "%s\n" "$ac_var='\''$ac_val'\''"
15691640 done | sort
15701641 echo
15711642 fi
15721643
15731644 if test -s confdefs.h; then
1574 $as_echo "## ----------- ##
1645 printf "%s\n" "## ----------- ##
15751646 ## confdefs.h. ##
15761647 ## ----------- ##"
15771648 echo
15791650 echo
15801651 fi
15811652 test "$ac_signal" != 0 &&
1582 $as_echo "$as_me: caught signal $ac_signal"
1583 $as_echo "$as_me: exit $exit_status"
1653 printf "%s\n" "$as_me: caught signal $ac_signal"
1654 printf "%s\n" "$as_me: exit $exit_status"
15841655 } >&5
15851656 rm -f core *.core core.conftest.* &&
15861657 rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
15941665 # confdefs.h avoids OS command line length limits that DEFS can exceed.
15951666 rm -f -r conftest* confdefs.h
15961667
1597 $as_echo "/* confdefs.h */" > confdefs.h
1668 printf "%s\n" "/* confdefs.h */" > confdefs.h
15981669
15991670 # Predefined preprocessor variables.
16001671
1601 cat >>confdefs.h <<_ACEOF
1602 #define PACKAGE_NAME "$PACKAGE_NAME"
1603 _ACEOF
1604
1605 cat >>confdefs.h <<_ACEOF
1606 #define PACKAGE_TARNAME "$PACKAGE_TARNAME"
1607 _ACEOF
1608
1609 cat >>confdefs.h <<_ACEOF
1610 #define PACKAGE_VERSION "$PACKAGE_VERSION"
1611 _ACEOF
1612
1613 cat >>confdefs.h <<_ACEOF
1614 #define PACKAGE_STRING "$PACKAGE_STRING"
1615 _ACEOF
1616
1617 cat >>confdefs.h <<_ACEOF
1618 #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
1619 _ACEOF
1620
1621 cat >>confdefs.h <<_ACEOF
1622 #define PACKAGE_URL "$PACKAGE_URL"
1623 _ACEOF
1672 printf "%s\n" "#define PACKAGE_NAME \"$PACKAGE_NAME\"" >>confdefs.h
1673
1674 printf "%s\n" "#define PACKAGE_TARNAME \"$PACKAGE_TARNAME\"" >>confdefs.h
1675
1676 printf "%s\n" "#define PACKAGE_VERSION \"$PACKAGE_VERSION\"" >>confdefs.h
1677
1678 printf "%s\n" "#define PACKAGE_STRING \"$PACKAGE_STRING\"" >>confdefs.h
1679
1680 printf "%s\n" "#define PACKAGE_BUGREPORT \"$PACKAGE_BUGREPORT\"" >>confdefs.h
1681
1682 printf "%s\n" "#define PACKAGE_URL \"$PACKAGE_URL\"" >>confdefs.h
16241683
16251684
16261685 # Let the site file select an alternate cache file if it wants to.
16271686 # Prefer an explicitly selected file to automatically selected ones.
1628 ac_site_file1=NONE
1629 ac_site_file2=NONE
16301687 if test -n "$CONFIG_SITE"; then
1631 # We do not want a PATH search for config.site.
1632 case $CONFIG_SITE in #((
1633 -*) ac_site_file1=./$CONFIG_SITE;;
1634 */*) ac_site_file1=$CONFIG_SITE;;
1635 *) ac_site_file1=./$CONFIG_SITE;;
1636 esac
1688 ac_site_files="$CONFIG_SITE"
16371689 elif test "x$prefix" != xNONE; then
1638 ac_site_file1=$prefix/share/config.site
1639 ac_site_file2=$prefix/etc/config.site
1640 else
1641 ac_site_file1=$ac_default_prefix/share/config.site
1642 ac_site_file2=$ac_default_prefix/etc/config.site
1643 fi
1644 for ac_site_file in "$ac_site_file1" "$ac_site_file2"
1690 ac_site_files="$prefix/share/config.site $prefix/etc/config.site"
1691 else
1692 ac_site_files="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
1693 fi
1694
1695 for ac_site_file in $ac_site_files
16451696 do
1646 test "x$ac_site_file" = xNONE && continue
1647 if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
1648 { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
1649 $as_echo "$as_me: loading site script $ac_site_file" >&6;}
1697 case $ac_site_file in #(
1698 */*) :
1699 ;; #(
1700 *) :
1701 ac_site_file=./$ac_site_file ;;
1702 esac
1703 if test -f "$ac_site_file" && test -r "$ac_site_file"; then
1704 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
1705 printf "%s\n" "$as_me: loading site script $ac_site_file" >&6;}
16501706 sed 's/^/| /' "$ac_site_file" >&5
16511707 . "$ac_site_file" \
1652 || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1653 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1708 || { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1709 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
16541710 as_fn_error $? "failed to load site script $ac_site_file
16551711 See \`config.log' for more details" "$LINENO" 5; }
16561712 fi
16601716 # Some versions of bash will fail to source /dev/null (special files
16611717 # actually), so we avoid doing that. DJGPP emulates it as a regular file.
16621718 if test /dev/null != "$cache_file" && test -f "$cache_file"; then
1663 { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
1664 $as_echo "$as_me: loading cache $cache_file" >&6;}
1719 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
1720 printf "%s\n" "$as_me: loading cache $cache_file" >&6;}
16651721 case $cache_file in
16661722 [\\/]* | ?:[\\/]* ) . "$cache_file";;
16671723 *) . "./$cache_file";;
16681724 esac
16691725 fi
16701726 else
1671 { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
1672 $as_echo "$as_me: creating cache $cache_file" >&6;}
1727 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
1728 printf "%s\n" "$as_me: creating cache $cache_file" >&6;}
16731729 >$cache_file
1730 fi
1731
1732
1733 # Auxiliary files required by this configure script.
1734 ac_aux_files="missing install-sh"
1735
1736 # Locations in which to look for auxiliary files.
1737 ac_aux_dir_candidates="${srcdir}${PATH_SEPARATOR}${srcdir}/..${PATH_SEPARATOR}${srcdir}/../.."
1738
1739 # Search for a directory containing all of the required auxiliary files,
1740 # $ac_aux_files, from the $PATH-style list $ac_aux_dir_candidates.
1741 # If we don't find one directory that contains all the files we need,
1742 # we report the set of missing files from the *first* directory in
1743 # $ac_aux_dir_candidates and give up.
1744 ac_missing_aux_files=""
1745 ac_first_candidate=:
1746 printf "%s\n" "$as_me:${as_lineno-$LINENO}: looking for aux files: $ac_aux_files" >&5
1747 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1748 as_found=false
1749 for as_dir in $ac_aux_dir_candidates
1750 do
1751 IFS=$as_save_IFS
1752 case $as_dir in #(((
1753 '') as_dir=./ ;;
1754 */) ;;
1755 *) as_dir=$as_dir/ ;;
1756 esac
1757 as_found=:
1758
1759 printf "%s\n" "$as_me:${as_lineno-$LINENO}: trying $as_dir" >&5
1760 ac_aux_dir_found=yes
1761 ac_install_sh=
1762 for ac_aux in $ac_aux_files
1763 do
1764 # As a special case, if "install-sh" is required, that requirement
1765 # can be satisfied by any of "install-sh", "install.sh", or "shtool",
1766 # and $ac_install_sh is set appropriately for whichever one is found.
1767 if test x"$ac_aux" = x"install-sh"
1768 then
1769 if test -f "${as_dir}install-sh"; then
1770 printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install-sh found" >&5
1771 ac_install_sh="${as_dir}install-sh -c"
1772 elif test -f "${as_dir}install.sh"; then
1773 printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install.sh found" >&5
1774 ac_install_sh="${as_dir}install.sh -c"
1775 elif test -f "${as_dir}shtool"; then
1776 printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}shtool found" >&5
1777 ac_install_sh="${as_dir}shtool install -c"
1778 else
1779 ac_aux_dir_found=no
1780 if $ac_first_candidate; then
1781 ac_missing_aux_files="${ac_missing_aux_files} install-sh"
1782 else
1783 break
1784 fi
1785 fi
1786 else
1787 if test -f "${as_dir}${ac_aux}"; then
1788 printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}${ac_aux} found" >&5
1789 else
1790 ac_aux_dir_found=no
1791 if $ac_first_candidate; then
1792 ac_missing_aux_files="${ac_missing_aux_files} ${ac_aux}"
1793 else
1794 break
1795 fi
1796 fi
1797 fi
1798 done
1799 if test "$ac_aux_dir_found" = yes; then
1800 ac_aux_dir="$as_dir"
1801 break
1802 fi
1803 ac_first_candidate=false
1804
1805 as_found=false
1806 done
1807 IFS=$as_save_IFS
1808 if $as_found
1809 then :
1810
1811 else $as_nop
1812 as_fn_error $? "cannot find required auxiliary files:$ac_missing_aux_files" "$LINENO" 5
1813 fi
1814
1815
1816 # These three variables are undocumented and unsupported,
1817 # and are intended to be withdrawn in a future Autoconf release.
1818 # They can cause serious problems if a builder's source tree is in a directory
1819 # whose full name contains unusual characters.
1820 if test -f "${ac_aux_dir}config.guess"; then
1821 ac_config_guess="$SHELL ${ac_aux_dir}config.guess"
1822 fi
1823 if test -f "${ac_aux_dir}config.sub"; then
1824 ac_config_sub="$SHELL ${ac_aux_dir}config.sub"
1825 fi
1826 if test -f "$ac_aux_dir/configure"; then
1827 ac_configure="$SHELL ${ac_aux_dir}configure"
16741828 fi
16751829
16761830 # Check that the precious variables saved in the cache have kept the same
16831837 eval ac_new_val=\$ac_env_${ac_var}_value
16841838 case $ac_old_set,$ac_new_set in
16851839 set,)
1686 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1687 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
1840 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1841 printf "%s\n" "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
16881842 ac_cache_corrupted=: ;;
16891843 ,set)
1690 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
1691 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
1844 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
1845 printf "%s\n" "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
16921846 ac_cache_corrupted=: ;;
16931847 ,);;
16941848 *)
16971851 ac_old_val_w=`echo x $ac_old_val`
16981852 ac_new_val_w=`echo x $ac_new_val`
16991853 if test "$ac_old_val_w" != "$ac_new_val_w"; then
1700 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
1701 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
1854 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
1855 printf "%s\n" "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
17021856 ac_cache_corrupted=:
17031857 else
1704 { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
1705 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
1858 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
1859 printf "%s\n" "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
17061860 eval $ac_var=\$ac_old_val
17071861 fi
1708 { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5
1709 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;}
1710 { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5
1711 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;}
1862 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5
1863 printf "%s\n" "$as_me: former value: \`$ac_old_val'" >&2;}
1864 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5
1865 printf "%s\n" "$as_me: current value: \`$ac_new_val'" >&2;}
17121866 fi;;
17131867 esac
17141868 # Pass precious variables to config.status.
17151869 if test "$ac_new_set" = set; then
17161870 case $ac_new_val in
1717 *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
1871 *\'*) ac_arg=$ac_var=`printf "%s\n" "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
17181872 *) ac_arg=$ac_var=$ac_new_val ;;
17191873 esac
17201874 case " $ac_configure_args " in
17241878 fi
17251879 done
17261880 if $ac_cache_corrupted; then
1727 { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1728 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1729 { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
1730 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
1731 as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
1881 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1882 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
1883 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
1884 printf "%s\n" "$as_me: error: changes in the environment can compromise the build" >&2;}
1885 as_fn_error $? "run \`${MAKE-make} distclean' and/or \`rm $cache_file'
1886 and start over" "$LINENO" 5
17321887 fi
17331888 ## -------------------- ##
17341889 ## Main body of script. ##
17421897
17431898
17441899
1745 am__api_version='1.13'
1746
1747 ac_aux_dir=
1748 for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
1749 if test -f "$ac_dir/install-sh"; then
1750 ac_aux_dir=$ac_dir
1751 ac_install_sh="$ac_aux_dir/install-sh -c"
1752 break
1753 elif test -f "$ac_dir/install.sh"; then
1754 ac_aux_dir=$ac_dir
1755 ac_install_sh="$ac_aux_dir/install.sh -c"
1756 break
1757 elif test -f "$ac_dir/shtool"; then
1758 ac_aux_dir=$ac_dir
1759 ac_install_sh="$ac_aux_dir/shtool install -c"
1760 break
1761 fi
1762 done
1763 if test -z "$ac_aux_dir"; then
1764 as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
1765 fi
1766
1767 # These three variables are undocumented and unsupported,
1768 # and are intended to be withdrawn in a future Autoconf release.
1769 # They can cause serious problems if a builder's source tree is in a directory
1770 # whose full name contains unusual characters.
1771 ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var.
1772 ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var.
1773 ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
1774
1775
1776 # Find a good install program. We prefer a C program (faster),
1900 am__api_version='1.16'
1901
1902
1903
1904 # Find a good install program. We prefer a C program (faster),
17771905 # so one script is as good as another. But avoid the broken or
17781906 # incompatible versions:
17791907 # SysV /etc/install, /usr/sbin/install
17871915 # OS/2's system install, which has a completely different semantic
17881916 # ./install, which can be erroneously created by make from ./install.sh.
17891917 # Reject install programs that cannot install multiple files.
1790 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
1791 $as_echo_n "checking for a BSD-compatible install... " >&6; }
1918 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
1919 printf %s "checking for a BSD-compatible install... " >&6; }
17921920 if test -z "$INSTALL"; then
1793 if ${ac_cv_path_install+:} false; then :
1794 $as_echo_n "(cached) " >&6
1795 else
1921 if test ${ac_cv_path_install+y}
1922 then :
1923 printf %s "(cached) " >&6
1924 else $as_nop
17961925 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
17971926 for as_dir in $PATH
17981927 do
17991928 IFS=$as_save_IFS
1800 test -z "$as_dir" && as_dir=.
1801 # Account for people who put trailing slashes in PATH elements.
1802 case $as_dir/ in #((
1803 ./ | .// | /[cC]/* | \
1929 case $as_dir in #(((
1930 '') as_dir=./ ;;
1931 */) ;;
1932 *) as_dir=$as_dir/ ;;
1933 esac
1934 # Account for fact that we put trailing slashes in our PATH walk.
1935 case $as_dir in #((
1936 ./ | /[cC]/* | \
18041937 /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
18051938 ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
18061939 /usr/ucb/* ) ;;
18101943 # by default.
18111944 for ac_prog in ginstall scoinst install; do
18121945 for ac_exec_ext in '' $ac_executable_extensions; do
1813 if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
1946 if as_fn_executable_p "$as_dir$ac_prog$ac_exec_ext"; then
18141947 if test $ac_prog = install &&
1815 grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
1948 grep dspmsg "$as_dir$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
18161949 # AIX install. It has an incompatible calling convention.
18171950 :
18181951 elif test $ac_prog = install &&
1819 grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
1952 grep pwplus "$as_dir$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
18201953 # program-specific install script used by HP pwplus--don't use.
18211954 :
18221955 else
18241957 echo one > conftest.one
18251958 echo two > conftest.two
18261959 mkdir conftest.dir
1827 if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
1960 if "$as_dir$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir/" &&
18281961 test -s conftest.one && test -s conftest.two &&
18291962 test -s conftest.dir/conftest.one &&
18301963 test -s conftest.dir/conftest.two
18311964 then
1832 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
1965 ac_cv_path_install="$as_dir$ac_prog$ac_exec_ext -c"
18331966 break 3
18341967 fi
18351968 fi
18451978 rm -rf conftest.one conftest.two conftest.dir
18461979
18471980 fi
1848 if test "${ac_cv_path_install+set}" = set; then
1981 if test ${ac_cv_path_install+y}; then
18491982 INSTALL=$ac_cv_path_install
18501983 else
18511984 # As a last resort, use the slow shell script. Don't cache a
18551988 INSTALL=$ac_install_sh
18561989 fi
18571990 fi
1858 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
1859 $as_echo "$INSTALL" >&6; }
1991 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
1992 printf "%s\n" "$INSTALL" >&6; }
18601993
18611994 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
18621995 # It thinks the first close brace ends the variable substitution.
18661999
18672000 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
18682001
1869 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
1870 $as_echo_n "checking whether build environment is sane... " >&6; }
2002 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
2003 printf %s "checking whether build environment is sane... " >&6; }
18712004 # Reject unsafe characters in $srcdir or the absolute working directory
18722005 # name. Accept space and tab only in the latter.
18732006 am_lf='
19212054 as_fn_error $? "newly created file is older than distributed files!
19222055 Check your system clock" "$LINENO" 5
19232056 fi
1924 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
1925 $as_echo "yes" >&6; }
2057 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2058 printf "%s\n" "yes" >&6; }
19262059 # If we didn't sleep, we still need to ensure time stamps of config.status and
19272060 # generated files are strictly newer.
19282061 am_sleep_pid=
19412074 # Double any \ or $.
19422075 # By default was `s,x,x', remove it if useless.
19432076 ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
1944 program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
1945
1946 # expand $ac_aux_dir to an absolute path
1947 am_aux_dir=`cd $ac_aux_dir && pwd`
1948
1949 if test x"${MISSING+set}" != xset; then
1950 case $am_aux_dir in
1951 *\ * | *\ *)
1952 MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
1953 *)
1954 MISSING="\${SHELL} $am_aux_dir/missing" ;;
1955 esac
2077 program_transform_name=`printf "%s\n" "$program_transform_name" | sed "$ac_script"`
2078
2079
2080 # Expand $ac_aux_dir to an absolute path.
2081 am_aux_dir=`cd "$ac_aux_dir" && pwd`
2082
2083
2084 if test x"${MISSING+set}" != xset; then
2085 MISSING="\${SHELL} '$am_aux_dir/missing'"
19562086 fi
19572087 # Use eval to expand $SHELL
19582088 if eval "$MISSING --is-lightweight"; then
19592089 am_missing_run="$MISSING "
19602090 else
19612091 am_missing_run=
1962 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5
1963 $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;}
1964 fi
1965
1966 if test x"${install_sh}" != xset; then
2092 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5
2093 printf "%s\n" "$as_me: WARNING: 'missing' script is too old or missing" >&2;}
2094 fi
2095
2096 if test x"${install_sh+set}" != xset; then
19672097 case $am_aux_dir in
19682098 *\ * | *\ *)
19692099 install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
19802110 if test -n "$ac_tool_prefix"; then
19812111 # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
19822112 set dummy ${ac_tool_prefix}strip; ac_word=$2
1983 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1984 $as_echo_n "checking for $ac_word... " >&6; }
1985 if ${ac_cv_prog_STRIP+:} false; then :
1986 $as_echo_n "(cached) " >&6
1987 else
2113 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2114 printf %s "checking for $ac_word... " >&6; }
2115 if test ${ac_cv_prog_STRIP+y}
2116 then :
2117 printf %s "(cached) " >&6
2118 else $as_nop
19882119 if test -n "$STRIP"; then
19892120 ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
19902121 else
19922123 for as_dir in $PATH
19932124 do
19942125 IFS=$as_save_IFS
1995 test -z "$as_dir" && as_dir=.
2126 case $as_dir in #(((
2127 '') as_dir=./ ;;
2128 */) ;;
2129 *) as_dir=$as_dir/ ;;
2130 esac
19962131 for ac_exec_ext in '' $ac_executable_extensions; do
1997 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2132 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
19982133 ac_cv_prog_STRIP="${ac_tool_prefix}strip"
1999 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2134 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
20002135 break 2
20012136 fi
20022137 done
20072142 fi
20082143 STRIP=$ac_cv_prog_STRIP
20092144 if test -n "$STRIP"; then
2010 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
2011 $as_echo "$STRIP" >&6; }
2012 else
2013 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2014 $as_echo "no" >&6; }
2145 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
2146 printf "%s\n" "$STRIP" >&6; }
2147 else
2148 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
2149 printf "%s\n" "no" >&6; }
20152150 fi
20162151
20172152
20202155 ac_ct_STRIP=$STRIP
20212156 # Extract the first word of "strip", so it can be a program name with args.
20222157 set dummy strip; ac_word=$2
2023 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2024 $as_echo_n "checking for $ac_word... " >&6; }
2025 if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
2026 $as_echo_n "(cached) " >&6
2027 else
2158 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2159 printf %s "checking for $ac_word... " >&6; }
2160 if test ${ac_cv_prog_ac_ct_STRIP+y}
2161 then :
2162 printf %s "(cached) " >&6
2163 else $as_nop
20282164 if test -n "$ac_ct_STRIP"; then
20292165 ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
20302166 else
20322168 for as_dir in $PATH
20332169 do
20342170 IFS=$as_save_IFS
2035 test -z "$as_dir" && as_dir=.
2171 case $as_dir in #(((
2172 '') as_dir=./ ;;
2173 */) ;;
2174 *) as_dir=$as_dir/ ;;
2175 esac
20362176 for ac_exec_ext in '' $ac_executable_extensions; do
2037 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2177 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
20382178 ac_cv_prog_ac_ct_STRIP="strip"
2039 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2179 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
20402180 break 2
20412181 fi
20422182 done
20472187 fi
20482188 ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
20492189 if test -n "$ac_ct_STRIP"; then
2050 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
2051 $as_echo "$ac_ct_STRIP" >&6; }
2052 else
2053 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2054 $as_echo "no" >&6; }
2190 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
2191 printf "%s\n" "$ac_ct_STRIP" >&6; }
2192 else
2193 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
2194 printf "%s\n" "no" >&6; }
20552195 fi
20562196
20572197 if test "x$ac_ct_STRIP" = x; then
20592199 else
20602200 case $cross_compiling:$ac_tool_warned in
20612201 yes:)
2062 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
2063 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
2202 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
2203 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
20642204 ac_tool_warned=yes ;;
20652205 esac
20662206 STRIP=$ac_ct_STRIP
20722212 fi
20732213 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
20742214
2075 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
2076 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
2215
2216 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a race-free mkdir -p" >&5
2217 printf %s "checking for a race-free mkdir -p... " >&6; }
20772218 if test -z "$MKDIR_P"; then
2078 if ${ac_cv_path_mkdir+:} false; then :
2079 $as_echo_n "(cached) " >&6
2080 else
2219 if test ${ac_cv_path_mkdir+y}
2220 then :
2221 printf %s "(cached) " >&6
2222 else $as_nop
20812223 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
20822224 for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
20832225 do
20842226 IFS=$as_save_IFS
2085 test -z "$as_dir" && as_dir=.
2227 case $as_dir in #(((
2228 '') as_dir=./ ;;
2229 */) ;;
2230 *) as_dir=$as_dir/ ;;
2231 esac
20862232 for ac_prog in mkdir gmkdir; do
20872233 for ac_exec_ext in '' $ac_executable_extensions; do
2088 as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
2089 case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
2090 'mkdir (GNU coreutils) '* | \
2091 'mkdir (coreutils) '* | \
2234 as_fn_executable_p "$as_dir$ac_prog$ac_exec_ext" || continue
2235 case `"$as_dir$ac_prog$ac_exec_ext" --version 2>&1` in #(
2236 'mkdir ('*'coreutils) '* | \
2237 'BusyBox '* | \
20922238 'mkdir (fileutils) '4.1*)
2093 ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
2239 ac_cv_path_mkdir=$as_dir$ac_prog$ac_exec_ext
20942240 break 3;;
20952241 esac
20962242 done
21012247 fi
21022248
21032249 test -d ./--version && rmdir ./--version
2104 if test "${ac_cv_path_mkdir+set}" = set; then
2250 if test ${ac_cv_path_mkdir+y}; then
21052251 MKDIR_P="$ac_cv_path_mkdir -p"
21062252 else
21072253 # As a last resort, use the slow shell script. Don't cache a
21112257 MKDIR_P="$ac_install_sh -d"
21122258 fi
21132259 fi
2114 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
2115 $as_echo "$MKDIR_P" >&6; }
2260 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
2261 printf "%s\n" "$MKDIR_P" >&6; }
21162262
21172263 for ac_prog in gawk mawk nawk awk
21182264 do
21192265 # Extract the first word of "$ac_prog", so it can be a program name with args.
21202266 set dummy $ac_prog; ac_word=$2
2121 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2122 $as_echo_n "checking for $ac_word... " >&6; }
2123 if ${ac_cv_prog_AWK+:} false; then :
2124 $as_echo_n "(cached) " >&6
2125 else
2267 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2268 printf %s "checking for $ac_word... " >&6; }
2269 if test ${ac_cv_prog_AWK+y}
2270 then :
2271 printf %s "(cached) " >&6
2272 else $as_nop
21262273 if test -n "$AWK"; then
21272274 ac_cv_prog_AWK="$AWK" # Let the user override the test.
21282275 else
21302277 for as_dir in $PATH
21312278 do
21322279 IFS=$as_save_IFS
2133 test -z "$as_dir" && as_dir=.
2280 case $as_dir in #(((
2281 '') as_dir=./ ;;
2282 */) ;;
2283 *) as_dir=$as_dir/ ;;
2284 esac
21342285 for ac_exec_ext in '' $ac_executable_extensions; do
2135 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2286 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
21362287 ac_cv_prog_AWK="$ac_prog"
2137 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2288 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
21382289 break 2
21392290 fi
21402291 done
21452296 fi
21462297 AWK=$ac_cv_prog_AWK
21472298 if test -n "$AWK"; then
2148 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
2149 $as_echo "$AWK" >&6; }
2150 else
2151 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2152 $as_echo "no" >&6; }
2299 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
2300 printf "%s\n" "$AWK" >&6; }
2301 else
2302 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
2303 printf "%s\n" "no" >&6; }
21532304 fi
21542305
21552306
21562307 test -n "$AWK" && break
21572308 done
21582309
2159 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
2160 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
2310 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
2311 printf %s "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
21612312 set x ${MAKE-make}
2162 ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
2163 if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
2164 $as_echo_n "(cached) " >&6
2165 else
2313 ac_make=`printf "%s\n" "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
2314 if eval test \${ac_cv_prog_make_${ac_make}_set+y}
2315 then :
2316 printf %s "(cached) " >&6
2317 else $as_nop
21662318 cat >conftest.make <<\_ACEOF
21672319 SHELL = /bin/sh
21682320 all:
21782330 rm -f conftest.make
21792331 fi
21802332 if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
2181 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2182 $as_echo "yes" >&6; }
2333 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2334 printf "%s\n" "yes" >&6; }
21832335 SET_MAKE=
21842336 else
2185 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2186 $as_echo "no" >&6; }
2337 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
2338 printf "%s\n" "no" >&6; }
21872339 SET_MAKE="MAKE=${MAKE-make}"
21882340 fi
21892341
21972349 rmdir .tst 2>/dev/null
21982350
21992351 # Check whether --enable-silent-rules was given.
2200 if test "${enable_silent_rules+set}" = set; then :
2352 if test ${enable_silent_rules+y}
2353 then :
22012354 enableval=$enable_silent_rules;
22022355 fi
22032356
22072360 *) AM_DEFAULT_VERBOSITY=1;;
22082361 esac
22092362 am_make=${MAKE-make}
2210 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
2211 $as_echo_n "checking whether $am_make supports nested variables... " >&6; }
2212 if ${am_cv_make_support_nested_variables+:} false; then :
2213 $as_echo_n "(cached) " >&6
2214 else
2215 if $as_echo 'TRUE=$(BAR$(V))
2363 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
2364 printf %s "checking whether $am_make supports nested variables... " >&6; }
2365 if test ${am_cv_make_support_nested_variables+y}
2366 then :
2367 printf %s "(cached) " >&6
2368 else $as_nop
2369 if printf "%s\n" 'TRUE=$(BAR$(V))
22162370 BAR0=false
22172371 BAR1=true
22182372 V=1
22242378 am_cv_make_support_nested_variables=no
22252379 fi
22262380 fi
2227 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
2228 $as_echo "$am_cv_make_support_nested_variables" >&6; }
2381 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
2382 printf "%s\n" "$am_cv_make_support_nested_variables" >&6; }
22292383 if test $am_cv_make_support_nested_variables = yes; then
22302384 AM_V='$(V)'
22312385 AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
22602414 VERSION='0.6.0'
22612415
22622416
2263 cat >>confdefs.h <<_ACEOF
2264 #define PACKAGE "$PACKAGE"
2265 _ACEOF
2266
2267
2268 cat >>confdefs.h <<_ACEOF
2269 #define VERSION "$VERSION"
2270 _ACEOF
2417 printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
2418
2419
2420 printf "%s\n" "#define VERSION \"$VERSION\"" >>confdefs.h
22712421
22722422 # Some tools Automake needs.
22732423
22872437
22882438 # For better backward compatibility. To be removed once Automake 1.9.x
22892439 # dies out for good. For more background, see:
2290 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
2291 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
2440 # <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
2441 # <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
22922442 mkdir_p='$(MKDIR_P)'
22932443
2294 # We need awk for the "check" target. The system "awk" is bad on
2295 # some platforms.
2444 # We need awk for the "check" target (and possibly the TAP driver). The
2445 # system "awk" is bad on some platforms.
22962446 # Always define AMTAR for backward compatibility. Yes, it's still used
22972447 # in the wild :-( We should find a proper way to deprecate it ...
22982448 AMTAR='$${TAR-tar}'
23072457
23082458
23092459
2310
2311
2312
2313 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5
2314 $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }
2460 # Variables for tags utilities; see am/tags.am
2461 if test -z "$CTAGS"; then
2462 CTAGS=ctags
2463 fi
2464
2465 if test -z "$ETAGS"; then
2466 ETAGS=etags
2467 fi
2468
2469 if test -z "$CSCOPE"; then
2470 CSCOPE=cscope
2471 fi
2472
2473
2474
2475 # POSIX will say in a future version that running "rm -f" with no argument
2476 # is OK; and we want to be able to make that assumption in our Makefile
2477 # recipes. So use an aggressive probe to check that the usage we want is
2478 # actually supported "in the wild" to an acceptable degree.
2479 # See automake bug#10828.
2480 # To make any issue more visible, cause the running configure to be aborted
2481 # by default if the 'rm' program in use doesn't match our expectations; the
2482 # user can still override this though.
2483 if rm -f && rm -fr && rm -rf; then : OK; else
2484 cat >&2 <<'END'
2485 Oops!
2486
2487 Your 'rm' program seems unable to run without file operands specified
2488 on the command line, even when the '-f' option is present. This is contrary
2489 to the behaviour of most rm programs out there, and not conforming with
2490 the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
2491
2492 Please tell bug-automake@gnu.org about your system, including the value
2493 of your $PATH and any error possibly output before this message. This
2494 can help us improve future automake versions.
2495
2496 END
2497 if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
2498 echo 'Configuration will proceed anyway, since you have set the' >&2
2499 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
2500 echo >&2
2501 else
2502 cat >&2 <<'END'
2503 Aborting the configuration process, to ensure you take notice of the issue.
2504
2505 You can download and install GNU coreutils to get an 'rm' implementation
2506 that behaves properly: <https://www.gnu.org/software/coreutils/>.
2507
2508 If you want to complete the configuration process using your problematic
2509 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
2510 to "yes", and re-run configure.
2511
2512 END
2513 as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5
2514 fi
2515 fi
2516
2517
2518
2519 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5
2520 printf %s "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }
23152521 # Check whether --enable-maintainer-mode was given.
2316 if test "${enable_maintainer_mode+set}" = set; then :
2522 if test ${enable_maintainer_mode+y}
2523 then :
23172524 enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval
2318 else
2525 else $as_nop
23192526 USE_MAINTAINER_MODE=no
23202527 fi
23212528
2322 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5
2323 $as_echo "$USE_MAINTAINER_MODE" >&6; }
2529 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5
2530 printf "%s\n" "$USE_MAINTAINER_MODE" >&6; }
23242531 if test $USE_MAINTAINER_MODE = yes; then
23252532 MAINTAINER_MODE_TRUE=
23262533 MAINTAINER_MODE_FALSE='#'
23422549
23432550 # Extract the first word of "pkg-config", so it can be a program name with args.
23442551 set dummy pkg-config; ac_word=$2
2345 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2346 $as_echo_n "checking for $ac_word... " >&6; }
2347 if ${ac_cv_path_PKG_CONFIG+:} false; then :
2348 $as_echo_n "(cached) " >&6
2349 else
2552 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2553 printf %s "checking for $ac_word... " >&6; }
2554 if test ${ac_cv_path_PKG_CONFIG+y}
2555 then :
2556 printf %s "(cached) " >&6
2557 else $as_nop
23502558 case $PKG_CONFIG in
23512559 [\\/]* | ?:[\\/]*)
23522560 ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
23562564 for as_dir in $PATH
23572565 do
23582566 IFS=$as_save_IFS
2359 test -z "$as_dir" && as_dir=.
2567 case $as_dir in #(((
2568 '') as_dir=./ ;;
2569 */) ;;
2570 *) as_dir=$as_dir/ ;;
2571 esac
23602572 for ac_exec_ext in '' $ac_executable_extensions; do
2361 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2362 ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
2363 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2573 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
2574 ac_cv_path_PKG_CONFIG="$as_dir$ac_word$ac_exec_ext"
2575 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
23642576 break 2
23652577 fi
23662578 done
23732585 fi
23742586 PKG_CONFIG=$ac_cv_path_PKG_CONFIG
23752587 if test -n "$PKG_CONFIG"; then
2376 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
2377 $as_echo "$PKG_CONFIG" >&6; }
2378 else
2379 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2380 $as_echo "no" >&6; }
2588 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
2589 printf "%s\n" "$PKG_CONFIG" >&6; }
2590 else
2591 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
2592 printf "%s\n" "no" >&6; }
23812593 fi
23822594
23832595
23982610 if test -n "$ac_tool_prefix"; then
23992611 # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
24002612 set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
2401 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2402 $as_echo_n "checking for $ac_word... " >&6; }
2403 if ${ac_cv_path_PKG_CONFIG+:} false; then :
2404 $as_echo_n "(cached) " >&6
2405 else
2613 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2614 printf %s "checking for $ac_word... " >&6; }
2615 if test ${ac_cv_path_PKG_CONFIG+y}
2616 then :
2617 printf %s "(cached) " >&6
2618 else $as_nop
24062619 case $PKG_CONFIG in
24072620 [\\/]* | ?:[\\/]*)
24082621 ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
24122625 for as_dir in $PATH
24132626 do
24142627 IFS=$as_save_IFS
2415 test -z "$as_dir" && as_dir=.
2628 case $as_dir in #(((
2629 '') as_dir=./ ;;
2630 */) ;;
2631 *) as_dir=$as_dir/ ;;
2632 esac
24162633 for ac_exec_ext in '' $ac_executable_extensions; do
2417 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2418 ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
2419 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2634 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
2635 ac_cv_path_PKG_CONFIG="$as_dir$ac_word$ac_exec_ext"
2636 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
24202637 break 2
24212638 fi
24222639 done
24282645 fi
24292646 PKG_CONFIG=$ac_cv_path_PKG_CONFIG
24302647 if test -n "$PKG_CONFIG"; then
2431 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
2432 $as_echo "$PKG_CONFIG" >&6; }
2433 else
2434 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2435 $as_echo "no" >&6; }
2648 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
2649 printf "%s\n" "$PKG_CONFIG" >&6; }
2650 else
2651 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
2652 printf "%s\n" "no" >&6; }
24362653 fi
24372654
24382655
24412658 ac_pt_PKG_CONFIG=$PKG_CONFIG
24422659 # Extract the first word of "pkg-config", so it can be a program name with args.
24432660 set dummy pkg-config; ac_word=$2
2444 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2445 $as_echo_n "checking for $ac_word... " >&6; }
2446 if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
2447 $as_echo_n "(cached) " >&6
2448 else
2661 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2662 printf %s "checking for $ac_word... " >&6; }
2663 if test ${ac_cv_path_ac_pt_PKG_CONFIG+y}
2664 then :
2665 printf %s "(cached) " >&6
2666 else $as_nop
24492667 case $ac_pt_PKG_CONFIG in
24502668 [\\/]* | ?:[\\/]*)
24512669 ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
24552673 for as_dir in $PATH
24562674 do
24572675 IFS=$as_save_IFS
2458 test -z "$as_dir" && as_dir=.
2676 case $as_dir in #(((
2677 '') as_dir=./ ;;
2678 */) ;;
2679 *) as_dir=$as_dir/ ;;
2680 esac
24592681 for ac_exec_ext in '' $ac_executable_extensions; do
2460 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2461 ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
2462 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2682 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
2683 ac_cv_path_ac_pt_PKG_CONFIG="$as_dir$ac_word$ac_exec_ext"
2684 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
24632685 break 2
24642686 fi
24652687 done
24712693 fi
24722694 ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
24732695 if test -n "$ac_pt_PKG_CONFIG"; then
2474 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
2475 $as_echo "$ac_pt_PKG_CONFIG" >&6; }
2476 else
2477 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2478 $as_echo "no" >&6; }
2696 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
2697 printf "%s\n" "$ac_pt_PKG_CONFIG" >&6; }
2698 else
2699 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
2700 printf "%s\n" "no" >&6; }
24792701 fi
24802702
24812703 if test "x$ac_pt_PKG_CONFIG" = x; then
24832705 else
24842706 case $cross_compiling:$ac_tool_warned in
24852707 yes:)
2486 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
2487 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
2708 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
2709 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
24882710 ac_tool_warned=yes ;;
24892711 esac
24902712 PKG_CONFIG=$ac_pt_PKG_CONFIG
24962718 fi
24972719 if test -n "$PKG_CONFIG"; then
24982720 _pkg_min_version=0.9.0
2499 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
2500 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
2721 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
2722 printf %s "checking pkg-config is at least version $_pkg_min_version... " >&6; }
25012723 if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
2502 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2503 $as_echo "yes" >&6; }
2724 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2725 printf "%s\n" "yes" >&6; }
25042726 else
2505 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2506 $as_echo "no" >&6; }
2727 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
2728 printf "%s\n" "no" >&6; }
25072729 PKG_CONFIG=""
25082730 fi
25092731 fi
25102732
25112733 pkg_failed=no
2512 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for MONO" >&5
2513 $as_echo_n "checking for MONO... " >&6; }
2734 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for mono >= $MONO_REQ_VERSION" >&5
2735 printf %s "checking for mono >= $MONO_REQ_VERSION... " >&6; }
25142736
25152737 if test -n "$MONO_CFLAGS"; then
25162738 pkg_cv_MONO_CFLAGS="$MONO_CFLAGS"
25172739 elif test -n "$PKG_CONFIG"; then
25182740 if test -n "$PKG_CONFIG" && \
2519 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mono >= \$MONO_REQ_VERSION\""; } >&5
2741 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mono >= \$MONO_REQ_VERSION\""; } >&5
25202742 ($PKG_CONFIG --exists --print-errors "mono >= $MONO_REQ_VERSION") 2>&5
25212743 ac_status=$?
2522 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
2744 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
25232745 test $ac_status = 0; }; then
25242746 pkg_cv_MONO_CFLAGS=`$PKG_CONFIG --cflags "mono >= $MONO_REQ_VERSION" 2>/dev/null`
25252747 test "x$?" != "x0" && pkg_failed=yes
25332755 pkg_cv_MONO_LIBS="$MONO_LIBS"
25342756 elif test -n "$PKG_CONFIG"; then
25352757 if test -n "$PKG_CONFIG" && \
2536 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mono >= \$MONO_REQ_VERSION\""; } >&5
2758 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mono >= \$MONO_REQ_VERSION\""; } >&5
25372759 ($PKG_CONFIG --exists --print-errors "mono >= $MONO_REQ_VERSION") 2>&5
25382760 ac_status=$?
2539 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
2761 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
25402762 test $ac_status = 0; }; then
25412763 pkg_cv_MONO_LIBS=`$PKG_CONFIG --libs "mono >= $MONO_REQ_VERSION" 2>/dev/null`
25422764 test "x$?" != "x0" && pkg_failed=yes
25502772
25512773
25522774 if test $pkg_failed = yes; then
2553 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2554 $as_echo "no" >&6; }
2775 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
2776 printf "%s\n" "no" >&6; }
25552777
25562778 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
25572779 _pkg_short_errors_supported=yes
25772799 and MONO_LIBS to avoid the need to call pkg-config.
25782800 See the pkg-config man page for more details." "$LINENO" 5
25792801 elif test $pkg_failed = untried; then
2580 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2581 $as_echo "no" >&6; }
2582 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2583 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2802 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
2803 printf "%s\n" "no" >&6; }
2804 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2805 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
25842806 as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it
25852807 is in your PATH or set the PKG_CONFIG environment variable to the full
25862808 path to pkg-config.
25942816 else
25952817 MONO_CFLAGS=$pkg_cv_MONO_CFLAGS
25962818 MONO_LIBS=$pkg_cv_MONO_LIBS
2597 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2598 $as_echo "yes" >&6; }
2599
2600 fi
2601
2602 # Extract the first word of "gmcs", so it can be a program name with args.
2603 set dummy gmcs; ac_word=$2
2604 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2605 $as_echo_n "checking for $ac_word... " >&6; }
2606 if ${ac_cv_path_GMCS+:} false; then :
2607 $as_echo_n "(cached) " >&6
2608 else
2609 case $GMCS in
2819 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2820 printf "%s\n" "yes" >&6; }
2821
2822 fi
2823
2824 # Extract the first word of "mcs", so it can be a program name with args.
2825 set dummy mcs; ac_word=$2
2826 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2827 printf %s "checking for $ac_word... " >&6; }
2828 if test ${ac_cv_path_MCS+y}
2829 then :
2830 printf %s "(cached) " >&6
2831 else $as_nop
2832 case $MCS in
26102833 [\\/]* | ?:[\\/]*)
2611 ac_cv_path_GMCS="$GMCS" # Let the user override the test with a path.
2834 ac_cv_path_MCS="$MCS" # Let the user override the test with a path.
26122835 ;;
26132836 *)
26142837 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
26152838 for as_dir in $PATH
26162839 do
26172840 IFS=$as_save_IFS
2618 test -z "$as_dir" && as_dir=.
2841 case $as_dir in #(((
2842 '') as_dir=./ ;;
2843 */) ;;
2844 *) as_dir=$as_dir/ ;;
2845 esac
26192846 for ac_exec_ext in '' $ac_executable_extensions; do
2620 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2621 ac_cv_path_GMCS="$as_dir/$ac_word$ac_exec_ext"
2622 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2847 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
2848 ac_cv_path_MCS="$as_dir$ac_word$ac_exec_ext"
2849 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
26232850 break 2
26242851 fi
26252852 done
26262853 done
26272854 IFS=$as_save_IFS
26282855
2629 test -z "$ac_cv_path_GMCS" && ac_cv_path_GMCS="no"
2856 test -z "$ac_cv_path_MCS" && ac_cv_path_MCS="no"
26302857 ;;
26312858 esac
26322859 fi
2633 GMCS=$ac_cv_path_GMCS
2634 if test -n "$GMCS"; then
2635 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMCS" >&5
2636 $as_echo "$GMCS" >&6; }
2637 else
2638 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2639 $as_echo "no" >&6; }
2640 fi
2641
2642
2643 if test "x$GMCS" = "xno"; then
2644 as_fn_error $? "You need to install gmcs" "$LINENO" 5
2860 MCS=$ac_cv_path_MCS
2861 if test -n "$MCS"; then
2862 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MCS" >&5
2863 printf "%s\n" "$MCS" >&6; }
2864 else
2865 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
2866 printf "%s\n" "no" >&6; }
2867 fi
2868
2869
2870 if test "x$MCS" = "xno"; then
2871 as_fn_error $? "You need to install mcs" "$LINENO" 5
26452872 fi
26462873
26472874
26482875 # Extract the first word of "gacutil", so it can be a program name with args.
26492876 set dummy gacutil; ac_word=$2
2650 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2651 $as_echo_n "checking for $ac_word... " >&6; }
2652 if ${ac_cv_path_GACUTIL+:} false; then :
2653 $as_echo_n "(cached) " >&6
2654 else
2877 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2878 printf %s "checking for $ac_word... " >&6; }
2879 if test ${ac_cv_path_GACUTIL+y}
2880 then :
2881 printf %s "(cached) " >&6
2882 else $as_nop
26552883 case $GACUTIL in
26562884 [\\/]* | ?:[\\/]*)
26572885 ac_cv_path_GACUTIL="$GACUTIL" # Let the user override the test with a path.
26612889 for as_dir in $PATH
26622890 do
26632891 IFS=$as_save_IFS
2664 test -z "$as_dir" && as_dir=.
2892 case $as_dir in #(((
2893 '') as_dir=./ ;;
2894 */) ;;
2895 *) as_dir=$as_dir/ ;;
2896 esac
26652897 for ac_exec_ext in '' $ac_executable_extensions; do
2666 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2667 ac_cv_path_GACUTIL="$as_dir/$ac_word$ac_exec_ext"
2668 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2898 if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
2899 ac_cv_path_GACUTIL="$as_dir$ac_word$ac_exec_ext"
2900 printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
26692901 break 2
26702902 fi
26712903 done
26782910 fi
26792911 GACUTIL=$ac_cv_path_GACUTIL
26802912 if test -n "$GACUTIL"; then
2681 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GACUTIL" >&5
2682 $as_echo "$GACUTIL" >&6; }
2683 else
2684 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2685 $as_echo "no" >&6; }
2913 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $GACUTIL" >&5
2914 printf "%s\n" "$GACUTIL" >&6; }
2915 else
2916 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
2917 printf "%s\n" "no" >&6; }
26862918 fi
26872919
26882920
26942926 DBUS_SHARP_REQUIRED_VERSION=0.7
26952927
26962928 pkg_failed=no
2697 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for DBUS_SHARP" >&5
2698 $as_echo_n "checking for DBUS_SHARP... " >&6; }
2929 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for dbus-sharp-2.0 >= $DBUS_SHARP_REQUIRED_VERSION" >&5
2930 printf %s "checking for dbus-sharp-2.0 >= $DBUS_SHARP_REQUIRED_VERSION... " >&6; }
26992931
27002932 if test -n "$DBUS_SHARP_CFLAGS"; then
27012933 pkg_cv_DBUS_SHARP_CFLAGS="$DBUS_SHARP_CFLAGS"
27022934 elif test -n "$PKG_CONFIG"; then
27032935 if test -n "$PKG_CONFIG" && \
2704 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"dbus-sharp-2.0 >= \$DBUS_SHARP_REQUIRED_VERSION\""; } >&5
2936 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"dbus-sharp-2.0 >= \$DBUS_SHARP_REQUIRED_VERSION\""; } >&5
27052937 ($PKG_CONFIG --exists --print-errors "dbus-sharp-2.0 >= $DBUS_SHARP_REQUIRED_VERSION") 2>&5
27062938 ac_status=$?
2707 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
2939 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
27082940 test $ac_status = 0; }; then
27092941 pkg_cv_DBUS_SHARP_CFLAGS=`$PKG_CONFIG --cflags "dbus-sharp-2.0 >= $DBUS_SHARP_REQUIRED_VERSION" 2>/dev/null`
27102942 test "x$?" != "x0" && pkg_failed=yes
27182950 pkg_cv_DBUS_SHARP_LIBS="$DBUS_SHARP_LIBS"
27192951 elif test -n "$PKG_CONFIG"; then
27202952 if test -n "$PKG_CONFIG" && \
2721 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"dbus-sharp-2.0 >= \$DBUS_SHARP_REQUIRED_VERSION\""; } >&5
2953 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"dbus-sharp-2.0 >= \$DBUS_SHARP_REQUIRED_VERSION\""; } >&5
27222954 ($PKG_CONFIG --exists --print-errors "dbus-sharp-2.0 >= $DBUS_SHARP_REQUIRED_VERSION") 2>&5
27232955 ac_status=$?
2724 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
2956 printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
27252957 test $ac_status = 0; }; then
27262958 pkg_cv_DBUS_SHARP_LIBS=`$PKG_CONFIG --libs "dbus-sharp-2.0 >= $DBUS_SHARP_REQUIRED_VERSION" 2>/dev/null`
27272959 test "x$?" != "x0" && pkg_failed=yes
27352967
27362968
27372969 if test $pkg_failed = yes; then
2738 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2739 $as_echo "no" >&6; }
2970 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
2971 printf "%s\n" "no" >&6; }
27402972
27412973 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
27422974 _pkg_short_errors_supported=yes
27622994 and DBUS_SHARP_LIBS to avoid the need to call pkg-config.
27632995 See the pkg-config man page for more details." "$LINENO" 5
27642996 elif test $pkg_failed = untried; then
2765 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2766 $as_echo "no" >&6; }
2767 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2768 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2997 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
2998 printf "%s\n" "no" >&6; }
2999 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3000 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
27693001 as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it
27703002 is in your PATH or set the PKG_CONFIG environment variable to the full
27713003 path to pkg-config.
27793011 else
27803012 DBUS_SHARP_CFLAGS=$pkg_cv_DBUS_SHARP_CFLAGS
27813013 DBUS_SHARP_LIBS=$pkg_cv_DBUS_SHARP_LIBS
2782 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2783 $as_echo "yes" >&6; }
3014 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3015 printf "%s\n" "yes" >&6; }
27843016
27853017 fi
27863018
28193051 case $ac_val in #(
28203052 *${as_nl}*)
28213053 case $ac_var in #(
2822 *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
2823 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
3054 *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
3055 printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
28243056 esac
28253057 case $ac_var in #(
28263058 _ | IFS | as_nl) ;; #(
28503082 /^ac_cv_env_/b end
28513083 t clear
28523084 :clear
2853 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
3085 s/^\([^=]*\)=\(.*[{}].*\)$/test ${\1+y} || &/
28543086 t end
28553087 s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
28563088 :end' >>confcache
28573089 if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
28583090 if test -w "$cache_file"; then
28593091 if test "x$cache_file" != "x/dev/null"; then
2860 { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
2861 $as_echo "$as_me: updating cache $cache_file" >&6;}
3092 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
3093 printf "%s\n" "$as_me: updating cache $cache_file" >&6;}
28623094 if test ! -f "$cache_file" || test -h "$cache_file"; then
28633095 cat confcache >"$cache_file"
28643096 else
28723104 fi
28733105 fi
28743106 else
2875 { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
2876 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
3107 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
3108 printf "%s\n" "$as_me: not updating unwritable cache $cache_file" >&6;}
28773109 fi
28783110 fi
28793111 rm -f confcache
29263158 for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
29273159 # 1. Remove the extension, and $U if already installed.
29283160 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
2929 ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
3161 ac_i=`printf "%s\n" "$ac_i" | sed "$ac_script"`
29303162 # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR
29313163 # will be set to the directory where LIBOBJS objects are built.
29323164 as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
29373169 LTLIBOBJS=$ac_ltlibobjs
29383170
29393171
2940 { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5
2941 $as_echo_n "checking that generated files are newer than configure... " >&6; }
3172 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5
3173 printf %s "checking that generated files are newer than configure... " >&6; }
29423174 if test -n "$am_sleep_pid"; then
29433175 # Hide warnings about reused PIDs.
29443176 wait $am_sleep_pid 2>/dev/null
29453177 fi
2946 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5
2947 $as_echo "done" >&6; }
3178 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: done" >&5
3179 printf "%s\n" "done" >&6; }
29483180
29493181 if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
29503182 as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined.
29553187 ac_write_fail=0
29563188 ac_clean_files_save=$ac_clean_files
29573189 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
2958 { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
2959 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
3190 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
3191 printf "%s\n" "$as_me: creating $CONFIG_STATUS" >&6;}
29603192 as_write_fail=0
29613193 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
29623194 #! $SHELL
29793211
29803212 # Be more Bourne compatible
29813213 DUALCASE=1; export DUALCASE # for MKS sh
2982 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
3214 as_nop=:
3215 if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1
3216 then :
29833217 emulate sh
29843218 NULLCMD=:
29853219 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
29863220 # is contrary to our usage. Disable this feature.
29873221 alias -g '${1+"$@"}'='"$@"'
29883222 setopt NO_GLOB_SUBST
2989 else
3223 else $as_nop
29903224 case `(set -o) 2>/dev/null` in #(
29913225 *posix*) :
29923226 set -o posix ;; #(
29963230 fi
29973231
29983232
3233
3234 # Reset variables that may have inherited troublesome values from
3235 # the environment.
3236
3237 # IFS needs to be set, to space, tab, and newline, in precisely that order.
3238 # (If _AS_PATH_WALK were called with IFS unset, it would have the
3239 # side effect of setting IFS to empty, thus disabling word splitting.)
3240 # Quoting is to prevent editors from complaining about space-tab.
29993241 as_nl='
30003242 '
30013243 export as_nl
3002 # Printing a long string crashes Solaris 7 /usr/bin/printf.
3003 as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
3004 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
3005 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
3006 # Prefer a ksh shell builtin over an external printf program on Solaris,
3007 # but without wasting forks for bash or zsh.
3008 if test -z "$BASH_VERSION$ZSH_VERSION" \
3009 && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
3010 as_echo='print -r --'
3011 as_echo_n='print -rn --'
3012 elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
3013 as_echo='printf %s\n'
3014 as_echo_n='printf %s'
3015 else
3016 if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
3017 as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
3018 as_echo_n='/usr/ucb/echo -n'
3019 else
3020 as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
3021 as_echo_n_body='eval
3022 arg=$1;
3023 case $arg in #(
3024 *"$as_nl"*)
3025 expr "X$arg" : "X\\(.*\\)$as_nl";
3026 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
3027 esac;
3028 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
3029 '
3030 export as_echo_n_body
3031 as_echo_n='sh -c $as_echo_n_body as_echo'
3032 fi
3033 export as_echo_body
3034 as_echo='sh -c $as_echo_body as_echo'
3035 fi
3244 IFS=" "" $as_nl"
3245
3246 PS1='$ '
3247 PS2='> '
3248 PS4='+ '
3249
3250 # Ensure predictable behavior from utilities with locale-dependent output.
3251 LC_ALL=C
3252 export LC_ALL
3253 LANGUAGE=C
3254 export LANGUAGE
3255
3256 # We cannot yet rely on "unset" to work, but we need these variables
3257 # to be unset--not just set to an empty or harmless value--now, to
3258 # avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct
3259 # also avoids known problems related to "unset" and subshell syntax
3260 # in other old shells (e.g. bash 2.01 and pdksh 5.2.14).
3261 for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH
3262 do eval test \${$as_var+y} \
3263 && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
3264 done
3265
3266 # Ensure that fds 0, 1, and 2 are open.
3267 if (exec 3>&0) 2>/dev/null; then :; else exec 0</dev/null; fi
3268 if (exec 3>&1) 2>/dev/null; then :; else exec 1>/dev/null; fi
3269 if (exec 3>&2) ; then :; else exec 2>/dev/null; fi
30363270
30373271 # The user is always right.
3038 if test "${PATH_SEPARATOR+set}" != set; then
3272 if ${PATH_SEPARATOR+false} :; then
30393273 PATH_SEPARATOR=:
30403274 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
30413275 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
30433277 }
30443278 fi
30453279
3046
3047 # IFS
3048 # We need space, tab and new line, in precisely that order. Quoting is
3049 # there to prevent editors from complaining about space-tab.
3050 # (If _AS_PATH_WALK were called with IFS unset, it would disable word
3051 # splitting by setting IFS to empty value.)
3052 IFS=" "" $as_nl"
30533280
30543281 # Find who we are. Look in the path if we contain no directory separator.
30553282 as_myself=
30593286 for as_dir in $PATH
30603287 do
30613288 IFS=$as_save_IFS
3062 test -z "$as_dir" && as_dir=.
3063 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
3289 case $as_dir in #(((
3290 '') as_dir=./ ;;
3291 */) ;;
3292 *) as_dir=$as_dir/ ;;
3293 esac
3294 test -r "$as_dir$0" && as_myself=$as_dir$0 && break
30643295 done
30653296 IFS=$as_save_IFS
30663297
30723303 as_myself=$0
30733304 fi
30743305 if test ! -f "$as_myself"; then
3075 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
3306 printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
30763307 exit 1
30773308 fi
30783309
3079 # Unset variables that we do not need and which cause bugs (e.g. in
3080 # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
3081 # suppresses any "Segmentation fault" message there. '((' could
3082 # trigger a bug in pdksh 5.2.14.
3083 for as_var in BASH_ENV ENV MAIL MAILPATH
3084 do eval test x\${$as_var+set} = xset \
3085 && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
3086 done
3087 PS1='$ '
3088 PS2='> '
3089 PS4='+ '
3090
3091 # NLS nuisances.
3092 LC_ALL=C
3093 export LC_ALL
3094 LANGUAGE=C
3095 export LANGUAGE
3096
3097 # CDPATH.
3098 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
30993310
31003311
31013312 # as_fn_error STATUS ERROR [LINENO LOG_FD]
31083319 as_status=$1; test $as_status -eq 0 && as_status=1
31093320 if test "$4"; then
31103321 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
3111 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
3322 printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
31123323 fi
3113 $as_echo "$as_me: error: $2" >&2
3324 printf "%s\n" "$as_me: error: $2" >&2
31143325 as_fn_exit $as_status
31153326 } # as_fn_error
3327
31163328
31173329
31183330 # as_fn_set_status STATUS
31413353 { eval $1=; unset $1;}
31423354 }
31433355 as_unset=as_fn_unset
3356
31443357 # as_fn_append VAR VALUE
31453358 # ----------------------
31463359 # Append the text in VALUE to the end of the definition contained in VAR. Take
31473360 # advantage of any shell optimizations that allow amortized linear growth over
31483361 # repeated appends, instead of the typical quadratic growth present in naive
31493362 # implementations.
3150 if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
3363 if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null
3364 then :
31513365 eval 'as_fn_append ()
31523366 {
31533367 eval $1+=\$2
31543368 }'
3155 else
3369 else $as_nop
31563370 as_fn_append ()
31573371 {
31583372 eval $1=\$$1\$2
31643378 # Perform arithmetic evaluation on the ARGs, and store the result in the
31653379 # global $as_val. Take advantage of shells that can avoid forks. The arguments
31663380 # must be portable across $(()) and expr.
3167 if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
3381 if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null
3382 then :
31683383 eval 'as_fn_arith ()
31693384 {
31703385 as_val=$(( $* ))
31713386 }'
3172 else
3387 else $as_nop
31733388 as_fn_arith ()
31743389 {
31753390 as_val=`expr "$@" || test $? -eq 1`
32003415 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
32013416 X"$0" : 'X\(//\)$' \| \
32023417 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
3203 $as_echo X/"$0" |
3418 printf "%s\n" X/"$0" |
32043419 sed '/^.*\/\([^/][^/]*\)\/*$/{
32053420 s//\1/
32063421 q
32223437 as_cr_digits='0123456789'
32233438 as_cr_alnum=$as_cr_Letters$as_cr_digits
32243439
3440
3441 # Determine whether it's possible to make 'echo' print without a newline.
3442 # These variables are no longer used directly by Autoconf, but are AC_SUBSTed
3443 # for compatibility with existing Makefiles.
32253444 ECHO_C= ECHO_N= ECHO_T=
32263445 case `echo -n x` in #(((((
32273446 -n*)
32343453 *)
32353454 ECHO_N='-n';;
32363455 esac
3456
3457 # For backward compatibility with old third-party macros, we provide
3458 # the shell variables $as_echo and $as_echo_n. New code should use
3459 # AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively.
3460 as_echo='printf %s\n'
3461 as_echo_n='printf %s'
32373462
32383463 rm -f conf$$ conf$$.exe conf$$.file
32393464 if test -d conf$$.dir; then
32763501 as_dirs=
32773502 while :; do
32783503 case $as_dir in #(
3279 *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
3504 *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
32803505 *) as_qdir=$as_dir;;
32813506 esac
32823507 as_dirs="'$as_qdir' $as_dirs"
32853510 X"$as_dir" : 'X\(//\)[^/]' \| \
32863511 X"$as_dir" : 'X\(//\)$' \| \
32873512 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
3288 $as_echo X"$as_dir" |
3513 printf "%s\n" X"$as_dir" |
32893514 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
32903515 s//\1/
32913516 q
33483573 # values after options handling.
33493574 ac_log="
33503575 This file was extended by dbus-sharp-glib $as_me 0.6.0, which was
3351 generated by GNU Autoconf 2.69. Invocation command line was
3576 generated by GNU Autoconf 2.71. Invocation command line was
33523577
33533578 CONFIG_FILES = $CONFIG_FILES
33543579 CONFIG_HEADERS = $CONFIG_HEADERS
33973622 Report bugs to the package provider."
33983623
33993624 _ACEOF
3625 ac_cs_config=`printf "%s\n" "$ac_configure_args" | sed "$ac_safe_unquote"`
3626 ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\''/g"`
34003627 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3401 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
3628 ac_cs_config='$ac_cs_config_escaped'
34023629 ac_cs_version="\\
34033630 dbus-sharp-glib config.status 0.6.0
3404 configured by $0, generated by GNU Autoconf 2.69,
3631 configured by $0, generated by GNU Autoconf 2.71,
34053632 with options \\"\$ac_cs_config\\"
34063633
3407 Copyright (C) 2012 Free Software Foundation, Inc.
3634 Copyright (C) 2021 Free Software Foundation, Inc.
34083635 This config.status script is free software; the Free Software Foundation
34093636 gives unlimited permission to copy, distribute and modify it."
34103637
34443671 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
34453672 ac_cs_recheck=: ;;
34463673 --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
3447 $as_echo "$ac_cs_version"; exit ;;
3674 printf "%s\n" "$ac_cs_version"; exit ;;
34483675 --config | --confi | --conf | --con | --co | --c )
3449 $as_echo "$ac_cs_config"; exit ;;
3676 printf "%s\n" "$ac_cs_config"; exit ;;
34503677 --debug | --debu | --deb | --de | --d | -d )
34513678 debug=: ;;
34523679 --file | --fil | --fi | --f )
34533680 $ac_shift
34543681 case $ac_optarg in
3455 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
3682 *\'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
34563683 '') as_fn_error $? "missing file argument" ;;
34573684 esac
34583685 as_fn_append CONFIG_FILES " '$ac_optarg'"
34593686 ac_need_defaults=false;;
34603687 --he | --h | --help | --hel | -h )
3461 $as_echo "$ac_cs_usage"; exit ;;
3688 printf "%s\n" "$ac_cs_usage"; exit ;;
34623689 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
34633690 | -silent | --silent | --silen | --sile | --sil | --si | --s)
34643691 ac_cs_silent=: ;;
34863713 if \$ac_cs_recheck; then
34873714 set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
34883715 shift
3489 \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
3716 \printf "%s\n" "running CONFIG_SHELL=$SHELL \$*" >&6
34903717 CONFIG_SHELL='$SHELL'
34913718 export CONFIG_SHELL
34923719 exec "\$@"
35003727 sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
35013728 ## Running $as_me. ##
35023729 _ASBOX
3503 $as_echo "$ac_log"
3730 printf "%s\n" "$ac_log"
35043731 } >&5
35053732
35063733 _ACEOF
35293756 # We use the long form for the default assignment because of an extremely
35303757 # bizarre bug on SunOS 4.1.3.
35313758 if $ac_need_defaults; then
3532 test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
3759 test ${CONFIG_FILES+y} || CONFIG_FILES=$config_files
35333760 fi
35343761
35353762 # Have a temporary directory for convenience. Make it in the build tree
37573984 esac ||
37583985 as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
37593986 esac
3760 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
3987 case $ac_f in *\'*) ac_f=`printf "%s\n" "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
37613988 as_fn_append ac_file_inputs " '$ac_f'"
37623989 done
37633990
37653992 # use $as_me), people would be surprised to read:
37663993 # /* config.h. Generated by config.status. */
37673994 configure_input='Generated from '`
3768 $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
3995 printf "%s\n" "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
37693996 `' by configure.'
37703997 if test x"$ac_file" != x-; then
37713998 configure_input="$ac_file. $configure_input"
3772 { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
3773 $as_echo "$as_me: creating $ac_file" >&6;}
3999 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
4000 printf "%s\n" "$as_me: creating $ac_file" >&6;}
37744001 fi
37754002 # Neutralize special characters interpreted by sed in replacement strings.
37764003 case $configure_input in #(
37774004 *\&* | *\|* | *\\* )
3778 ac_sed_conf_input=`$as_echo "$configure_input" |
4005 ac_sed_conf_input=`printf "%s\n" "$configure_input" |
37794006 sed 's/[\\\\&|]/\\\\&/g'`;; #(
37804007 *) ac_sed_conf_input=$configure_input;;
37814008 esac
37924019 X"$ac_file" : 'X\(//\)[^/]' \| \
37934020 X"$ac_file" : 'X\(//\)$' \| \
37944021 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
3795 $as_echo X"$ac_file" |
4022 printf "%s\n" X"$ac_file" |
37964023 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
37974024 s//\1/
37984025 q
38164043 case "$ac_dir" in
38174044 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
38184045 *)
3819 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
4046 ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'`
38204047 # A ".." for each directory in $ac_dir_suffix.
3821 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
4048 ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
38224049 case $ac_top_builddir_sub in
38234050 "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
38244051 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
38804107 case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
38814108 *datarootdir*) ac_datarootdir_seen=yes;;
38824109 *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
3883 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
3884 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
4110 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
4111 printf "%s\n" "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
38854112 _ACEOF
38864113 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
38874114 ac_datarootdir_hack='
39254152 { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
39264153 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
39274154 "$ac_tmp/out"`; test -z "$ac_out"; } &&
3928 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
4155 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
39294156 which seems to be undefined. Please make sure it is defined" >&5
3930 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
4157 printf "%s\n" "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
39314158 which seems to be undefined. Please make sure it is defined" >&2;}
39324159
39334160 rm -f "$ac_tmp/stdin"
39744201 $ac_cs_success || as_fn_exit 1
39754202 fi
39764203 if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
3977 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
3978 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
3979 fi
3980
3981
4204 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
4205 printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
4206 fi
4207
4208
4209
2222 MONO_REQ_VERSION=1.1.13
2323 PKG_CHECK_MODULES(MONO, mono >= $MONO_REQ_VERSION)
2424
25 AC_PATH_PROG(GMCS, gmcs, no)
26 if test "x$GMCS" = "xno"; then
27 AC_MSG_ERROR([You need to install gmcs])
25 AC_PATH_PROG(MCS, mcs, no)
26 if test "x$MCS" = "xno"; then
27 AC_MSG_ERROR([You need to install mcs])
2828 fi
29 AC_SUBST(GMCS)
29 AC_SUBST(MCS)
3030
3131 AC_PATH_PROG(GACUTIL, gacutil, no)
3232 if test "x$GACUTIL" = "xno"; then
0 dbus-sharp-glib (0.6.0+git20200408.1.144ff8a-1) UNRELEASED; urgency=low
1
2 * New upstream snapshot.
3
4 -- Debian Janitor <janitor@jelmer.uk> Tue, 16 Nov 2021 01:34:14 -0000
5
06 dbus-sharp-glib (0.6.0-1) unstable; urgency=low
17
28 * [763e892] Fix debian/watch file for uscan
0 # Makefile.in generated by automake 1.13.2 from Makefile.am.
0 # Makefile.in generated by automake 1.16.5 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2021 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
1313
1414 @SET_MAKE@
1515 VPATH = @srcdir@
16 am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
16 am__is_gnu_make = { \
17 if test -z '$(MAKELEVEL)'; then \
18 false; \
19 elif test -n '$(MAKE_HOST)'; then \
20 true; \
21 elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
22 true; \
23 else \
24 false; \
25 fi; \
26 }
1727 am__make_running_with_option = \
1828 case $${target_option-} in \
1929 ?) ;; \
7585 PRE_UNINSTALL = :
7686 POST_UNINSTALL = :
7787 subdir = examples
78 DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
7988 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
8089 am__aclocal_m4_deps = $(top_srcdir)/configure.ac
8190 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
8291 $(ACLOCAL_M4)
92 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
8393 mkinstalldirs = $(install_sh) -d
8494 CONFIG_CLEAN_FILES =
8595 CONFIG_CLEAN_VPATH_FILES =
103113 *) (install-info --version) >/dev/null 2>&1;; \
104114 esac
105115 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
116 am__DIST_COMMON = $(srcdir)/Makefile.in
106117 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
107118 ACLOCAL = @ACLOCAL@
108119 AMTAR = @AMTAR@
112123 AUTOHEADER = @AUTOHEADER@
113124 AUTOMAKE = @AUTOMAKE@
114125 AWK = @AWK@
126 CSCOPE = @CSCOPE@
127 CTAGS = @CTAGS@
115128 CYGPATH_W = @CYGPATH_W@
116129 DBUS_SHARP_CFLAGS = @DBUS_SHARP_CFLAGS@
117130 DBUS_SHARP_LIBS = @DBUS_SHARP_LIBS@
119132 ECHO_C = @ECHO_C@
120133 ECHO_N = @ECHO_N@
121134 ECHO_T = @ECHO_T@
135 ETAGS = @ETAGS@
122136 GACUTIL = @GACUTIL@
123 GMCS = @GMCS@
124137 INSTALL = @INSTALL@
125138 INSTALL_DATA = @INSTALL_DATA@
126139 INSTALL_PROGRAM = @INSTALL_PROGRAM@
131144 LTLIBOBJS = @LTLIBOBJS@
132145 MAINT = @MAINT@
133146 MAKEINFO = @MAKEINFO@
147 MCS = @MCS@
134148 MKDIR_P = @MKDIR_P@
135149 MONO_CFLAGS = @MONO_CFLAGS@
136150 MONO_LIBS = @MONO_LIBS@
180194 prefix = @prefix@
181195 program_transform_name = @program_transform_name@
182196 psdir = @psdir@
197 runstatedir = @runstatedir@
183198 sbindir = @sbindir@
184199 sharedstatedir = @sharedstatedir@
185200 srcdir = @srcdir@
208223 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu examples/Makefile'; \
209224 $(am__cd) $(top_srcdir) && \
210225 $(AUTOMAKE) --gnu examples/Makefile
211 .PRECIOUS: Makefile
212226 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
213227 @case '$?' in \
214228 *config.status*) \
215229 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
216230 *) \
217 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
218 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
231 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
232 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
219233 esac;
220234
221235 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
232246
233247 cscope cscopelist:
234248
235
236 distdir: $(DISTFILES)
249 distdir: $(BUILT_SOURCES)
250 $(MAKE) $(AM_MAKEFLAGS) distdir-am
251
252 distdir-am: $(DISTFILES)
237253 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
238254 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
239255 list='$(DISTFILES)'; \
376392 maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
377393 pdf-am ps ps-am tags-am uninstall uninstall-am
378394
395 .PRECIOUS: Makefile
396
379397
380398 # Tell versions [3.59,3.63) of GNU make to not export all variables.
381399 # Otherwise a system limit (for SysV at least) may be exceeded.
00 #!/bin/sh
11 # install - install a program, script, or datafile
22
3 scriptversion=2011-11-20.07; # UTC
3 scriptversion=2020-11-14.01; # UTC
44
55 # This originates from X11R5 (mit/util/scripts/install.sh), which was
66 # later released in X11R6 (xc/config/util/install.sh) with the
4040 # This script is compatible with the BSD install script, but was written
4141 # from scratch.
4242
43 tab=' '
4344 nl='
4445 '
45 IFS=" "" $nl"
46
47 # set DOITPROG to echo to test this script
48
49 # Don't use :- since 4.3BSD and earlier shells don't like it.
46 IFS=" $tab$nl"
47
48 # Set DOITPROG to "echo" to test this script.
49
5050 doit=${DOITPROG-}
51 if test -z "$doit"; then
52 doit_exec=exec
53 else
54 doit_exec=$doit
55 fi
51 doit_exec=${doit:-exec}
5652
5753 # Put in absolute file names if you don't have them in your path;
5854 # or use environment vars.
6763 rmprog=${RMPROG-rm}
6864 stripprog=${STRIPPROG-strip}
6965
70 posix_glob='?'
71 initialize_posix_glob='
72 test "$posix_glob" != "?" || {
73 if (set -f) 2>/dev/null; then
74 posix_glob=
75 else
76 posix_glob=:
77 fi
78 }
79 '
80
8166 posix_mkdir=
8267
8368 # Desired mode of installed file.
8469 mode=0755
8570
71 # Create dirs (including intermediate dirs) using mode 755.
72 # This is like GNU 'install' as of coreutils 8.32 (2020).
73 mkdir_umask=22
74
75 backupsuffix=
8676 chgrpcmd=
8777 chmodcmd=$chmodprog
8878 chowncmd=
9686 dst_arg=
9787
9888 copy_on_change=false
99 no_target_directory=
89 is_target_a_directory=possibly
10090
10191 usage="\
10292 Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
113103 --version display version info and exit.
114104
115105 -c (ignored)
116 -C install only if different (preserve the last data modification time)
106 -C install only if different (preserve data modification time)
117107 -d create directories instead of installing files.
118108 -g GROUP $chgrpprog installed files to GROUP.
119109 -m MODE $chmodprog installed files to MODE.
120110 -o USER $chownprog installed files to USER.
111 -p pass -p to $cpprog.
121112 -s $stripprog installed files.
113 -S SUFFIX attempt to back up existing files, with suffix SUFFIX.
122114 -t DIRECTORY install into DIRECTORY.
123115 -T report an error if DSTFILE is a directory.
124116
125117 Environment variables override the default commands:
126118 CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG
127119 RMPROG STRIPPROG
120
121 By default, rm is invoked with -f; when overridden with RMPROG,
122 it's up to you to specify -f if you want it.
123
124 If -S is not specified, no backups are attempted.
125
126 Email bug reports to bug-automake@gnu.org.
127 Automake home page: https://www.gnu.org/software/automake/
128128 "
129129
130130 while test $# -ne 0; do
136136 -d) dir_arg=true;;
137137
138138 -g) chgrpcmd="$chgrpprog $2"
139 shift;;
139 shift;;
140140
141141 --help) echo "$usage"; exit $?;;
142142
143143 -m) mode=$2
144 case $mode in
145 *' '* | *' '* | *'
146 '* | *'*'* | *'?'* | *'['*)
147 echo "$0: invalid mode: $mode" >&2
148 exit 1;;
149 esac
150 shift;;
144 case $mode in
145 *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*)
146 echo "$0: invalid mode: $mode" >&2
147 exit 1;;
148 esac
149 shift;;
151150
152151 -o) chowncmd="$chownprog $2"
153 shift;;
152 shift;;
153
154 -p) cpprog="$cpprog -p";;
154155
155156 -s) stripcmd=$stripprog;;
156157
157 -t) dst_arg=$2
158 # Protect names problematic for 'test' and other utilities.
159 case $dst_arg in
160 -* | [=\(\)!]) dst_arg=./$dst_arg;;
161 esac
162 shift;;
163
164 -T) no_target_directory=true;;
158 -S) backupsuffix="$2"
159 shift;;
160
161 -t)
162 is_target_a_directory=always
163 dst_arg=$2
164 # Protect names problematic for 'test' and other utilities.
165 case $dst_arg in
166 -* | [=\(\)!]) dst_arg=./$dst_arg;;
167 esac
168 shift;;
169
170 -T) is_target_a_directory=never;;
165171
166172 --version) echo "$0 $scriptversion"; exit $?;;
167173
168 --) shift
169 break;;
170
171 -*) echo "$0: invalid option: $1" >&2
172 exit 1;;
174 --) shift
175 break;;
176
177 -*) echo "$0: invalid option: $1" >&2
178 exit 1;;
173179
174180 *) break;;
175181 esac
176182 shift
177183 done
184
185 # We allow the use of options -d and -T together, by making -d
186 # take the precedence; this is for compatibility with GNU install.
187
188 if test -n "$dir_arg"; then
189 if test -n "$dst_arg"; then
190 echo "$0: target directory not allowed when installing a directory." >&2
191 exit 1
192 fi
193 fi
178194
179195 if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
180196 # When -d is used, all remaining arguments are directories to create.
207223 fi
208224
209225 if test -z "$dir_arg"; then
226 if test $# -gt 1 || test "$is_target_a_directory" = always; then
227 if test ! -d "$dst_arg"; then
228 echo "$0: $dst_arg: Is not a directory." >&2
229 exit 1
230 fi
231 fi
232 fi
233
234 if test -z "$dir_arg"; then
210235 do_exit='(exit $ret); exit $ret'
211236 trap "ret=129; $do_exit" 1
212237 trap "ret=130; $do_exit" 2
222247
223248 *[0-7])
224249 if test -z "$stripcmd"; then
225 u_plus_rw=
250 u_plus_rw=
226251 else
227 u_plus_rw='% 200'
252 u_plus_rw='% 200'
228253 fi
229254 cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
230255 *)
231256 if test -z "$stripcmd"; then
232 u_plus_rw=
257 u_plus_rw=
233258 else
234 u_plus_rw=,u+rw
259 u_plus_rw=,u+rw
235260 fi
236261 cp_umask=$mode$u_plus_rw;;
237262 esac
249274 dstdir=$dst
250275 test -d "$dstdir"
251276 dstdir_status=$?
277 # Don't chown directories that already exist.
278 if test $dstdir_status = 0; then
279 chowncmd=""
280 fi
252281 else
253282
254283 # Waiting for this to be detected by the "$cpprog $src $dsttmp" command
265294 fi
266295 dst=$dst_arg
267296
268 # If destination is a directory, append the input filename; won't work
269 # if double slashes aren't ignored.
297 # If destination is a directory, append the input filename.
270298 if test -d "$dst"; then
271 if test -n "$no_target_directory"; then
272 echo "$0: $dst_arg: Is a directory" >&2
273 exit 1
299 if test "$is_target_a_directory" = never; then
300 echo "$0: $dst_arg: Is a directory" >&2
301 exit 1
274302 fi
275303 dstdir=$dst
276 dst=$dstdir/`basename "$src"`
304 dstbase=`basename "$src"`
305 case $dst in
306 */) dst=$dst$dstbase;;
307 *) dst=$dst/$dstbase;;
308 esac
277309 dstdir_status=0
278310 else
279 # Prefer dirname, but fall back on a substitute if dirname fails.
280 dstdir=`
281 (dirname "$dst") 2>/dev/null ||
282 expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
283 X"$dst" : 'X\(//\)[^/]' \| \
284 X"$dst" : 'X\(//\)$' \| \
285 X"$dst" : 'X\(/\)' \| . 2>/dev/null ||
286 echo X"$dst" |
287 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
288 s//\1/
289 q
290 }
291 /^X\(\/\/\)[^/].*/{
292 s//\1/
293 q
294 }
295 /^X\(\/\/\)$/{
296 s//\1/
297 q
298 }
299 /^X\(\/\).*/{
300 s//\1/
301 q
302 }
303 s/.*/./; q'
304 `
305
311 dstdir=`dirname "$dst"`
306312 test -d "$dstdir"
307313 dstdir_status=$?
308314 fi
309315 fi
316
317 case $dstdir in
318 */) dstdirslash=$dstdir;;
319 *) dstdirslash=$dstdir/;;
320 esac
310321
311322 obsolete_mkdir_used=false
312323
313324 if test $dstdir_status != 0; then
314325 case $posix_mkdir in
315326 '')
316 # Create intermediate dirs using mode 755 as modified by the umask.
317 # This is like FreeBSD 'install' as of 1997-10-28.
318 umask=`umask`
319 case $stripcmd.$umask in
320 # Optimize common cases.
321 *[2367][2367]) mkdir_umask=$umask;;
322 .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;;
323
324 *[0-7])
325 mkdir_umask=`expr $umask + 22 \
326 - $umask % 100 % 40 + $umask % 20 \
327 - $umask % 10 % 4 + $umask % 2
328 `;;
329 *) mkdir_umask=$umask,go-w;;
330 esac
331
332 # With -d, create the new directory with the user-specified mode.
333 # Otherwise, rely on $mkdir_umask.
334 if test -n "$dir_arg"; then
335 mkdir_mode=-m$mode
327 # With -d, create the new directory with the user-specified mode.
328 # Otherwise, rely on $mkdir_umask.
329 if test -n "$dir_arg"; then
330 mkdir_mode=-m$mode
331 else
332 mkdir_mode=
333 fi
334
335 posix_mkdir=false
336 # The $RANDOM variable is not portable (e.g., dash). Use it
337 # here however when possible just to lower collision chance.
338 tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
339
340 trap '
341 ret=$?
342 rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null
343 exit $ret
344 ' 0
345
346 # Because "mkdir -p" follows existing symlinks and we likely work
347 # directly in world-writeable /tmp, make sure that the '$tmpdir'
348 # directory is successfully created first before we actually test
349 # 'mkdir -p'.
350 if (umask $mkdir_umask &&
351 $mkdirprog $mkdir_mode "$tmpdir" &&
352 exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1
353 then
354 if test -z "$dir_arg" || {
355 # Check for POSIX incompatibilities with -m.
356 # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
357 # other-writable bit of parent directory when it shouldn't.
358 # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
359 test_tmpdir="$tmpdir/a"
360 ls_ld_tmpdir=`ls -ld "$test_tmpdir"`
361 case $ls_ld_tmpdir in
362 d????-?r-*) different_mode=700;;
363 d????-?--*) different_mode=755;;
364 *) false;;
365 esac &&
366 $mkdirprog -m$different_mode -p -- "$test_tmpdir" && {
367 ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"`
368 test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
369 }
370 }
371 then posix_mkdir=:
372 fi
373 rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir"
336374 else
337 mkdir_mode=
375 # Remove any dirs left behind by ancient mkdir implementations.
376 rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null
338377 fi
339
340 posix_mkdir=false
341 case $umask in
342 *[123567][0-7][0-7])
343 # POSIX mkdir -p sets u+wx bits regardless of umask, which
344 # is incompatible with FreeBSD 'install' when (umask & 300) != 0.
345 ;;
346 *)
347 tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
348 trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0
349
350 if (umask $mkdir_umask &&
351 exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1
352 then
353 if test -z "$dir_arg" || {
354 # Check for POSIX incompatibilities with -m.
355 # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
356 # other-writable bit of parent directory when it shouldn't.
357 # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
358 ls_ld_tmpdir=`ls -ld "$tmpdir"`
359 case $ls_ld_tmpdir in
360 d????-?r-*) different_mode=700;;
361 d????-?--*) different_mode=755;;
362 *) false;;
363 esac &&
364 $mkdirprog -m$different_mode -p -- "$tmpdir" && {
365 ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
366 test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
367 }
368 }
369 then posix_mkdir=:
370 fi
371 rmdir "$tmpdir/d" "$tmpdir"
372 else
373 # Remove any dirs left behind by ancient mkdir implementations.
374 rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null
375 fi
376 trap '' 0;;
377 esac;;
378 trap '' 0;;
378379 esac
379380
380381 if
381382 $posix_mkdir && (
382 umask $mkdir_umask &&
383 $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
383 umask $mkdir_umask &&
384 $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
384385 )
385386 then :
386387 else
387388
388 # The umask is ridiculous, or mkdir does not conform to POSIX,
389 # mkdir does not conform to POSIX,
389390 # or it failed possibly due to a race condition. Create the
390391 # directory the slow way, step by step, checking for races as we go.
391392
392393 case $dstdir in
393 /*) prefix='/';;
394 [-=\(\)!]*) prefix='./';;
395 *) prefix='';;
394 /*) prefix='/';;
395 [-=\(\)!]*) prefix='./';;
396 *) prefix='';;
396397 esac
397
398 eval "$initialize_posix_glob"
399398
400399 oIFS=$IFS
401400 IFS=/
402 $posix_glob set -f
401 set -f
403402 set fnord $dstdir
404403 shift
405 $posix_glob set +f
404 set +f
406405 IFS=$oIFS
407406
408407 prefixes=
409408
410409 for d
411410 do
412 test X"$d" = X && continue
413
414 prefix=$prefix$d
415 if test -d "$prefix"; then
416 prefixes=
417 else
418 if $posix_mkdir; then
419 (umask=$mkdir_umask &&
420 $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
421 # Don't fail if two instances are running concurrently.
422 test -d "$prefix" || exit 1
423 else
424 case $prefix in
425 *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
426 *) qprefix=$prefix;;
427 esac
428 prefixes="$prefixes '$qprefix'"
429 fi
430 fi
431 prefix=$prefix/
411 test X"$d" = X && continue
412
413 prefix=$prefix$d
414 if test -d "$prefix"; then
415 prefixes=
416 else
417 if $posix_mkdir; then
418 (umask $mkdir_umask &&
419 $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
420 # Don't fail if two instances are running concurrently.
421 test -d "$prefix" || exit 1
422 else
423 case $prefix in
424 *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
425 *) qprefix=$prefix;;
426 esac
427 prefixes="$prefixes '$qprefix'"
428 fi
429 fi
430 prefix=$prefix/
432431 done
433432
434433 if test -n "$prefixes"; then
435 # Don't fail if two instances are running concurrently.
436 (umask $mkdir_umask &&
437 eval "\$doit_exec \$mkdirprog $prefixes") ||
438 test -d "$dstdir" || exit 1
439 obsolete_mkdir_used=true
434 # Don't fail if two instances are running concurrently.
435 (umask $mkdir_umask &&
436 eval "\$doit_exec \$mkdirprog $prefixes") ||
437 test -d "$dstdir" || exit 1
438 obsolete_mkdir_used=true
440439 fi
441440 fi
442441 fi
449448 else
450449
451450 # Make a couple of temp file names in the proper directory.
452 dsttmp=$dstdir/_inst.$$_
453 rmtmp=$dstdir/_rm.$$_
451 dsttmp=${dstdirslash}_inst.$$_
452 rmtmp=${dstdirslash}_rm.$$_
454453
455454 # Trap to clean up those temp files at exit.
456455 trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
457456
458457 # Copy the file name to the temp name.
459 (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") &&
458 (umask $cp_umask &&
459 { test -z "$stripcmd" || {
460 # Create $dsttmp read-write so that cp doesn't create it read-only,
461 # which would cause strip to fail.
462 if test -z "$doit"; then
463 : >"$dsttmp" # No need to fork-exec 'touch'.
464 else
465 $doit touch "$dsttmp"
466 fi
467 }
468 } &&
469 $doit_exec $cpprog "$src" "$dsttmp") &&
460470
461471 # and set any options; do chmod last to preserve setuid bits.
462472 #
471481
472482 # If -C, don't bother to copy if it wouldn't change the file.
473483 if $copy_on_change &&
474 old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` &&
475 new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` &&
476
477 eval "$initialize_posix_glob" &&
478 $posix_glob set -f &&
484 old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` &&
485 new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` &&
486 set -f &&
479487 set X $old && old=:$2:$4:$5:$6 &&
480488 set X $new && new=:$2:$4:$5:$6 &&
481 $posix_glob set +f &&
482
489 set +f &&
483490 test "$old" = "$new" &&
484491 $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1
485492 then
486493 rm -f "$dsttmp"
487494 else
495 # If $backupsuffix is set, and the file being installed
496 # already exists, attempt a backup. Don't worry if it fails,
497 # e.g., if mv doesn't support -f.
498 if test -n "$backupsuffix" && test -f "$dst"; then
499 $doit $mvcmd -f "$dst" "$dst$backupsuffix" 2>/dev/null
500 fi
501
488502 # Rename the file to the real destination.
489503 $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null ||
490504
492506 # to itself, or perhaps because mv is so ancient that it does not
493507 # support -f.
494508 {
495 # Now remove or move aside any old file at destination location.
496 # We try this two ways since rm can't unlink itself on some
497 # systems and the destination file might be busy for other
498 # reasons. In this case, the final cleanup might fail but the new
499 # file should still install successfully.
500 {
501 test ! -f "$dst" ||
502 $doit $rmcmd -f "$dst" 2>/dev/null ||
503 { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
504 { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }
505 } ||
506 { echo "$0: cannot unlink or rename $dst" >&2
507 (exit 1); exit 1
508 }
509 } &&
510
511 # Now rename the file to the real destination.
512 $doit $mvcmd "$dsttmp" "$dst"
509 # Now remove or move aside any old file at destination location.
510 # We try this two ways since rm can't unlink itself on some
511 # systems and the destination file might be busy for other
512 # reasons. In this case, the final cleanup might fail but the new
513 # file should still install successfully.
514 {
515 test ! -f "$dst" ||
516 $doit $rmcmd "$dst" 2>/dev/null ||
517 { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
518 { $doit $rmcmd "$rmtmp" 2>/dev/null; :; }
519 } ||
520 { echo "$0: cannot unlink or rename $dst" >&2
521 (exit 1); exit 1
522 }
523 } &&
524
525 # Now rename the file to the real destination.
526 $doit $mvcmd "$dsttmp" "$dst"
513527 }
514528 fi || exit 1
515529
518532 done
519533
520534 # Local variables:
521 # eval: (add-hook 'write-file-hooks 'time-stamp)
535 # eval: (add-hook 'before-save-hook 'time-stamp)
522536 # time-stamp-start: "scriptversion="
523537 # time-stamp-format: "%:y-%02m-%02d.%02H"
524 # time-stamp-time-zone: "UTC"
538 # time-stamp-time-zone: "UTC0"
525539 # time-stamp-end: "; # UTC"
526540 # End:
00 #! /bin/sh
11 # Common wrapper for a few potentially missing GNU programs.
22
3 scriptversion=2012-06-26.16; # UTC
4
5 # Copyright (C) 1996-2013 Free Software Foundation, Inc.
3 scriptversion=2018-03-07.03; # UTC
4
5 # Copyright (C) 1996-2021 Free Software Foundation, Inc.
66 # Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
77
88 # This program is free software; you can redistribute it and/or modify
1616 # GNU General Public License for more details.
1717
1818 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 # along with this program. If not, see <https://www.gnu.org/licenses/>.
2020
2121 # As a special exception to the GNU General Public License, if you
2222 # distribute this file as part of a program that contains a
100100 exit $st
101101 fi
102102
103 perl_URL=http://www.perl.org/
104 flex_URL=http://flex.sourceforge.net/
105 gnu_software_URL=http://www.gnu.org/software
103 perl_URL=https://www.perl.org/
104 flex_URL=https://github.com/westes/flex
105 gnu_software_URL=https://www.gnu.org/software
106106
107107 program_details ()
108108 {
159159 ;;
160160 autom4te*)
161161 echo "You might have modified some maintainer files that require"
162 echo "the 'automa4te' program to be rebuilt."
162 echo "the 'autom4te' program to be rebuilt."
163163 program_details 'autom4te'
164164 ;;
165165 bison*|yacc*)
206206 exit $st
207207
208208 # Local variables:
209 # eval: (add-hook 'write-file-hooks 'time-stamp)
209 # eval: (add-hook 'before-save-hook 'time-stamp)
210210 # time-stamp-start: "scriptversion="
211211 # time-stamp-format: "%:y-%02m-%02d.%02H"
212 # time-stamp-time-zone: "UTC"
212 # time-stamp-time-zone: "UTC0"
213213 # time-stamp-end: "; # UTC"
214214 # End:
1313 all: $(TARGET)
1414
1515 $(TARGET): $(CSFILES) AssemblyInfo.cs
16 $(GMCS) -out:$@ $(CSFLAGS) $(LIBFLAGS) $^
16 $(MCS) -out:$@ $(CSFLAGS) $(LIBFLAGS) $^
1717
1818 install-data-local:
1919 @if test -n '$(TARGET)'; then \
0 # Makefile.in generated by automake 1.13.2 from Makefile.am.
0 # Makefile.in generated by automake 1.16.5 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2021 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
1313
1414 @SET_MAKE@
1515 VPATH = @srcdir@
16 am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
16 am__is_gnu_make = { \
17 if test -z '$(MAKELEVEL)'; then \
18 false; \
19 elif test -n '$(MAKE_HOST)'; then \
20 true; \
21 elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
22 true; \
23 else \
24 false; \
25 fi; \
26 }
1727 am__make_running_with_option = \
1828 case $${target_option-} in \
1929 ?) ;; \
7585 PRE_UNINSTALL = :
7686 POST_UNINSTALL = :
7787 subdir = src
78 DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
79 $(srcdir)/AssemblyInfo.cs.in
8088 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
8189 am__aclocal_m4_deps = $(top_srcdir)/configure.ac
8290 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
8391 $(ACLOCAL_M4)
92 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
8493 mkinstalldirs = $(install_sh) -d
8594 CONFIG_CLEAN_FILES = AssemblyInfo.cs
8695 CONFIG_CLEAN_VPATH_FILES =
104113 *) (install-info --version) >/dev/null 2>&1;; \
105114 esac
106115 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
116 am__DIST_COMMON = $(srcdir)/AssemblyInfo.cs.in $(srcdir)/Makefile.in
107117 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
108118 ACLOCAL = @ACLOCAL@
109119 AMTAR = @AMTAR@
113123 AUTOHEADER = @AUTOHEADER@
114124 AUTOMAKE = @AUTOMAKE@
115125 AWK = @AWK@
126 CSCOPE = @CSCOPE@
127 CTAGS = @CTAGS@
116128 CYGPATH_W = @CYGPATH_W@
117129 DBUS_SHARP_CFLAGS = @DBUS_SHARP_CFLAGS@
118130 DBUS_SHARP_LIBS = @DBUS_SHARP_LIBS@
120132 ECHO_C = @ECHO_C@
121133 ECHO_N = @ECHO_N@
122134 ECHO_T = @ECHO_T@
135 ETAGS = @ETAGS@
123136 GACUTIL = @GACUTIL@
124 GMCS = @GMCS@
125137 INSTALL = @INSTALL@
126138 INSTALL_DATA = @INSTALL_DATA@
127139 INSTALL_PROGRAM = @INSTALL_PROGRAM@
132144 LTLIBOBJS = @LTLIBOBJS@
133145 MAINT = @MAINT@
134146 MAKEINFO = @MAKEINFO@
147 MCS = @MCS@
135148 MKDIR_P = @MKDIR_P@
136149 MONO_CFLAGS = @MONO_CFLAGS@
137150 MONO_LIBS = @MONO_LIBS@
181194 prefix = @prefix@
182195 program_transform_name = @program_transform_name@
183196 psdir = @psdir@
197 runstatedir = @runstatedir@
184198 sbindir = @sbindir@
185199 sharedstatedir = @sharedstatedir@
186200 srcdir = @srcdir@
231245 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \
232246 $(am__cd) $(top_srcdir) && \
233247 $(AUTOMAKE) --gnu src/Makefile
234 .PRECIOUS: Makefile
235248 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
236249 @case '$?' in \
237250 *config.status*) \
238251 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
239252 *) \
240 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
241 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
253 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
254 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
242255 esac;
243256
244257 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
257270
258271 cscope cscopelist:
259272
260
261 distdir: $(DISTFILES)
273 distdir: $(BUILT_SOURCES)
274 $(MAKE) $(AM_MAKEFLAGS) distdir-am
275
276 distdir-am: $(DISTFILES)
262277 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
263278 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
264279 list='$(DISTFILES)'; \
404419 maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
405420 pdf-am ps ps-am tags-am uninstall uninstall-am uninstall-local
406421
422 .PRECIOUS: Makefile
423
407424
408425 all: $(TARGET)
409426
410427 $(TARGET): $(CSFILES) AssemblyInfo.cs
411 $(GMCS) -out:$@ $(CSFLAGS) $(LIBFLAGS) $^
428 $(MCS) -out:$@ $(CSFLAGS) $(LIBFLAGS) $^
412429
413430 install-data-local:
414431 @if test -n '$(TARGET)'; then \