AC_ARG_WITH([mpc],
[AS_HELP_STRING([--with-mpc=<location>],
[Location at which the MPC library was installed. If the argument is omitted, the library is assumed to be reachable
under the standard search path (/usr, /usr/local,...). Otherwise
you must give the <path> to the directory which contains the
library.])],
[if test "$withval" = no; then
MPC=no elif test "$withval" = yes; then
MPC=yes else
MPC=yes
MPC_CPPFLAGS="-I$withval/include"
MPC_LDFLAGS="-L$withval/lib" fi],
[AS_IF([command -v brew >/dev/null 2>&1],[
withval=$(brew --prefix)
MPC_CPPFLAGS="-I$withval/include"
MPC_LDFLAGS="-L$withval/lib"
])]
)
AC_ARG_WITH([mpc-include],
[AS_HELP_STRING([--with-mpc-include=<location>],
[Location at which the mpc include files were installed.])],
[MPC=yes
MPC_CPPFLAGS="-I$withval"]
)
AC_ARG_WITH([mpc-lib],
[AS_HELP_STRING([--with-mpc-lib=<location>],
[Location at which the mpc library files were installed.])],
[MPC=yes
MPC_LDFLAGS="-L$withval"]
)
if test "$MPC" != no; then
if test "$MPC" != unknown &&test "$MPFR" = no; then
AC_MSG_ERROR([Cannot have MPC without having MPFR too.]) fi
if test "$temp_status" = false; then if test "$MPC" = yes; then
AC_MSG_ERROR([library mpc not found. Using --with-mpc, specify its location, or "no" to disable it.]) else
MPC=no fi else
MPC=yes fi
if test "$MPC" != no; then
AC_DEFINE([USE_MPC],1,[use MPC library]) fi
AC_SUBST(MPC_CPPFLAGS)
AC_SUBST(MPC_LDFLAGS)
AC_SUBST(MPC_LIBS)
AM_CONDITIONAL([WITH_MPC_IS_YES],[test x"$MPC" != xno])
])
¤ Dauer der Verarbeitung: 0.12 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.