File: medipack.m4

package info (click to toggle)
adolc 2.7.2-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,496 kB
  • sloc: cpp: 40,481; ansic: 19,390; sh: 4,277; makefile: 551; python: 486
file content (17 lines) | stat: -rw-r--r-- 395 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
AC_DEFUN([MEDIPACK_CONF],
[
AC_PREREQ(2.59)

AC_ARG_WITH(medipack,
[AS_HELP_STRING([--with-medipack=MEDIPACK_DIR],
		[full path to the installation of MeDiPack])])

if test x"$with_medipack" != "x";
then
  if test x"$adolc_medipack_support" = "xno";
  then
    AC_MSG_ERROR([if --with-medipack is set one  must also --enable-medipack])
  fi
  CPPFLAGS="$CPPFLAGS -I$with_medipack/include"
fi
])