Added. (LIBGTOP_NEED_SERVER): Added.

2000-02-22  Martin Baulig  <martin@home-of-linux.org>

	* acconfig.h (LIBGTOP_HAVE_SYSDEPS): Added.
	(LIBGTOP_NEED_SERVER): Added.
This commit is contained in:
Martin Baulig
2000-02-22 21:52:31 +00:00
committed by Martin Baulig
parent 14e7219160
commit 5e8644d736
3 changed files with 18 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2000-02-22 Martin Baulig <martin@home-of-linux.org>
* acconfig.h (LIBGTOP_HAVE_SYSDEPS): Added.
(LIBGTOP_NEED_SERVER): Added.
2000-02-22 Martin Baulig <martin@home-of-linux.org>
* ltconfig: Added this to CVS and hacked it to use `$CC -shared'

View File

@@ -184,3 +184,8 @@
/* Define to enable dynamic linking of the backends. */
#undef USE_GMODULE
/* Define if we need the LibGTop server. */
#undef LIBGTOP_NEED_SERVER
/* Define if we have a non-suid backend library. */
#undef LIBGTOP_HAVE_SYSDEPS

View File

@@ -475,6 +475,14 @@ AC_DEFUN([GNOME_LIBGTOP_SYSDEPS],[
AC_SUBST(libgtop_use_gmodule)
if test x$libgtop_have_sysdeps = xyes ; then
AC_DEFINE(LIBGTOP_HAVE_SYSDEPS)
fi
if test x$libgtop_need_server = xyes ; then
AC_DEFINE(LIBGTOP_NEED_SERVER)
fi
AM_CONDITIONAL(NEED_LIBGTOP, test x$libgtop_need_server = xyes)
AM_CONDITIONAL(HAVE_SYSDEPS, test x$libgtop_have_sysdeps = xyes)
AM_CONDITIONAL(LIBGTOP_USE_GMODULE, test x$libgtop_use_gmodule = xyes)