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
|
dnl ACX_SAVE_STATE/ACX_RESTORE_STATE
dnl Save/restore flags
dnl
dnl ACX_SAVE_STATE
AC_DEFUN(ACX_SAVE_STATE,
[
save_CFLAGS=$CFLAGS
save_CPPFLAGS=$CPPFLAGS
save_LDFLAGS=$LDFLAGS
save_LIBS=$LIBS
])
dnl ACX_RESTORE_STATE
AC_DEFUN(ACX_RESTORE_STATE,
[
CFLAGS=$save_CFLAGS
CPPFLAGS=$save_CPPFLAGS
LDFLAGS=$save_LDFLAGS
LIBS=$save_LIBS
])
AC_DEFUN(ACX_CHECK_CC_FLAGS,
[
AC_REQUIRE([AC_PROG_CC])
AC_CACHE_CHECK(whether ${CC-cc} accepts $1, ac_$2,
[echo 'void f(){}' > conftest.c
if test -z "`${CC-cc} $1 -c conftest.c 2>&1`"; then
ac_$2=yes
else
ac_$2=no
fi
rm -f conftest*
])
if test "$ac_$2" = yes; then
:
$3
else
:
$4
fi
])
dnl **** Check for gcc strength-reduce bug ****
AC_DEFUN(ACX_GCC_STRENGTH_REDUCE,
[
AC_REQUIRE([AC_PROG_CC])
AC_CACHE_CHECK([for gcc strength-reduce bug], ac_cv_c_gcc_strength_bug,
AC_TRY_RUN([
int main(void) {
static int Array[[3]];
unsigned int B = 3;
int i;
for(i=0; i<B; i++) Array[[i]] = i - 3;
exit( Array[[1]] != -2 );
}
],
ac_cv_c_gcc_strength_bug="no",
ac_cv_c_gcc_strength_bug="yes",
ac_cv_c_gcc_strength_bug="yes")
)
if test "$ac_cv_c_gcc_strength_bug" = "yes"
then
:
$1
else
:
$2
fi
])
dnl **** Checks for FPU arithmetics
AC_DEFUN(ACX_CHECK_FPU,
[
AC_CACHE_CHECK([for FPU arithmetics type], ac_cv_c_fpu_arithmetics_type,
AC_TRY_RUN([
#include <stdio.h>
#include <string.h>
#define LOG2EA 0.44269504088896340735992
#define ACCURACY "%1.4f"
typedef union {unsigned short s[[4]]; double d;} XTYPE;
XTYPE X[[]] = {
{{0,0,0,0}}, /* Unknown */
{{0x3fdc,0x551d,0x94ae,0x0bf8}}, /* Big endian IEEE */
{{0x0bf8,0x94ae,0x551d,0x3fdc}}, /* Littile endian IEEE */
{{0037742,0124354,0122560,0057703}} /* DEC */
};
int main (void)
{
int i; char TMPSTR[[1024]]; char LOG2EA_STR[[80]];
i = 0;
sprintf(LOG2EA_STR, ACCURACY, LOG2EA);
for (i=3; i >= 0; i--)
{
sprintf(TMPSTR, ACCURACY, X[[i]].d);
if (strcmp(TMPSTR, LOG2EA_STR) == 0) {
break;
}
}
exit(i);
}],
ac_cv_c_fpu_arithmetics_type="Unknown",
[case "$?" in
"1"[)] ac_cv_c_fpu_arithmetics_type="Big endian IEEE" ;;
"2"[)] ac_cv_c_fpu_arithmetics_type="Little endian IEEE" ;;
"3"[)] ac_cv_c_fpu_arithmetics_type="DEC" ;;
esac],
ac_cv_c_fpu_arithmetics_type="Unknown") )
case "$ac_cv_c_fpu_arithmetics_type" in
"DEC") AC_DEFINE(HAVE_DEC_FPU) ;;
"Little endian IEEE") AC_DEFINE(HAVE_LIEEE_FPU) ;;
"Big endian IEEE") AC_DEFINE(HAVE_BIEEE_FPU) ;;
esac
])
AC_DEFUN(ACX_ANSI_TYPES,
[
dnl **** Check which ANSI integer type is 16 bit
AC_CACHE_CHECK( "which ANSI integer type is 16 bit", ac_16bit_type,
AC_TRY_RUN([
int main(void) {
if (sizeof(short)==2)
return(0);
else if (sizeof(int)==2)
return(1);
else
return(2);
}], ac_16bit_type="short", ac_16bit_type="int", ac_16bit_type=))
if test "$ac_16bit_type" = "short"
then
T1_AA_TYPE16="short"
else
T1_AA_TYPE16="int"
fi
dnl **** Check which ANSI integer type is 32 bit
AC_CACHE_CHECK( "which ANSI integer type is 32 bit", ac_32bit_type,
AC_TRY_RUN([
int main(void) {
if (sizeof(int)==4)
return(0);
else if (sizeof(long)==4)
return(1);
else
return(2);
}], ac_32bit_type="int", ac_32bit_type="long", ac_32bit_type=))
if test "$ac_32bit_type" = "int"
then
T1_AA_TYPE32="int"
else
T1_AA_TYPE32="long"
fi
dnl **** Check which ANSI integer type is 64 bit
AC_CACHE_CHECK( "which ANSI integer type is 64 bit", ac_64bit_type,
AC_TRY_RUN([
int main(void) {
if (sizeof(long)==8)
return(0);
else
return(1);
}], ac_64bit_type="long", ac_64bit_type="<none>", ac_64bit_type=))
if test "$ac_64bit_type" = "long"
then
T1_AA_TYPE64="long"
else
T1_AA_TYPE64=
fi
])
dnl **** Check for buggy realloc()
AC_DEFUN(ACX_CHECK_REALLOC,
[
AC_CACHE_CHECK([whether realloc is buggy], ac_cv_c_realloc_bug,
AC_TRY_RUN([
#include <stdio.h>
#include <stdlib.h>
int main(void) {
void *ptr;
ptr = NULL;
ptr = realloc(ptr, 1);
exit(ptr == NULL);
}],
ac_cv_c_realloc_bug="no",
ac_cv_c_realloc_bug="yes",
ac_cv_c_realloc_bug="yes") )
if test "$ac_cv_c_realloc_bug" = "yes"
then
:
$1
else
:
$2
fi
])
dnl ICE_CHECK_DECL (FUNCTION, HEADER-FILE...)
dnl -----------------------------------------
dnl
dnl If FUNCTION is available, define `HAVE_FUNCTION'. If it is declared
dnl in one of the headers named in the whitespace-separated list
dnl HEADER_FILE, define `HAVE_FUNCTION_DECL` (in all capitals).
dnl
AC_DEFUN(ICE_CHECK_DECL,
[
changequote(,)dnl
ice_tr=`echo $1 | tr '[a-z]' '[A-Z]'`
changequote([,])dnl
ice_have_tr=HAVE_$ice_tr
ice_have_decl_tr=${ice_have_tr}_DECL
ice_have_$1=no
AC_CHECK_FUNCS($1, ice_have_$1=yes)
if test "${ice_have_$1}" = yes; then
AC_MSG_CHECKING(for $1 declaration in $2)
AC_CACHE_VAL(ice_cv_have_$1_decl,
[
ice_cv_have_$1_decl=no
changequote(,)dnl
ice_re_params='[a-zA-Z_][a-zA-Z0-9_]*'
ice_re_word='(^|[^a-zA-Z_0-9_])'
changequote([,])dnl
for header in $2; do
# Check for ordinary declaration
AC_EGREP_HEADER([${ice_re_word}$1 *\(], $header,
ice_cv_have_$1_decl=yes)
if test "$ice_cv_have_$1_decl" = yes; then
break
fi
# Check for "fixed" declaration like "getpid _PARAMS((int))"
AC_EGREP_HEADER([${ice_re_word}$1 *$ice_re_params\(\(], $header,
ice_cv_have_$1_decl=yes)
if test "$ice_cv_have_$1_decl" = yes; then
break
fi
done
])
AC_MSG_RESULT($ice_cv_have_$1_decl)
if test "$ice_cv_have_$1_decl" = yes; then
AC_DEFINE_UNQUOTED(${ice_have_decl_tr})
fi
fi
])dnl
dnl --- *@-mdw_CHECK_MANYLIBS-@* ---
dnl
dnl Author: Mark Wooding
dnl
dnl Synopsis: mdw_CHECK_MANYLIBS(FUNC, LIBS, [IF-FOUND], [IF-NOT-FOUND])
dnl
dnl Arguments: FUNC = a function to try to find
dnl LIBS = a whitespace-separated list of libraries to search
dnl IF-FOUND = what to do when the function is found
dnl IF-NOT-FOUND = what to do when the function isn't found
dnl
dnl Use: Searches for a library which defines FUNC. It first tries
dnl without any libraries; then it tries each library specified
dnl in LIBS in turn. If it finds a match, it adds the
dnl appropriate library to `LIBS'.
dnl
dnl This is particularly handy under DIREIX: if you link with
dnl `-lnsl' then you get non-NIS-aware versions of getpwnam and
dnl so on, which is clearly a Bad Thing.
dnl
dnl Modified: by Evgeny Stambulchik to add (found) libraries to `LIBS'
dnl *only* if `IF-FOUND' is absent. As well, if no additional
dnl library is needed for `FUNC', `mdw_cv_lib_$1' sets to "".
AC_DEFUN(mdw_CHECK_MANYLIBS,
[AC_CACHE_CHECK([for library containing $1], [mdw_cv_lib_$1],
[mdw_save_LIBS="$LIBS"
mdw_cv_lib_$1="no"
AC_TRY_LINK(,[$1()], [mdw_cv_lib_$1="none required"])
test "$mdw_cv_lib_$1" = "no" && for i in $2; do
LIBS="-l$i $mdw_save_LIBS"
AC_TRY_LINK(,[$1()],
[mdw_cv_lib_$1="-l$i"
break])
done
LIBS="$mdw_save_LIBS"])
if test "$mdw_cv_lib_$1" != "no"; then
if test "x$3" != "x"; then
test "$mdw_cv_lib_$1" = "none required" && mdw_cv_lib_$1=""
$3
else
test "$mdw_cv_lib_$1" = "none required" || LIBS="$mdw_cv_lib_$1 $LIBS"
fi
else :
$4
fi])
dnl ACX_CHECK_MOTIF
dnl --------------
AC_DEFUN(ACX_CHECK_MOTIF,
[
AC_REQUIRE([AC_PATH_XTRA])
AC_ARG_WITH(motif_library,
[ --with-motif-library=OBJ use OBJ as Motif library [[-lXm]]],
motif_library="$withval")
if test "x$motif_library" = "x"
then
motif_library=-lXm
fi
ACX_SAVE_STATE
AC_CACHE_CHECK([for a Motif >= $1 compatible API], acx_cv_motif,
AC_CACHE_VAL(acx_cv_motif_library, acx_cv_motif_library=$motif_library)
LIBS="$acx_cv_motif_library $GUI_LIBS"
CFLAGS="$X_CFLAGS $CFLAGS"
CPPFLAGS="$X_CFLAGS $CPPFLAGS"
LDFLAGS="$X_LIBS $LDFLAGS"
AC_TRY_RUN([
#include <Xm/XmAll.h>
int main(void) {
int vlibn, vincn;
vincn = XmVersion;
XmRegisterConverters();
vlibn = xmUseVersion;
if (vincn < [$1]) {
exit(1);
}
if (vincn != vlibn) {
exit(2);
}
exit(0);
}
],
acx_cv_motif="yes",
acx_cv_motif="no",
acx_cv_motif="no"
)
)
if test "$acx_cv_motif" = "yes"
then
AC_DEFINE(HAVE_MOTIF)
MOTIF_LIB="$acx_cv_motif_library"
$2
dnl **** Check whether Motif is actually Lesstif
ICE_CHECK_LESSTIF
dnl **** Check whether _XmVersionString[] can be referred to
ACX_CHECK_XMVERSIONSTRING
else
MOTIF_LIB=
$3
fi
ACX_RESTORE_STATE
])dnl
dnl ICE_CHECK_LESSTIF
dnl -----------------
dnl
dnl Define `HAVE_LESSTIF' if the Motif library is actually a LessTif library
dnl
AC_DEFUN(ICE_CHECK_LESSTIF,
[
AC_MSG_CHECKING(whether the Motif library is actually a LessTif library)
AC_CACHE_VAL(ice_cv_have_lesstif,
AC_EGREP_CPP(yes,
[#include <Xm/Xm.h>
#ifdef LesstifVersion
yes
#endif
], ice_cv_have_lesstif=yes, ice_cv_have_lesstif=no))
AC_MSG_RESULT($ice_cv_have_lesstif)
if test "$ice_cv_have_lesstif" = yes; then
AC_DEFINE(HAVE_LESSTIF)
fi
])dnl
dnl ACX_CHECK_XMVERSIONSTRING
dnl --------------
AC_DEFUN(ACX_CHECK_XMVERSIONSTRING,
[
AC_CACHE_CHECK([whether _XmVersionString[] can be referred to],
acx_cv__xmversionstring,
AC_TRY_LINK([#include <stdio.h>],
[extern char _XmVersionString[[]]; printf("%s\n", _XmVersionString);],
[acx_cv__xmversionstring="yes"],
[acx_cv__xmversionstring="no"]
)
)
if test "$acx_cv__xmversionstring" = "yes"
then
AC_DEFINE(HAVE__XMVERSIONSTRING)
$1
else
:
$2
fi
])dnl
dnl ACX_CHECK_T1LIB
dnl --------------
AC_DEFUN(ACX_CHECK_T1LIB,
[
AC_CACHE_CHECK([for T1lib >= $1], acx_cv_t1lib,
ACX_SAVE_STATE
LIBS="-lt1 -lm $LIBS"
AC_TRY_RUN([
#include <string.h>
#include <t1lib.h>
int main(void) {
char *vlib;
vlib = T1_GetLibIdent();
if (strcmp(vlib, "[$1]") < 0) {
exit(1);
}
exit(0);
}
],
acx_cv_t1lib="yes",
acx_cv_t1lib="no",
acx_cv_t1lib="no"
)
ACX_RESTORE_STATE
)
if test "$acx_cv_t1lib" = "yes"
then
T1_LIB="-lt1"
$2
else
T1_LIB=
$3
fi
])dnl
dnl ACX_CHECK_EXPAT
dnl --------------
AC_DEFUN(ACX_CHECK_EXPAT,
[
AC_CACHE_CHECK([for Expat >= $1], acx_cv_expat,
ACX_SAVE_STATE
LIBS="-lexpat $LIBS"
AC_TRY_RUN([
#include <string.h>
#include <expat.h>
int main(void) {
char *vlib;
vlib = XML_ExpatVersion();
if (strcmp(vlib, "expat_[$1]") < 0) {
exit(1);
}
exit(0);
}
],
acx_cv_expat="yes",
acx_cv_expat="no",
acx_cv_expat="no"
)
ACX_RESTORE_STATE
)
if test "$acx_cv_expat" = "yes"
then
EXPAT_LIB="-lexpat"
$2
else
EXPAT_LIB=
$3
fi
])dnl
dnl ACX_CHECK_ZLIB
dnl --------------
AC_DEFUN(ACX_CHECK_ZLIB,
[
AC_ARG_WITH(zlib_library,
[ --with-zlib-library=OBJ use OBJ as ZLIB library [[-lz]]],
zlib_library="$withval")
if test "x$zlib_library" = "x"
then
zlib_library=-lz
fi
AC_CACHE_CHECK([for zlib >= $1], acx_cv_zlib,
AC_CACHE_VAL(acx_cv_zlib_library, acx_cv_zlib_library=$zlib_library)
ACX_SAVE_STATE
LIBS="$acx_cv_zlib_library $LIBS"
AC_TRY_RUN([
#include <string.h>
#include <zlib.h>
int main(void) {
char *vlib, *vinc;
vlib = zlibVersion();
vinc = ZLIB_VERSION;
if (strcmp(vinc, "[$1]") < 0) {
exit(1);
}
if (strcmp(vinc, vlib) != 0) {
exit(2);
}
exit(0);
}
],
acx_cv_zlib="yes",
acx_cv_zlib="no",
acx_cv_zlib="no"
)
ACX_RESTORE_STATE
)
if test "$acx_cv_zlib" = "yes"
then
Z_LIB="$acx_cv_zlib_library"
$2
else
Z_LIB=
$3
fi
])dnl
dnl ACX_CHECK_JPEG
dnl --------------
AC_DEFUN(ACX_CHECK_JPEG,
[
AC_ARG_WITH(jpeg_library,
[ --with-jpeg-library=OBJ use OBJ as JPEG library [[-ljpeg]]],
jpeg_library="$withval")
if test "x$jpeg_library" = "x"
then
jpeg_library=-ljpeg
fi
AC_CACHE_CHECK([for IJG JPEG software >= $1], acx_cv_jpeg,
AC_CACHE_VAL(acx_cv_jpeg_library, acx_cv_jpeg_library=$jpeg_library)
ACX_SAVE_STATE
LIBS="$acx_cv_jpeg_library $LIBS"
AC_TRY_RUN([
#include <stdio.h>
#include <jpeglib.h>
int main(void) {
int vinc;
struct jpeg_compress_struct cinfo;
jpeg_create_compress(&cinfo);
vinc = JPEG_LIB_VERSION;
if (vinc < [$1]) {
exit(1);
}
exit(0);
}
],
acx_cv_jpeg="yes",
acx_cv_jpeg="no",
acx_cv_jpeg="no"
)
ACX_RESTORE_STATE
)
if test "$acx_cv_jpeg" = "yes"
then
JPEG_LIB=$acx_cv_jpeg_library
$2
else
JPEG_LIB=
$3
fi
])dnl
dnl ACX_CHECK_PNG
dnl --------------
AC_DEFUN(ACX_CHECK_PNG,
[
AC_ARG_WITH(png_library,
[ --with-png-library=OBJ use OBJ as PNG library [[-lpng]]],
png_library="$withval")
if test "x$png_library" = "x"
then
png_library=-lpng
fi
AC_CACHE_CHECK([for libpng >= $1], acx_cv_png,
AC_CACHE_VAL(acx_cv_png_library, acx_cv_png_library=$png_library)
ACX_SAVE_STATE
LIBS="$acx_cv_png_library $Z_LIB $LIBS"
AC_TRY_RUN([
#include <string.h>
#include <png.h>
int main(void) {
char *vlib, *vinc;
vlib = png_libpng_ver;
vinc = PNG_LIBPNG_VER_STRING;
if (strcmp(vinc, "[$1]") < 0) {
exit(1);
}
if (strcmp(vinc, vlib) != 0) {
exit(2);
}
exit(0);
}
],
acx_cv_png="yes",
acx_cv_png="no",
acx_cv_png="no"
)
ACX_RESTORE_STATE
)
if test "$acx_cv_png" = "yes"
then
PNG_LIB="$acx_cv_png_library"
$2
else
PNG_LIB=
$3
fi
])dnl
dnl ACX_CHECK_XMI
dnl --------------
AC_DEFUN(ACX_CHECK_XMI,
[
AC_SUBST(XMI_LIB)
AC_ARG_WITH(xmi_library,
[ --with-xmi-library=OBJ use OBJ as XMI library [[-lxmi]]],
xmi_library="$withval")
if test "x$xmi_library" = "x"
then
xmi_library=-lxmi
fi
AC_CACHE_CHECK([for libxmi >= $1], acx_cv_xmi,
AC_CACHE_VAL(acx_cv_xmi_library, acx_cv_xmi_library=$xmi_library)
ACX_SAVE_STATE
LIBS="$acx_cv_xmi_library $LIBS"
AC_TRY_RUN([
#include <string.h>
#include <xmi.h>
int main(void) {
char *vlib, *vinc;
vlib = mi_libxmi_ver;
vinc = MI_LIBXMI_VER_STRING;
if (strcmp(vinc, "[$1]") < 0) {
exit(1);
}
if (strcmp(vinc, vlib) != 0) {
exit(2);
}
exit(0);
}
],
acx_cv_xmi="yes",
acx_cv_xmi="no",
acx_cv_xmi="no"
)
ACX_RESTORE_STATE
)
if test "$acx_cv_xmi" = "yes"
then
AC_DEFINE(HAVE_LIBXMI)
XMI_LIB="$acx_cv_xmi_library"
$2
else
XMI_LIB=
$3
fi
])dnl
dnl ACX_CHECK_PDFLIB
dnl --------------
AC_DEFUN(ACX_CHECK_PDFLIB,
[
AC_ARG_WITH(pdf_library,
[ --with-pdf-library=OBJ use OBJ as PDFlib library [[-lpdf]]],
pdf_library="$withval")
if test "x$pdf_library" = "x"
then
pdf_library=-lpdf
fi
AC_CACHE_CHECK([for PDFlib >= $1], acx_cv_pdflib,
AC_CACHE_VAL(acx_cv_pdf_library, acx_cv_pdf_library=$pdf_library)
ACX_SAVE_STATE
LIBS="$acx_cv_pdf_library $JPEG_LIB $PNG_LIB $Z_LIB $LIBS"
AC_TRY_RUN([
#include <pdflib.h>
int main(void) {
char *vinc;
int vlibn, vincn;
vlibn = 100*PDF_get_majorversion() + PDF_get_minorversion();
vincn = 100*PDFLIB_MAJORVERSION + PDFLIB_MINORVERSION;
vinc = PDFLIB_VERSIONSTRING;
if (strcmp(vinc, "[$1]") < 0) {
exit(1);
}
if (vincn != vlibn) {
exit(2);
}
exit(0);
}
],
acx_cv_pdflib="yes",
acx_cv_pdflib="no",
acx_cv_pdflib="no"
)
ACX_RESTORE_STATE
)
if test "$acx_cv_pdflib" = "yes"
then
PDF_LIB="$acx_cv_pdf_library"
$2
else
PDF_LIB=
$3
fi
])dnl
dnl ACX_CHECK_LIBUNDO
dnl --------------
AC_DEFUN(ACX_CHECK_LIBUNDO,
[
AC_ARG_WITH(undo_library,
[ --with-undo-library=OBJ use OBJ as libUndo library [[-lundo]]],
undo_library="$withval")
if test "x$undo_library" = "x"
then
undo_library=-lundo
fi
AC_CACHE_CHECK([for libUndo API version >= $1], acx_cv_undo,
AC_CACHE_VAL(acx_cv_undo_library, acx_cv_undo_library=$undo_library)
ACX_SAVE_STATE
LIBS="$acx_cv_undo_library $LIBS"
AC_TRY_RUN([
#include <stdlib.h>
#include <stdio.h>
#include <undo.h>
int main(void) {
unsigned major, minor, revision, vlib, vinc, vrec;
sscanf("[$1]", "%u.%u.%u", &major, &minor, &revision);
vrec = 10000*major + 100*minor + revision;
undo_get_version(&major, &minor, &revision);
vlib = 10000*major + 100*minor + revision;
vinc = 10000*UNDO_MAJOR_VERSION + 100*UNDO_MINOR_VERSION + UNDO_REVISION;
if (vinc < vrec) {
exit(1);
}
if (vinc != vlib) {
exit(2);
}
exit(0);
}
],
acx_cv_undo="yes",
acx_cv_undo="no",
acx_cv_undo="no"
)
ACX_RESTORE_STATE
)
if test "$acx_cv_undo" = "yes"
then
UNDO_LIB="$acx_cv_undo_library"
$2
else
UNDO_LIB=
$3
fi
])dnl
dnl ACX_CHECK_NETCDF
dnl --------------
AC_DEFUN(ACX_CHECK_NETCDF,
[
AC_ARG_WITH(netcdf_libraries,
[ --with-netcdf-libraries=OBJ use OBJ as netCDF libraries [[-lnetcdf]]],
netcdf_libraries="$withval")
if test "x$netcdf_libraries" = "x"
then
netcdf_libraries=-lnetcdf
fi
AC_CACHE_CHECK([for netCDF API version >= $1], acx_cv_netcdf,
AC_CACHE_VAL(acx_cv_netcdf_libraries, acx_cv_netcdf_libraries=$netcdf_libraries)
ACX_SAVE_STATE
LIBS="$acx_cv_netcdf_libraries $LIBS"
AC_TRY_RUN([
#include <stdio.h>
#include <netcdf.h>
int main(void) {
char *vlib;
vlib = nc_inq_libvers();
if (strcmp(vlib, "[$1]") < 0) {
exit(1);
}
exit(0);
}
],
acx_cv_netcdf="yes",
acx_cv_netcdf="no",
acx_cv_netcdf="no"
)
ACX_RESTORE_STATE
)
if test "$acx_cv_netcdf" = "yes"
then
NETCDF_LIBS="$acx_cv_netcdf_libraries"
$2
else
NETCDF_LIBS=
$3
fi
])dnl
dnl ACX_CHECK_FFTW
dnl --------------
AC_DEFUN(ACX_CHECK_FFTW,
[
AC_ARG_WITH(fftw_library,
[ --with-fftw-library=OBJ use OBJ as FFTW library [[-lfftw]]],
fftw_library="$withval")
if test "x$fftw_library" = "x"
then
fftw_library=-lfftw
fi
AC_CACHE_CHECK([for FFTW library >= $1], acx_cv_fftw,
AC_CACHE_VAL(acx_cv_fftw_library, acx_cv_fftw_library=$fftw_library)
ACX_SAVE_STATE
LIBS="$acx_cv_fftw_library $LIBS"
AC_TRY_RUN([
#include <fftw.h>
#include <string.h>
int main(void) {
char *vlib = (char *) fftw_version;
if (strcmp(vlib, "[$1]") < 0) {
exit(1);
}
exit(0);
}
],
acx_cv_fftw="yes",
acx_cv_fftw="no",
acx_cv_fftw="no"
)
ACX_RESTORE_STATE
)
if test "$acx_cv_fftw" = "yes"
then
FFTW_LIB="$acx_cv_fftw_library"
$2
else
FFTW_LIB=
$3
fi
])dnl
dnl ACX_CHECK_XMHTML
dnl --------------
AC_DEFUN(ACX_CHECK_XMHTML,
[
AC_ARG_WITH(xmhtml_library,
[ --with-xmhtml-library=OBJ use OBJ as XmHTML library [[-lXmHTML]]],
xmhtml_library="$withval")
if test "x$xmhtml_library" = "x"
then
xmhtml_library=-lXmHTML
fi
AC_CACHE_CHECK([for XmHTML widget >= $1], acx_cv_xmhtml,
AC_CACHE_VAL(acx_cv_xmhtml_library, acx_cv_xmhtml_library=$xmhtml_library)
ACX_SAVE_STATE
LIBS="$acx_cv_xmhtml_library $JPEG_LIB $PNG_LIB $Z_LIB -lm $LIBS"
AC_TRY_RUN([
#include <XmHTML/XmHTML.h>
int main(void) {
int vlib, vinc;
vlib = XmHTMLGetVersion();
vinc = XmHTMLVersion;
if (vinc < [$1]) {
exit(1);
}
if (vinc != vlib) {
exit(2);
}
exit(0);
}
],
acx_cv_xmhtml="yes",
acx_cv_xmhtml="no",
acx_cv_xmhtml="no"
)
ACX_RESTORE_STATE
)
if test "$acx_cv_xmhtml" = "yes"
then
XMHTML_LIB="$acx_cv_xmhtml_library"
$2
else
XMHTML_LIB=
$3
fi
])dnl
dnl ACX_CHECK_XPM
dnl --------------
AC_DEFUN(ACX_CHECK_XPM,
[
AC_ARG_WITH(xpm_library,
[ --with-xpm-library=OBJ use OBJ as XPM library [[-lXpm]]],
xpm_library="$withval")
if test "x$xpm_library" = "x"
then
xpm_library=-lXpm
fi
AC_CHECK_HEADERS(xpm.h X11/xpm.h)
AC_CACHE_CHECK([for Xpm library >= $1], acx_cv_xpmlib,
AC_CACHE_VAL(acx_cv_xpm_library, acx_cv_xpm_library=$xpm_library)
ACX_SAVE_STATE
LIBS="$acx_cv_xpm_library $GUI_LIBS $LIBS"
CFLAGS="$X_CFLAGS $CFLAGS"
CPPFLAGS="$X_CFLAGS $CPPFLAGS"
LDFLAGS="$X_LIBS $LDFLAGS"
AC_TRY_RUN([
#if defined(HAVE_XPM_H)
# include <xpm.h>
#else
# include <X11/xpm.h>
#endif
int main(void) {
int vlibn, vincn;
vincn = XpmIncludeVersion;
vlibn = XpmLibraryVersion();
if (vincn < [$1]) {
exit(1);
}
if (vincn != vlibn) {
exit(2);
}
exit(0);
}
],
acx_cv_xpmlib="yes",
acx_cv_xpmlib="no",
acx_cv_xpmlib="no"
)
ACX_RESTORE_STATE
)
if test "$acx_cv_xpmlib" = "yes"
then
XPM_LIB="$acx_cv_xpm_library"
$2
else
XPM_LIB=
$3
fi
])dnl
dnl ACX_CHECK_CUPS
dnl --------------
AC_DEFUN(ACX_CHECK_CUPS,
[
AC_PATH_PROG(CUPS_CONFIG, cups-config)
if test "x$CUPS_CONFIG" != x; then
CUPS_CFLAGS="`$CUPS_CONFIG --cflags`"
CUPS_LIBS="`$CUPS_CONFIG --libs`"
$1
else
CUPS_CFLAGS=
CUPS_LIBS=
$2
fi
])dnl
dnl ACX_CHECK_GSL
dnl --------------
AC_DEFUN(ACX_CHECK_GSL,
[
AC_PATH_PROG(GSL_CONFIG, gsl-config)
if test "x$GSL_CONFIG" != x; then
GSL_CFLAGS="`$GSL_CONFIG --cflags`"
GSL_LIBS="`$GSL_CONFIG --libs`"
$1
else
GSL_CFLAGS=
GSL_LIBS=
$2
fi
])dnl
|