1dnl setting default searching path
2dnl modify from linbox
3
4AC_DEFUN([IML_DEFAULT_PATH],
5[
6
7 AC_ARG_WITH(default,
8	     [  --with-default=<path>
9		Add <path> to the default path for package GMP and
10		ATLAS searching. The default path without setting this
11		argument is /usr and /usr/local
12	     ],
13	     [  echo "Default checking path = $withval /usr /usr/local"
14	        DEFAULT_CHECKING_PATH="$withval /usr /usr/local"
15	     ],
16	     [
17	         echo "Default checking path = /usr /usr/local"
18	         DEFAULT_CHECKING_PATH="/usr /usr/local"
19             ])
20])
21