AC_ARG_WITH([cxsc],
[AS_HELP_STRING([--with-cxsc=<location>],
[Location at which the CXSC 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
CXSC=no elif test "$withval" = yes; then
CXSC=yes else
CXSC=yes
CXSC_CPPFLAGS="-I$withval/include"
CXSC_LDFLAGS="-L$withval/lib" fi]
)
AC_ARG_WITH([cxsc-include],
[AS_HELP_STRING([--with-cxsc-include=<location>],
[Location at which the cxsc include files were installed.])],
[CXSC=yes
CXSC_CPPFLAGS="-I$withval"]
)
AC_ARG_WITH([cxsc-lib],
[AS_HELP_STRING([--with-cxsc-lib=<location>],
[Location at which the cxsc library files were installed.])],
[CXSC=yes
CXSC_LDFLAGS="-L$withval"]
)
if test "$temp_status" = false; then if test "$CXSC" = yes; then
AC_MSG_ERROR([library cxsc not found. Using --with-cxsc, specify its location, or "no" to disable it.]) else
CXSC=no fi else
CXSC=yes fi
if test "$CXSC" != no; then
AC_DEFINE([USE_CXSC],1,[use CXSC library]) fi
AC_SUBST(CXSC_CPPFLAGS)
AC_SUBST(CXSC_LDFLAGS)
AC_SUBST(CXSC_LIBS)
AM_CONDITIONAL([WITH_CXSC_IS_YES],[test x"$CXSC" != xno])
])
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 und die Messung sind noch experimentell.