fnorb.m4

来自「pic 模拟程序!面向对象」· M4 代码 · 共 43 行

M4
43
字号
dnl ######################################################################dnldnl Check for FNORBdnldnl ######################################################################dnl ######################################################################dnldnl Find Fnorb modulesdnldnl ######################################################################if test -n "$PY_ROOT"; then  AC_ARG_WITH(FNORBPATH,  [  --with-FNORBPATH=<fnorb-path>            to set location of fnorb modules],  FNORBPATH="$withval")  if test -z "$FNORBPATH"; then    FNORBPATH=$PYTHON_SITEDIR:$PYTHON_SITEDIR/Fnorb:/$host/python/lib/python/Fnorb:/opt/python/lib/python/Fnorb:/usr/lib/python/Fnorb:/mfe/local/python/lib/python/Fnorb:/usr/local/python/lib/python/Fnorb:/loc/python/lib/python/Fnorb:/usr/local/Python/lib/python/Fnorb  fi  AC_PATH_PROGS(CDR_MODULE, cdr.so cdr.sl cdrmodule.so cdrmodule.sl, "", $FNORBPATH)  if test -n "$CDR_MODULE"; then      FNORB_LIBDIR=`dirname $CDR_MODULE`      PYLIBPATH=`dirname $FNORB_LIBDIR`      FNORBPATH=$PYLIBPATH:$FNORB_LIBDIR      AC_SUBST(FNORBPATH)      AC_SUBST(FNORB_LIBDIR)  else      AC_MSG_WARN(Unable to find FNORB modules.  Python Makefile's will not be created.)      PYTHON_MAKEFILES=""  fifidnl Look for fnidl as needed for FNORBif test -n "$FNORBPATH"; then  FNIDLPATH=$PYTHON_TOPDIR/bin:$PATH  AC_PATH_PROGS(FNIDL, fnidl, "", $FNIDLPATH)  if test -z "$FNIDL"; then    AC_MSG_WARN(Unable to find fnidl in $FNIDLPATH.  Python Makefile\'s will not be created.)    PYTHON_MAKEFILES=""  fifi

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?