You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
330 B
14 lines
330 B
15 years ago
|
ac_ldflags_safe="$LDFLAGS"
|
||
|
ac_libs_safe="$LIBS"
|
||
|
LIBS="-lXext -lX11 $X_LDFLAGS"
|
||
|
|
||
|
LIBXSS=""
|
||
|
AC_CHECK_LIB(Xss, XScreenSaverAllocInfo, [LIBXSS="-lXext -lXss"])
|
||
|
if test "x$LIBXSS" != "x"; then
|
||
|
AC_DEFINE(HAVE_LIBXSS,1,[Define if you have libXss installed])
|
||
|
fi
|
||
|
|
||
|
LIBS="$ac_libs_safe"
|
||
|
LDFLAGS="$ac_ldflags_safe"
|
||
|
AC_SUBST(LIBXSS)
|