Blob Blame History Raw
[=

AutoGen5 Template

##  This file is part of AutoGen.
##
##  AutoGen Copyright (C) 1992-2015 by Bruce Korb - all rights reserved
##
##  AutoGen is free software: you can redistribute it and/or modify it
##  under the terms of the GNU General Public License as published by the
##  Free Software Foundation, either version 3 of the License, or
##  (at your option) any later version.
##
##  AutoGen is distributed in the hope that it will be useful, but
##  WITHOUT ANY WARRANTY; without even the implied warranty of
##  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
##  See the GNU General Public License for more details.
##
##  You should have received a copy of the GNU General Public License along
##  with this program.  If not, see <http://www.gnu.org/licenses/>.

=][=

(define restore-flags "")
(define (protect-text t)
    (string-substitute t
        '("["     "]"     "$"     "#"     )
        '("@<:@"  "@:>@"  "@S|@"  "@%:@"  ))  )

(define test-name    "")
(define up-name      "")
(define down-name    "")
(define hyphen-name  "")
(define mac-name     "")
(define sub-name     "")
(define cv-name      "")
(define good-text    "")
(define bad-text     "")

(define set-ctx (lambda (my-name) (begin
  (set! test-name    (string->c-name! my-name))

  (set! good-text    "")
  (set! bad-text     "")

  (set! up-name      (string-upcase   test-name))
  (set! down-name    (string-downcase test-name))
  (set! hyphen-name  (string-tr       down-name "_" "-"))
  (set! mac-name     (string->c-name! (string-upcase! (string-append
                     group-pfx (get "type") "_" up-name))) )
  (set! cv-name      (string->c-name! (string-downcase! (string-append
                     group-pfx "cv_" (get "type") "_" down-name))) )
  (set! sub-name     (string-upcase!   (string-append group-pfx up-name)))
)))

=][=

# # # # # # # # # # EMIT MACRO # # # # # # # #  =][=

DEFINE  emit-macro                              =][=

  CASE    type                                  =][=
  ~~  compile|run|link|test                     =][=
      (define bad-define-name   "NEED_%s")
      (define good-define-name  "HAVE_%s")      =][=

  ~~  enable|disable                            =][=
      (define bad-define-name   "%s_DISABLED")
      (define good-define-name  "%s_ENABLED")   =][=

  ~~  with|without|with-group                   =][=
      (define bad-define-name   "WITHOUT_%s")
      (define good-define-name  "WITH_%s")      =][=

  ~~  withlib|withconf                          =][=
      (define lib-name          (string-append "lib" down-name))
      (define bad-define-name   "WITHOUT_LIB%s")
      (define good-define-name  "WITH_LIB%s")   =][=

  * =][= (error (string-append "unknown macro type: " (get "type"))) =][=

  ESAC                                          =][=

  IF  (. separate-macros)                       =][=

    INVOKE macro-header                         =][=

  ENDIF separate-macros

=]
AC_DEFUN([[=

  (define fcn-name (string-append "try-" (get "type")))
  (define c-text (get "code"))
  (define end-requested-disablement "")

  (if (= (get "code-mode") "body")
    (set! c-text (string-append "int main(int argc, char ** argv) {\n"
          c-text "\nreturn 0; }" )) )

  mac-name                      =]],[[=

  IF (ag-function? fcn-name)    =][=
    INVOKE (. fcn-name)         =][=
  ELSE                          =][=

    (error (string-append "invalid conftest function:   " fcn-name)) =][=

  ENDIF  =]
[=(prefix "  " (join "\n" (stack "always")))
=]
]) # end of AC_DEFUN of [=(. mac-name)=]
[=

ENDDEF  emit-macro

# # # # # # # # # # # macro file header # # # # # # # # # # =][=

DEFINE  macro-header                            =][=

(dne "dnl " "dnl ") =]
dnl
dnl @synopsis  [=(. mac-name)=]
dnl
dnl @success-result[=
    IF (<= (count "action") (count "action.no"))
      =]:  there is no output[=
    ELSE            =]
dnl[=
      FOR action    =][=
        IF (not (exist? "no"))  =][=
          CASE  act-type    =][=
          ==  define        =]
dnl   * [=(sprintf good-define-name up-name)
          =] is #defined as [=?% act-text "%s" "1"=][=
          ==  subst         =]
dnl   * @[=(.  sub-name)=]@ is replaced by [=act-text=][=
          ==  script        =]
dnl   * a short script is run[=
          ESAC              =][=
        ENDIF exist? "no"   =][=
      ENDFOR        =][=
    ENDIF (<= (count "action") (count "action.no")) =]
dnl
dnl @failure-result[=
    IF (= (count "action.no") 0)
      =]:  there is no output[=
    ELSE            =]
dnl[=
      FOR action    =][=
        IF (exist? "no")  =][=
          CASE  act-type  =][=
          ==  define      =]
dnl   * [=(sprintf bad-define-name up-name)
           =] is #defined as [=?% act-text "%s" "1"=][=
          ==  subst       =]
dnl   * @[=(. sub-name)=]@ is replaced by [=act-text=][=
          ==  script      =]
dnl   * a short script is run[=
          ESAC      =][=
        ENDIF       =][=
      ENDFOR        =][=
    ENDIF (= (count "action.no") 0) =][=

    IF   (define doc-text (get "doc"))
      (> (string-length doc-text) 0) =]
dnl
dnl @description
[=(prefix "dnl " doc-text) =][=
    ENDIF           =][=

    IF  (> (string-length author-name) 0) =]
dnl
dnl @version "[=

 (strftime "%d-%B-%Y at %H:%M"
           (localtime (current-time)) ) =]"
dnl
dnl @author [=(. author-name)=][=

    ENDIF           =]
dnl[=

ENDDEF  macro-header

# # # # # # # # # # # C-Feature # # # # # # # # # #

Stash the result of a C/C++ feature test =][=

DEFINE start-feat-test =][=
  (if (exist? "preamble") (prefix "  " (get "preamble"))) =]
  AC_MSG_CHECKING([whether [=(protect-text (get "check"))=]])[=
ENDDEF start-feat-test =][=

DEFINE  end-feat-test  =][=
  (string-append
     pop-language
     "\n  ]) # end of AC_CACHE_VAL for " cv-name
     end-requested-disablement
     "\n  AC_MSG_RESULT([${" cv-name "}])")
  =][=
  emit-results         =][=

ENDDEF  end-feat-test

# # # # # # # # # # COLLECT ACTIONS # # # # # # # # # # =][=

DEFINE  collect-act   =][=

       (set! tmp-text (get "act-text"))
       (set! TMP-text (string-upcase tmp-text))
       (define action-type (get "no" "yes")) =][=
       (if (<= (string-length action-type) 0)
           (set! action-type "no")) =][=
       (set! action-type (string-append action-type "-"
           (get "act-type" "script"))) =][=

  CASE
       (. action-type)

    =][=

  == yes-define        =][=
    (set! good-text (string-append good-text
          "\n    AC_DEFINE" (if (exist? "unquoted") "_UNQUOTED" "")
          "([" (sprintf good-define-name up-name) "],["
          (if (> (string-length tmp-text) 0) tmp-text "1")
          "],\n        [Define this if " (protect-text (get "check")) "])" ))
    =][=

  == yes-subst         =][=
    (set! good-subst 1)
    (set! good-text (string-append good-text
                 "\n    " sub-name "=" (protect-text (shell-str tmp-text)) ))
    =][=

  == yes-script        =][=
    (set! good-text (string-append good-text "\n    "
          (if (exist? "asis") tmp-text (protect-text tmp-text))  ))
    =][=

  ==  no-define        =][=
    (set! bad-text (string-append bad-text
          "\n    AC_DEFINE" (if (exist? "unquoted") "_UNQUOTED" "")
          "([" (sprintf bad-define-name up-name) "],["
          (if (> (string-length tmp-text) 0) tmp-text "1")
          "],\n        [Define this if '" (protect-text (get "check"))
                                     "' is not true])" ))
    =][=

  ==  no-subst         =][=
    (set! bad-subst  1)
    (set! bad-text (string-append bad-text
                 "\n    " sub-name "=" (protect-text (shell-str tmp-text)) ))
    =][=

  ==  no-script        =][=
    (set! bad-text (string-append bad-text "\n    "
          (if (exist? "asis") tmp-text (protect-text tmp-text))  ))
    =][=

  == all-define        =][=
    (set! all-text (string-append all-text
          "\n    AC_DEFINE" (if (exist? "unquoted") "_UNQUOTED" "")
          "([" (sprintf good-define-name up-name) "],["
          (if (> (string-length tmp-text) 0) tmp-text "1")
          "],\n        [Define this if " (protect-text (get "check")) "])" ))
    =][=

  == all-subst         =][=
    (set! all-subst 1)
    (set! all-text (string-append all-text
                 "\n    " sub-name "=" (protect-text (shell-str tmp-text)) ))
    =][=

  == all-script        =][=
    (set! all-text (string-append all-text "\n    "
          (if (exist? "asis") tmp-text (protect-text tmp-text))  ))
    =][=

  ESAC                 =][=

ENDDEF  collect-act

# # # # # # # # # # EMIT RESULTS # # # # # # # # # # =][=

DEFINE  emit-results   =][=

  (define good-subst 0 )
  (define bad-subst  0 )
  (define all-subst  0 )
  (define all-text   "")
  (define TMP-text   "")
  (define tmp-text   "") =][=

  IF (and (= (get "type") "withlib") (exist? "config")) =]
    AC_SUBST([LIB[=(. up-name)=]_CFLAGS])
    AC_SUBST([LIB[=(. up-name)=]_LIBS])[=

    (define good-subst 1)
    (define bad-subst  1)
    (set! good-text (string-append good-text (sprintf "[
      LIB%1$s_CFLAGS=\"${%2$s_cflags}\"
      LIB%1$s_LIBS=\"${%2$s_libs}\"]" up-name cv-name )))

    (set! bad-text (string-append bad-text (sprintf "
      LIB%1$s_CFLAGS=''
      LIB%1$s_LIBS=''"  up-name )))  =][=

  ENDIF type is withlib =][=

  FOR     action        =][=
    INVOKE collect-act  =][=
  ENDFOR  action        =][=

  (if (> good-subst 0)
      (if (< bad-subst 1)
          (set! bad-text (string-append bad-text "\n    "
                         sub-name "=''" ))  )
      (if (> bad-subst 0)
          (set! good-text (string-append good-text "\n    "
                         sub-name "=''" ))  )
  )

=]
  if test "X${[=(. cv-name)=]}" [=

  (if (> (string-length good-text) 0)
    (emit "!= Xno\n  then" good-text
       (if (> (string-length bad-text) 0)
           (string-append "\n  else" bad-text) "")
       "\n  fi" )
    (emit "= Xno\n  then" bad-text "\n  fi") )

  (if (> (+ good-subst bad-subst all-subst) 0)
     (emit "\n  AC_SUBST([" sub-name "])" ))
  (emit all-text)       =][=

  FOR conditional       =]
  AM_CONDITIONAL([[= conditional =]],[test "X${[=(. cv-name)=]}" != Xno])[=
  ENDFOR                =][=

  FOR affirmed          =]
  AM_CONDITIONAL([[= conditional =]],[test "X${[=(. cv-name)=]}" = Xyes])[=
  ENDFOR                =][=

ENDDEF  emit-results

# # # # # # # # # # ENABLEMENT # # # # # # # # # # =][=

DEFINE  emit-enablement

  =]
  AC_ARG_[=arg-name=]([[=(. hyphen-name)=]],
    AS_HELP_STRING([--[=type=]-[=(. hyphen-name)=]], [[=check=]]),
    [[=(. cv-name)=]=${[=(string-downcase! (get "arg-name"))
      =]_[=(. down-name)=]}],
    AC_CACHE_CHECK([whether [=check=]], [=(. cv-name)=],
      [=(. cv-name)=]=[=
         (if (~~ (get "type") "with|enable") "no" "yes") =])
  ) # end of AC_ARG_[=arg-name=][=

  INVOKE emit-results =][=

ENDDEF  emit-enablement

# # # # # # # # # # SETTING # # # # # # # # # # =][=

DEFINE  emit-setting

  =]
  AC_ARG_[=arg-name=]([[=(. hyphen-name)=]],
    AS_HELP_STRING([--[=type=]-[=(. hyphen-name)=]], [[=check=]]),
    [[=(. cv-name)=]=${[=(string-downcase! (get "arg-name"))
      =]_[=(. down-name)=]}],
    AC_CACHE_CHECK([whether [=check=]], [=(. cv-name)=],
      [=(. cv-name)=]=no)
  ) # end of AC_ARG_[=arg-name=][=

  INVOKE emit-results =][=

ENDDEF  emit-setting

# # # # # # # # # SET-LANGUAGE # # # # # # # # =][=

DEFINE  set-language

=]
  AC_CACHE_VAL([[=(. cv-name)=]],[[=
  CASE language  =][=
  ==   ""        =][=(define pop-language "")=][=
  ==   default   =][=(define pop-language "")=][=
  *              =]
  AC_LANG_PUSH([=language=])[=
    (define pop-language (sprintf "
  AC_LANG_POP(%s)" (get "language"))) =][=

  ESAC  =][=

  IF (exist? "cflags")

=]
    [=(. group-pfx)=]save_CPPFLAGS="${CPPFLAGS}"
    CPPFLAGS="[= cflags =] ${CPPFLAGS}"[=
    (set! pop-language (string-append pop-language
          "\n    CPPFLAGS=\"${" group-pfx "save_CPPFLAGS}\"" )) =][=

  ENDIF   cflags exists         =][=

  IF (exist? "libs")

=]
    [=(. group-pfx)=]save_LIBS="${LIBS}"
    LIBS="[= libs =] ${LIBS}"[=
    (set! pop-language (string-append pop-language
          "\n    LIBS=\"${" group-pfx "save_LIBS}\"" )) =][=

  ENDIF   libs exists           =][=

ENDDEF  set-language

# # # # # # # # # # WITH # # # # # # # # # =][=

DEFINE  try-with                =][=
  INVOKE emit-enablement
       arg-name  = WITH         =][=
ENDDEF  try-with                =][=

# # # # # # # # # # WITHCONF # # # # # # # =][=

DEFINE  try-withconf            =][=
  (set! cv-name (string-append group-pfx "cv_set_" down-name)) =][=
  INVOKE emit-setting
       type      = with
       arg-name  = WITH         =][=
ENDDEF  try-withconf            =][=

# # # # # # # # # # WITHOUT # # # # # # # =][=

DEFINE  try-without             =][=
  (set! cv-name (string-append group-pfx "cv_with_" down-name)) =][=
  INVOKE emit-enablement
       arg-name  = WITH         =][=
ENDDEF  try-without             =][=

# # # # # # # WITH-GROUP # # # # # #  =][=

DEFINE  try-with-group          =][=
  (define group-name (string-downcase (string->c-name! (get "name"))))
  =][=

  INVOKE emit-enablement
       type      = with
       arg-name  = WITH         =][=
  (define save-mname mac-name)  =][=

  FOR  subgroup                 =][=
    (set-ctx (string-append group-name "_" (get "subtype")))
    =][=
    INVOKE emit-enablement
       type      = with
       arg-name  = WITH
       check     = (get "subtext")
    =][=
  ENDFOR subgroup               =][=

  (set! mac-name   save-mname)
  (set! good-subst 0)
  (set! bad-subst  0)
  (set! good-text  "")
  (set! bad-text   "")          =][=

  FOR  grp-valid                =]
  if [= (get "grp-test")       =]
  then[=
    FOR  grp-action             =][=
      INVOKE collect-act        =][=
    ENDFOR grp-action           =][=
    (emit (if (> (string-length good-text) 1)
        (string-append "\n" good-text)
        " :"))
    (if (> (string-length bad-text) 1)
        (string-append "\n  else\n" bad-text) "")
    =]
  fi[=
  ENDFOR  grp-valid             =][=

ENDDEF  try-with-group          =][=

# # # # # # # # # # ENABLE # # # # # # # # # =][=

DEFINE  try-enable              =][=
  INVOKE emit-enablement
       arg-name  = ENABLE       =][=
ENDDEF  try-enable              =][=

# # # # # # # # # # DISABLE # # # # # # # # # =][=

DEFINE  try-disable             =][=
  (set! cv-name (string-append group-pfx "cv_enable_" down-name)) =][=
  INVOKE emit-enablement
       arg-name  = ENABLE       =][=
ENDDEF  try-disable             =][=

# # # # # # # # # # WITHLIB # # # # # # # =][=

DEFINE  try-withlib             =][=

  # # # # # # # # options # # # # # # #

=]
  AC_ARG_WITH([[=
    (set! cv-name  (string-append group-pfx "cv_with_lib" down-name))
    (set! lib-name (string-append "lib" down-name))
    lib-name =]],
    AS_HELP_STRING([--with-lib[=(string-tr down-name "_" "-")
        =]], [[=(. lib-name)=] installation prefix]),
    [[=(. cv-name)=]_root=${with_lib[=(string-tr down-name "-" "_")=]}],
    AC_CACHE_CHECK([whether with-[=(. lib-name)=] was specified], [=
        (. cv-name)=]_root,
      [=(. cv-name)=]_root=no)
  ) # end of AC_ARG_WITH [=(. lib-name)=]

  if test "${with_[=(. lib-name)=]+set}" = set && \
     test "X${withval}" = Xno
  then ## disabled by request
    [=(. cv-name)=]_root=no
    [=(. cv-name)=]_cflags=no
    [=(. cv-name)=]_libs=no
  else

  AC_ARG_WITH([[=(. lib-name)=]-cflags],
    AS_HELP_STRING([--with-lib[=(string-tr down-name "_A-Z" "-a-z")
        =]-cflags], [[=(. lib-name)=] compile flags]),
    [[=(. cv-name)=]_cflags=${with_[=(. lib-name)=]_cflags}],
    AC_CACHE_CHECK([whether with-[=(. lib-name)=]-cflags was specified], [=
        (. cv-name)=]_cflags,
      [=(. cv-name)=]_cflags=no)
  ) # end of AC_ARG_WITH [=(. lib-name)=]-cflags

  AC_ARG_WITH([[=(. lib-name)=]-libs],
    AS_HELP_STRING([--with-lib[=(string-tr down-name "_A-Z" "-a-z")
        =]-libs], [[=(. lib-name)=] link command arguments]),
    [[=(. cv-name)=]_libs=${with_[=(. lib-name)=]_libs}],
    AC_CACHE_CHECK([whether with-[=(. lib-name)=]-libs was specified], [=
        (. cv-name)=]_libs,
      [=(. cv-name)=]_libs=no)
  ) # end of AC_ARG_WITH [=(. lib-name)=]-libs
[=

  # # # # # # set cflags/libs # # # # # #

=]
  case "X${[=(. cv-name)=]_cflags}" in
  Xyes|Xno|X )
    case "X${[=(. cv-name)=]_root}" in
    Xyes|Xno|X ) [=(. cv-name)=]_cflags=no ;;
    * ) [=(. cv-name)=]_cflags=-I${[=(. cv-name)=]_root}/include ;;
    esac
  esac
  case "X${[=(. cv-name)=]_libs}" in
  Xyes|Xno|X )
    case "X${[=(. cv-name)=]_root}" in
    Xyes|Xno|X ) [=(. cv-name)=]_libs=no ;;
    * )        [=(. cv-name)=]_libs="-L${[=(. cv-name)
               =]_root}/lib -l[=(. down-name)=]" ;;
    esac
  esac
  [=(. group-pfx)=]save_CPPFLAGS="${CPPFLAGS}"
  [=(. group-pfx)=]save_LIBS="${LIBS}"[=
  (set! bad-text (sprintf
    "\n    CPPFLAGS=\"${%1$ssave_CPPFLAGS}\"
    LIBS=\"${%1$ssave_LIBS}\"" group-pfx )) =][=

  # # # # # # check config script # # # # # =][=

  IF (exist? "config")

=]
  case "X${[=

  (define tmp-text (if (exist? "config.script") (get "config.script")
                       (string-append down-name "-config")  ))

  cv-name =]_cflags}" in
  Xyes|Xno|X )
    f=`[=(. tmp-text)=] [= config.cflags-arg =] 2>/dev/null` || f=''
    test -n "${f}" && [=(. cv-name)=]_cflags="${f}" && \
      AC_MSG_NOTICE([[=(. tmp-text)=] used for CFLAGS: $f]) ;;
  esac
  case "X${[=(. cv-name)=]_libs}" in
  Xyes|Xno|X )
    f=`[=(. tmp-text)=] [= config.libs-arg =] 2>/dev/null` || f=''
    test -n "${f}" && [=(. cv-name)=]_libs="${f}" && \
      AC_MSG_NOTICE([[=(. tmp-text)=] used for LIBS: $f]) ;;
  esac[=

  ENDIF (exist? "config")

  =][= ;; # # # # set cflags/libs # # # #

  (define end-requested-disablement "\n  fi ## disabled by request")
=]
  case "X${[=(. cv-name)=]_cflags}" in
  Xyes|Xno|X )
    [=(. cv-name)=]_cflags="" ;;
  * ) CPPFLAGS="${CPPFLAGS} ${[=(. cv-name)=]_cflags}" ;;
  esac
  case "X${[=(. cv-name)=]_libs}" in
  Xyes|Xno|X )[=
    IF (not (exist? "libname")) =]
    LIBS="${LIBS} -l[=(. down-name)=]"
    [=(. cv-name)=]_libs="-l[=(. down-name)=]"[=

    ELIF (> (string-length (get "libname")) 0) =]
    LIBS="${LIBS} -l[=(get "libname")=]"
    [=(. cv-name)=]_libs="-l[=(get "libname")=]"[=
    ELSE   =]
    [=(. cv-name)=]_libs=""[=
    ENDIF  =] ;;
  * )
    LIBS="${LIBS} ${[=(. cv-name)=]_libs}" ;;
  esac[=

  # # # # # # # # testing # # # # # # #

  =]
  LIB[=(. up-name)=]_CFLAGS=""
  LIB[=(. up-name)=]_LIBS=""[=

  CASE run-mode                 =][=

  ==   link                     =]
  AC_MSG_CHECKING([whether [=(. lib-name)=] can be linked with])[=
  set-language                  =]
  AC_LINK_IFELSE(
    [AC_LANG_SOURCE([[[=(protect-text c-text)=]]])],
    [[=(. cv-name)=]=yes],
    [[=(. cv-name)=]=no]) # end of AC_LINK_IFELSE [=

  ==   run                      =]
  AC_MSG_CHECKING([whether [=(. lib-name)=] functions properly])[=
  set-language                  =]
  AC_RUN_IFELSE([[=(protect-text c-text)=]],
    [[=(. cv-name)=]=yes], [[=(. cv-name)=]=no],
    [[=(. cv-name)=]=no]) # end of AC_RUN_IFELSE [=

  ESAC                          =][=

  end-feat-test                 =][=

ENDDEF  try-withlib             =][=

# # # # # # # # # # TEST # # # # # # # # # =][=

DEFINE  try-test                =][=

  start-feat-test               =]
  AC_CACHE_VAL([[=(. cv-name)=]],[
    [=(. cv-name)=]=[= (sub-shell-str
      (string-append "exec 2> /dev/null\n" (get "code")) ) =]
    if test $? -ne 0 || test -z "$[=(. cv-name)=]"
    then [=(. cv-name)=]=no
    fi
  ]) # end of CACHE_VAL of [=(. cv-name)=]
  AC_MSG_RESULT([${[=(. cv-name)=]}])[=
  emit-results                  =][=

ENDDEF  try-test                =][=

# # # # # # # # # # RUN # # # # # # # # # =][=

DEFINE  try-run                 =][=

  start-feat-test               =][=
  set-language                  =]
  AC_RUN_IFELSE([[=(protect-text c-text)=]],
    [[=(. cv-name)=]=yes],[[=(. cv-name)=]=no],[[=
        (. cv-name)=]=no]
  ) # end of RUN_IFELSE[=
  end-feat-test                 =][=

ENDDEF  try-run                 =][=

# # # # # # # # # # LINK # # # # # # # # # =][=

DEFINE  try-link                =][=

  start-feat-test               =][=
  set-language                  =]
  AC_LINK_IFELSE([=

  IF (exist? "code")            =]
    AC_LANG_SOURCE([[= (protect-text (get "code")) =]])[=

  ELSE                          =]
    AC_LANG_PROGRAM([[= (protect-text (get "code-pfx")) =]],
      [[= (protect-text (get "code-bdy")) =]])[=
  ENDIF                         =],
    [[=(. cv-name)=]=yes],
    [[=(. cv-name)=]=no]
  ) # end of AC_LINK_IFELSE[=
  end-feat-test                 =][=

ENDDEF  try-link                =][=

# # # # # # # # # # COMPILE # # # # # # # # # # =][=

DEFINE  try-compile             =][=

  start-feat-test               =][=
  set-language                  =]
  AC_COMPILE_IFELSE([=

  IF (exist? "code")            =]
    AC_LANG_SOURCE([[= (protect-text (get "code")) =]])[=

  ELSE                          =]
    AC_LANG_PROGRAM([[= (protect-text (get "code-pfx")) =]],
      [[= (protect-text (get "code-bdy")) =]])[=
  ENDIF                         =],
    [[=(. cv-name)=]=yes],
    [[=(. cv-name)=]=no]
  ) # end of AC_COMPILE_IFELSE[=
  end-feat-test                 =][=

ENDDEF  try-compile             =]