rice 1.3.1 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Doxyfile +1 -1
- data/Makefile.in +58 -142
- data/aclocal.m4 +112 -201
- data/config.guess +23 -84
- data/config.sub +23 -93
- data/configure +2727 -2406
- data/depcomp +14 -19
- data/install-sh +108 -120
- data/rice/Constructor.hpp +350 -322
- data/rice/Makefile.am +0 -1
- data/rice/Makefile.in +69 -119
- data/rice/config.hpp +2 -8
- data/rice/config.hpp.in +0 -6
- data/rice/detail/Auto_Function_Wrapper.hpp +1 -33
- data/rice/detail/Auto_Function_Wrapper.ipp +1009 -1060
- data/rice/detail/Auto_Member_Function_Wrapper.ipp +608 -672
- data/rice/detail/method_data.cpp +0 -4
- data/rice/detail/object_call.hpp +31 -48
- data/rice/detail/object_call.ipp +45 -61
- data/rice/detail/wrap_function.hpp +70 -74
- data/rice/detail/wrap_function.ipp +126 -143
- data/rice/protect.hpp +30 -30
- data/rice/protect.ipp +770 -696
- data/ruby.ac +0 -14
- data/ruby/Makefile.in +41 -108
- data/ruby/lib/Makefile.in +23 -64
- data/ruby/lib/version.rb +1 -1
- data/sample/Makefile.in +12 -36
- data/test/Makefile.in +59 -148
- data/test/ext/Makefile.in +12 -36
- data/test/test_Constructor.cpp +42 -153
- data/test/test_Module.cpp +4 -4
- metadata +132 -124
- data/rice/generate_code.rb +0 -1328
data/Doxyfile
CHANGED
@@ -23,7 +23,7 @@ PROJECT_NAME = Rice
|
|
23
23
|
# This could be handy for archiving the generated documentation or
|
24
24
|
# if some version control system is used.
|
25
25
|
|
26
|
-
PROJECT_NUMBER = 1.3.
|
26
|
+
PROJECT_NUMBER = 1.3.2
|
27
27
|
|
28
28
|
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
|
29
29
|
# base path where the generated documentation will be put.
|
data/Makefile.in
CHANGED
@@ -1,9 +1,8 @@
|
|
1
|
-
# Makefile.in generated by automake 1.
|
1
|
+
# Makefile.in generated by automake 1.10 from Makefile.am.
|
2
2
|
# @configure_input@
|
3
3
|
|
4
4
|
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
5
|
-
# 2003, 2004, 2005, 2006
|
6
|
-
# Inc.
|
5
|
+
# 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
|
7
6
|
# This Makefile.in is free software; the Free Software Foundation
|
8
7
|
# gives unlimited permission to copy and/or distribute it,
|
9
8
|
# with or without modifications, as long as this notice is preserved.
|
@@ -46,9 +45,8 @@
|
|
46
45
|
# This is usually added to MOSTLYCLEANFILES.
|
47
46
|
VPATH = @srcdir@
|
48
47
|
pkgdatadir = $(datadir)/@PACKAGE@
|
49
|
-
pkgincludedir = $(includedir)/@PACKAGE@
|
50
48
|
pkglibdir = $(libdir)/@PACKAGE@
|
51
|
-
|
49
|
+
pkgincludedir = $(includedir)/@PACKAGE@
|
52
50
|
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
53
51
|
install_sh_DATA = $(install_sh) -c -m 644
|
54
52
|
install_sh_PROGRAM = $(install_sh) -c
|
@@ -79,7 +77,6 @@ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
|
79
77
|
mkinstalldirs = $(install_sh) -d
|
80
78
|
CONFIG_HEADER = $(top_builddir)/rice/config.hpp
|
81
79
|
CONFIG_CLEAN_FILES = rice/detail/ruby_version_code.hpp
|
82
|
-
CONFIG_CLEAN_VPATH_FILES =
|
83
80
|
SOURCES =
|
84
81
|
DIST_SOURCES =
|
85
82
|
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
|
@@ -91,9 +88,6 @@ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
|
|
91
88
|
ps-recursive uninstall-recursive
|
92
89
|
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
93
90
|
distclean-recursive maintainer-clean-recursive
|
94
|
-
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
|
95
|
-
$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
|
96
|
-
distdir dist dist-all distcheck
|
97
91
|
ETAGS = etags
|
98
92
|
CTAGS = ctags
|
99
93
|
DIST_SUBDIRS = $(SUBDIRS)
|
@@ -104,31 +98,6 @@ am__remove_distdir = \
|
|
104
98
|
{ test ! -d "$(distdir)" \
|
105
99
|
|| { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
|
106
100
|
&& rm -fr "$(distdir)"; }; }
|
107
|
-
am__relativize = \
|
108
|
-
dir0=`pwd`; \
|
109
|
-
sed_first='s,^\([^/]*\)/.*$$,\1,'; \
|
110
|
-
sed_rest='s,^[^/]*/*,,'; \
|
111
|
-
sed_last='s,^.*/\([^/]*\)$$,\1,'; \
|
112
|
-
sed_butlast='s,/*[^/]*$$,,'; \
|
113
|
-
while test -n "$$dir1"; do \
|
114
|
-
first=`echo "$$dir1" | sed -e "$$sed_first"`; \
|
115
|
-
if test "$$first" != "."; then \
|
116
|
-
if test "$$first" = ".."; then \
|
117
|
-
dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
|
118
|
-
dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
|
119
|
-
else \
|
120
|
-
first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
|
121
|
-
if test "$$first2" = "$$first"; then \
|
122
|
-
dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
|
123
|
-
else \
|
124
|
-
dir2="../$$dir2"; \
|
125
|
-
fi; \
|
126
|
-
dir0="$$dir0"/"$$first"; \
|
127
|
-
fi; \
|
128
|
-
fi; \
|
129
|
-
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
|
130
|
-
done; \
|
131
|
-
reldir="$$dir2"
|
132
101
|
DIST_ARCHIVES = "$(distdir)".tar.gz
|
133
102
|
GZIP_ENV = --best
|
134
103
|
distuninstallcheck_listfiles = find . -type f -print
|
@@ -191,7 +160,6 @@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
|
191
160
|
PACKAGE_NAME = @PACKAGE_NAME@
|
192
161
|
PACKAGE_STRING = @PACKAGE_STRING@
|
193
162
|
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
194
|
-
PACKAGE_URL = @PACKAGE_URL@
|
195
163
|
PACKAGE_VERSION = @PACKAGE_VERSION@
|
196
164
|
PATH_SEPARATOR = @PATH_SEPARATOR@
|
197
165
|
RANLIB = @RANLIB@
|
@@ -261,7 +229,6 @@ sharedstatedir = @sharedstatedir@
|
|
261
229
|
srcdir = @srcdir@
|
262
230
|
sysconfdir = @sysconfdir@
|
263
231
|
target_alias = @target_alias@
|
264
|
-
top_build_prefix = @top_build_prefix@
|
265
232
|
top_builddir = @top_builddir@
|
266
233
|
top_srcdir = @top_srcdir@
|
267
234
|
AUTOMAKE_OPTIONS = foreign 1.5
|
@@ -312,15 +279,15 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(srcdir)/doxygen.am $(am__configu
|
|
312
279
|
@for dep in $?; do \
|
313
280
|
case '$(am__configure_deps)' in \
|
314
281
|
*$$dep*) \
|
315
|
-
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
|
316
|
-
|
282
|
+
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \
|
283
|
+
cd $(srcdir) && $(AUTOMAKE) --foreign \
|
317
284
|
&& exit 0; \
|
318
285
|
exit 1;; \
|
319
286
|
esac; \
|
320
287
|
done; \
|
321
|
-
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign
|
322
|
-
|
323
|
-
$(AUTOMAKE) --foreign
|
288
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
|
289
|
+
cd $(top_srcdir) && \
|
290
|
+
$(AUTOMAKE) --foreign Makefile
|
324
291
|
.PRECIOUS: Makefile
|
325
292
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
326
293
|
@case '$?' in \
|
@@ -336,10 +303,9 @@ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENC
|
|
336
303
|
$(SHELL) ./config.status --recheck
|
337
304
|
|
338
305
|
$(top_srcdir)/configure: $(am__configure_deps)
|
339
|
-
|
306
|
+
cd $(srcdir) && $(AUTOCONF)
|
340
307
|
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
341
|
-
|
342
|
-
$(am__aclocal_m4_deps):
|
308
|
+
cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
343
309
|
rice/detail/ruby_version_code.hpp: $(top_builddir)/config.status $(top_srcdir)/rice/detail/ruby_version_code.hpp.in
|
344
310
|
cd $(top_builddir) && $(SHELL) ./config.status $@
|
345
311
|
|
@@ -367,7 +333,7 @@ $(RECURSIVE_TARGETS):
|
|
367
333
|
else \
|
368
334
|
local_target="$$target"; \
|
369
335
|
fi; \
|
370
|
-
(
|
336
|
+
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
371
337
|
|| eval $$failcom; \
|
372
338
|
done; \
|
373
339
|
if test "$$dot_seen" = "no"; then \
|
@@ -401,16 +367,16 @@ $(RECURSIVE_CLEAN_TARGETS):
|
|
401
367
|
else \
|
402
368
|
local_target="$$target"; \
|
403
369
|
fi; \
|
404
|
-
(
|
370
|
+
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
405
371
|
|| eval $$failcom; \
|
406
372
|
done && test -z "$$fail"
|
407
373
|
tags-recursive:
|
408
374
|
list='$(SUBDIRS)'; for subdir in $$list; do \
|
409
|
-
test "$$subdir" = . || (
|
375
|
+
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
|
410
376
|
done
|
411
377
|
ctags-recursive:
|
412
378
|
list='$(SUBDIRS)'; for subdir in $$list; do \
|
413
|
-
test "$$subdir" = . || (
|
379
|
+
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
|
414
380
|
done
|
415
381
|
|
416
382
|
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
@@ -418,14 +384,14 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
|
418
384
|
unique=`for i in $$list; do \
|
419
385
|
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
420
386
|
done | \
|
421
|
-
$(AWK) '{ files[$$0] = 1;
|
422
|
-
|
387
|
+
$(AWK) ' { files[$$0] = 1; } \
|
388
|
+
END { for (i in files) print i; }'`; \
|
423
389
|
mkid -fID $$unique
|
424
390
|
tags: TAGS
|
425
391
|
|
426
392
|
TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
427
393
|
$(TAGS_FILES) $(LISP)
|
428
|
-
|
394
|
+
tags=; \
|
429
395
|
here=`pwd`; \
|
430
396
|
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
431
397
|
include_option=--etags-include; \
|
@@ -437,43 +403,39 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
|
437
403
|
list='$(SUBDIRS)'; for subdir in $$list; do \
|
438
404
|
if test "$$subdir" = .; then :; else \
|
439
405
|
test ! -f $$subdir/TAGS || \
|
440
|
-
|
406
|
+
tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
|
441
407
|
fi; \
|
442
408
|
done; \
|
443
409
|
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
444
410
|
unique=`for i in $$list; do \
|
445
411
|
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
446
412
|
done | \
|
447
|
-
$(AWK) '{ files[$$0] = 1;
|
448
|
-
|
449
|
-
|
450
|
-
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
413
|
+
$(AWK) ' { files[$$0] = 1; } \
|
414
|
+
END { for (i in files) print i; }'`; \
|
415
|
+
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
451
416
|
test -n "$$unique" || unique=$$empty_fix; \
|
452
|
-
|
453
|
-
|
454
|
-
"$$@" $$unique; \
|
455
|
-
else \
|
456
|
-
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
457
|
-
$$unique; \
|
458
|
-
fi; \
|
417
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
418
|
+
$$tags $$unique; \
|
459
419
|
fi
|
460
420
|
ctags: CTAGS
|
461
421
|
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
462
422
|
$(TAGS_FILES) $(LISP)
|
423
|
+
tags=; \
|
424
|
+
here=`pwd`; \
|
463
425
|
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
464
426
|
unique=`for i in $$list; do \
|
465
427
|
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
466
428
|
done | \
|
467
|
-
$(AWK) '{ files[$$0] = 1;
|
468
|
-
|
469
|
-
test -z "$(CTAGS_ARGS)$$unique" \
|
429
|
+
$(AWK) ' { files[$$0] = 1; } \
|
430
|
+
END { for (i in files) print i; }'`; \
|
431
|
+
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
470
432
|
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
471
|
-
$$unique
|
433
|
+
$$tags $$unique
|
472
434
|
|
473
435
|
GTAGS:
|
474
436
|
here=`$(am__cd) $(top_builddir) && pwd` \
|
475
|
-
&&
|
476
|
-
&& gtags -i $(GTAGS_ARGS)
|
437
|
+
&& cd $(top_srcdir) \
|
438
|
+
&& gtags -i $(GTAGS_ARGS) $$here
|
477
439
|
|
478
440
|
distclean-tags:
|
479
441
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
@@ -496,50 +458,34 @@ distdir: $(DISTFILES)
|
|
496
458
|
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
497
459
|
if test -d $$d/$$file; then \
|
498
460
|
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
499
|
-
if test -d "$(distdir)/$$file"; then \
|
500
|
-
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
501
|
-
fi; \
|
502
461
|
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
503
|
-
cp -
|
504
|
-
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
462
|
+
cp -pR $(srcdir)/$$file "$(distdir)"$$dir || exit 1; \
|
505
463
|
fi; \
|
506
|
-
cp -
|
464
|
+
cp -pR $$d/$$file "$(distdir)"$$dir || exit 1; \
|
507
465
|
else \
|
508
|
-
test -f "$(distdir)/$$file
|
509
|
-
|| cp -p $$d/$$file "$(distdir)/$$file
|
466
|
+
test -f "$(distdir)"/$$file \
|
467
|
+
|| cp -p $$d/$$file "$(distdir)"/$$file \
|
510
468
|
|| exit 1; \
|
511
469
|
fi; \
|
512
470
|
done
|
513
|
-
|
471
|
+
list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
514
472
|
if test "$$subdir" = .; then :; else \
|
515
473
|
test -d "$(distdir)/$$subdir" \
|
516
474
|
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|
517
475
|
|| exit 1; \
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
if test "$$subdir" = .; then :; else \
|
522
|
-
dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
|
523
|
-
$(am__relativize); \
|
524
|
-
new_distdir=$$reldir; \
|
525
|
-
dir1=$$subdir; dir2="$(top_distdir)"; \
|
526
|
-
$(am__relativize); \
|
527
|
-
new_top_distdir=$$reldir; \
|
528
|
-
echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
|
529
|
-
echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
|
530
|
-
($(am__cd) $$subdir && \
|
476
|
+
distdir=`$(am__cd) "$(distdir)" && pwd`; \
|
477
|
+
top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
|
478
|
+
(cd $$subdir && \
|
531
479
|
$(MAKE) $(AM_MAKEFLAGS) \
|
532
|
-
top_distdir="$$
|
533
|
-
distdir="$$
|
480
|
+
top_distdir="$$top_distdir" \
|
481
|
+
distdir="$$distdir/$$subdir" \
|
534
482
|
am__remove_distdir=: \
|
535
483
|
am__skip_length_check=: \
|
536
|
-
am__skip_mode_fix=: \
|
537
484
|
distdir) \
|
538
485
|
|| exit 1; \
|
539
486
|
fi; \
|
540
487
|
done
|
541
|
-
-
|
542
|
-
|| find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
|
488
|
+
-find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
|
543
489
|
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
544
490
|
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
545
491
|
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
@@ -552,14 +498,6 @@ dist-bzip2: distdir
|
|
552
498
|
tardir="$(distdir)" && $(am__tar) | bzip2 -9 -c >"$(distdir)".tar.bz2
|
553
499
|
$(am__remove_distdir)
|
554
500
|
|
555
|
-
dist-lzma: distdir
|
556
|
-
tardir="$(distdir)" && $(am__tar) | lzma -9 -c >"$(distdir)".tar.lzma
|
557
|
-
$(am__remove_distdir)
|
558
|
-
|
559
|
-
dist-xz: distdir
|
560
|
-
tardir="$(distdir)" && $(am__tar) | xz -c >"$(distdir)".tar.xz
|
561
|
-
$(am__remove_distdir)
|
562
|
-
|
563
501
|
dist-tarZ: distdir
|
564
502
|
tardir="$(distdir)" && $(am__tar) | compress -c >"$(distdir)".tar.Z
|
565
503
|
$(am__remove_distdir)
|
@@ -586,10 +524,6 @@ distcheck: dist
|
|
586
524
|
GZIP=$(GZIP_ENV) gunzip -c "$(distdir)".tar.gz | $(am__untar) ;;\
|
587
525
|
*.tar.bz2*) \
|
588
526
|
bunzip2 -c "$(distdir)".tar.bz2 | $(am__untar) ;;\
|
589
|
-
*.tar.lzma*) \
|
590
|
-
unlzma -c "$(distdir)".tar.lzma | $(am__untar) ;;\
|
591
|
-
*.tar.xz*) \
|
592
|
-
xz -dc "$(distdir)".tar.xz | $(am__untar) ;;\
|
593
527
|
*.tar.Z*) \
|
594
528
|
uncompress -c "$(distdir)".tar.Z | $(am__untar) ;;\
|
595
529
|
*.shar.gz*) \
|
@@ -601,11 +535,9 @@ distcheck: dist
|
|
601
535
|
mkdir "$(distdir)"/_build
|
602
536
|
mkdir "$(distdir)"/_inst
|
603
537
|
chmod a-w "$(distdir)"
|
604
|
-
test -d "$(distdir)"/_build || exit 0; \
|
605
538
|
dc_install_base=`$(am__cd) "$(distdir)"/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
606
539
|
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
607
|
-
&&
|
608
|
-
&& $(am__cd) "$(distdir)"/_build \
|
540
|
+
&& cd "$(distdir)"/_build \
|
609
541
|
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
|
610
542
|
$(DISTCHECK_CONFIGURE_FLAGS) \
|
611
543
|
&& $(MAKE) $(AM_MAKEFLAGS) \
|
@@ -627,15 +559,13 @@ distcheck: dist
|
|
627
559
|
&& rm -rf "$$dc_destdir" \
|
628
560
|
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
629
561
|
&& rm -rf $(DIST_ARCHIVES) \
|
630
|
-
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck
|
631
|
-
&& cd "$$am__cwd" \
|
632
|
-
|| exit 1
|
562
|
+
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck
|
633
563
|
$(am__remove_distdir)
|
634
564
|
@(echo "$(distdir) archives ready for distribution: "; \
|
635
565
|
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
636
566
|
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
637
567
|
distuninstallcheck:
|
638
|
-
|
568
|
+
@cd $(distuninstallcheck_dir) \
|
639
569
|
&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
|
640
570
|
|| { echo "ERROR: files left after uninstall:" ; \
|
641
571
|
if test -n "$(DESTDIR)"; then \
|
@@ -677,7 +607,6 @@ clean-generic:
|
|
677
607
|
|
678
608
|
distclean-generic:
|
679
609
|
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
680
|
-
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
681
610
|
|
682
611
|
maintainer-clean-generic:
|
683
612
|
@echo "This command is intended for maintainers to use"
|
@@ -697,8 +626,6 @@ dvi-am:
|
|
697
626
|
|
698
627
|
html: html-recursive
|
699
628
|
|
700
|
-
html-am:
|
701
|
-
|
702
629
|
info: info-recursive
|
703
630
|
|
704
631
|
info-am:
|
@@ -707,28 +634,18 @@ install-data-am:
|
|
707
634
|
|
708
635
|
install-dvi: install-dvi-recursive
|
709
636
|
|
710
|
-
install-dvi-am:
|
711
|
-
|
712
637
|
install-exec-am:
|
713
638
|
|
714
639
|
install-html: install-html-recursive
|
715
640
|
|
716
|
-
install-html-am:
|
717
|
-
|
718
641
|
install-info: install-info-recursive
|
719
642
|
|
720
|
-
install-info-am:
|
721
|
-
|
722
643
|
install-man:
|
723
644
|
|
724
645
|
install-pdf: install-pdf-recursive
|
725
646
|
|
726
|
-
install-pdf-am:
|
727
|
-
|
728
647
|
install-ps: install-ps-recursive
|
729
648
|
|
730
|
-
install-ps-am:
|
731
|
-
|
732
649
|
installcheck-am:
|
733
650
|
|
734
651
|
maintainer-clean: maintainer-clean-recursive
|
@@ -751,23 +668,23 @@ ps-am:
|
|
751
668
|
|
752
669
|
uninstall-am:
|
753
670
|
|
754
|
-
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS)
|
755
|
-
install-
|
671
|
+
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
|
672
|
+
install-strip
|
756
673
|
|
757
674
|
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
|
758
675
|
all all-am am--refresh check check-am clean clean-generic \
|
759
676
|
ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \
|
760
|
-
dist-
|
761
|
-
distclean
|
762
|
-
|
763
|
-
|
764
|
-
install-dvi
|
765
|
-
install-html
|
766
|
-
install-
|
767
|
-
install-
|
768
|
-
installdirs
|
769
|
-
|
770
|
-
|
677
|
+
dist-shar dist-tarZ dist-zip distcheck distclean \
|
678
|
+
distclean-generic distclean-tags distcleancheck distdir \
|
679
|
+
distuninstallcheck dvi dvi-am html html-am info info-am \
|
680
|
+
install install-am install-data install-data-am install-dvi \
|
681
|
+
install-dvi-am install-exec install-exec-am install-html \
|
682
|
+
install-html-am install-info install-info-am install-man \
|
683
|
+
install-pdf install-pdf-am install-ps install-ps-am \
|
684
|
+
install-strip installcheck installcheck-am installdirs \
|
685
|
+
installdirs-am maintainer-clean maintainer-clean-generic \
|
686
|
+
mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags \
|
687
|
+
tags-recursive uninstall uninstall-am
|
771
688
|
|
772
689
|
|
773
690
|
@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@doxygen-ps: @DX_DOCDIR@/@PACKAGE@.ps
|
@@ -821,7 +738,6 @@ doc: doxygen-doc
|
|
821
738
|
rice/README.doxygen: README
|
822
739
|
@echo Generating documentation
|
823
740
|
@$(RUBY) -e 'File.open("README") { |i| File.open("rice/README.doxygen", "w") { |o| o.puts "/*! #{i.gets}"; i.each_line { |l| o.puts " * #{l}" if l !~ /^\\comment/ and l !~ /^vim:/ }; o.puts " */" } }'
|
824
|
-
|
825
741
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
826
742
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
827
743
|
.NOEXPORT:
|
data/aclocal.m4
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
# generated automatically by aclocal 1.
|
1
|
+
# generated automatically by aclocal 1.10 -*- Autoconf -*-
|
2
2
|
|
3
3
|
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
4
|
-
# 2005, 2006
|
4
|
+
# 2005, 2006 Free Software Foundation, Inc.
|
5
5
|
# This file is free software; the Free Software Foundation
|
6
6
|
# gives unlimited permission to copy and/or distribute it,
|
7
7
|
# with or without modifications, as long as this notice is preserved.
|
@@ -11,15 +11,12 @@
|
|
11
11
|
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
12
12
|
# PARTICULAR PURPOSE.
|
13
13
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
You have another version of autoconf. It may work, but is not guaranteed to.
|
19
|
-
If you have problems, you may need to regenerate the build system entirely.
|
20
|
-
To do so, use the procedure documented by the package, typically `autoreconf'.])])
|
14
|
+
m4_if(m4_PACKAGE_VERSION, [2.61],,
|
15
|
+
[m4_fatal([this file was generated for autoconf 2.61.
|
16
|
+
You have another version of autoconf. If you want to use that,
|
17
|
+
you should regenerate the build system entirely.], [63])])
|
21
18
|
|
22
|
-
# Copyright (C) 2002, 2003, 2005, 2006
|
19
|
+
# Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
|
23
20
|
#
|
24
21
|
# This file is free software; the Free Software Foundation
|
25
22
|
# gives unlimited permission to copy and/or distribute it,
|
@@ -31,10 +28,10 @@ To do so, use the procedure documented by the package, typically `autoreconf'.])
|
|
31
28
|
# generated from the m4 files accompanying Automake X.Y.
|
32
29
|
# (This private macro should not be called outside this file.)
|
33
30
|
AC_DEFUN([AM_AUTOMAKE_VERSION],
|
34
|
-
[am__api_version='1.
|
31
|
+
[am__api_version='1.10'
|
35
32
|
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
|
36
33
|
dnl require some minimum version. Point them to the right macro.
|
37
|
-
m4_if([$1], [1.
|
34
|
+
m4_if([$1], [1.10], [],
|
38
35
|
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
|
39
36
|
])
|
40
37
|
|
@@ -48,12 +45,10 @@ m4_define([_AM_AUTOCONF_VERSION], [])
|
|
48
45
|
# AM_SET_CURRENT_AUTOMAKE_VERSION
|
49
46
|
# -------------------------------
|
50
47
|
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
|
51
|
-
# This function is AC_REQUIREd by
|
48
|
+
# This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
|
52
49
|
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
|
53
|
-
[AM_AUTOMAKE_VERSION([1.
|
54
|
-
|
55
|
-
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
|
56
|
-
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
|
50
|
+
[AM_AUTOMAKE_VERSION([1.10])dnl
|
51
|
+
_AM_AUTOCONF_VERSION(m4_PACKAGE_VERSION)])
|
57
52
|
|
58
53
|
# AM_AUX_DIR_EXPAND -*- Autoconf -*-
|
59
54
|
|
@@ -110,14 +105,14 @@ am_aux_dir=`cd $ac_aux_dir && pwd`
|
|
110
105
|
|
111
106
|
# AM_CONDITIONAL -*- Autoconf -*-
|
112
107
|
|
113
|
-
# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006
|
108
|
+
# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006
|
114
109
|
# Free Software Foundation, Inc.
|
115
110
|
#
|
116
111
|
# This file is free software; the Free Software Foundation
|
117
112
|
# gives unlimited permission to copy and/or distribute it,
|
118
113
|
# with or without modifications, as long as this notice is preserved.
|
119
114
|
|
120
|
-
# serial
|
115
|
+
# serial 8
|
121
116
|
|
122
117
|
# AM_CONDITIONAL(NAME, SHELL-CONDITION)
|
123
118
|
# -------------------------------------
|
@@ -130,7 +125,6 @@ AC_SUBST([$1_TRUE])dnl
|
|
130
125
|
AC_SUBST([$1_FALSE])dnl
|
131
126
|
_AM_SUBST_NOTMAKE([$1_TRUE])dnl
|
132
127
|
_AM_SUBST_NOTMAKE([$1_FALSE])dnl
|
133
|
-
m4_define([_AM_COND_VALUE_$1], [$2])dnl
|
134
128
|
if $2; then
|
135
129
|
$1_TRUE=
|
136
130
|
$1_FALSE='#'
|
@@ -144,14 +138,14 @@ AC_CONFIG_COMMANDS_PRE(
|
|
144
138
|
Usually this means the macro was only invoked conditionally.]])
|
145
139
|
fi])])
|
146
140
|
|
147
|
-
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
141
|
+
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
148
142
|
# Free Software Foundation, Inc.
|
149
143
|
#
|
150
144
|
# This file is free software; the Free Software Foundation
|
151
145
|
# gives unlimited permission to copy and/or distribute it,
|
152
146
|
# with or without modifications, as long as this notice is preserved.
|
153
147
|
|
154
|
-
# serial
|
148
|
+
# serial 9
|
155
149
|
|
156
150
|
# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
|
157
151
|
# written in clear, in which case automake, when reading aclocal.m4,
|
@@ -208,16 +202,6 @@ AC_CACHE_CHECK([dependency style of $depcc],
|
|
208
202
|
if test "$am_compiler_list" = ""; then
|
209
203
|
am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
|
210
204
|
fi
|
211
|
-
am__universal=false
|
212
|
-
m4_case([$1], [CC],
|
213
|
-
[case " $depcc " in #(
|
214
|
-
*\ -arch\ *\ -arch\ *) am__universal=true ;;
|
215
|
-
esac],
|
216
|
-
[CXX],
|
217
|
-
[case " $depcc " in #(
|
218
|
-
*\ -arch\ *\ -arch\ *) am__universal=true ;;
|
219
|
-
esac])
|
220
|
-
|
221
205
|
for depmode in $am_compiler_list; do
|
222
206
|
# Setup a source with many dependencies, because some compilers
|
223
207
|
# like to wrap large dependency lists on column 80 (with \), and
|
@@ -235,17 +219,7 @@ AC_CACHE_CHECK([dependency style of $depcc],
|
|
235
219
|
done
|
236
220
|
echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
|
237
221
|
|
238
|
-
# We check with `-c' and `-o' for the sake of the "dashmstdout"
|
239
|
-
# mode. It turns out that the SunPro C++ compiler does not properly
|
240
|
-
# handle `-M -o', and we need to detect this. Also, some Intel
|
241
|
-
# versions had trouble with output in subdirs
|
242
|
-
am__obj=sub/conftest.${OBJEXT-o}
|
243
|
-
am__minus_obj="-o $am__obj"
|
244
222
|
case $depmode in
|
245
|
-
gcc)
|
246
|
-
# This depmode causes a compiler race in universal mode.
|
247
|
-
test "$am__universal" = false || continue
|
248
|
-
;;
|
249
223
|
nosideeffect)
|
250
224
|
# after this tag, mechanisms are not by side-effect, so they'll
|
251
225
|
# only be used when explicitly requested
|
@@ -255,23 +229,19 @@ AC_CACHE_CHECK([dependency style of $depcc],
|
|
255
229
|
break
|
256
230
|
fi
|
257
231
|
;;
|
258
|
-
msvisualcpp | msvcmsys)
|
259
|
-
# This compiler won't grok `-c -o', but also, the minuso test has
|
260
|
-
# not run yet. These depmodes are late enough in the game, and
|
261
|
-
# so weak that their functioning should not be impacted.
|
262
|
-
am__obj=conftest.${OBJEXT-o}
|
263
|
-
am__minus_obj=
|
264
|
-
;;
|
265
232
|
none) break ;;
|
266
233
|
esac
|
234
|
+
# We check with `-c' and `-o' for the sake of the "dashmstdout"
|
235
|
+
# mode. It turns out that the SunPro C++ compiler does not properly
|
236
|
+
# handle `-M -o', and we need to detect this.
|
267
237
|
if depmode=$depmode \
|
268
|
-
source=sub/conftest.c object
|
238
|
+
source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
|
269
239
|
depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
|
270
|
-
$SHELL ./depcomp $depcc -c
|
240
|
+
$SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
|
271
241
|
>/dev/null 2>conftest.err &&
|
272
242
|
grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
|
273
243
|
grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
|
274
|
-
grep
|
244
|
+
grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
|
275
245
|
${MAKE-make} -s -f confmf > /dev/null 2>&1; then
|
276
246
|
# icc doesn't choke on unknown options, it will just issue warnings
|
277
247
|
# or remarks (even with -Werror). So we grep stderr for any message
|
@@ -328,68 +298,57 @@ _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
|
|
328
298
|
|
329
299
|
# Generate code to set up dependency tracking. -*- Autoconf -*-
|
330
300
|
|
331
|
-
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
|
301
|
+
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
|
332
302
|
# Free Software Foundation, Inc.
|
333
303
|
#
|
334
304
|
# This file is free software; the Free Software Foundation
|
335
305
|
# gives unlimited permission to copy and/or distribute it,
|
336
306
|
# with or without modifications, as long as this notice is preserved.
|
337
307
|
|
338
|
-
#serial
|
308
|
+
#serial 3
|
339
309
|
|
340
310
|
# _AM_OUTPUT_DEPENDENCY_COMMANDS
|
341
311
|
# ------------------------------
|
342
312
|
AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
|
343
|
-
[
|
344
|
-
#
|
345
|
-
|
346
|
-
#
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
am__include
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
#
|
379
|
-
#
|
380
|
-
# expansion.
|
381
|
-
for file in `sed -n "
|
382
|
-
s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
|
383
|
-
sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
|
384
|
-
# Make sure the directory exists.
|
385
|
-
test -f "$dirpart/$file" && continue
|
386
|
-
fdir=`AS_DIRNAME(["$file"])`
|
387
|
-
AS_MKDIR_P([$dirpart/$fdir])
|
388
|
-
# echo "creating $dirpart/$file"
|
389
|
-
echo '# dummy' > "$dirpart/$file"
|
390
|
-
done
|
313
|
+
[for mf in $CONFIG_FILES; do
|
314
|
+
# Strip MF so we end up with the name of the file.
|
315
|
+
mf=`echo "$mf" | sed -e 's/:.*$//'`
|
316
|
+
# Check whether this is an Automake generated Makefile or not.
|
317
|
+
# We used to match only the files named `Makefile.in', but
|
318
|
+
# some people rename them; so instead we look at the file content.
|
319
|
+
# Grep'ing the first line is not enough: some people post-process
|
320
|
+
# each Makefile.in and add a new line on top of each file to say so.
|
321
|
+
# Grep'ing the whole file is not good either: AIX grep has a line
|
322
|
+
# limit of 2048, but all sed's we know have understand at least 4000.
|
323
|
+
if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then
|
324
|
+
dirpart=`AS_DIRNAME("$mf")`
|
325
|
+
else
|
326
|
+
continue
|
327
|
+
fi
|
328
|
+
# Extract the definition of DEPDIR, am__include, and am__quote
|
329
|
+
# from the Makefile without running `make'.
|
330
|
+
DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
|
331
|
+
test -z "$DEPDIR" && continue
|
332
|
+
am__include=`sed -n 's/^am__include = //p' < "$mf"`
|
333
|
+
test -z "am__include" && continue
|
334
|
+
am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
|
335
|
+
# When using ansi2knr, U may be empty or an underscore; expand it
|
336
|
+
U=`sed -n 's/^U = //p' < "$mf"`
|
337
|
+
# Find all dependency output files, they are included files with
|
338
|
+
# $(DEPDIR) in their names. We invoke sed twice because it is the
|
339
|
+
# simplest approach to changing $(DEPDIR) to its actual value in the
|
340
|
+
# expansion.
|
341
|
+
for file in `sed -n "
|
342
|
+
s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
|
343
|
+
sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
|
344
|
+
# Make sure the directory exists.
|
345
|
+
test -f "$dirpart/$file" && continue
|
346
|
+
fdir=`AS_DIRNAME(["$file"])`
|
347
|
+
AS_MKDIR_P([$dirpart/$fdir])
|
348
|
+
# echo "creating $dirpart/$file"
|
349
|
+
echo '# dummy' > "$dirpart/$file"
|
391
350
|
done
|
392
|
-
|
351
|
+
done
|
393
352
|
])# _AM_OUTPUT_DEPENDENCY_COMMANDS
|
394
353
|
|
395
354
|
|
@@ -421,13 +380,13 @@ AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
|
|
421
380
|
# Do all the work for Automake. -*- Autoconf -*-
|
422
381
|
|
423
382
|
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
424
|
-
# 2005, 2006
|
383
|
+
# 2005, 2006 Free Software Foundation, Inc.
|
425
384
|
#
|
426
385
|
# This file is free software; the Free Software Foundation
|
427
386
|
# gives unlimited permission to copy and/or distribute it,
|
428
387
|
# with or without modifications, as long as this notice is preserved.
|
429
388
|
|
430
|
-
# serial
|
389
|
+
# serial 12
|
431
390
|
|
432
391
|
# This macro actually does too much. Some checks are only needed if
|
433
392
|
# your package does certain things. But this isn't really a big deal.
|
@@ -444,7 +403,7 @@ AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
|
|
444
403
|
# arguments mandatory, and then we can depend on a new Autoconf
|
445
404
|
# release and drop the old call support.
|
446
405
|
AC_DEFUN([AM_INIT_AUTOMAKE],
|
447
|
-
[AC_PREREQ([2.
|
406
|
+
[AC_PREREQ([2.60])dnl
|
448
407
|
dnl Autoconf wants to disallow AM_ names. We explicitly allow
|
449
408
|
dnl the ones we care about.
|
450
409
|
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
|
@@ -495,8 +454,8 @@ AM_MISSING_PROG(AUTOCONF, autoconf)
|
|
495
454
|
AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
|
496
455
|
AM_MISSING_PROG(AUTOHEADER, autoheader)
|
497
456
|
AM_MISSING_PROG(MAKEINFO, makeinfo)
|
498
|
-
|
499
|
-
|
457
|
+
AM_PROG_INSTALL_SH
|
458
|
+
AM_PROG_INSTALL_STRIP
|
500
459
|
AC_REQUIRE([AM_PROG_MKDIR_P])dnl
|
501
460
|
# We need awk for the "check" target. The system "awk" is bad on
|
502
461
|
# some platforms.
|
@@ -504,37 +463,24 @@ AC_REQUIRE([AC_PROG_AWK])dnl
|
|
504
463
|
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
|
505
464
|
AC_REQUIRE([AM_SET_LEADING_DOT])dnl
|
506
465
|
_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
|
507
|
-
|
508
|
-
|
466
|
+
[_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
|
467
|
+
[_AM_PROG_TAR([v7])])])
|
509
468
|
_AM_IF_OPTION([no-dependencies],,
|
510
469
|
[AC_PROVIDE_IFELSE([AC_PROG_CC],
|
511
|
-
|
512
|
-
|
513
|
-
|
470
|
+
[_AM_DEPENDENCIES(CC)],
|
471
|
+
[define([AC_PROG_CC],
|
472
|
+
defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
|
514
473
|
AC_PROVIDE_IFELSE([AC_PROG_CXX],
|
515
|
-
|
516
|
-
|
517
|
-
|
474
|
+
[_AM_DEPENDENCIES(CXX)],
|
475
|
+
[define([AC_PROG_CXX],
|
476
|
+
defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
|
518
477
|
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
|
519
|
-
|
520
|
-
|
521
|
-
|
478
|
+
[_AM_DEPENDENCIES(OBJC)],
|
479
|
+
[define([AC_PROG_OBJC],
|
480
|
+
defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
|
522
481
|
])
|
523
|
-
_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
|
524
|
-
dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
|
525
|
-
dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro
|
526
|
-
dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
|
527
|
-
AC_CONFIG_COMMANDS_PRE(dnl
|
528
|
-
[m4_provide_if([_AM_COMPILER_EXEEXT],
|
529
|
-
[AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
|
530
482
|
])
|
531
483
|
|
532
|
-
dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
|
533
|
-
dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
|
534
|
-
dnl mangled by Autoconf and run in a shell conditional statement.
|
535
|
-
m4_define([_AC_COMPILER_EXEEXT],
|
536
|
-
m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
|
537
|
-
|
538
484
|
|
539
485
|
# When config.status generates a header, we must update the stamp-h file.
|
540
486
|
# This file resides in the same directory as the config header
|
@@ -545,19 +491,18 @@ m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
|
|
545
491
|
# our stamp files there.
|
546
492
|
AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
|
547
493
|
[# Compute $1's index in $config_headers.
|
548
|
-
_am_arg=$1
|
549
494
|
_am_stamp_count=1
|
550
495
|
for _am_header in $config_headers :; do
|
551
496
|
case $_am_header in
|
552
|
-
$
|
497
|
+
$1 | $1:* )
|
553
498
|
break ;;
|
554
499
|
* )
|
555
500
|
_am_stamp_count=`expr $_am_stamp_count + 1` ;;
|
556
501
|
esac
|
557
502
|
done
|
558
|
-
echo "timestamp for $
|
503
|
+
echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
|
559
504
|
|
560
|
-
# Copyright (C) 2001, 2003, 2005
|
505
|
+
# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
|
561
506
|
#
|
562
507
|
# This file is free software; the Free Software Foundation
|
563
508
|
# gives unlimited permission to copy and/or distribute it,
|
@@ -568,14 +513,7 @@ echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_co
|
|
568
513
|
# Define $install_sh.
|
569
514
|
AC_DEFUN([AM_PROG_INSTALL_SH],
|
570
515
|
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
571
|
-
|
572
|
-
case $am_aux_dir in
|
573
|
-
*\ * | *\ *)
|
574
|
-
install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
|
575
|
-
*)
|
576
|
-
install_sh="\${SHELL} $am_aux_dir/install-sh"
|
577
|
-
esac
|
578
|
-
fi
|
516
|
+
install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
|
579
517
|
AC_SUBST(install_sh)])
|
580
518
|
|
581
519
|
# Copyright (C) 2003, 2005 Free Software Foundation, Inc.
|
@@ -601,13 +539,13 @@ AC_SUBST([am__leading_dot])])
|
|
601
539
|
|
602
540
|
# Check to see how 'make' treats includes. -*- Autoconf -*-
|
603
541
|
|
604
|
-
# Copyright (C) 2001, 2002, 2003, 2005
|
542
|
+
# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
|
605
543
|
#
|
606
544
|
# This file is free software; the Free Software Foundation
|
607
545
|
# gives unlimited permission to copy and/or distribute it,
|
608
546
|
# with or without modifications, as long as this notice is preserved.
|
609
547
|
|
610
|
-
# serial
|
548
|
+
# serial 3
|
611
549
|
|
612
550
|
# AM_MAKE_INCLUDE()
|
613
551
|
# -----------------
|
@@ -616,7 +554,7 @@ AC_DEFUN([AM_MAKE_INCLUDE],
|
|
616
554
|
[am_make=${MAKE-make}
|
617
555
|
cat > confinc << 'END'
|
618
556
|
am__doit:
|
619
|
-
@echo
|
557
|
+
@echo done
|
620
558
|
.PHONY: am__doit
|
621
559
|
END
|
622
560
|
# If we don't find an include directive, just comment out the code.
|
@@ -626,24 +564,24 @@ am__quote=
|
|
626
564
|
_am_result=none
|
627
565
|
# First try GNU make style include.
|
628
566
|
echo "include confinc" > confmf
|
629
|
-
#
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
567
|
+
# We grep out `Entering directory' and `Leaving directory'
|
568
|
+
# messages which can occur if `w' ends up in MAKEFLAGS.
|
569
|
+
# In particular we don't look at `^make:' because GNU make might
|
570
|
+
# be invoked under some other name (usually "gmake"), in which
|
571
|
+
# case it prints its new name instead of `make'.
|
572
|
+
if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
|
573
|
+
am__include=include
|
574
|
+
am__quote=
|
575
|
+
_am_result=GNU
|
576
|
+
fi
|
637
577
|
# Now try BSD make style include.
|
638
578
|
if test "$am__include" = "#"; then
|
639
579
|
echo '.include "confinc"' > confmf
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
;;
|
646
|
-
esac
|
580
|
+
if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
|
581
|
+
am__include=.include
|
582
|
+
am__quote="\""
|
583
|
+
_am_result=BSD
|
584
|
+
fi
|
647
585
|
fi
|
648
586
|
AC_SUBST([am__include])
|
649
587
|
AC_SUBST([am__quote])
|
@@ -653,14 +591,14 @@ rm -f confinc confmf
|
|
653
591
|
|
654
592
|
# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
|
655
593
|
|
656
|
-
# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005
|
594
|
+
# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005
|
657
595
|
# Free Software Foundation, Inc.
|
658
596
|
#
|
659
597
|
# This file is free software; the Free Software Foundation
|
660
598
|
# gives unlimited permission to copy and/or distribute it,
|
661
599
|
# with or without modifications, as long as this notice is preserved.
|
662
600
|
|
663
|
-
# serial
|
601
|
+
# serial 5
|
664
602
|
|
665
603
|
# AM_MISSING_PROG(NAME, PROGRAM)
|
666
604
|
# ------------------------------
|
@@ -677,14 +615,7 @@ AC_SUBST($1)])
|
|
677
615
|
AC_DEFUN([AM_MISSING_HAS_RUN],
|
678
616
|
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
679
617
|
AC_REQUIRE_AUX_FILE([missing])dnl
|
680
|
-
|
681
|
-
case $am_aux_dir in
|
682
|
-
*\ * | *\ *)
|
683
|
-
MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
|
684
|
-
*)
|
685
|
-
MISSING="\${SHELL} $am_aux_dir/missing" ;;
|
686
|
-
esac
|
687
|
-
fi
|
618
|
+
test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
|
688
619
|
# Use eval to expand $SHELL
|
689
620
|
if eval "$MISSING --run true"; then
|
690
621
|
am_missing_run="$MISSING --run "
|
@@ -722,13 +653,13 @@ esac
|
|
722
653
|
|
723
654
|
# Helper functions for option handling. -*- Autoconf -*-
|
724
655
|
|
725
|
-
# Copyright (C) 2001, 2002, 2003, 2005
|
656
|
+
# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
|
726
657
|
#
|
727
658
|
# This file is free software; the Free Software Foundation
|
728
659
|
# gives unlimited permission to copy and/or distribute it,
|
729
660
|
# with or without modifications, as long as this notice is preserved.
|
730
661
|
|
731
|
-
# serial
|
662
|
+
# serial 3
|
732
663
|
|
733
664
|
# _AM_MANGLE_OPTION(NAME)
|
734
665
|
# -----------------------
|
@@ -745,7 +676,7 @@ AC_DEFUN([_AM_SET_OPTION],
|
|
745
676
|
# ----------------------------------
|
746
677
|
# OPTIONS is a space-separated list of Automake options.
|
747
678
|
AC_DEFUN([_AM_SET_OPTIONS],
|
748
|
-
[
|
679
|
+
[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
|
749
680
|
|
750
681
|
# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
|
751
682
|
# -------------------------------------------
|
@@ -755,14 +686,14 @@ AC_DEFUN([_AM_IF_OPTION],
|
|
755
686
|
|
756
687
|
# Check to make sure that the build environment is sane. -*- Autoconf -*-
|
757
688
|
|
758
|
-
# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
|
689
|
+
# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
|
759
690
|
# Free Software Foundation, Inc.
|
760
691
|
#
|
761
692
|
# This file is free software; the Free Software Foundation
|
762
693
|
# gives unlimited permission to copy and/or distribute it,
|
763
694
|
# with or without modifications, as long as this notice is preserved.
|
764
695
|
|
765
|
-
# serial
|
696
|
+
# serial 4
|
766
697
|
|
767
698
|
# AM_SANITY_CHECK
|
768
699
|
# ---------------
|
@@ -771,29 +702,16 @@ AC_DEFUN([AM_SANITY_CHECK],
|
|
771
702
|
# Just in case
|
772
703
|
sleep 1
|
773
704
|
echo timestamp > conftest.file
|
774
|
-
# Reject unsafe characters in $srcdir or the absolute working directory
|
775
|
-
# name. Accept space and tab only in the latter.
|
776
|
-
am_lf='
|
777
|
-
'
|
778
|
-
case `pwd` in
|
779
|
-
*[[\\\"\#\$\&\'\`$am_lf]]*)
|
780
|
-
AC_MSG_ERROR([unsafe absolute working directory name]);;
|
781
|
-
esac
|
782
|
-
case $srcdir in
|
783
|
-
*[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
|
784
|
-
AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
|
785
|
-
esac
|
786
|
-
|
787
705
|
# Do `set' in a subshell so we don't clobber the current shell's
|
788
706
|
# arguments. Must try -L first in case configure is actually a
|
789
707
|
# symlink; some systems play weird games with the mod time of symlinks
|
790
708
|
# (eg FreeBSD returns the mod time of the symlink's containing
|
791
709
|
# directory).
|
792
710
|
if (
|
793
|
-
set X `ls -Lt
|
711
|
+
set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
|
794
712
|
if test "$[*]" = "X"; then
|
795
713
|
# -L didn't work.
|
796
|
-
set X `ls -t
|
714
|
+
set X `ls -t $srcdir/configure conftest.file`
|
797
715
|
fi
|
798
716
|
rm -f conftest.file
|
799
717
|
if test "$[*]" != "X $srcdir/configure conftest.file" \
|
@@ -846,25 +764,18 @@ fi
|
|
846
764
|
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
|
847
765
|
AC_SUBST([INSTALL_STRIP_PROGRAM])])
|
848
766
|
|
849
|
-
# Copyright (C) 2006
|
767
|
+
# Copyright (C) 2006 Free Software Foundation, Inc.
|
850
768
|
#
|
851
769
|
# This file is free software; the Free Software Foundation
|
852
770
|
# gives unlimited permission to copy and/or distribute it,
|
853
771
|
# with or without modifications, as long as this notice is preserved.
|
854
772
|
|
855
|
-
# serial 2
|
856
|
-
|
857
773
|
# _AM_SUBST_NOTMAKE(VARIABLE)
|
858
774
|
# ---------------------------
|
859
|
-
# Prevent Automake from
|
775
|
+
# Prevent Automake from outputing VARIABLE = @VARIABLE@ in Makefile.in.
|
860
776
|
# This macro is traced by Automake.
|
861
777
|
AC_DEFUN([_AM_SUBST_NOTMAKE])
|
862
778
|
|
863
|
-
# AM_SUBST_NOTMAKE(VARIABLE)
|
864
|
-
# ---------------------------
|
865
|
-
# Public sister of _AM_SUBST_NOTMAKE.
|
866
|
-
AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
|
867
|
-
|
868
779
|
# Check how to create a tarball. -*- Autoconf -*-
|
869
780
|
|
870
781
|
# Copyright (C) 2004, 2005 Free Software Foundation, Inc.
|