1 |
dnl Additional macros for Basilisk II |
2 |
|
3 |
|
4 |
dnl Check for libgnomeui |
5 |
dnl B2_PATH_GNOMEUI([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]) |
6 |
dnl Test to see if libgnomeui is installed, and define GNOMEUI_CFLAGS, LIBS |
7 |
AC_DEFUN([B2_PATH_GNOMEUI], |
8 |
[dnl |
9 |
dnl Get the cflags and libraries from the gnome-config script |
10 |
dnl |
11 |
AC_ARG_WITH(gnome-config, |
12 |
[ --with-gnome-config=GNOME_CONFIG Location of gnome-config], |
13 |
GNOME_CONFIG="$withval") |
14 |
|
15 |
AC_PATH_PROG(GNOME_CONFIG, gnome-config, no) |
16 |
AC_MSG_CHECKING(for libgnomeui) |
17 |
if test "$GNOME_CONFIG" = "no"; then |
18 |
AC_MSG_RESULT(no) |
19 |
ifelse([$2], , :, [$2]) |
20 |
else |
21 |
AC_MSG_RESULT(yes) |
22 |
GNOMEUI_CFLAGS=`$GNOME_CONFIG --cflags gnomeui` |
23 |
GNOMEUI_LIBS=`$GNOME_CONFIG --libs gnomeui` |
24 |
ifelse([$1], , :, [$1]) |
25 |
fi |
26 |
AC_SUBST(GNOMEUI_CFLAGS) |
27 |
AC_SUBST(GNOMEUI_LIBS) |
28 |
]) |