forked from VrayoSystems/vtrunkd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aclocal.m4
71 lines (65 loc) · 1.29 KB
/
aclocal.m4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
dnl Test files
AC_DEFUN( AC_TEST_FILES,
[
ac_file_found=yes
for f in $1; do
if test ! -f $2/$f; then
ac_file_found=no
break;
fi
done
if test "$ac_file_found" = "yes" ; then
ifelse([$3], , :,[$3])
else
ifelse([$4], , :,[$4])
fi
])
dnl Search for headers, add path to CPPFLAGS if found
AC_DEFUN( AC_SEARCH_HEADERS,
[
AC_MSG_CHECKING("for $1")
ac_hdr_found=no
for p in $2; do
if test -n "$p"; then
dir="$p"
else
dir="/usr/include"
fi
AC_TEST_FILES($1, $dir,
[
ac_hdr_found=yes
break
]
)
done
if test "$ac_hdr_found" = "yes" ; then
if test -n "$p"; then
CPPFLAGS="$CPPFLAGS -I$p"
fi
AC_MSG_RESULT( [($dir) yes] )
ifelse([$3], , :,[$3])
else
AC_MSG_RESULT("no")
ifelse([$4], , :,[$4])
fi
])
dnl Create links to all files($1) in the directory($2)
AC_DEFUN( AC_LINK_DIR,
[
for i in $1; do
if test -f $2/$i -a ! -f $i; then
AC_MSG_RESULT(linking $2/$i to $i)
ln -f -s $2/$i $i
fi
done
])
dnl Create driver and protocol links
dnl $1 - drivers list, $2 - os dir
AC_DEFUN( AC_LINK_DRV,
[
AC_MSG_RESULT( creating driver and protocol links ... )
if test "$2" != ""; then
AC_LINK_DIR($1, $2)
fi
AC_LINK_DIR($1, generic)
])