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
|
# Process this file with autoconf to produce a configure script.
AC_INIT([meep],[m4_esyscmd(./version.sh 1.25.0)])
AC_CONFIG_SRCDIR(src/step.cpp)
# Shared-library version number; indicates api compatibility, and is
# not the same as the "public" version number. (Don't worry about this
# except for public releases.) Note that any change to a C++ class
# definition (in the .hpp file) generally breaks binary compatibility.
SHARED_VERSION_INFO="30:0:0" # CURRENT:REVISION:AGE
AM_INIT_AUTOMAKE([foreign color-tests parallel-tests silent-rules 1.11])
AM_SILENT_RULES(yes)
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
AM_MAINTAINER_MODE
AC_SUBST(SHARED_VERSION_INFO)
# need shared libraries for python interfaces
AC_ENABLE_SHARED
##############################################################################
# build in single precision
AC_ARG_ENABLE(single,
[AS_HELP_STRING([--enable-single],[compile in single precision])],
enable_single=$enableval, enable_single=no)
if test "x$enable_single" = "xyes"; then
MEEP_SINGLE=1
else
MEEP_SINGLE=0
fi
AC_SUBST(MEEP_SINGLE)
##############################################################################
# build with SWIG threads for Python
AC_ARG_ENABLE(swig-python-threads,
[AS_HELP_STRING([--enable-swig-python-threads],[enable SWIG threads for Python bindings])],
enable_swig_python_threads=$enableval, enable_swig_python_threads=no)
if test "x$enable_swig_python_threads" = "xyes"; then
MEEP_SWIG_PYTHON_THREADS=1
else
MEEP_SWIG_PYTHON_THREADS=0
fi
AC_SUBST(MEEP_SWIG_PYTHON_THREADS)
AM_CONDITIONAL(MEEP_SWIG_PYTHON_THREADS, test "x$enable_swig_python_threads" = "xyes")
##############################################################################
# build with SWIG debugging enabled for Python
AC_ARG_ENABLE(swig-python-debug,
[AS_HELP_STRING([--enable-swig-python-debug],[enable SWIG debug for Python bindings])],
enable_swig_python_debug=$enableval, enable_swig_python_debug=no)
if test "x$enable_swig_python_debug" = "xyes"; then
MEEP_SWIG_PYTHON_DEBUG=1
else
MEEP_SWIG_PYTHON_DEBUG=0
fi
AC_SUBST(MEEP_SWIG_PYTHON_DEBUG)
##############################################################################
# Check for mpiCC immediately after getting C++ compiler...
AC_PROG_CC
AC_PROG_CXX
AC_LANG([C++])
# Check for MPI library
AC_ARG_WITH(mpi, [AS_HELP_STRING([--with-mpi],[enable MPI parallelization])],
with_mpi=$withval, with_mpi=no)
if test "x$with_mpi" = "xyes"; then
AX_MPI([],[AC_MSG_ERROR([could not find mpi library for --with-mpi])])
CXX=$MPICXX
# Detect stupid MPICH problem with SEEK_SET conflicting between
# the mpi.h header file and the stdio.h header file in C++
AC_MSG_CHECKING([for extra flag needed to combine stdio.h and mpi.h])
for flag in none -DMPICH_IGNORE_CXX_SEEK unknown; do
if test "x$flag" = xunknown; then break; fi
save_CPPFLAGS=$CPPFLAGS
if test "x$flag" != xnone; then CPPFLAGS="$CPPFLAGS $flag"; fi
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
#include <mpi.h>]], [[]])],[break],[])
CPPFLAGS=$save_CPPFLAGS
done
AC_MSG_RESULT($flag)
if test "x$flag" = xunknown; then
AC_MSG_CHECKING([if we can combine stdio.h and mpi.h by undef'ing SEEK_*])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
#undef SEEK_SET
#undef SEEK_END
#undef SEEK_CUR
#include <mpi.h>]], [[]])],[AC_MSG_RESULT(yes)
AC_DEFINE([NEED_UNDEF_SEEK_FOR_MPI], 1, [Define if mpi.h needs SEEK macros to be undefined])],[AC_MSG_RESULT(no)
AC_MSG_ERROR([can't include stdio.h and mpi.h in same file])])
fi
fi
# make sure we enable C++11 support if possible
AX_CXX_COMPILE_STDCXX([11], [], [optional])
##############################################################################
# Compiler flags
# Pick "good" compiler flags(?)
AX_CXX_MAXOPT
AC_ARG_ENABLE(debug,
[AS_HELP_STRING([--enable-debug],[compile for debugging])],
enable_debug=$enableval, enable_debug=no)
if test "$enable_debug" = "yes"; then
CFLAGS="-g"
CXXFLAGS="-g"
FFLAGS="-g"
AC_DEFINE(DEBUG,1,[define to enable debugging code])
fi
# Add lots of compiler warnings in maintainer mode if we are using gcc:
# (The variable $GXX is set to "yes" by AC_PROG_CXX if we are using g++.)
if test "$GXX" = "yes" && test "$USE_MAINTAINER_MODE" = yes; then
CXXFLAGS="$CXXFLAGS -Wall -W"
fi
# For some annoying reason, g++ requires you to compile
# all code with -march if you compile any code with -march,
# otherwise segfaults can occur (observed in g++ 3.3.5).
# We also need to be careful about -malign-double.
ARCHFLAG=""
for flg in $CXXFLAGS; do
case $flg in
-march=*|-mcpu=*|-malign*) ARCHFLAG="$ARCHFLAG $flg" ;;
esac
done
AC_SUBST(ARCHFLAG)
AC_ARG_WITH(openmp, [AS_HELP_STRING([--with-openmp],[use OpenMP directives for parallelism])], enable_openmp=$enableval, with_openmp=no)
if test x"$with_openmp" = "xyes"; then
AC_DEFINE(HAVE_OPENMP,1,[Define to enable OpenMP])
AX_OPENMP([CXXFLAGS="$CXXFLAGS $OPENMP_CXXFLAGS"], [AC_MSG_ERROR([don't know how to enable OpenMP])])
fi
##############################################################################
# More checks
LT_INIT
AC_CHECK_LIB(m, sin)
AC_CHECK_LIB(fftw3, fftw_plan_dft_1d, [],
[AC_CHECK_LIB(dfftw, fftw_create_plan, [],
[AC_CHECK_LIB(fftw, fftw_create_plan, [],
[AC_MSG_WARN([FFTW needed for MPB])])])])
###########################################################################
AC_PROG_F77
AC_F77_WRAPPERS
if test "x$with_lapack" != xno -o "x$with_blas" != xno; then
AX_BLAS
AX_LAPACK
LIBS="$LAPACK_LIBS $BLAS_LIBS $LIBS $FLIBS"
fi
###########################################################################
# Harminv library
# First, try pkg-config, if it is installed. Note that, annoyingly,
# pkg-config doesn't look in /usr/local by default, so we have to
# add this to the path for that common case. It also doesn't give
# us a way to print its default path, grr, so we have to assume that this
# is /usr/lib/pkgconfig.
PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/lib/pkgconfig:/usr/local/lib/pkgconfig
export PKG_CONFIG_PATH
PKG_CHECK_MODULES(HARMINV, harminv >= 1.1, [CFLAGS="$CFLAGS $HARMINV_CFLAGS"; LIBS="$HARMINV_LIBS $LIBS"; have_harminv=yes], [have_harminv=no])
# As a fallback, check manually for BLAS/LAPACK and harminv libraries:
if test $have_harminv = no; then
if test "x$ax_lapack_ok" = x; then
AX_BLAS
AX_LAPACK([], [AC_MSG_WARN([BLAS/LAPACK needed for harminv])])
LIBS="$LAPACK_LIBS $BLAS_LIBS $LIBS $FLIBS"
elif test "x$ax_lapack_ok" = xno; then
AC_MSG_WARN([BLAS/LAPACK needed for harminv])
fi
save_CC=$CC
CC=$CXX # harminv test must use $CXX since harminv may be a C++ lib
# just use lapack/blas in default libs since we always need them
AC_CHECK_LIB(harminv, harminv_get_freq_error, [have_harminv=yes; LIBS="-lharminv $LAPACK_LIBS $BLAS_LIBS $LIBS $FLIBS"], [AC_MSG_WARN([harminv support is disabled])], [$LAPACK_LIBS $BLAS_LIBS $FLIBS])
CC=$save_CC
fi
if test $have_harminv = yes; then
AC_DEFINE([HAVE_HARMINV],[1],[Define if you have libharminv])
fi
###########################################################################
# MPB library
AC_CHECK_HEADER(mpb.h, [have_mpb=maybe], [have_mpb=no])
if test $have_mpb = maybe; then
if test "x$ax_lapack_ok" = x -a "x$have_harminv" = xno; then
AX_BLAS
AX_LAPACK([], [AC_MSG_WARN([BLAS/LAPACK needed for MPB])])
LIBS="$LAPACK_LIBS $BLAS_LIBS $LIBS $FLIBS"
elif test "x$ax_lapack_ok" = xno; then
AC_MSG_WARN([BLAS/LAPACK needed for MPB])
fi
AC_CHECK_LIB(mpb, maxwell_target_operator1, [have_mpb=yes; LIBS="-lmpb $LIBS"],
[AC_CHECK_LIB(mpb, maxwell_target_operator1,
[have_mpb=yes; LIBS="-lmpb $LAPACK_LIBS $BLAS_LIBS $LIBS $FLIBS"], [AC_MSG_WARN([MPB support is disabled])], [$LAPACK_LIBS $BLAS_LIBS $FLIBS])])
if test $have_mpb = yes; then
AC_DEFINE([HAVE_MPB], [1], [Define if you have libmpb])
fi
fi
AM_CONDITIONAL(WITH_MPB, test "x$have_mpb" = "xyes")
if test "x$have_mpb" = "xyes"; then
# check for mpb_printf_callback
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <mpb.h>]], [mpb_printf_callback = 0;])],
AC_DEFINE([HAVE_MPB_PRINTF_CALLBACK], [1], [If we have the mpb_printf_callback variable]))
fi
##############################################################################
# GNU Scientific Library
AC_CHECK_LIB([m],[cos])
AC_CHECK_LIB([gslcblas],[cblas_dgemm])
AC_CHECK_LIB([gsl],[gsl_sf_bessel_Jn], [],
[AC_MSG_WARN([Missing GNU GSL library...Bessel-function field initialization will not be supported.])])
##############################################################################
# Check for HDF5 library
AC_ARG_WITH(hdf5, [AS_HELP_STRING([--without-hdf5],[do not allow HDF5 output])], ok=$withval, ok=yes)
if test "$ok" = "yes"; then
AC_CHECK_LIB(z,deflate, [],[AC_MSG_WARN([zlib is required for HDF5!])])
save_CPPFLAGS="$CPPFLAGS"
save_LIBS="$LIBS"
# Check whether linking with "-lhdf5" just works (installation in default
# location or due to user-provided flags). If not, try to locate HDF5 via
# pkg-config. Optimistically update LIBS and CPPFLAGS. Revert if any
# AC_CHECKs fail.
AC_CHECK_LIB(hdf5, H5Pcreate, [], [
PKG_CHECK_MODULES(HDF5, hdf5, [
CPPFLAGS="$CPPFLAGS $HDF5_CFLAGS"
LIBS="$HDF5_LIBS $LIBS"
], [])
])
AC_CHECK_FUNC(H5Pcreate, [
AC_CHECK_HEADER(hdf5.h, [
AC_DEFINE(HAVE_HDF5,1,[Define if we have & link HDF5])
AC_CHECK_FUNCS(H5Pset_mpi H5Pset_fapl_mpio)
])
])
if test "x$ac_cv_header_hdf5_h" != "xyes"; then
AC_MSG_WARN([Couldn't find the HDF5 header or library!! Switching to --without-hdf5.])
CPPFLAGS="$save_CPPFLAGS"
LIBS="$save_LIBS"
fi
fi
##############################################################################
RUNCODE=""
if test "x$with_mpi" = "xyes"; then
AC_CHECK_PROG(MPIRUN, mpirun, mpirun)
# always use 2 processes for 'make check'
RUNCODE="$MPIRUN -np 2"
fi
if test x"$with_openmp" = "xyes"; then
# use 2 openmp threads
RUNCODE="env OMP_NUM_THREADS=2 $RUNCODE"
fi
AC_SUBST(RUNCODE)
AM_CONDITIONAL(WITH_MPI, test "x$with_mpi" = "xyes")
##############################################################################
# Libraries and flags (other than -lmeep) required to link Meep:
MEEPLIBS="$LDFLAGS $LIBS"
AC_SUBST(MEEPLIBS)
##############################################################################
AC_ARG_WITH(libctl, [AS_HELP_STRING([--with-libctl=<dir>],[specify libctl directory])], with_libctl=$withval, with_libctl=yes)
if test "x$with_libctl" = "xno"; then
:
elif test "x$with_libctl" != "xyes"; then
LIBCTL_DIR="$with_libctl"
fi
AM_CONDITIONAL(WITH_LIBCTL, test "x$with_libctl" != xno)
AC_ARG_WITH(scheme, [AS_HELP_STRING([--without-scheme],[compile without Scheme interface])],
with_scheme=$withval, with_scheme=yes)
AM_CONDITIONAL(WITH_SCHEME, test x"$with_scheme" = "xyes")
##############################################################################
# Check for Guile library and its behavior (for libctl front end):
if test "x$with_libctl" != xno -a "x$with_scheme" = "xyes"; then
save_LIBS=$LIBS
save_CPPFLAGS=$CPPFLAGS
AC_CHECK_PROG(GUILE_CONFIG, guile-config, guile-config, unknown)
if test "x$GUILE_CONFIG" = "xunknown"; then
AC_CHECK_LIB(readline, readline)
AC_CHECK_LIB(dl, dlopen)
AC_CHECK_LIB(guile-ltdl, scm_lt_dlinit, [], [AC_CHECK_LIB(ltdl, dlopen)])
AC_CHECK_LIB(guile, gh_eval_str, [],
[AC_CHECK_LIB(guile, scm_eval_string, [],
[AC_MSG_ERROR([linking to guile failed])])])
GUILE_LIBS="-lguile -lguile-ltdl -lreadline"
GUILE_CPPFLAGS=""
else
GUILE_LIBS=`$GUILE_CONFIG link`
GUILE_CPPFLAGS=`$GUILE_CONFIG compile`
CPPFLAGS="$CPPFLAGS $GUILE_CPPFLAGS"
LIBS="$GUILE_LIBS $LIBS"
AC_MSG_CHECKING([if linking to guile works])
AC_TRY_LINK_FUNC(gh_enter, AC_MSG_RESULT(yes),
[AC_TRY_LINK_FUNC(scm_boot_guile, AC_MSG_RESULT(yes),
[AC_MSG_RESULT(no)
AC_MSG_ERROR([guile-config is broken])])])
fi
AC_CHECK_HEADERS([libguile.h guile/gh.h])
# Check how smob types work in this Guile version:
AC_CHECK_FUNCS(scm_make_smob_type)
AC_MSG_CHECKING([for SCM_SMOB_PREDICATE])
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <guile/gh.h>
#include <libguile/smob.h>]], [[int x; SCM_SMOB_PREDICATE(1,x);]])],[ok=yes],[ok=no])
AC_MSG_RESULT($ok)
if test $ok = yes; then
AC_DEFINE(HAVE_SCM_SMOB_PREDICATE, 1, [define if we have SCM_SMOB_PREDICATE])
fi
AC_MSG_CHECKING([for SCM_SMOB_DATA])
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <guile/gh.h>
#include <libguile/smob.h>]], [[int x; SCM_SMOB_DATA(x);]])],[ok=yes],[ok=no])
AC_MSG_RESULT($ok)
if test $ok = yes; then
AC_DEFINE(HAVE_SCM_SMOB_DATA, 1, [define if we have SCM_SMOB_DATA])
fi
AC_MSG_CHECKING([for SCM_NEWSMOB])
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <guile/gh.h>
#include <libguile/smob.h>]], [[int x; SCM_NEWSMOB(x,1,0);]])],[ok=yes],[ok=no])
AC_MSG_RESULT($ok)
if test $ok = yes; then
AC_DEFINE(HAVE_SCM_NEWSMOB, 1, [define if we have SCM_NEWSMOB])
fi
# Check how to activate Guile readline support:
ACTIVATE_READLINE=""
if test "x$cross_compiling" = xno; then
AC_MSG_CHECKING(how to activate readline in Guile)
ractivate="(use-modules (readline-activator)) (activate-readline)"
if guile -c "$ractivate" > /dev/null 2>&1; then
AC_MSG_RESULT(readline-activator)
ACTIVATE_READLINE="$ractivate"
else
ractivate="(use-modules (ice-9 readline)) (activate-readline)"
if guile -c "$ractivate" >& /dev/null; then
AC_MSG_RESULT(ice-9 readline)
ACTIVATE_READLINE="$ractivate"
else
AC_MSG_RESULT(cannot)
ACTIVATE_READLINE=""
fi
fi
fi
AC_SUBST(ACTIVATE_READLINE)
AC_SUBST(GUILE_LIBS)
AC_SUBST(GUILE_CPPFLAGS)
LIBS=$save_LIBS
CPPFLAGS=$save_CPPFLAGS
##############################################################################
# Check for libctl library and files
save_LIBS=$LIBS
save_CPPFLAGS=$CPPFLAGS
LIBS="$GUILE_LIBS $LIBS"
CPPFLAGS="$CPPFLAGS $GUILE_CPPFLAGS"
AC_MSG_CHECKING([for libctl dir])
if test x != x"$LIBCTL_DIR" -a -r "$LIBCTL_DIR/share/libctl/base/ctl.scm"; then
LIBCTL_DIR="$LIBCTL_DIR/share/libctl"
fi
if test x != x"$LIBCTL_DIR" -a ! -r "$LIBCTL_DIR/base/ctl.scm"; then
LIBCTL_DIR=""
fi
if test x = x"$LIBCTL_DIR" -a -r /usr/local/share/libctl/base/ctl.scm; then
LIBCTL_DIR="/usr/local/share/libctl"
fi
if test x = x"$LIBCTL_DIR" -a -r /usr/share/libctl3/base/ctl.scm; then
LIBCTL_DIR="/usr/share/libctl3"
fi
if test x = x"$LIBCTL_DIR" -a -r /usr/share/libctl/base/ctl.scm; then
LIBCTL_DIR="/usr/share/libctl"
fi
if test x = x"$LIBCTL_DIR"; then
AC_MSG_ERROR([could not find libctl files; use --with-libctl=<dir>])
fi
AC_MSG_RESULT($LIBCTL_DIR)
AC_SUBST(LIBCTL_DIR)
AC_CHECK_PROGS(GEN_CTL_IO, gen-ctl-io, echo)
if test x"$GEN_CTL_IO" = xecho; then
AC_MSG_ERROR([could not find gen-ctl-io program; check your PATH])
fi
# check for -lctl:
AC_CHECK_LIB(ctl, ctl_get_vector3, [], [AC_MSG_ERROR([Couldn't find the required libctl library.])])
# check for ctl.h (Fedora puts it in /usr/include/ctl, grrr)
CTL_H_CPPFLAG=""
AC_CHECK_HEADER(ctl.h, [CTL_H_CPPFLAG=" "], [
save_CPPFLAGS=$CPPFLAGS
AC_MSG_CHECKING([for alternate ctl.h location])
for ctl_h_path in /usr/include/ctl /usr/local/include/ctl; do
CPPFLAGS="$save_CPPFLAGS -I$ctl_h_path"
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <ctl.h>]],[])], [CTL_H_CPPFLAG=-I$ctl_h_path; break])
done
AC_MSG_RESULT([$CTL_H_CPPFLAG])
CPPFLAGS=$save_CPPFLAGS])
if test "x$CTL_H_CPPFLAG" = "x"; then
AC_MSG_ERROR([Couldn't find the ctl.h header file for libctl.])
fi
AC_SUBST(CTL_H_CPPFLAG)
save_CPPFLAGS=$CPPFLAGS
CPPFLAGS="$CPPFLAGS $CTL_H_CPPFLAG"
# Check libctl version >= LIBCTL_MAJOR.LIBCTL_MINOR.LIBCTL_BUGFIX
LIBCTL_MAJOR=4; LIBCTL_MINOR=2; LIBCTL_BUGFIX=0
AC_MSG_CHECKING([whether libctl version is at least ${LIBCTL_MAJOR}.${LIBCTL_MINOR}.${LIBCTL_BUGFIX}])
AC_EGREP_CPP(yes, [[
#include <ctl.h>
#if LIBCTL_MAJOR_VERSION > $LIBCTL_MAJOR || (LIBCTL_MAJOR_VERSION == $LIBCTL_MAJOR && (LIBCTL_MINOR_VERSION > $LIBCTL_MINOR || (LIBCTL_MINOR_VERSION == $LIBCTL_MINOR && LIBCTL_BUGFIX_VERSION >= $LIBCTL_BUGFIX)))
yes
#endif
]], [AC_MSG_RESULT(ok)], [AC_MSG_ERROR([libctl version ${LIBCTL_MAJOR}.${LIBCTL_MINOR}.${LIBCTL_BUGFIX} or later is required])])
CPPFLAGS=$save_CPPFLAGS
# Check for libctl_quiet feature (in libctl 3.1.1 or later):
AC_MSG_CHECKING([for libctl_quiet feature])
if grep libctl_quiet "$LIBCTL_DIR/base/main.c" 2>&1 > /dev/null; then
AC_MSG_RESULT(yes)
AC_DEFINE([HAVE_LIBCTL_QUIET], [1], [If we have the libctl_quiet variable])
else
AC_MSG_RESULT(no)
fi
LIBS=$save_LIBS
CPPFLAGS=$save_CPPFLAGS
LIBCTL_LIBS="-lctl $GUILE_LIBS"
LIBCTL_CPPFLAGS="$GUILE_CPPFLAGS"
fi # if with_libctl && with_scheme
##############################################################################
AC_SUBST(LIBCTL_LIBS)
AC_SUBST(LIBCTL_CPPFLAGS)
##############################################################################
# check for -lctlgeom:
AC_CHECK_LIB(ctlgeom, vector3_dot, [have_libctlgeom=yes; LIBS="-lctlgeom $LIBS"], [have_libctlgeom=no])
AM_CONDITIONAL(WITH_LIBCTLGEOM, test x"$have_libctlgeom" = "xyes")
# check for ctl_printf_callback
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <ctlgeom.h>]], [ctl_printf_callback = 0;])],
AC_DEFINE([HAVE_CTL_PRINTF_CALLBACK], [1], [If we have the ctl_printf_callback variable]))
##############################################################################
# check for libGDSII
AC_CHECK_HEADER(libGDSII.h, [have_gdsii=maybe], [have_gdsii=no])
if test "x$have_gdsii" = xmaybe; then
AC_CHECK_LIB(GDSII, libGDSIIExists)
if test "x$ac_cv_lib_GDSII_libGDSIIExists" = xyes; then
AC_MSG_CHECKING([for libGDSII::GetLayers])
have_gdsii_getlayers=no
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <libGDSII.h>]], [libGDSII::GetLayers("foo")])],
[have_gdsii_getlayers=yes
AC_DEFINE([HAVE_GDSII_GETLAYERS], [1], [If we have libGDSII::GetLayers])])
AC_MSG_RESULT($have_gdsii_getlayers)
fi
fi
##############################################################################
# The following function is used only for debugging. Note that
# we must test for it *after* setting the compiler flags (which
# affect whether it is declared, as it is a GNU extension).
# We need to #include <stdio.h> because that somehow affects whether
# the function is declared with older gcc versions. We need
# to use AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],[],[]) because the test in AC_HAVE_DECL seems
# to be optimized out.
AC_CHECK_FUNCS(feenableexcept) dnl GNU libc fp exception control function
AC_MSG_CHECKING([whether feenableexcept declaration is usable])
feenableexcept_decl_ok=yes
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
#define _GNU_SOURCE 1
#include <fenv.h>]], [[feenableexcept(0);]])],[AC_DEFINE([HAVE_DECL_FEENABLEEXCEPT],[1],[Define if fenv.h declares this.])],[feenableexcept_decl_ok=no])
AC_MSG_RESULT($feenableexcept_decl_ok)
##############################################################################
# See if we need to catch SIGFPE to avoid crashing on underflow exceptions
# etcetera, since some stupid operating systems (e.g. Alpha/Tru64) crash on
# SIGFPE by default.
AC_MSG_CHECKING([whether to catch and ignore SIGFPE signals])
AC_RUN_IFELSE([AC_LANG_PROGRAM([], [volatile double x=1,y=0; return x/y;])],
[ignore_sigfpe=no], [ignore_sigfpe=yes], [ignore_sigfpe=no])
AC_MSG_RESULT($ignore_sigfpe)
if test $ignore_sigfpe = yes; then
AC_DEFINE(IGNORE_SIGFPE, [1], [Define to catch and ignore SIGFPE signals])
fi
##############################################################################
# Miscellaneous function and header checks
AC_CHECK_HEADERS([sys/time.h immintrin.h])
AC_CHECK_FUNCS([BSDgettimeofday gettimeofday cblas_ddot cblas_daxpy jn])
##############################################################################
# check for restrict keyword in C++
AC_C_RESTRICT
# check for C99 _Pragma support, so that we can emit pragmas in macros
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[_Pragma("ivdep")]])],[],[AC_DEFINE([_Pragma],[],[define to nothing if C99 _Pragma is not supported])])
##############################################################################
# checks for python
##############################################################################
AC_ARG_WITH(python,
[AS_HELP_STRING([--without-python],[compile without Python interface])],
with_python=$withval,with_python=yes)
AC_CHECK_PROG(SWIG, swig, swig, echo)
if test "$USE_MAINTAINER_MODE" = yes && (test "x$with_python" = "xyes" || test "x$with_scheme" = "xyes") && test "x$SWIG" = xecho; then
AC_MSG_ERROR([SWIG not found; configure --without-python --without-scheme or use a release tarball])
fi
AC_ARG_WITH(coverage, [AS_HELP_STRING([--with-coverage],[enable Python coverage tests])],
with_coverage=$withval, with_coverage=no)
if test "x$with_python" = xno; then
have_python=no
else
if test "x$have_libctlgeom" = xno; then
AC_MSG_ERROR([libctlgeom was not found, is required for Python interface])
fi
if test "$enable_shared" = no; then
AC_MSG_WARN([Python interface requires --enable-shared; disabling])
have_python=no
else
AM_PATH_PYTHON([],[have_python=yes],[have_python=no])
if test $have_python = yes; then
AC_MSG_CHECKING([for Python include directory])
pinc=`echo "import distutils.sysconfig; print (distutils.sysconfig.get_python_inc())" | $PYTHON - 2>/dev/null`
AC_MSG_RESULT([${pinc:-unknown}])
test -n "$pinc" && PYTHON_INCLUDES="-I$pinc"
save_CPPFLAGS=$CPPFLAGS
CPPFLAGS="$CPPFLAGS $PYTHON_INCLUDES"
AC_CHECK_HEADER([Python.h], [], [AC_MSG_WARN([disabling Python wrappers])
have_python=no])
if test $have_python = yes; then
AC_MSG_CHECKING([for Numpy include directory])
pinc=`echo "import numpy; print (numpy.get_include())" | $PYTHON - 2>/dev/null`
AC_MSG_RESULT([${pinc:-unknown}])
test -n "$pinc" && PYTHON_INCLUDES="$PYTHON_INCLUDES -I$pinc"
CPPFLAGS="$save_CPPFLAGS $PYTHON_INCLUDES"
AC_CHECK_HEADER([numpy/arrayobject.h],[],[
AC_MSG_WARN([disabling Python wrappers])
have_python=no],[#include <Python.h>])
if test x"$with_coverage" = xyes; then
AC_MSG_CHECKING([for coverage module])
$PYTHON -c 'import coverage' 2>/dev/null
if test $? = 0; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
with_coverage=no
fi
fi
fi
CPPFLAGS=$save_CPPFLAGS
fi # have_python
fi # enabled_shared
fi # with_python
AC_SUBST(PYTHON_INCLUDES)
AM_CONDITIONAL(WITH_PYTHON, test x"$have_python" = "xyes")
AM_CONDITIONAL(WITH_COVERAGE, test x"$with_coverage" = "xyes")
if test "x$with_scheme" = xyes; then
# Copy/symlink casimir.scm and materials.scm to builddir for out-of-tree builds
AC_CONFIG_LINKS(scheme/casimir.scm:scheme/casimir.scm)
AC_CONFIG_LINKS(scheme/materials.scm:scheme/materials.scm)
AC_CONFIG_FILES([scheme/Makefile scheme/meep.scm])
fi
if test "x$with_python" = xyes; then
AC_CONFIG_FILES([libpympb/Makefile python/Makefile])
fi
AC_CONFIG_FILES([
Makefile
meep-pkgconfig
src/Makefile
src/support/Makefile
tests/Makefile
src/meep/meep-config.h
])
AC_OUTPUT
|