aboutsummaryrefslogtreecommitdiffstats
path: root/macros/gnome-orbit-check.m4
blob: 85880dc8bb04343b6d29ef6eb050880a931cc1f4 (plain) (blame)
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
dnl
dnl GNOME_ORBIT_HOOK (script-if-orbit-found, failflat)
dnl
dnl if failflag is "failure" it aborts if orbit is not found.
dnl

AC_DEFUN([GNOME_ORBIT_HOOK],[
    AC_PATH_PROG(ORBIT_CONFIG,orbit-config,no)
    if test x$ORBIT_CONFIG = xno; then
            if test x$2 = failure; then 
            AC_MSG_ERROR(Could not find orbit-config)
            fi
    else
        $1
        ORBIT_INCLUDES=`orbit-config --cflags client server`
        ORBIT_LIBS=`orbit-config --libs client server`
        AC_SUBST(ORBIT_INCLUDES)
        AC_SUBST(ORBIT_LIBS)
        AC_DEFINE(HAVE_ORBIT)
    fi
])

AC_DEFUN([GNOME_ORBIT_CHECK], [
    GNOME_ORBIT_HOOK([],failure)
])