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 1209 1210 1211 1212 1213 1214 1215 1216 1217
|
dnl
dnl Main authors:
dnl Guido Tack <tack@gecode.org>
dnl
dnl Copyright:
dnl Guido Tack, 2004, 2005
dnl
dnl Last modified:
dnl $Date: 2010-06-17 16:07:40 +0200 (Thu, 17 Jun 2010) $
dnl by $Author: tack $
dnl $Revision: 11085 $
dnl
dnl This file is part of Gecode, the generic constraint
dnl development environment:
dnl http://www.gecode.org
dnl
dnl Permission is hereby granted, free of charge, to any person obtaining
dnl a copy of this software and associated documentation files (the
dnl "Software"), to deal in the Software without restriction, including
dnl without limitation the rights to use, copy, modify, merge, publish,
dnl distribute, sublicense, and/or sell copies of the Software, and to
dnl permit persons to whom the Software is furnished to do so, subject to
dnl the following conditions:
dnl
dnl The above copyright notice and this permission notice shall be
dnl included in all copies or substantial portions of the Software.
dnl
dnl THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
dnl EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
dnl MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
dnl NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
dnl LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
dnl OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
dnl WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
dnl
dnl
AC_DEFUN([AC_GECODE_GET_OS],
[AC_ARG_WITH([host-os],
AC_HELP_STRING([--with-host-os],
[Override operating system test. Valid values are Linux, Darwin, and Windows.]))
AC_MSG_CHECKING([for the host operating system])
if test "${with_host_os:-no}" = "no"; then
guess_host_os=$(uname -s 2>/dev/null)
else
guess_host_os=${with_host_os}
fi
dnl Try to find out operating system
case ${guess_host_os} in
GNU/kFreeBSD|*inux*)
host_os=linux
AC_MSG_RESULT([Linux])
;;
*arwin*)
host_os=darwin
AC_MSG_RESULT([Darwin])
;;
CYGWIN*|*indows*)
host_os=windows
AC_MSG_RESULT([Windows])
;;
*)
AC_MSG_ERROR([Host OS not supported.])
;;
esac])
dnl Macros:
dnl AC_GECODE_ADD_TO_CXXFLAGS ([FLAG...])
dnl AC_GECODE_ADD_TO_GLDFLAGS ([FLAG...])
dnl
dnl Description:
dnl Add the flags to the corresponding variables
dnl
dnl Author:
dnl Marco Kuhlmann <kuhlmann@ps.uni-sb.de>
dnl
AC_DEFUN([AC_GECODE_ADD_TO_CXXFLAGS],
[CXXFLAGS="$1${CXXFLAGS:+ }${CXXFLAGS}"])
AC_DEFUN([AC_GECODE_ADD_TO_COMPILERFLAGS],
[CFLAGS="$1${CFLAGS:+ }${CFLAGS}"
CXXFLAGS="$1${CXXFLAGS:+ }${CXXFLAGS}"])
AC_DEFUN([AC_GECODE_ADD_TO_CFLAGS],
[CFLAGS="$1${CFLAGS:+ }${CFLAGS}"])
AC_DEFUN([AC_GECODE_ADD_TO_GLDFLAGS],
[GLDFLAGS="$1${GLDFLAGS:+ }${GLDFLAGS}"])
AC_DEFUN([AC_GECODE_ADD_TO_DLLFLAGS],
[DLLFLAGS="$1${DLLFLAGS:+ }${DLLFLAGS}"])
dnl Macro:
dnl AC_GECODE_CHECK_MS_CL_FLAG (FLAG, ACTION-IF-TRUE,
dnl ACTION-IF-FALSE)
dnl
dnl Description:
dnl Check whether FLAG is supported by the Microsoft C++ compiler. Run
dnl the shell commands ACTION-IF-TRUE if it is, ACTION-IF-FALSE
dnl otherwise.
dnl
dnl Authors:
dnl Guido Tack <tack@gecode.org>
dnl
AC_DEFUN([AC_GECODE_CHECK_MS_CL_FLAG],
[AC_MSG_CHECKING(whether ${CXX} accepts [$1])
if ${CXX} $1 2>&1 | grep "ignoring unknown option" -q; then
AC_MSG_RESULT([no])
ifelse([$3], , :, [$3])
else
AC_MSG_RESULT([yes])
ifelse([$2], , :, [$2])
fi])
dnl Macro:
dnl AC_GECODE_CHECK_GXX_FLAG (FLAG, ACTION-IF-TRUE,
dnl ACTION-IF-FALSE)
dnl
dnl Description:
dnl Check whether FLAG is supported by the Gnu C++ compiler. Run
dnl the shell commands ACTION-IF-TRUE if it is, ACTION-IF-FALSE
dnl otherwise.
dnl
dnl Authors:
dnl Guido Tack <tack@gecode.org>
dnl
AC_DEFUN([AC_GECODE_CHECK_GXX_FLAG],
[AC_MSG_CHECKING(whether ${CXX} accepts [$1])
ac_gecode_save_CXXFLAGS="${CXXFLAGS}"
CXXFLAGS="$1${CXXFLAGS:+ }${CXXFLAGS} -Werror"
AC_LANG_PUSH(C++)
AC_COMPILE_IFELSE(AC_LANG_PROGRAM(),
[CXXFLAGS="${ac_gecode_save_CXXFLAGS}"
AC_MSG_RESULT([yes])
ifelse([$2], , :, [$2])],
[CXXFLAGS="${ac_gecode_save_CXXFLAGS}"
AC_MSG_RESULT([no])
ifelse([$3], , :, [$3])])
AC_LANG_POP])
dnl Macro:
dnl AC_GECODE_CHECK_GCC_FLAG (FLAG, ACTION-IF-TRUE,
dnl ACTION-IF-FALSE)
dnl
dnl Description:
dnl Check whether FLAG is supported by the Gnu C compiler. Run
dnl the shell commands ACTION-IF-TRUE if it is, ACTION-IF-FALSE
dnl otherwise.
dnl
dnl Authors:
dnl Guido Tack <tack@gecode.org>
dnl
AC_DEFUN([AC_GECODE_CHECK_GCC_FLAG],[
AC_MSG_CHECKING(whether ${CC} accepts [$1])
ac_gecode_save_CFLAGS="${CFLAGS}"
CFLAGS="$1${CFLAGS:+ }${CFLAGS} -Werror"
AC_LANG_PUSH(C)
AC_COMPILE_IFELSE(AC_LANG_PROGRAM(),
[CFLAGS="${ac_gecode_save_CFLAGS}"
AC_MSG_RESULT([yes])
ifelse([$2], , :, [$2])],
[CFLAGS="${ac_gecode_save_CFLAGS}"
AC_MSG_RESULT([no])
ifelse([$3], , :, [$3])])
AC_LANG_POP])
dnl Macro:
dnl AC_GECODE_CHECK_CXXFLAG (FLAG, [ACTION-IF-TRUE,
dnl [ACTION-IF-FALSE]])
dnl
dnl Description:
dnl Check whether FLAG is supported by the C++ compiler. Run
dnl the shell commands ACTION-IF-TRUE if it is, ACTION-IF-FALSE
dnl otherwise. If ACTION-IF-TRUE is not given, append FLAG to
dnl the contents of $CXXFLAGS.
dnl
dnl Authors:
dnl Leif Kornstaedt <kornstae@ps.uni-sb.de>
dnl Marco Kuhlmann <kuhlmann@ps.uni-sb.de>
dnl
AC_DEFUN([AC_GECODE_CHECK_CXXFLAG],
[if test "${ac_cv_cxx_compiler_vendor}" = "microsoft"; then
AC_GECODE_CHECK_MS_CL_FLAG($1,[
ifelse([$2], , CXXFLAGS="$1${CXXFLAGS:+ }${CXXFLAGS}", [$2])],
[ifelse([$3], , :, [$3])])
else
AC_GECODE_CHECK_GXX_FLAG($1,[
ifelse([$2], , CXXFLAGS="$1${CXXFLAGS:+ }${CXXFLAGS}", [$2])],
[ifelse([$3], , :, [$3])])
fi
])dnl
AC_DEFUN([AC_GECODE_CHECK_COMPILERFLAG],
[
if test "${ac_cv_cxx_compiler_vendor}" = "microsoft"; then
AC_GECODE_CHECK_MS_CL_FLAG($1,[
CXXFLAGS="$1${CXXFLAGS:+ }${CXXFLAGS}"
CFLAGS="$1${CFLAGS:+ }${CFLAGS}"],[])
else
AC_GECODE_CHECK_GXX_FLAG($1,[
CXXFLAGS="$1${CXXFLAGS:+ }${CXXFLAGS}"],[])
AC_GECODE_CHECK_GCC_FLAG($1,[
CFLAGS="$1${CFLAGS:+ }${CFLAGS}"],[])
fi])dnl
dnl Macro:
dnl AC_GECODE_CHECK_GLDFLAG (FLAG, [ACTION-IF-TRUE,
dnl [ACTION-IF-FALSE]])
dnl
dnl Description:
dnl Check whether FLAG is supported by the linker. Run the
dnl shell commands ACTION-IF-TRUE if it is, ACTION-IF-FALSE
dnl otherwise. If ACTION-IF-TRUE is not given, append FLAG to
dnl the contents of $GLDFLAGS.
dnl
dnl Authors:
dnl Leif Kornstaedt <kornstae@ps.uni-sb.de>
dnl Marco Kuhlmann <kuhlmann@ps.uni-sb.de>
dnl
AC_DEFUN([AC_GECODE_CHECK_GLDFLAG],
[AC_REQUIRE([AC_PROG_CXX])
AC_MSG_CHECKING(whether the linker accepts [$1])
ac_gecode_save_GLDFLAGS="${GLDFLAGS}"
GLDFLAGS="$1${GLDFLAGS:+ }${GLDFLAGS}"
AC_LINK_IFELSE(AC_LANG_PROGRAM(),
[AC_MSG_RESULT(yes)
GLDFLAGS="$ac_gecode_save_GLDFLAGS"
ifelse([$2], , [GLDFLAGS="$1${GLDFLAGS:+ }${GLDFLAGS}"], [$2])],
[AC_MSG_RESULT(no)
GLDFLAGS="$ac_gecode_save_GLDFLAGS"
ifelse([$3], , :, [$3])])])dnl
dnl @synopsis _AC_C_IFDEF(MACRO-NAME, ACTION-IF-DEF, ACTION-IF-NOT-DEF)
dnl
dnl Check for the definition of macro MACRO-NAME using the current
dnl language's compiler.
dnl
dnl @category Misc
dnl @author Ludovic Court�s <ludo@chbouib.org>
dnl @version 2004-09-07
dnl @license AllPermissive
AC_DEFUN([_AC_C_IFDEF],
[AC_COMPILE_IFELSE([#ifndef $1
# error "Macro $1 is undefined!"
/* For some compilers (eg. SGI's CC), #error is not
enough... */
please, do fail
#endif],
[$2], [$3])])
dnl @synopsis AC_CXX_COMPILER_VENDOR(VENDOR-NAME)
dnl
dnl Set VENDOR-NAME to the lower-case name of the compiler vendor or `unknown'
dnl if the compiler's vendor is unknown.
dnl
dnl @version 20040907
dnl @author Ludovic Court�s <ludo@chbouib.org>
dnl Modified by G. Tack to recognize only those compilers we need.
AC_DEFUN([AC_ADD_DLL_ARCH],
[ac_gecode_library_architecture="-$1${ac_gecode_library_architecture}"])
AC_DEFUN([AC_CXX_COMPILER_VENDOR],
[AC_ARG_WITH([compiler-vendor],
AC_HELP_STRING([--with-compiler-vendor],
[Override compiler test. Valid values are gnu, intel, and microsoft.]))
AC_REQUIRE([AC_PROG_CXX])
AC_REQUIRE([AC_PROG_CXXCPP])
if test "${with_compiler_vendor:-no}" = "no"; then
AC_LANG_PUSH([C++])
dnl GNU C++
_AC_C_IFDEF([__GNUG__],
[ac_cv_cxx_compiler_vendor=gnu],
[_AC_C_IFDEF([__INTEL_COMPILER],
[ac_cv_cxx_compiler_vendor=intel
_AC_C_IFDEF([_M_IX86],
[AC_ADD_DLL_ARCH([x86])],[])
_AC_C_IFDEF([_M_IA64],
[AC_ADD_DLL_ARCH([ia64])],[])
_AC_C_IFDEF([_M_X64],
[AC_ADD_DLL_ARCH([x64])],[])],
[dnl Note: We are using the C compiler because VC++ doesn't
dnl recognize `.cc'(which is used by `configure') as a C++ file
dnl extension and requires `/TP' to be passed.
AC_LANG_PUSH([C])
_AC_C_IFDEF([_MSC_VER],
[ac_cv_cxx_compiler_vendor=microsoft
_AC_C_IFDEF([_M_IX86],
[AC_ADD_DLL_ARCH([x86])],[])
_AC_C_IFDEF([_M_IA64],
[AC_ADD_DLL_ARCH([ia64])],[])
_AC_C_IFDEF([_M_X64],
[AC_ADD_DLL_ARCH([x64])],[])],
[ac_cv_cxx_compiler_vendor=unknown])
AC_LANG_POP()])])
AC_LANG_POP()
else
ac_cv_cxx_compiler_vendor=${with_compiler_vendor}
fi
$1="$ac_cv_cxx_compiler_vendor"])dnl
AC_DEFUN([AC_CHECK_GCC_VERSION],
[
AC_LANG_PUSH(C)
AC_COMPILE_IFELSE(
[#if __GNUC__ < $1 || (__GNUC__ == $1 && __GNUC_MINOR__ < $2)
#error Version too old
really, the version is too old
#endif],[],
[AC_MSG_ERROR([Your version of gcc is too old. You need at least version $1.$2.])]
)
AC_LANG_POP()
AC_LANG_PUSH(C++)
AC_COMPILE_IFELSE(
[#if __GNUC__ < $1 || (__GNUC__ == $1 && __GNUC_MINOR__ < $2)
#error Version too old
really, the version is too old
#endif],[],
[AC_MSG_ERROR([Your version of g++ is too old. You need at least version $1.$2.])]
)
AC_LANG_POP()
])
dnl Macro:
dnl AC_GECODE_VTI (vartype, help-string, default, vtidef,
dnl [ACTION-IF-ENABLED], [ACTION-IF-DISABLED])
dnl
dnl Description:
dnl Introduce --enable-vartype-vars configure switch. The help-string
dnl is used for the configure --help output.
dnl default is either yes or no and says whether this option should be
dnl enabled by default. ACTION-IF-ENABLED can be used to perform additional
dnl actions in case this variable type is enabled.
dnl
dnl Authors:
dnl Guido Tack <tack@gecode.org>
AC_DEFUN([AC_GECODE_ADD_VTI],
[AC_DEFINE(GECODE_HAS_$1_VARS, [], [Whether to build $1 variables])])
AC_DEFUN([AC_GECODE_VIS],[
AC_ARG_WITH([vis],
AC_HELP_STRING([--with-vis],
[additional variable implementation specifications]))
if test "${with_vis:-no}" != "no"; then
with_vis=${with_vis//,/ }
ac_gecode_vis="${with_vis}${ac_gecode_vis:+ }${ac_gecode_vis}"
fi])
AC_DEFUN([AC_GECODE_VTI],
[
AC_ARG_ENABLE([$1-vars],
AC_HELP_STRING([--enable-$1-vars],[build $2 @<:@default=$3@:>@]))
ac_gecode_vis="$4${ac_gecode_vis:+ }${ac_gecode_vis}"
AC_MSG_CHECKING(whether to build the $1 variables library)
if test "${enable_$1_vars:-$3}" = "yes"; then
AC_MSG_RESULT(yes)
enable_$1_vars="yes";
$5
AC_GECODE_ADD_VTI(translit($1,`a-z', `A-Z'))
else
enable_$1_vars="no";
$6
AC_MSG_RESULT(no)
fi
AC_SUBST(enable_$1_vars, ${enable_$1_vars})
])
dnl Macro:
dnl AC_GECODE_ENABLE_MODULE (module, default, help-string,
dnl [ACTION-IF-ENABLED])
dnl
dnl Description:
dnl Produces a configure switch --enable-<module>.
dnl
dnl Authors:
dnl Guido Tack <tack@gecode.org>
AC_DEFUN([AC_GECODE_ENABLE_MODULE],
[
AC_ARG_ENABLE([$1],
AC_HELP_STRING([--enable-$1],
[$3 @<:@default=$2@:>@]))
AC_MSG_CHECKING(whether to build $1)
if test "${enable_$1:-$2}" = "yes"; then
enable_$1="yes";
AC_MSG_RESULT(yes)
$4
else
enable_$1="no";
AC_MSG_RESULT(no)
fi
AC_SUBST(enable_$1, ${enable_$1})])
dnl Description:
dnl Makes an enable check for a contrib
dnl The third argument can be used for dependency checking
dnl
dnl Authors:
dnl Gr�goire Dooms <dooms@info.ucl.ac.be>
AC_DEFUN([AC_GECODE_ENABLE_CONTRIB],
[
AC_ARG_ENABLE([$1],
AC_HELP_STRING([--enable-$1],[build $2 @<:@default=yes@:>@]))
AC_MSG_CHECKING(whether to build the $1 contrib library)
if test "${enable_$1:-yes}" = "yes"; then
AC_MSG_RESULT(yes)
enable_$1="yes";
$3
else
enable_$1="no";
AC_MSG_RESULT(no)
fi
AC_SUBST(enable_$1, ${enable_$1})])
AC_DEFUN([AC_GECODE_STATICLIBS],
[if test "${host_os}" = "windows" -a \
"${ac_gecode_compiler_vendor}" = "gnu"; then
enable_static="yes"
enable_shared="no"
fi
AC_ARG_ENABLE([static],
AC_HELP_STRING([--enable-static],
[build static libraries @<:@default=no@:>@]))
AC_MSG_CHECKING(whether to build static libraries)
if test "${enable_static:-no}" = "yes"; then
AC_DEFINE([GECODE_STATIC_LIBS],[],
[Whether we are compiling static libraries])
AC_SUBST(BUILDSTATIC, "yes")
AC_MSG_RESULT(yes)
if test "${host_os}" != "darwin"; then
AC_GECODE_CHECK_GLDFLAG("-static")
fi
enable_shared=no
else
AC_SUBST(BUILDSTATIC, "no")
enable_shared=yes
AC_MSG_RESULT(no)
fi
AC_ARG_ENABLE([shared],
AC_HELP_STRING([--enable-shared],
[build shared libraries @<:@default=yes@:>@]))
AC_MSG_CHECKING(whether to build shared libraries)
if test "${enable_shared:-yes}" = "yes"; then
AC_SUBST(BUILDDLL, "yes")
AC_MSG_RESULT(yes)
else
AC_SUBST(BUILDDLL, "no")
if test "${enable_static:-no}" = "no"; then
AC_MSG_ERROR([One of --enable-static or --enable-shared must be given])
fi
AC_MSG_RESULT(no)
fi
])
AC_DEFUN([AC_GECODE_DEBUG],
[AC_ARG_ENABLE([debug],
AC_HELP_STRING([--enable-debug],
[build with assertions @<:@default=no@:>@]))
AC_MSG_CHECKING(whether to build with debug symbols and assertions)
if test "${enable_debug:-no}" = "yes"; then
AC_ADD_DLL_ARCH([d])
AC_SUBST(DEBUG_BUILD, [yes])
AC_MSG_RESULT(yes)
else
AC_ADD_DLL_ARCH([r])
AC_SUBST(DEBUG_BUILD, [no])
AC_MSG_RESULT(no)
AC_GECODE_ADD_TO_COMPILERFLAGS(-DNDEBUG)
fi])
AC_DEFUN([AC_GECODE_LEAK_DEBUG],
[AC_ARG_ENABLE([leak-debug],
AC_HELP_STRING([--enable-leak-debug],
[build with support for finding memory leaks @<:@default=no@:>@]))
AC_MSG_CHECKING(whether to build with support for finding memory leaks)
if test "${enable_leak_debug:-no}" = "yes"; then
AC_MSG_RESULT(yes)
AC_CHECK_DECL(mtrace,
[AC_DEFINE([GECODE_HAS_MTRACE],[],
[Whether we have mtrace for memory leak debugging])],
[AC_MSG_ERROR(mtrace not available.)],
[[#include <mcheck.h>]])
else
AC_MSG_RESULT(no)
fi])
AC_DEFUN([AC_GECODE_AUDIT],
[AC_ARG_ENABLE([audit],
AC_HELP_STRING([--enable-audit],
[build with auditing code @<:@default=no@:>@]))
AC_MSG_CHECKING(whether to build with auditing code)
if test "${enable_audit:-no}" = "yes"; then
AC_DEFINE([GECODE_AUDIT],[],
[Whether to include audit code])
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi])
AC_DEFUN([AC_GECODE_PROFILE],
[AC_ARG_ENABLE([profile],
AC_HELP_STRING([--enable-profile],
[build with profiling information @<:@default=no@:>@]))
AC_MSG_CHECKING(whether to build with profiling information)
if test "${enable_profile:-no}" = "yes"; then
AC_MSG_RESULT(yes)
AC_GECODE_CHECK_CXXFLAG(-pg,
AC_GECODE_ADD_TO_COMPILERFLAGS(-pg),
AC_GECODE_CHECK_COMPILERFLAG(-p))
else
AC_MSG_RESULT(no)
fi])
AC_DEFUN([AC_GECODE_GCOV],
[AC_ARG_ENABLE([gcov],
AC_HELP_STRING([--enable-gcov],
[build with gcov support @<:@default=no@:>@]))
AC_MSG_CHECKING(whether to build with gcov support)
if test "${enable_gcov:-no}" = "yes"; then
AC_MSG_RESULT(yes)
AC_GECODE_CHECK_COMPILERFLAG(-fprofile-arcs)
AC_GECODE_CHECK_COMPILERFLAG(-ftest-coverage)
AC_GECODE_ADD_TO_DLLFLAGS("-fprofile-arcs")
AC_GECODE_ADD_TO_DLLFLAGS("-ftest-coverage")
else
AC_MSG_RESULT(no)
fi])
# Test for platform specific behaviour of arithmetic
AC_DEFUN([AC_GECODE_CHECK_ARITH],
[AC_LANG_PUSH([C])
AC_CHECK_SIZEOF(int)
AC_MSG_CHECKING([if int has at least 32 bit])
AC_TRY_COMPILE([],
[
#if SIZEOF_INT>=4
#else
blablub
#endif
],
[AC_MSG_RESULT(yes)],
[AC_MSG_ERROR([Gecode needs at least 32 bit integers.])])
AC_MSG_CHECKING([if doubles have a big enough mantissa])
AC_TRY_COMPILE([#include <float.h>],
[
#if DBL_MANT_DIG>=53
#else
blablub
#endif
],
[AC_MSG_RESULT(yes)],
[AC_MSG_ERROR([Gecode needs a double mantissa of at least 53 bits.])])
AC_LANG_POP([C])])
AC_DEFUN([AC_GECODE_GCC_GENERAL_SWITCHES],
[AC_GECODE_CHECK_COMPILERFLAG([-fPIC])
AC_GECODE_CHECK_COMPILERFLAG([-Wextra])
AC_GECODE_CHECK_COMPILERFLAG([-Wall])
AC_GECODE_CHECK_COMPILERFLAG([-pipe])
AC_GECODE_CHECK_CXXFLAG(-ggdb,
AC_GECODE_ADD_TO_COMPILERFLAGS(-ggdb),
AC_GECODE_CHECK_COMPILERFLAG(-g))
AC_CHECK_FUNC([__builtin_ffsl],
[AC_DEFINE([GECODE_HAS_BUILTIN_FFSL],[],
[whether __builtin_ffsl is available])])
AC_SUBST(docdir, "${datadir}/doc/gecode")
dnl do not use manifest tool with gcc
AC_SUBST(MANIFEST, "@true")
dnl file extensions
AC_SUBST(SBJEXT, "s")
AC_SUBST(LIBEXT, "${DLLEXT}")
AC_SUBST(LIBPREFIX, "lib${ac_gecode_userprefix}gecode")
AC_SUBST(STATICLIBEXT, "a")
AC_SUBST(MINUSLDIR, "-L${libdir}")
AC_SUBST(LINKLIBDIR, "")
cygpathprefix=$prefix
test "x$cygpathprefix" = xNONE && cygpathprefix=$ac_default_prefix
AC_SUBST(cygpathprefix, "${cygpathprefix}")
AC_SUBST(COMPILEOBJ, "-c -o ")
AC_SUBST(COMPILESBJ, "-S -o ")
AC_SUBST(CXXIN, " ")
AC_SUBST(CCIN, " ")
AC_SUBST(EXAMPLES_EXTRA_CXXFLAGS, "")
dnl Do not install stub .lib files (required for msvc)
AC_SUBST(INSTALLLIBS, "no")
AC_SUBST(LINKPREFIX, "-l${ac_gecode_userprefix}gecode")
AC_SUBST(LINKSUFFIX, "")
dnl how to tell the compiler to output an object file
AC_SUBST(LINKOUTPUT, "-o ")
dnl how to tell the compiler to output an executable
AC_SUBST(EXEOUTPUT, "-o ")
dnl the names of the generated dlls
AC_SUBST(SUPPORT, "support")
AC_SUBST(KERNEL, "kernel")
AC_SUBST(SEARCH, "search")
AC_SUBST(INT, "int")
AC_SUBST(SET, "set")
AC_SUBST(MM, "minimodel")
AC_SUBST(SCHEDULING, "scheduling")
AC_SUBST(GRAPH, "graph")
AC_SUBST(MM, "minimodel")
AC_SUBST(GIST, "gist")
AC_SUBST(FLATZINC, "flatzinc")
AC_SUBST(DRIVER, "driver")])
AC_DEFUN([AC_GECODE_GCC_OPTIMIZED_SWITCHES],
[AC_MSG_CHECKING([if compiler supports forced inlining])
AC_LANG_PUSH([C++])
ac_gecode_save_CXXFLAGS="${CXXFLAGS}"
CXXFLAGS="$1${CXXFLAGS:+ }${CXXFLAGS} -Werror"
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([
[inline __attribute__ ((__always_inline__)) void foo(void) {}]],
[])],
[AC_MSG_RESULT(yes)
AC_DEFINE(forceinline, [inline __attribute__ ((__always_inline__))],
[How to tell the compiler to really, really inline])],
[AC_MSG_RESULT(no)
AC_DEFINE(forceinline, [inline],
[How to tell the compiler to really, really inline])])
CXXFLAGS=${ac_gecode_save_CXXFLAGS}
AC_LANG_POP([C++])
AC_GECODE_CHECK_COMPILERFLAG([-fno-strict-aliasing])])
AC_DEFUN([AC_GECODE_GCC_VISIBILITY],
[AC_ARG_ENABLE([gcc-visibility],
AC_HELP_STRING([--enable-gcc-visibility],
[use gcc visibility attributes @<:@default=yes@:>@]))
AC_MSG_CHECKING(whether to use gcc visibility attributes)
if test "${enable_gcc_visibility:-yes}" = "yes"; then
AC_MSG_RESULT(yes)
AC_GECODE_CHECK_CXXFLAG([-fvisibility=hidden],
[AC_DEFINE([GECODE_GCC_HAS_CLASS_VISIBILITY],[],
[Whether gcc understands visibility attributes])
AC_GECODE_ADD_TO_COMPILERFLAGS([-fvisibility=hidden])],
[])
else
AC_MSG_RESULT(no)
fi])
AC_DEFUN([AC_GECODE_GCC_DEBUG_SWITCHES],
[AC_DEFINE(forceinline, [inline],
[How to tell the compiler to really, really inline])
AC_GECODE_CHECK_COMPILERFLAG([-fno-inline-functions])
AC_GECODE_CHECK_COMPILERFLAG([-fimplement-inlines])])
AC_DEFUN([AC_GECODE_NO_BUILDFLAGS],
[AC_SUBST(GECODE_BUILD_SUPPORT_FLAG, "")
AC_SUBST(GECODE_BUILD_KERNEL_FLAG, "")
AC_SUBST(GECODE_BUILD_SEARCH_FLAG, "")
AC_SUBST(GECODE_BUILD_INT_FLAG, "")
AC_SUBST(GECODE_BUILD_SET_FLAG, "")
AC_SUBST(GECODE_BUILD_MINIMODEL_FLAG, "")
AC_SUBST(GECODE_BUILD_SCHEDULING_FLAG, "")
AC_SUBST(GECODE_BUILD_GRAPH_FLAG, "")
AC_SUBST(GECODE_BUILD_GIST_FLAG, "")
AC_SUBST(GECODE_BUILD_FLATZINC_FLAG, "")
AC_SUBST(GECODE_BUILD_DRIVER_FLAG, "")])
AC_DEFUN([AC_GECODE_BUILDFLAGS],
[AC_SUBST(GECODE_BUILD_SUPPORT_FLAG, "-DGECODE_BUILD_SUPPORT")
AC_SUBST(GECODE_BUILD_KERNEL_FLAG, "-DGECODE_BUILD_KERNEL")
AC_SUBST(GECODE_BUILD_SEARCH_FLAG, "-DGECODE_BUILD_SEARCH")
AC_SUBST(GECODE_BUILD_INT_FLAG, "-DGECODE_BUILD_INT")
AC_SUBST(GECODE_BUILD_SET_FLAG, "-DGECODE_BUILD_SET")
AC_SUBST(GECODE_BUILD_MINIMODEL_FLAG, "-DGECODE_BUILD_MINIMODEL")
AC_SUBST(GECODE_BUILD_SCHEDULING_FLAG, "-DGECODE_BUILD_SCHEDULING")
AC_SUBST(GECODE_BUILD_GRAPH_FLAG, "-DGECODE_BUILD_GRAPH")
AC_SUBST(GECODE_BUILD_GIST_FLAG, "-DGECODE_BUILD_GIST")
AC_SUBST(GECODE_BUILD_FLATZINC_FLAG, "-DGECODE_BUILD_FLATZINC")
AC_SUBST(GECODE_BUILD_DRIVER_FLAG, "-DGECODE_BUILD_DRIVER")])
AC_DEFUN([AC_GECODE_UNIX_PATHS],
[AC_SUBST(DLLPATH, [-L.])
dnl flags for creating dlls
case $host_os in
darwin*)
AC_SUBST(need_soname, "yes")
AC_GECODE_ADD_TO_DLLFLAGS([-Wl,-single_module])
AC_GECODE_ADD_TO_DLLFLAGS("-dynamiclib")
AC_SUBST(DLLEXT, "${ac_gecode_soversion}.0.dylib")
AC_SUBST(SOSUFFIX, ".${ac_gecode_soversion}.dylib")
AC_SUBST(SOLINKSUFFIX, ".dylib")
AC_SUBST(sharedlibdir, "${libdir}")
AC_SUBST(WLSONAME, "-compatibility_version ${ac_gecode_soversion}.0 -current_version ${ac_gecode_soversion}.0 -install_name ${libdir}/")
AC_GECODE_NO_BUILDFLAGS
;;
windows*)
AC_SUBST(need_soname, "no")
if test "${enable_static:-no}" = "yes" -a \
"${enable_shared:-yes}" = "yes"; then
AC_MSG_ERROR([Only either static or shared libraries can be built.])
fi
AC_GECODE_ADD_TO_DLLFLAGS("-shared")
AC_SUBST(DLLEXT, "dll")
AC_SUBST(SOSUFFIX, "")
AC_SUBST(SOLINKSUFFIX, "")
AC_SUBST(WLSONAME, "")
if test "${enable_static:-no}" = "no"; then
AC_SUBST(sharedlibdir, "${bindir}")
else
AC_SUBST(sharedlibdir, "${libdir}")
fi
AC_GECODE_BUILDFLAGS
;;
*)
AC_SUBST(need_soname, "yes")
AC_GECODE_ADD_TO_DLLFLAGS("-shared")
AC_SUBST(DLLEXT, "so.${ac_gecode_soversion}.0")
AC_SUBST(SOSUFFIX, ".so.${ac_gecode_soversion}")
AC_SUBST(SOLINKSUFFIX, ".so")
AC_SUBST(WLSONAME, ["-Wl,-soname="])
AC_SUBST(sharedlibdir, "${libdir}")
AC_GECODE_NO_BUILDFLAGS
;;
esac])
AC_DEFUN([AC_GECODE_MSVC_SWITCHES],
[dnl general compiler flags
AC_DEFINE(forceinline,[__forceinline])
AC_GECODE_ADD_TO_COMPILERFLAGS([-nologo])
AC_GECODE_ADD_TO_CFLAGS([-D_CRT_SECURE_NO_DEPRECATE])
AC_GECODE_ADD_TO_CXXFLAGS([-EHsc])
AC_DEFINE([GECODE_MEMORY_ALIGNMENT], [sizeof(void*)],
[Heap memory alignment])
if test "${enable_debug:-no}" = "no"; then
dnl compiler flags for an optimized build
AC_GECODE_ADD_TO_COMPILERFLAGS([-MD -Ox -fp:fast -GS- -wd4355])
AC_GECODE_CHECK_COMPILERFLAG([-arch:SSE2])
dnl flags for creating optimized dlls
AC_GECODE_ADD_TO_DLLFLAGS([${CXXFLAGS} -LD])
dnl linker flags
GLDFLAGS="-link -DEBUG -OPT:REF -OPT:ICF"
else
dnl compiler flags for a debug build
AC_GECODE_ADD_TO_COMPILERFLAGS([-MDd -Zi -wd4355])
dnl flags for creating debug dlls
AC_GECODE_ADD_TO_DLLFLAGS([${CXXFLAGS} -LDd])
fi
AC_SUBST(sharedlibdir, "${bindir}")
AC_SUBST(docdir, "${prefix}")
if test "${enable_static:-no}" = "yes"; then
AC_MSG_ERROR([Static linking not supported for Windows/cl.])
fi
AC_CHECK_PROG(MANIFEST, mt.exe, [found])
AC_MSG_CHECKING(whether to use manifest tool)
if cl.exe 2>&1 | grep 'Version 16\.' >/dev/null 2>&1; then
AC_MSG_RESULT(no)
AC_SUBST(MANIFEST, "@true")
elif test "${MANIFEST}x" = "x"; then
AC_MSG_RESULT(no)
AC_SUBST(MANIFEST, "@true")
else
AC_MSG_RESULT(yes)
AC_SUBST(MANIFEST, ["mt -nologo"])
fi
AC_SUBST(DLLPATH, "")
dnl file extensions
AC_SUBST(SBJEXT, "sbj")
AC_SUBST(DLLEXT, "dll")
AC_SUBST(SOSUFFIX, "")
AC_SUBST(SOLINKSUFFIX, "")
AC_SUBST(WLSONAME, "")
AC_SUBST(LIBEXT, "lib")
AC_SUBST(LIBPREFIX, "${ac_gecode_userprefix}Gecode")
AC_SUBST(LINKPREFIX, "${ac_gecode_userprefix}Gecode")
AC_SUBST(LINKSUFFIX, ".lib")
AC_SUBST(MINUSLDIR, "")
AC_SUBST(LINKLIBDIR, "${libdir}/")
cygpathprefix=$prefix
test "x$cygpathprefix" = xNONE && cygpathprefix=$ac_default_prefix
cygpathprefix=`cygpath -m ${cygpathprefix}`
AC_SUBST(cygpathprefix, "${cygpathprefix}")
AC_GECODE_BUILDFLAGS
dnl compiler options
AC_SUBST(COMPILEOBJ, "-c -Fo")
AC_SUBST(COMPILESBJ, "-c -Fa")
AC_SUBST(CXXIN, "-Tp")
AC_SUBST(CCIN, "-Tc")
AC_SUBST(EXAMPLES_EXTRA_CXXFLAGS, "")
dnl Install stub .lib files (required for msvc)
AC_SUBST(INSTALLLIBS, "yes")
dnl how to tell the compiler to output an object file
AC_SUBST(LINKOUTPUT, "-Fe")
dnl how to tell the compiler to output an executable
AC_SUBST(EXEOUTPUT, "-Fe")
dnl the names of the generated dlls
AC_SUBST(SUPPORT, "Support")
AC_SUBST(KERNEL, "Kernel")
AC_SUBST(SEARCH, "Search")
AC_SUBST(INT, "Int")
AC_SUBST(SET, "Set")
AC_SUBST(MM, "Minimodel")
AC_SUBST(SCHEDULING, "Scheduling")
AC_SUBST(GRAPH, "Graph")
AC_SUBST(GIST, "Gist")
AC_SUBST(FLATZINC, "FlatZinc")
AC_SUBST(DRIVER, "Driver")])
dnl Macro:
dnl AC_GECODE_DOC_SWITCHES
dnl
dnl Description:
dnl Produces the configure switches --enable-doc-search,
dnl --enable-doc-chm, and --enable-doc-tagfile.
dnl
dnl Authors:
dnl Guido Tack <tack@gecode.org>
AC_DEFUN([AC_GECODE_DOC_SWITCHES],
[dnl check if we can use dot for generating graphs in the documentation
AC_ARG_ENABLE([doc-dot],
AC_HELP_STRING([--enable-doc-dot],
[enable graphs in documentation @<:@default=yes@:>@]))
AC_CHECK_PROG(DOT, dot, dot)
AC_MSG_CHECKING(whether to enable graphs in the documentation)
if test "${enable_doc_dot:-yes}" = "yes"; then
if test x$DOT = x; then
if test x"${enable_doc_dot}" = x; then
AC_MSG_RESULT(no)
AC_SUBST(GECODE_DOXYGEN_DOT, NO)
else
AC_MSG_ERROR(you need the dot tool from graphviz to generate graphs in the documentation)
fi
else
AC_MSG_RESULT(yes)
AC_SUBST(GECODE_DOXYGEN_DOT, YES)
fi
else
AC_MSG_RESULT(no)
AC_SUBST(GECODE_DOXYGEN_DOT, NO)
fi
AC_ARG_ENABLE([doc-search],
AC_HELP_STRING([--enable-doc-search],
[enable documentation search engine @<:@default=no@:>@]))
AC_MSG_CHECKING(whether to enable the documentation search engine)
if test "${enable_doc_search:-no}" = "yes"; then
AC_MSG_RESULT(yes)
AC_SUBST(ENABLEDOCSEARCH, "yes")
else
AC_MSG_RESULT(no)
AC_SUBST(ENABLEDOCSEARCH, "no")
fi
AC_ARG_ENABLE([doc-tagfile],
AC_HELP_STRING([--enable-doc-tagfile],
[generate doxygen tagfile @<:@default=yes@:>@]))
AC_MSG_CHECKING(whether to generate a doxygen tagfile)
if test "${enable_doc_tagfile:-yes}" = "yes"; then
AC_MSG_RESULT(yes)
AC_SUBST(GECODE_DOXYGEN_TAGFILE, "doc/gecode-doc.tag")
else
AC_MSG_RESULT(no)
AC_SUBST(GECODE_DOXYGEN_TAGFILE, [])
fi
AC_ARG_ENABLE([doc-chm],
AC_HELP_STRING([--enable-doc-chm],
[build compressed html documentation @<:@default=yes on Windows@:>@]))
AC_MSG_CHECKING(whether to build compressed html documentation)
case $host_os in
windows*)
if test "${enable_doc_chm:-yes}" = "yes"; then
AC_MSG_RESULT(yes)
AC_SUBST(ENABLEDOCCHM, "yes")
AC_SUBST(ENABLEDOCSEARCH, "no")
else
AC_MSG_RESULT(no)
AC_SUBST(ENABLEDOCCHM, "no")
fi
;;
*)
if test "${enable_doc_chm:-no}" = "yes"; then
AC_MSG_ERROR([building chms is only supported on Windows.])
else
AC_MSG_RESULT(no)
AC_SUBST(ENABLEDOCCHM, "no")
fi
;;
esac
AC_ARG_ENABLE([doc-docset],
AC_HELP_STRING([--enable-doc-docset],
[build docset documentation for XCode @<:@default=no@:>@]))
AC_MSG_CHECKING(whether to build docset documentation for XCode)
case $host_os in
darwin*)
if test "${enable_doc_docset:-no}" = "yes"; then
AC_MSG_RESULT(yes)
AC_SUBST(ENABLEDOCDOCSET, "yes")
AC_SUBST(ENABLEDOCSEARCH, "no")
else
AC_MSG_RESULT(no)
AC_SUBST(ENABLEDOCDOCSET, "no")
fi
;;
*)
if test "${enable_doc_docset:-no}" = "yes"; then
AC_MSG_ERROR([building docsets is only supported on Mac OS X.])
else
AC_MSG_RESULT(no)
AC_SUBST(ENABLEDOCDOCSET, "no")
fi
;;
esac
])
dnl Macro:
dnl AC_GECODE_UNIVERSAL
dnl
dnl Description:
dnl Produces the configure switches --enable-universal and --with-sdk
dnl for compiling universal binaries on Mac OS X.
dnl
dnl Authors:
dnl Guido Tack <tack@gecode.org>
AC_DEFUN([AC_GECODE_UNIVERSAL],
[dnl build universal binaries on Mac OS X
AC_ARG_WITH([sdk],
AC_HELP_STRING([--with-sdk],
[SDK to use on Mac OS X]))
if test "${host_os}" = "darwin"; then
if test "${with_sdk:-no}" != "no"; then
AC_GECODE_CHECK_COMPILERFLAG([-isysroot ${with_sdk}])
AC_GECODE_ADD_TO_DLLFLAGS([-Wl,-syslibroot,${with_sdk}])
fi
fi
AC_ARG_WITH([macosx-version-min],
AC_HELP_STRING([--with-macosx-version-min],
[minimum version of Mac OS X to support]))
if test "${host_os}" = "darwin"; then
if test "${with_macosx_version_min:-no}" != "no"; then
AC_GECODE_CHECK_COMPILERFLAG(
[-mmacosx-version-min=${with_macosx_version_min}])
AC_GECODE_ADD_TO_DLLFLAGS(
[-mmacosx-version-min=${with_macosx_version_min}])
fi
fi
AC_ARG_WITH([architectures],
AC_HELP_STRING([--with-architectures],
[architectures to compile for on Mac OS X]))
AC_MSG_CHECKING(Whether to build for different architectures)
if test "${host_os}" = "darwin"; then
if test "${with_architectures:-no}" != "no"; then
archflags="";
for a in `echo ${with_architectures} | sed -e "s/,/ /g"`; do
archflags="${archflags} -arch $a";
done
AC_GECODE_CHECK_COMPILERFLAG([${archflags}])
AC_GECODE_ADD_TO_DLLFLAGS([${archflags}])
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
else
AC_MSG_RESULT(no)
fi
])
dnl Macro:
dnl AC_GECODE_FRAMEWORK
dnl
dnl Description:
dnl Produces the configure switch --enable-framework
dnl for creating a Mac OS X framework instead of individual libraries.
dnl
dnl Authors:
dnl Guido Tack <tack@gecode.org>
AC_DEFUN([AC_GECODE_FRAMEWORK],
[dnl build framework bundle on Mac OS X
AC_ARG_ENABLE([framework],
AC_HELP_STRING([--enable-framework],
[build framework bundle on Mac OS X @<:@default=no@:>@]))
if test "${host_os}" = "darwin"; then
AC_MSG_CHECKING(whether to build framework bundle on Mac OS X)
if test "${enable_framework:-no}" = "yes"; then
AC_MSG_RESULT(yes)
AC_SUBST(BUILD_MACOS_FRAMEWORK, "yes")
enable_static="yes";
enable_shared="no";
else
AC_MSG_RESULT(no)
AC_SUBST(BUILD_MACOS_FRAMEWORK, "no")
fi
fi
])
dnl Macro:
dnl AC_GECODE_BOOST
dnl
dnl Description:
dnl Produces the configure switch --with-boost-include
dnl for supplying the path to the boost library.
dnl
dnl Authors:
dnl Guido Tack <tack@gecode.org>
AC_DEFUN([AC_GECODE_BOOST],
[dnl build with support for the boost library
AC_ARG_WITH([boost-include],
AC_HELP_STRING([--with-boost-include],
[path to the boost header files]))
if test "${with_boost_include:-no}" != "no"; then
AC_SUBST(BOOST_CPPFLAGS,[-I${with_boost_include}])
AC_SUBST(BOOST_LINK,["-L${with_boost_include}/../../lib -lboost_serialization"])
AC_DEFINE([GECODE_HAS_BOOST],[],
[Whether to compile boost dependent parts])
fi
])
dnl Macro:
dnl AC_GECODE_QT
dnl
dnl Description:
dnl Produces the configure switch --enable-qt
dnl for compiling parts of Gecode that need the Qt library.
dnl
dnl Authors:
dnl Guido Tack <tack@gecode.org>
AC_DEFUN([AC_GECODE_QT],
[
AC_ARG_ENABLE([qt],
AC_HELP_STRING([--enable-qt],
[build with Qt support, requires at least Qt 4.3 @<:@default=yes@:>@]))
AC_CHECK_PROGS(QMAKE, [qmake-qt4 qmake])
AC_CHECK_PROGS(MOC, [moc-qt4 moc])
AC_MSG_CHECKING(whether to build with Qt support)
if test "${enable_qt:-yes}" = "yes"; then
if test "${QMAKE}x" = "x" -o "${MOC}x" = "x"; then
AC_MSG_RESULT(no)
else
ac_gecode_qt_version=`${QMAKE} -query QT_VERSION`
ac_gecode_qt_major=`echo ${ac_gecode_qt_version} | grep -o '^[[0-9]]*'`
ac_gecode_qt_minor=`echo ${ac_gecode_qt_version} | sed -e 's/^[[0-9]]*\\.//g' -e 's/\\.[[0-9]]*$//g'`
ac_gecode_qt_ok="yes"
if test ${ac_gecode_qt_major} -lt 4; then ac_gecode_qt_ok="no";
else if test ${ac_gecode_qt_major} -eq 4 \
-a ${ac_gecode_qt_minor} -lt 3; then ac_gecode_qt_ok="no";
fi
fi
if test "${ac_gecode_qt_ok}" != "yes"; then
AC_MSG_RESULT(no)
else
AC_MSG_RESULT(yes)
AC_DEFINE([GECODE_HAS_QT],[],[Whether Qt is available])
dnl use qmake to find the Qt installation
ac_gecode_qt_tmpdir=`mktemp -d gistqt.XXXXXX` || exit 1
cd ${ac_gecode_qt_tmpdir}
echo "CONFIG += release" > a.pro
${QMAKE}
if test -d a.xcodeproj; then
ac_gecode_qt_makefile=a.xcodeproj/qt_preprocess.mak
elif test -d a.pbproj; then
ac_gecode_qt_makefile=a.pbproj/qt_preprocess.mak
elif test -f Makefile.Debug; then
if test "${enable_debug:-no}" = "no"; then
ac_gecode_qt_makefile=Makefile.Release
else
ac_gecode_qt_makefile=Makefile.Debug
fi
else
ac_gecode_qt_makefile=Makefile
fi
ac_gecode_qt_defines=`grep ${ac_gecode_qt_makefile} -e 'DEFINES.*=' | sed -e 's/.*=//' -e 's|\\\\|/|g' -e 's|-I\\("*\\)\\.\\./\\.\\.|-I\\1..|g'`
ac_gecode_qt_inc=`grep ${ac_gecode_qt_makefile} -e 'INCPATH.*=' | sed -e 's/.*=//' -e 's|\\\\|/|g' -e 's|-I\\("*\\)\\.\\./\\.\\.|-I\\1..|g'`
ac_gecode_qt_libs=`grep ${ac_gecode_qt_makefile} -e 'LIBS.*=' | sed -e 's/.*=//' -e 's|\\\\|/|g' -e 's|-I\\("*\\)\\.\\./\\.\\.|-I\\1..|g'`
if test -d a.xcodeproj -o -d a.pbproj; then
ac_gecode_qt_libs="-framework QtGui -framework QtCore"
fi
cd ..
rm -r ${ac_gecode_qt_tmpdir}
AC_SUBST(QTINCLUDES, ${ac_gecode_qt_inc})
AC_SUBST(QTDEFINES, ${ac_gecode_qt_defines})
AC_SUBST(QTLIBS, ${ac_gecode_qt_libs})
AC_SUBST(enable_qt,yes)
enable_qt=yes;
fi
fi
else
AC_MSG_RESULT(no)
enable_qt=no;
fi
AC_SUBST(enable_qt, ${enable_qt})
])
dnl Macro:
dnl AC_GECODE_GIST
dnl
dnl Description:
dnl Produces the configure switch --enable-gist
dnl for compiling the Gecode Interactive Search Tool.
dnl
dnl Authors:
dnl Guido Tack <tack@gecode.org>
AC_DEFUN([AC_GECODE_GIST],
[
AC_ARG_ENABLE([gist],
AC_HELP_STRING([--enable-gist],
[build Gecode Interactive Search Tool @<:@default=yes@:>@]))
AC_MSG_CHECKING(whether to build Gist)
if test "${enable_gist:-yes}" = "yes" -a "${enable_qt}" = "yes"; then
AC_MSG_RESULT(yes)
AC_SUBST(enable_gist, yes)
AC_DEFINE([GECODE_HAS_GIST],[],[Whether Gist is available])
else
AC_MSG_RESULT(no)
fi
])
AC_DEFUN([AC_GECODE_USER_SUFFIX],
[
AC_ARG_WITH([lib-prefix],
AC_HELP_STRING([--with-lib-prefix],
[add user-defined prefix to library names]))
AC_MSG_CHECKING(for user-defined library name prefix)
if test "x${with_lib_prefix}" != "x"; then
ac_gecode_userprefix=${with_lib_prefix}
AC_MSG_RESULT(${with_lib_prefix})
else
ac_gecode_userprefix=
AC_MSG_RESULT(no)
fi
AC_DEFINE_UNQUOTED(GECODE_DLL_USERPREFIX,"${ac_gecode_userprefix}",
[User-defined prefix of dll names])
AC_ARG_WITH([lib-suffix],
AC_HELP_STRING([--with-lib-suffix],
[add user-defined suffix to library names]))
AC_MSG_CHECKING(for user-defined library name suffix)
if test "x${with_lib_suffix}" != "x"; then
ac_gecode_usersuffix=${with_lib_suffix}
AC_SUBST(USERSUFFIX,${with_lib_suffix})
AC_MSG_RESULT(${with_lib_suffix})
else
ac_gecode_usersuffix=
AC_SUBST(USERSUFFIX,[""])
AC_MSG_RESULT(no)
fi
AC_DEFINE_UNQUOTED(GECODE_DLL_USERSUFFIX,"${ac_gecode_usersuffix}",
[User-defined suffix of dll names])
])
AC_DEFUN([AC_GECODE_THREADS],[
AC_CHECK_HEADER(unistd.h,
[AC_DEFINE(GECODE_HAS_UNISTD_H,1,[Whether unistd.h is available])]
)
AC_CHECK_HEADER(pthread.h,
[AC_DEFINE(GECODE_THREADS_PTHREADS,1,[Whether we have posix threads])
AC_GECODE_ADD_TO_COMPILERFLAGS([-pthread])
AC_GECODE_ADD_TO_DLLFLAGS([-pthread])
],
[AC_CHECK_HEADER(windows.h,
[AC_DEFINE(GECODE_THREADS_WINDOWS,1,[Whether we have windows threads])])]
)
])
AC_DEFUN([AC_GECODE_TIMER],[
AC_CHECK_HEADER(sys/time.h,
[AC_DEFINE(GECODE_USE_GETTIMEOFDAY,1,[Use gettimeofday for time-measurement])],
[AC_DEFINE(GECODE_USE_CLOCK,1,[Use clock() for time-measurement])])
])
dnl check whether we have suifficiently recent versions of flex/bison
AC_DEFUN([AC_GECODE_FLEXBISON],
[AC_CHECK_TOOL(HAVEFLEX, flex)
AC_MSG_CHECKING(whether we have at least flex 2.5.33)
if test "${HAVEFLEX}x" = "x"; then
AC_MSG_RESULT(no)
AC_SUBST(HAVE_FLEXBISON, "no")
else
if flex --version | grep ' 2\.5\.3[[3-9]]$' >/dev/null 2>&1 ||
flex --version | grep ' 2\.5\.4[[0-9]]$' >/dev/null 2>&1 ||
flex --version | grep ' 2\.[[6-9]]\.[[0-9]]*$' >/dev/null 2>&1
then
AC_MSG_RESULT(yes)
AC_CHECK_TOOL(HAVEBISON, bison)
AC_MSG_CHECKING(whether we have at least bison 2.3)
if test "${HAVEBISON}x" = "x"; then
AC_MSG_RESULT(no)
AC_SUBST(HAVE_FLEXBISON, "no")
else
if bison --version | \
grep ' 2\.[[3-9]]\($\|\.[[0-9]]$\)' >/dev/null 2>&1
then
AC_MSG_RESULT(yes)
AC_SUBST(HAVE_FLEXBISON, "yes")
else
AC_MSG_RESULT(no)
AC_SUBST(HAVE_FLEXBISON, "no")
fi
fi
else
AC_MSG_RESULT(no)
AC_SUBST(HAVE_FLEXBISON, "no")
fi
fi])
|