New file. Checks whether libgtop is installed and reads its

* gnome-libgtop-check.m4 (GNOME_LIBGTOP_HOOK): New file.
Checks whether libgtop is installed and reads its `libgtopConf.sh'
file if it can be found. Defines HAVE_LIBGTOP on success and
provides HAVE_LIBGTOP automake conditional.

svn path=/trunk/; revision=224
This commit is contained in:
Martin Baulig
1998-05-22 00:23:48 +00:00
parent d39a6ea089
commit a9b80f8f1c
2 changed files with 90 additions and 0 deletions

View File

@ -1,3 +1,20 @@
1998-05-22 Martin Baulig <martin@home-of-linux.org>
* gnome-libgtop-check.m4 (GNOME_LIBGTOP_HOOK): New file.
Checks whether libgtop is installed and reads its `libgtopConf.sh'
file if it can be found. Defines HAVE_LIBGTOP on success and
provides HAVE_LIBGTOP automake conditional.
1998-05-21 Martin Baulig <martin@home-of-linux.org>
* gnome-libgtop-sysdeps.m4 (GNOME_LIBGTOP_SYSDEPS): New file.
(libgtop_sysdeps_dir): sysdeps directory libgtop uses.
(libgtop_use_machine_h): define HAVE_GLIBTOP_MACHINE_H if this
is `yes'.
(libgtop_need_server): we only need the libgtop server, when
this has a value of `yes'. Defines NEED_LIBGTOP and NEED_LIBGTOP
automake conditional.
1998-05-19 Raja R Harinath <harinath@cs.umn.edu> 1998-05-19 Raja R Harinath <harinath@cs.umn.edu>
* gnome-support.m4 (strerror): New check. * gnome-support.m4 (strerror): New check.

View File

@ -0,0 +1,73 @@
dnl
dnl GNOME_LIBGTOP_HOOK (script-if-libgtop-enabled, failflag)
dnl
dnl if failflag is "fail" then GNOME_LIBGTOP_HOOK will abort if gtopConf.sh
dnl is not found.
dnl
AC_DEFUN([GNOME_LIBGTOP_HOOK],
[
AC_REQUIRE([GNOME_LIBGTOP_SYSDEPS])
AC_SUBST(LIBGTOP_LIBDIR)
AC_SUBST(LIBGTOP_INCLUDEDIR)
AC_SUBST(LIBGTOP_LIBS)
AC_SUBST(LIBGTOP_INCS)
AC_SUBST(LIBGTOP_GUILE_INCS)
AC_SUBST(LIBGTOP_GUILE_LIBS)
AC_SUBST(LIBGTOP_BINDIR)
AC_SUBST(LIBGTOP_SERVER)
if test x$exec_prefix = xNONE; then
if test x$prefix = xNONE; then
libgtop_prefix=$ac_default_prefix/lib
else
libgtop_prefix=$prefix/lib
fi
else
libgtop_prefix=`eval echo \`echo $libdir\``
fi
AC_ARG_WITH(libgtop-includes,
[ --with-libgtop-includes Specify location of LIBGTOP headers],[
CFLAGS="$CFLAGS -I$withval"
])
AC_ARG_WITH(libgtop-libs,
[ --with-libgtop-libs Specify location of LIBGTOP libs],[
LDFLAGS="$LDFLAGS -L$withval"
libgtop_prefix=$withval
])
AC_ARG_WITH(libgtop,
[ --with-libgtop Specify prefix for LIBGTOP files],[
if test x$withval = xyes; then
dnl Note that an empty true branch is not valid sh syntax.
ifelse([$1], [], :, [$1])
else
LDFLAGS="$LDFLAGS -L$withval/lib"
CFLAGS="$CFLAGS -I$withval/include"
libgtop_prefix=$withval/lib
fi
])
AC_MSG_CHECKING(for libgtopConf.sh file in $libgtop_prefix)
if test -f $libgtop_prefix/libgtopConf.sh; then
AC_MSG_RESULT(found)
AC_DEFINE(HAVE_LIBGTOP)
echo "loading libgtop configuration from $libgtop_prefix/libgtopConf.sh"
. $libgtop_prefix/libgtopConf.sh
$1
else
AC_MSG_RESULT(not found)
if test x$2 = xfail; then
AC_MSG_ERROR(Could not find the libgtopConf.sh file that is generated by libgtop install)
fi
fi
AM_CONDITIONAL(HAVE_LIBGTOP, test -f $libgtop_prefix/libgtopConf.sh)
])
AC_DEFUN([GNOME_INIT_LIBGTOP],[
GNOME_LIBGTOP_HOOK([],)
])