File: static.m4

package info (click to toggle)
comptext 1.0.1-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 812 kB
  • sloc: sh: 3,842; cpp: 732; makefile: 109; ansic: 15
file content (9 lines) | stat: -rw-r--r-- 400 bytes parent folder | download | duplicates (26)
1
2
3
4
5
6
7
8
9
AC_DEFUN([AC_FL_STATIC], [
  AC_ARG_ENABLE([static],
                AC_HELP_STRING([--enable-static], [enable static linking for some libraries]),
                [case "${enableval}" in
                    yes|no) ac_cv_static="${enableval}" ;;
                    *)      AC_MSG_ERROR([bad value ${enableval} for --enable-static]) ;;
                 esac],
                 [ac_cv_static=no])
])