File: default-path.m4

package info (click to toggle)
iml 1.0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,336 kB
  • sloc: sh: 19,923; ansic: 6,900; makefile: 73
file content (20 lines) | stat: -rw-r--r-- 564 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
dnl setting default searching path
dnl modify from linbox

AC_DEFUN([IML_DEFAULT_PATH],
[

 AC_ARG_WITH(default,
	     [  --with-default=<path>
		Add <path> to the default path for package GMP and
		ATLAS searching. The default path without setting this 
		argument is /usr and /usr/local
	     ],
	     [  echo "Default checking path = $withval /usr /usr/local"
	        DEFAULT_CHECKING_PATH="$withval /usr /usr/local"
	     ],
	     [
	         echo "Default checking path = /usr /usr/local"
	         DEFAULT_CHECKING_PATH="/usr /usr/local"
             ])
])