ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Unix/acinclude.m4
Revision: 1.3
Committed: 2005-06-30T21:25:26Z (18 years, 10 months ago) by cebix
Branch: MAIN
CVS Tags: nigel-build-19, nigel-build-17, HEAD
Changes since 1.2: +1 -1 lines
Log Message:
minor cleanups

File Contents

# Content
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 ])