ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Unix/acinclude.m4
Revision: 1.2
Committed: 2002-09-16T13:28:17Z (22 years ago) by gbeauche
Branch: MAIN
CVS Tags: nigel-build-12, nigel-build-13, nigel-build-16, nigel-build-15
Changes since 1.1: +0 -18 lines
Log Message:
Remove TYPE_SOCKLEN_T check as it was merged in main configure script already.

File Contents

# User Rev Content
1 cebix 1.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     ])