File: acinclude.m4

package info (click to toggle)
cmph 2.0.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,748 kB
  • sloc: ansic: 10,582; cpp: 2,429; makefile: 151; sh: 111; python: 48; xml: 5
file content (15 lines) | stat: -rw-r--r-- 581 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
AC_DEFUN([AC_ENABLE_CXXMPH], [AC_ARG_ENABLE([cxxmph],
	[  --enable-cxxmph	enable the c++ cxxmph library ],
	[case "${enableval}" in
		yes) cxxmph=true ;;
		no)  cxxmph=false ;;
		*) AC_MSG_ERROR([bad value ${enableval} for --enable-cxxmph]) ;;
	esac],[cxxmph=false])])

AC_DEFUN([AC_ENABLE_BENCHMARKS], [AC_ARG_ENABLE([benchmarks],
	[  --enable-benchmarks	enable cxxmph benchmarks against other libs ],
	[case "${enableval}" in
		yes) benchmarks=true ;;
		no)  benchmarks=false ;;
		*) AC_MSG_ERROR([bad value ${enableval} for --enable-benchmarks]) ;;
	esac],[benchmarks=false])])