-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathx_ac_rose.m4
43 lines (40 loc) · 1.35 KB
/
x_ac_rose.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
AC_DEFUN([X_AC_ROSE], [
AC_MSG_CHECKING([ROSE installation])
AC_ARG_WITH([rose],
AS_HELP_STRING(--with-rose@<:@=rose installation path@:>@,specify the path to rose @<:@default=/usr@:>@),
[with_rose_path=$withval],
[with_rose_path="check"]
)
rose_dflt_dir="/usr"
rose_found="no"
if test "x$with_rose_path" != "xcheck"; then
#rose install root given
#
if test -f "$with_rose_path"/include/rose.h ; then
AC_SUBST(ROSE_INCLUDE, -I$with_rose_path/include)
AC_SUBST(LIBROSEDIR, [$with_rose_path/lib])
AC_SUBST(LIBJAVADIR, [/etc/alternatives/java_sdk_gcj/jre/lib/amd64/server])
AC_SUBST(LIBROSE, [-lrose])
AC_SUBST(LIBJVM, [-ljvm])
AC_DEFINE(HAVE_ROSE_H,1,[Define 1 if rose.h is found])
rose_found="yes"
else
rose_found="no"
fi
else
# rose path not given
if test -f $rose_dflt_dir/include/rose.hpp ; then
AC_SUBST(ROSE_INCLUDE, -I$rose_dflt_dir/include)
AC_SUBST(LIBROSEDIR, [$rose_dflt_dir/lib])
AC_SUBST(LIBJAVADIR, [/etc/alternatives/java_sdk_gcj/jre/lib/amd64/server])
AC_SUBST(LIBROSE, [-lrose])
AC_SUBST(LIBJVM, [-ljvm])
AC_DEFINE(HAVE_ROSE_H,1,[Define 1 if rose.h is found])
AC_DEFINE(HAVE_ROSE_H,1,[Define 1 if rose.h is found])
rose_found="yes"
else
rose_found="no"
fi
fi
AC_MSG_RESULT($rose_found)
])