1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 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 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208
|
2009-04-26 Peter Simons <simons@cryp.to>
Release version 2009-04-26.
README: Updated RSS and ATOM URLs for new gitweb version.
ChangeLog: drop file from repository
The next release archive will contain a ChangeLog that's generated from
Git; tracking that file inside of Git seems pointless.
ALL: consistency edits (see NEWS)
* Consistently refer to this project as Autoconf Archive.
* Removed the LAST MODIFICATION section, because that information is redundant
in the presence of Git.
* COPYLEFT has been renamed to LICENSE: some licenses, like all-permissive,
are no copylefts.
Dropped obsolete macros.
These macros were marked as obsolete for quite a while and are now
subsequently deleted. This means that the generated distribution archive
longer contains them either. The respective homepage and download URLs
on the web server, however, will remain valid for the foreseeable
future.
2009-04-25 Peter Simons <simons@cryp.to>
README: clarified the text and updated links
2009-04-24 Peter Simons <simons@cryp.to>
Bump last-modified dates.
2009-04-24 Matteo Settenvini <matteo@member.fsf.org>
AC_PYTHON_DEVEL: added support for python 3
2009-04-24 Allan Caffee <allan.caffee@gmail.com>
AX_INSTALL_FILES: fix an improperly escaped double quote
A bug in quotation was causing AX_INSTALL_FILES and dependent macros to
break. This regression was introduced in 9c650e.
2009-04-23 Peter Simons <simons@cryp.to>
README: Updated compilation copyright to 2009.
AUTHORS: Updated author list and copyright headers.
2009-04-23 Mike Frysinger <vapier@gentoo.org>
AX_CHECK_LINKER_FLAGS: new func based on AX_CHECK_COMPILER_FLAGS
AX_CHECK_COMPILER_FLAGS: quote flag name with []
If a flag contains a comma in it, then it will not be properly passed to
the AS_TR_SH function. The $1 needs to be quoted as [$1] to fix this.
2009-04-20 Gabriele Bartolini <gabriele.bartolini@devise.it>
AX_PROG_MD5SUM: released under all-permissive license
2009-04-20 Peter Simons <simons@cryp.to>
Synchronize last-modified-date with GIT repository.
The last-modified-date of these macros didn't match their respective
last-modified-date in the GIT repository. A version bump remedies this
inconsistency. In hindsight, these dates should have bumped when the
distribution format changed; all macros had to be touched at this point
anyway.
consistency edits
Cosmetic edits to update copyright headers and word-wrap documentation.
2009-04-20 Allan Caffee <allan.caffee@gmail.com>
AX_CVS,AX_DIST_MSI: Rewritten to use AX_ADD_AM_MACRO_STATIC.
These changes have not been tested very well since I don't have the software
setup to use either one. It's also worth mentioning that AX_DIST_MSI appears
to use GNU Make syntax which will cause Automake to complain unless portability
warnings are disabled.
Please feel free to modify this patch and commit message as necessary.
AX_DIST_RPM (and dependent macros) Modified to use AX_ADD_AM_MACRO_STATIC.
The macros AX_UPLOAD, AX_INSTALL_FILES, and AX_EXTRA_DIST which are often used
in conjunction with AX_DIST_RPM were also updated to use
AX_ADD_AM_MACRO_STATIC.
Thanks go to Ralf Wildenhues for the idea of adding local cleanup and
distribution targets as prerequisites the *-local/*-hook targets.
AX_ADD_AM_MACRO_STATIC: Added a new macro and helpers.
This new macro adds some text to the file aminclude_static.am when *Autoconf*
is run. The current macro AX_ADD_AM_MACRO writes text to the file
`aminclude.am' when _configure_ is run. Unfortunately this means that a) the
existing macro append Make code rather than Automake code as the name would
imply and b) only works for implementations of Make which allow includes, BSD
Make and GNU Make are the only ones that come to mind.
Hopefully this new macro will eventually replace the existing one altogether
because it allows Automake to do the actual work thereby offering more portable
Makefiles and pushing logic out of configure conditionals and into
AM_CONDITIONALs. However, in an attempt to avoid breaking existing Autoconf
scripts those macros have been left unchanged for the time being.
2009-04-20 Gabriele Bartolini <gabriele.bartolini@devise.it>
AX_PROG_MD5SUM: initial version
2009-04-19 Peter Simons <simons@cryp.to>
README: bumped version for release
AUTHORS: updated after recent changes to AX_ENABLE_BUILDDIR
2009-04-19 Alan Jenkins <alan-jenkins@tuffmail.co.uk>
AX_ENABLE_BUILDDIR: Add support for "dist-bzip2" target and friends
We already get a special toplevel Makefile rule for "dist", which
copies the tarball from the build directory to the source directory.
Many projects publish tarballs compressed using Bzip2 to save a bit
more bandwidth. Automake provides a "dist-bzip2" rule for this
purpose, and many others for different compression methods.
Unfortunately the rules don't all match the file extensions (dist-bzip
makes .bz2). So for dist-foo rules, just copy *all* the tarballs.
Ugly, but useful.
AX_ENABLE_BUILDDIR: Fix "make distclean" toplevel Makefile target
$ ./configure; make
...
MAKE i686-pc-linux-gnu : 0 * distclean
make[1]: Entering directory `/home/alan/bootup/src/module-init-tools/build'
rm -f doc/*.tmp manpage.refs manpage.links
make[1]: Leaving directory `/home/alan/bootup/src/module-init-tools/build'
MAKE i686-pc-linux-gnu : 0 * distclean (all local builds)
# rm -r .
# (sleep 3)
rm -r .
rm: cannot remove directory `.'
The problem is the method used to determine which builddirs are local,
and therefore should removed by "make distclean". It relies on them
starting with "./", but they don't :-). Instead, we can assume that
non-local directories will start with "/" or "../".
AX_ENABLE_BUILDDIR: Prevent multiple dist-all targets in top-level Makefile
$ ./configure; make
...
Makefile:852: target `dist-all' given more than once in the same rule.
The macro generates additional X-all targets, meaning "make target X in
all build directories". My source Makefile includes a rule like this:
dist dist-all: ...
It gets converted to
dist dist-all dist-all:
When what we really want is this
dist dist-all:
AX_ENABLE_BUILDDIR: Fix ":=" assignments in top-level generated Makefile
The sed script which generates the top-level Makefile from the Makefile
in the build directory is flawed. It treats an assignment of the form
"TESTSUITE := ..." as a makefile rule - because it contains ":".
$ make
...
MAKE : 1 * TESTSUITE
make[1]: Entering directory `/home/alan/bootup/src/module-init-tools/build'
make[1]: *** No rule to make target `TESTSUITE'. Stop.
Fix the sed script to skip the rule-related commands for lines which
contain ":=". As a cleanup, we can also skip the rule-related commands
for lines which do not contain ":". That simplifies those commands,
because they don't need to test for ":" themselves.
AX_ENABLE_BUILDDIR: Fix builds configured from a subdirectory
I would like to be able to bypass ENABLE_BUILDDIR and configure a
subdirectory myself, without generating a toplevel Makefile.
(This is for an unusual automated testsuite which tests behaviour
with different configure options, and compiles with -DJUST_TESTING
to build a testable version of the program).
$ mkdir build; cd build; ../configure
...
config.status: executing buildir commands
config.status: create top_srcdir/Makefile guessed from local Makefile
config.status: build in yes (HOST=)
...
$ cd ..; make
MAKE i686-pc-linux-gnu : 0 * all-all
/bin/bash: line 9: cd: yes: No such file or directory
make: *** [all-all] Error 1
Also:
./configure --disable-builddir
...
config.status: executing buildir commands
config.status: keeping top_srcdir/Makefile from earlier configure
...
Which should really be:
config.status: executing buildir commands
config.status: leaving top_srcdir/Makefile untouched
AX_ENABLE_BUILDDIR: Fix path for config.guess
Using this macro, I get a warning that config.guess can't be found.
It doesn't cause a problem for me because I'm not cross-compiling
for multiple hosts, but it is annoying.
$ ./configure
...
$ make
sh: Can't open ../config.guess
...
Reason: ".." is "$AUX".
The top-level makefile is generated *after* the configure script reruns
itself in the build directory. At that point, AUX is equal to "..".
Solution: use AM_AUX_DIR_EXPAND to generate an absolute version of
ac_aux_dir.
2009-04-19 Toni Corvera <outlyer@gmail.com>
AX_BOOST_{THREAD,PROGRAM_OPTIONS}: replace non-portable shell constructs
The mentioned files contain a non-portable shell construct, brace expansion
(e.g. dash and FreeBSD's sh don't support it). I guess the other ax_boost_<lib>
macro files contain similar stuff but I'm not using any other boost libs so I'd
rather not mess with them.
2009-04-19 Michael McMaster <email@michaelmcmaster.name>
AX_C99_INLINE: initial version
The macro determines whether the "inline" keyword of a C99 compiler is
standards compliant or not. I am using this macro support differences
between gcc 4.2 (and earlier) and gcc 4.3 (and later) when using the
"-std= c99" option. It may also be useful for other compilers. (For
details of the differences between the compiler versions refer to
http:// gcc.gnu.org/gcc-4.3/porting_to.html "Sematic change of extern
inline")
Example configure.ac:
AC_INIT([foo], [0.1])
AM_INIT_AUTOMAKE
AC_PROG_CC
AC_PROG_CC_C99
if test "$ac_cv_prog_cc_c99" == "no"; then
AC_MSG_ERROR([A C99 compiler is required.])
fi
AX_C99_INLINE
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
Example source file foo.h:
#ifdef HAVE_C99_INLINE
inline int myFunction(int a) { return a + 1; }
#else
static inline int myFunction(int a) { return a + 1; }
#endif
Example source foo.c:
extern inline int myFunction(int a);
2009-04-19 Reuben Thomas <rrt@sc3d.org>
LUA: minor updates
2009-04-19 Andreas Saebjoernsen <andreas.saebjoernsen@gmail.com>
AX_BOOST: added support for Wave
Updated macros due to link dependencies required in AC_CHECK_LIB.
AX_BOOST_FILESYSTEM requires the BOOST_SYSTEM library while
AX_BOOST_WAVE requires BOOST_THREAD_LIBRARY to link.
2009-04-19 Francesco Salvestrini <salvestrini@users.sourceforge.net>
Improved documentation.
AX_PROG_BISON, AX_PROG_FLEX: bugfixes
2009-04-19 Bogdan <bogdandr@op.pl>
AC_PROTOTYPE: added proper call to AC_SUBST()
This patch updates the AC_PROTOTYPE_DEFINES() function to call
AC_SUBST() to substitute the correct values in the configure-generated
files. This is required if you want to distribute a public header file
that depends on some target system property.
2009-04-19 Francesco Salvestrini <salvestrini@users.sourceforge.net>
AX_GCC_VERSION: bugfix
2009-04-19 Peter Simons <simons@cryp.to>
AX_F90_*: update copyright lines
README: fixed typo LPGL to LGPL
2009-04-19 Luc Maisonobe <luc@spaceroots.org>
AX_F90_*: fix cached variable warnings
Autoconf 2.63 generates warnings when cached variable names have no _cv_
in them.
2009-04-19 Mats Kindahl <mats@sun.com>
AX_PERL_EXT_FLAGS: embedding Perl into a project using Autotools
2009-04-19 Joshua Judson Rosen <jrosen@ll.mit.edu>
AX_PROG_DOXYGEN: bugfix
A collegue of mine recently ran into a problem: some "[]" syntax appear
to be leaking through when autoconf generated ./configure. Actually, it
was that a string was over-quoted and was thus not being expanded when
it should have. In some circumstances, it looks like the bug is `mostly
silent' (save for some bogus output in config.log), but we have seen
autoconf fail as a result of the "[]" being taken as an (invalid)
regexp.
2009-04-05 Reuben Thomas <rrt@sc3d.org>
lua.m4: initial version
2009-04-05 Francesco Salvestrini <salvestrini@users.sourceforge.net>
AX_PROG_PERL_VERSION, AX_PROG_PYTHON_VERSION: improved documentation
2008-11-07 Peter Simons <simons@cryp.to>
bump version
2008-11-07 Sebastian Waschik <sebastian.waschik@gmx.de>
AC_CXX_HAVE_VECTOR_AT: bugfix
Compilation of the test program failed even if the feature is available.
2008-11-07 Rhys Ulerich <rhys.ulerich@gmail.com>
Updated AX_TRILINOS macros.
2008-10-08 Peter Simons <simons@cryp.to>
AX_CHECK_GL: updated to latest versions from Braden McDaniel
2008-08-25 Dennis Felsing <dennis@felsin9.DE>
MP_WITH_CURSES: fix recently introduced bug
2008-08-24 Peter Simons <simons@cryp.to>
README: Bump version for release.
2008-08-24 Fabien Coelho <autoconf.archive@coelho.net>
AX_LIB_NETTLE: Support for another cryptographic library, "nettle".
2008-08-19 Rhys Ulerich <rhys.ulerich@gmail.com>
AX_TRILINOS_*: Test for the Trilinos libraries.
AX_TRILINOS_AMESO, AX_TRILINOS_BASE, AX_TRILINOS_EPETRA, and
AX_TRILINOS_TEUCHOS are modeled after the boost library macros.
ACLTX_CLASS_CWEB: various improvements
2008-08-19 Fabien Coelho <fabien.coelho@ensmp.fr>
AC_LIB_*CRYPT*: renamed to ax_lib_*crypt*
Renamed the recently submitted AC_LIB_*CRYPT* macro to use an AX_LIB
prefix. Also, the AX_LIB_CRYPTO macro will now find the IDEA algorithm.
2008-08-06 Peter Simons <simons@cryp.to>
AUTHORS: updated after recent submissions
2008-08-06 Fabien COELHO <fabien@coelho.net>
AC_LIB_{BEECRYPT,CRYPTO,GCRYPT}: check for cryptographic libraries
These 3 macros check for cryptographic libraries and list their
available algorithms. It is quite basic, but it fits my needs.
2008-08-06 Rhys Ulerich <rhys.ulerich@gmail.com>
ACLTX_CLASS_CWEB: check the presence of the LaTeX cweb package
This is a one-off version of Boretti's excellent ACLTX_CLASS autoconf
macro. The macro checks for the presence of the LaTeX cweb package
(http://www.ctan.org/tex-archive/help/Catalogue/entries/cweb-latex.html).
The LaTeX cweb package requires some additional boilerplate that would
normally be generated by CWEB:
\input cwebmac
\documentclass{cweb}
\begin{document}
\M{1}
\end{document}
\fi
\fin
2008-07-25 Jaroslav Hajek <highegg@gmail.com>
ACX_LAPACK: fix typo
This patch for Steven Johnson's acx_lapack.m4 fixes a typo and adds a
missing statement. I believe that the BLAS_LIBS="" statement should be
there, so that if BLAS is not found, the rest of the test is skipped and
LAPACK_LIBS is nullified, which makes sense.
2008-06-18 Jaroslav Hajek <highegg@gmail.com>
ACX_BLAS_F77_FUNC: bug fixes
This patch corrects a few cosmetic bugs and adds also the missing checks
for REAL and INTEGER return values (I have recently seen a case when
only REALs were broken due to promoting them to double precision).
2008-06-03 Peter Simons <simons@cryp.to>
Updated URLs into documents for pathinfo-style git repository.
Thanks to gitweb's pathinfo feature, the archive can now serve a
cloneable git repository and a web front-end under the same URL.
2008-06-02 Guido U. Draheim <guidod@gmx.de>
AX_CREATE_PKGCONFIG_INFO: fix misspelled variable name
2008-05-16 Julian Cummings <cummings@cacr.caltech.edu>
AC_COMPILE_CHECK_SIZEOF: bugfix
There was a typo regarding the optional EXTRA_SIZES argument.
2008-05-16 Francesco Salvestrini <salvestrini@users.sourceforge.net>
AX_GCC_INSTALL_DIR and AX_GCC_LIB*: one update and three new submissions
2008-05-07 Peter Simons <simons@cryp.to>
AX_HAVE_EPOLL: cosmetic improvement to error message
2008-05-05 Francesco Salvestrini <salvestrini@gmail.com>
AX_WITH_*: improvements to the documentation
2008-05-03 Peter Simons <simons@cryp.to>
bump version
AX_HAVE_EPOLL: bugfix
Don't print a warning when run an a non-Linux machine.
AX_CONFIG_FEATURE: bugfix
2008-05-02 Peter Simons <simons@cryp.to>
AX_HAVE_EPOLL: bugfix
Don't print a warning every time that macro is run on a non-Linux
machine.
AX_HAVE_ADNS: new submission
bumped version for release
AX_HAVE_{EPOLL,POLL,SELECT}: new submissions
2008-05-02 Francesco Salvestrini <salvestrini@users.sourceforge.net>
AX_WITH_{GUILE,PERL,PROG,PYTHON,RUBY}: improved documentation
2008-04-28 Peter Simons <simons@cryp.to>
AC_SET_VERSIONLEVEL: obsolete macro
This macro appears to be broken. Any attempt to use, i.e.
AC_SET_VERSIONLEVEL([foo], [1.1.1])
results in an error message: "m4_popdef: undefined macro: foo_MICRO". If
someone knows how to fix this problem, please let me know.
AX_SET_VERSION_INFO: obsolete macro
To the best of my understanding, this macro is based on a misconception
about Libtool's -version-info flag.
Apparently, the macro invocation AX_SET_VERSION_INFO([2.4.18]) is
transformed into "-release 2" and "-version-info 4:18". However, those
two flags contradict each other. The -release option specifies a version
number in the sense that we all know and love, but -version-info does
not: that flag implements a fairly sophisticated scheme meant to express
binary interface compatibility which is supposed to *replace* -release
versions. Deriving settings for both of those flags from one number
doesn't make sense.
See "6.2 Libtool's versioning system" for further details.
2008-04-23 Peter Simons <simons@cryp.to>
bumped version
2008-04-23 Francesco Salvestrini <salvestrini@gmail.com>
AX_GCC_INSTALL_DIR: updated to use new AX_GCC_OPTION
2008-04-17 Peter Simons <simons@cryp.to>
AC_CXX_*: added various macros for testing C++98 and C++TR1 compliance
Benjamin Kosnik kindly submitted his macro collection from libstdc++,
http://gcc.gnu.org/onlinedocs/libstdc++/manual/backwards.html#backwards.third
..., for inclusion in the archive.
2008-04-12 Peter Simons <simons@cryp.to>
NEWS: document distribution format change
ALL: updated m4 distribution format
The markup format distributed by the Autoconf Macro Archive underwent
the following changes:
* All archive entries use '#' comment delimiters, rather than 'dnl',
because we would like those comments to go into the generated
configure script. It should be simple for everyone to determine
where the macro came from originally, who wrote it, and where the
latest version can be retrieved. To achieve this, every macro used
to start with a distinguished line that shows the URL of its
respective home page, i.e.:
| ##### http://autoconf-archive.cryp.to/ax_prog_acme.html
As it happens, the aclocal utility distributed with Automake
ignores all comment lines that start with a double hash '##', thus
those home page URLs will not make it into any automatically
generated aclocal.m4 file. Duh. To remedy the situation, the
following markup is now used instead:
| # =================================================================
| # http://autoconf-archive.cryp.to/ax_prog_acme.html
| # =================================================================
* The 2.x versions of the GNU GPL and LGPL contain the following
clause:
| You should have received a copy of the <GNU LICENSE NAME> along
| with this program; if not, write to the Free Software Foundation,
| Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Version 3.x, however, smartly refers the reader to the Web:
| You should have received a copy of the GNU General Public License
| along with this program. If not, see <http://www.gnu.org/licenses/>.
This patch changes all GPL2 and LGPL2 macros to do the same, i.e.
to refer to the GNU web site for the full text of the respective
license.
* Since all m4 files had to be changed in this commit anyway, the
opportunity was used to increase the auto-fill column for
documentation from 65 to 75 characters per line. It's a trivial
change, but it just looks nicer.
README: updated link to FSF's recommendation of the all-permissive license
2008-04-01 Peter Simons <simons@cryp.to>
README: bumped version
2008-03-31 Jaroslav Hajek <highegg@gmail.com>
ACX_BLAS_F77_FUNC, ACX_BLAS_WITH_F77_FUNC: initial submission
Both macros were tested on a machine with gfortran but
g77-compiled (system-supplied) BLAS and worked as expected.
2008-03-31 Steven G. Johnson <stevenj@alum.mit.edu>
ACX_BLAS: added recognition of Intel MKL and Apple vecLib library
2008-03-31 Francesco Salvestrini <salvestrini@users.sourceforge.net>
AX_GCC_VERSION, AX_GXX_VERSION: initial submission
2008-03-30 Sean Geoghegan <seangeo@gmail.com>
AX_LIB_SQLITE3: fixed a bug in the automatic directory detection
The auto-detected CPP flags and LD flags for sqlite3 were being
assigned to the wrong variables.
2008-03-30 Dilyan Palauzov <Dilyan.Palauzov@aegee.org>
BERKELEY_DB: silence autoheader 2.61 warning
2008-03-30 Thomas Porschberg <thomas@randspringer.de>
AX_BOOST_BASE: add support for --with-boost-libdir
This patch originated in the PDFedit project [1]. It adds the capability to
specify the library path explicitly using the `--with-boost-libdir=LIB_DIR'
flag. This is required, for example, on platforms that offer both 32 and 64
bit versions of the libraries, but in different directories.
[1] http://sourceforge.net/projects/pdfedit
2008-03-01 Francesco Salvestrini <salvestrini@users.sourceforge.net>
MP_WITH_CURSES: removed autoheader warnings
AX_PROG_FLEX: test whether AC_PROG_LEX found flex (initial version)
AX_PROG_BISON: test whether AC_PROG_YACC found bison (initial version)
2008-03-01 Mateusz Loskot <mateusz@loskot.net>
AX_LIB_XERCES: updated
2008-02-21 Peter Simons <simons@cryp.to>
README, AUTHORS: updated administrative files for release
2008-02-21 Francesco Salvestrini <salvestrini@gmail.com>
AX_PATH_MISSING: added missing 'unset' and improved documentation
2008-02-20 Peter Simons <simons@cryp.to>
AX_RUBY_DEVEL: Corrected spelling of the author's name.
It's Rafal Rzepecki, where the last 'l' really is an &lslash; from
ISO-8859-2. Unfortunately, that character cannot be used easily in m4
macros.
Note that this macro has been derived from AC_PYTHON_DEVEL, but does not
depend on it.
AX_LIB_XML_SECURITY: added link to project home page
2008-02-20 Alexander Petry <petry@itwm.fhg.de>
AX_LIB_XML_SECURITY: detect Apache Xml-Security C++ library (initial version)
This macro is based on Mateusz Loskot's AX_LIB_XERCES.
2008-02-20 Daniel Casimiro <dan.casimiro@gmail.com>
AX_BOOST_SYSTEM: detect Boost.System library (initial version)
2008-02-20 Francesco Salvestrini <salvestrini@gmail.com>
AX_PATH_MISSING: added missing dereferencing
2008-02-12 Rafa Rzepecki <divided.mind@gmail.com>
AX_RUBY_DEVEL: detect Ruby development environment (initial version)
2008-01-29 Francesco Salvestrini <salvestrini@users.sourceforge.net>
Re-released recent additions under an all-permissive license and added listed Dustin J. Mitchell as joint copyright holder of AX_WITH_PROG.
2008-01-29 Mateusz Loskot <mateusz@loskot.net>
AX_LIB_POSTGRESQL: bugfix
2008-01-28 Francesco Salvestrini <salvestrini@gmail.com>
Major re-factoring of Perl, Guile, Python, and Ruby detection macros.
The new submission AX_WITH_PROG generalizes the technique employed by the
original AX_WITH_PYTHON to allow for detecting generic executables. Based on
that macro, trivial wrappers are provided for finding installed versions of
Perl, Guile, Python, and Ruby.
NOTE: The earlier version of AX_WITH_PYTHON performed a version check. The
AX_WITH_PROG-based macros don't do that. Instead, separate macros are available
for Perl, Guile, Python, and Ruby that check the version of a given executable
in a second, independent step.
2008-01-28 Sven Verdoolaege <skimo@kotnet.org>
AX_CREATE_PKGCONFIG_INFO: updated e-mail address
2008-01-28 Peter Simons <simons@cryp.to>
AX_COMPARE_VERSION: cosmetic change
Removed the reference to AX_PATH_BDB from the documentation in order to
generate a neater cross-reference graph. The macro's HTML page refers to
that macro anyway.
2008-01-28 Duncan Simpson <dps@simpson.demon.co.uk>
DPS_LIBGCJ_JAR: find classpath built into gcj (initial version)
DPS_XTRA_CLASSPATH: detect classpath required to find a class in a jar file (initial version)
DPS_JAVA_CHECK_CLASS: test if a Java class is available (initial version)
DPS_CHECK_PLUGIN: find a compatible version of plugin.jar (initial version)
2008-01-28 Andy Kitchen <agimbleinthewabe@gmail.com>
AX_LLVM: detect LLVM (initial version)
2008-01-28 Francesco Salvestrini <salvestrini@gmail.com>
AX_COMPARE_VERSION: Added AC_PROG_AWK call and replaced use of awk with $AWK.
2008-01-16 Peter Simons <simons@cryp.to>
bumped version for release
2008-01-10 Dustin J. Mitchell <dustin@zmanda.com>
AC_CHECK_DOCBOOK_XSLT(_MIN): minor updates
2007-12-18 Peter Simons <simons@cryp.to>
bumped version for release
2007-12-18 Jean-Louis Martineau <martineau@zmanda.com>
AC_CHECK_DOCBOOK_DTD: minor portability fix
2007-12-06 Peter Simons <simons@cryp.to>
bumped version for release
2007-12-06 Mateusz Loskot <mateusz@loskot.net>
AX_LIB_EXPAT: initial submission
2007-12-06 Francesco Salvestrini <salvestrini@users.sourceforge.net>
AX_MISSING_PROG: improved the documentation
2007-12-03 Francesco Salvestrini <salvestrini@users.sourceforge.net>
AX_MISSING_PROG, AX_PATH_MISSING: re-factored for improved modularity
Added a new macro AX_MISSING_PROG that wraps AM_MISSING_PROG (from
Automake) and modified AX_PATH_MISSING to wrap AX_MISSING_PROG. The
change is transparent for users of the previous version.
The names used in the macro-chain are confusing, but I didn't find a
better solution. Suggestions are welcome.
2007-12-03 Christophe Tournayre <turn3r@users.sourceforge.net>
AX_COUNT_CPUS: added MacOS X support
2007-11-30 Peter Simons <simons@cryp.to>
bump version for release
2007-11-30 Christophe Tournayre <turn3r@users.sourceforge.net>
AX_EXT: new submission to detect the supported SIMD extensions
AX_CPU_VENDOR: new submission to detect the cpu vendor
AX_CPU_FREQ: new submission to detect the cpu frequency
AX_CACHE_SIZE: new submission to detect L1 and L2 cache sizes
2007-11-30 Mateusz Loskot <mateusz@loskot.net>
AX_LIB_FIREBIRD: new submission to detect the Firebird client library
AX_LIB_ORACLE_OCI: various improvements
Users who update from an earlier version should be aware of the fact that the
result variable has been renamed from HAVE_ORACLE to HAVE_ORACLE_OCI.
2007-11-30 Francesco Salvestrini <salvestrini@users.sourceforge.net>
AX_{C,CPP,CXX,CXXPP,LD}_CHECK_FLAG: Check flags supported by the tool-chain.
The new submissions generalize the functionality provided by AX_GCC_OPTION.
2007-11-22 Peter Simons <simons@cryp.to>
bump version for release
2007-11-22 Pierre Hebert <pierrox@pierrox.net>
BNV_HAVE_QT: provide QT_LRELEASE and QT_LUPDATE variables
2007-11-22 Bogdan Drozdowski <bogdandr@op.pl>
AX_GCC_OPTION: improved portability by providing a dummy file to compile
2007-11-22 Thomas Porschberg <thomas@randspringer.de>
AX_BOOST_*: bug fixes for MinGW and FC
2007-11-22 Mateusz Loskot <mateusz@loskot.net>
AX_LIB_XERCES: initial version
2007-09-10 Peter Simons <simons@cryp.to>
bump version for release
2007-09-09 Peter Simons <simons@cryp.to>
New macros to test for various assemblers, like nasm, yasm, etc.
2007-08-23 Peter Simons <simons@cryp.to>
NEWS: add cross-references to the HTML documentation
2007-08-21 Peter Simons <simons@cryp.to>
Release autoconf-archive 2007-08-21.
AX_ENABLE_BUILDDIR: Bump modification date to obsolete the reverted version.
AX_ENABLE_BUILDDIR: Revert renaming of variable HOST to BUILD.
Further discussion on the Autoconf mailing list has reached the
following consensus: although BUILD is the right choice in most
cases, in case of cross-compilation it is not. Cross-compilation
needs HOST to be set, so the original version of this macro is
the safer choice. This patch reverts commit
41da8f494cd209a9836ebeae8f211cb84dde9153.
An unpleasant property of HOST is that most shell environments
define that variable to the local hostname. When configure uses
$HOST as a default setting, however, that is not what it expects
to find -- HOST is supposed to be config.guess tripple. Thus, the
user is forced to specify HOST explicitly or to undefine $HOST in
the shell before calling configure. That's a bit of mess. Bright
ideas and patches are welcome.
2007-08-17 Julian Cummings <cummings@cacr.caltech.edu>
AX_COMPILER_VENDOR: added support for Pathscale compiler
2007-08-09 Peter Simons <simons@cryp.to>
ChangeLog: describe how to find the GIT change log
NEWS, ChangeLog: describe the pre-GIT history a little bit
2007-08-09 Julian Cummings <cummings@cacr.caltech.edu>
AX_F90_MODULE_FLAG: drop support for -module flag
It turns out that in Version 3.0 of the Pathscale Fortran
compiler they have "clarified" the meaning of the -module flag to
only be for setting the directory where *.mod files are written.
In version 3.0, you can only use -module once in a command line,
and if you use it, then the compiler will look there first for
module files to be read before looking in the -I directories.
Thus, it really is best to just use the -I flag here and let the
user add one specific -module option only if they want or need to
redirect module output files.
This commit reverts 5ba234dd8f69456238e7718d4f3a7c116639e373.
2007-08-04 raf <raf@raf.org>
AC_RAF_FUNC_WHICH_GETSERVBYNAME_R: update to GPL3 (with Autoconf exception)
2007-08-04 Alan Woodland <ajw05@aber.ac.uk>
AX_TLS: update license to GPL3 (with Autoconf exception)
2007-08-04 Oren Ben-Kiki <oren@ben-kiki.org>
AX_PROG_DOXYGEN: re-release all-permissive
2007-08-04 Tal Shalif <tal@shalif.com>
AC_PKG_MICO: re-release all-permissive
2007-08-04 Dustin J. Mitchell <dustin@cs.uchicago.edu>
AZ_PYTHON: re-release all-permissive
Robert White agreed as well.
2007-08-04 Julian Cummings <cummings@cacr.caltech.edu>
AX_F90_MODULE_FLAG: support -module PGI compiler flag
I have "-module " to the list of compiler options that is tried
in order to support the PGI Fortran compiler. Without this
change, the PGI compiler actually accepts "-I" and passes the
test. However, this option is actually meant for setting the
include file search path to find files that are included with the
Fortran INCLUDE statement. Although the -I flag works in this
case because there are no -module options on the command line,
things will not work correctly if the user does bring in the
-module option on the actual compile command line.
2007-08-04 Peter Simons <simons@cryp.to>
AX_ENABLE_BUILDDIR_UNAME: Obsoleted.
This macro duplicates the functionality of the standard Autoconf macro
AC_CANONICAL_BUILD. Kindly pointed out by Julian C. Cummings.
AX_PREFIX_CONFIG_H: stripped invalid e-mail address
Marten Svantesson's e-mail address has become invalid. If anyone
knows how to reach him, please let me know.
2007-08-04 Julian Cummings <cummings@cacr.caltech.edu>
AX_ENABLE_BUILDDIR: Renamed variable HOST to BUILD.
The patch universally replaces "host" with "build" and "HOST"
with "BUILD". The rationale is that typically the user wishes to
segregate builds based upon the BUILD target rather than the
configuration HOST type. Now that these host and build variables
are treated as more fully distinct in Autoconf, it makes sense to
honor this distinction.
2007-07-31 Peter Simons <simons@cryp.to>
Bumped version number to autoconf-archive-2007-07-31.
AC_PYTHON_DEVEL: re-released under GPL3 (with autoconf exception)
2007-07-31 Mark Pulford <mark@kyne.com.au>
MP_WITH_CURSES: re-released under GPL3 (with autoconf exception)
2007-07-31 Uwe Mayer <merkosh@hadiko.de>
MERK_PROG_TCL: re-released under GPL3 (with autoconf exception)
AX_PROG_TCL: re-released under GPL3 (with autoconf exception)
2007-07-31 Kaveh Ghazi <ghazi@caip.rutgers.edu>
AC_COMPILE_CHECK_SIZEOF: re-released under GPL3 (with autoconf exception)
2007-07-29 Steven G. Johnson <stevenj@alum.mit.edu>
updated from GPL2 to GPL3 (with autoconf exception)
2007-07-29 Ruslan Shevchenko <Ruslan@Shevchenko.Kiev.UA>
RSSH_CHECK_OFF64_T: updated from LGPL2 to LGPL3
2007-07-29 Paul Gilmartin <pg@sweng.stortek.com>
CF_EBCDIC: updated license from gpl2 to gpl3 (with autoconf exception)
2007-07-29 Bruce Korb <bkorb@gnu.org>
AG_CHECK_*: re-released under all-permissive license
2007-07-29 Vaclav Slavik <vaclav.slavik@matfyz.cz>
BERKELEY_DB: re-released under all-permissive license
2007-07-29 Peter Simons <simons@cryp.to>
AUTHORS: strip e-mail addresses
Some contributors state different e-mail addresses in different
macros. The result is a duplicate entry in the (auto-generated)
authors file for this person. To remedy the problem, e-mail
addresses are stripped in the context of that file.
2007-07-29 Tim Toolan <toolan@ele.uri.edu>
AX_COMPARE_VERSION, AX_PATH_BDB, AX_PATH_MILTER: re-release all-permissive
2007-07-29 Oskar Liljeblad <oskar@osk.mine.nu>
AC_LIB_ID3, AC_LIB_UPNP: re-release under all-permissive license
2007-07-29 Dustin J. Mitchell <dustin@cs.uchicago.edu>
Use author attribution "Dustin J. Mitchell" consistently.
2007-07-29 Ville Laurikari <vl@iki.fi>
AC_LIB_READLINE, AC_PROG_CC_WARNINGS: update license from GPL2 to GPL3
2007-07-29 Peter Simons <simons@cryp.to>
Pruned invalid e-mail addresses.
The following contributors have become unreachable:
Mark Elbrecht <snowball3@bigfoot.com>
Mark R. Bannister <markb@freedomware.co.uk>
Ilguiz Latypov <ilatypov@superbt.com>
Matthew D. Langston <langston@SLAC.Stanford.EDU>
AC_CXX_HAVE_EXT_HASH_MAP, AC_PATH_GENERIC, AC_PATH_LIB: remove invalid e-mail
The e-mail addresses listed for Perceval Anichini and Angus Lees no longer
work. If anyone knows how to reach them, please let me know.
2007-07-29 Dustin Mitchell <dustin@cs.uchicago.edu>
AX_PYTHON_CONFIG_VAR, AX_WITH_APXS, AX_WITH_PYTHON: release all-permissive
2007-07-29 Peter Simons <simons@cryp.to>
Release version 2007-07-29 under GPL v3.
2007-07-28 Peter Simons <simons@cryp.to>
ax_c___attribute__.m4: dropped invalid e-mail address
Christian Haggstrom's e-mail address chm@c00.info is unreachable.
2007-07-28 Thomas Porschberg <thomas@randspringer.de>
ax_boost_base.m4: recognize macports installation
The update reflects that boost library is installed in /opt/local
for mac users when using macports (macports.org). I got the
advice from Ernest Turro.
2007-07-27 Peter Simons <simons@cryp.to>
AX_CFLAGS_GCC_OPTION: Cosmetic editing for improved HTML hyper-linking.
2007-07-26 Peter Simons <simons@cryp.to>
AUTHORS, README: updated for release 2007-07-26
2007-07-26 Thomas Porschberg <thomas@randspringer.de>
AX_BOOST: obsoleted in favor of modular macros
The macro AX_BOOST is deprecated. All users should use
AX_BOOST_BASE and the specific macros like ax_boost_date_time.m4,
etc.
AX_BOOST_*: adapted for naming convention in Boost version 1.34
2007-07-26 Pete Greenwell <pete@mu.org>
AX_BOOST_ASIO: initial version
The asio library is not yet a part of the latest boost library
collection, but will be shipped with version 1.35.
2007-07-26 Stepan Kasal <skasal@redhat.com>
AX_C___ATTRIBUTE__: fixed for gcc4
The macro did not work with current gcc. The problem is that gcc4
does not swallow nested function, so the declaration and
definition of the test function had to be moved from the body of
main() to the prologue of conftest.c.
2007-07-24 Mikael Lepistö <mikael.lepisto@tut.fi>
ax_boost*.m4: fix library detection when compiling with -pedantic
When running the Boost macros with the "-pedantic" compiler
switch, they fail. It seems that the problem is a multiply
defined "main" function in the generated test program. I changed
the call to AC_CHECK_LIB to use "exit" instead of "main", which
seems to work reliably.
2007-07-19 Alan Woodland <ajw05@aber.ac.uk>
AX_TLS: initial version
The attached macro attempts to detect compiler support for TLS
storage class extensions and how to use that extension. It then
defines the macro TLS to the keyword it found.
2007-07-18 Peter Simons <simons@cryp.to>
AX_BOOST_*, AX_PYTHON: Michael Tindal's e-mail address is invalid.
The address <mtindal@paradoxpoint.com> no longer works because the
domain name paradoxpoint.com appears to have expired. If anyone knows
how to reach Michael these days, please let me know. Thanks to Mikael
Lepistö for bringing this problem to my attention.
2007-07-18 Mikael Lepistö <mikael.lepisto@tut.fi>
AX_PYTHON: added support for python 2.5
2007-06-27 Peter Simons <simons@cryp.to>
release 2007-06-27
2007-06-27 Dustin J. Mitchell <dustin@zmanda.com>
Bug fix for Solaris 9.
One of our users noticed some strange output on Solaris 9 from
this macro. It looks like it was a fairly trivial typo, executing
$1 (a list of headers) instead of $2 (optional shell commands).
2007-06-01 Peter Simons <simons@cryp.to>
release 2007-06-01
2007-06-01 Noah Slater <nslater@bytesexual.org>
AX_PATH_MISSING: Check whether a given program exists in path.
2007-05-15 Peter Simons <simons@cryp.to>
Use consistent author attribution for Zmanda Inc.
2007-05-12 Peter Simons <simons@cryp.to>
release 2007-05-12
2007-05-12 Alex Pletzer <pletzer@txcorp.com>
There is an error at line:
| if test "$ax_flag" = "not found" ; then
in ax_f90_module_flag.m4. It should read:
if test "$ax_f90_modflag" = "not found" ; then
2007-05-11 Peter Simons <simons@cryp.to>
README: added link to ATOM change log
README: gitweb is online at http://git.cryp.to/
Added links from every macro to its respective history in gitweb.
Among other things, the repository browser offers an RSS feed and
on-the-fly generation of snapshot releases.
2007-05-10 Peter Simons <simons@cryp.to>
release 2007-05-10
ax_f90_module_extension.m4: portability fix
Luc Maisonobe <luc.maisonobe@free.fr> wrote:
> Alexander Pletzer <pletzer@txcorp.com> found an error in the
> AX_F90_MODULE_EXTENSION. As far as I understand, due to some
> leading blanks in the fortran code snippet, some compilers
> switched to fixed form fortran and failed to compile the code.
> So he added a simple fortran90-only comment to make sure the
> compiler stay in F90 mode.
2007-05-09 Peter Simons <simons@cryp.to>
Added author index.
release version 2007-05-09
AC_CHECK_DOCBOOK_XSLT_MIN: consistency edits
AC_CHECK_DOCBOOK_XSLT_MIN: new submission
2007-04-19 Peter Simons <simons@cryp.to>
Release 2007-04-19.
Added submissions from Dustin J. Mitchell <dustin@zmanda.com>: AC_CHECK_DOCBOOK_DTD, AC_CHECK_DOCBOOK_XSLT, and AC_PROG_XSLTPROC.
2007-03-23 Peter Simons <simons@cryp.to>
Release 2007-03-22.
ax_boost_thread.m4: improved platform recognition.
ax_boost_test_exec_monitor.m4: Fixed usage description.
2007-03-22 Peter Simons <simons@cryp.to>
ax_boost_test_exec_monitor.m4: New submission from Dodji Seketeli.
2007-03-18 Peter Simons <simons@cryp.to>
ax_boost_test_exec_monitor.m4: New submission from Dodji Seketeli.
2007-03-15 Peter Simons <simons@cryp.to>
ax_boost.m4, ax_boost_base.m4: Updated help messages.
Thomas Porschberg updated the help messages to reflect the
defaults correctly. Boost is now enabled unless specified
otherwise.
2007-03-12 Peter Simons <simons@cryp.to>
bump release date
ax_boost*.m4: Portability improvements.
Joerg Sonnenberger reported a problem:
| This fails on a number of systems because in
|
| AC_CHECK_LIB($ax_lib, main, [BOOST_REGEX_LIB=$ax_lib break])
|
| the BOOST_REGEX_LIB a local variable for break. Can you fix
| that macro to use two statements? Try running this with bash3
| in native mode for example.
Thomas Porschberg submitted the new versions in
<20070312215212.6da63127@jeschken.quark.de>.
2007-02-20 Peter Simons <simons@cryp.to>
README: Removed trailing slash from the GIT repository URL.
Git unconditionally appends a slash when constructing file paths, so
instructing users to git-clone the URL ".../.git/" resulted in
".../.git//HEAD" being requested. It's not a problem, but feels wrong
nonetheless. The slash is gone again. ;-)
2007-02-19 Peter Simons <simons@cryp.to>
Don't hyperlink to the GIT repository: there's no web front-end installed.
README: Cosmetic improvements.
removed local ignore file from repository
Announced GIT repository.
cosmetic
2007-02-18 Peter Simons <simons@cryp.to>
Received new submission: rssh_check_off64_t.m4.
Imported http://autoconf-archive.cryp.to/ release 2007-02-14.
|