]> Dogcows Code - chaz/openbox/blobdiff - configure.in
add another return, and return a value for a non-void funtion.
[chaz/openbox] / configure.in
index 3af55c5000ff511137353ddd0a9d41ca4bd8151f..375348338b4d0bdb34add82c19bcf2462ba6675b 100644 (file)
@@ -86,27 +86,29 @@ dnl Check for Xft extension support and proper library files.
 XFT=""
 AC_MSG_CHECKING([whether to build support for the Xft extension])
 AC_ARG_ENABLE(
-  xft, [  --enable-xft             enable support of the Xft extension [default=no]],
+  xft, [  --enable-xft            enable support of the Xft extension [default=no]],
   if test x$enableval = "xyes"; then
-    AC_MSG_RESULT([yes])
-    AC_CHECK_LIB(Xft, XftFontOpenXlfd,
-      AC_MSG_CHECKING([for X11/Xft/Xft.h])
-      AC_TRY_LINK(
+       AC_MSG_RESULT([yes])
+
+       AC_CHECK_LIB(Xft, XftFontOpenXlfd,
+         AC_MSG_CHECKING([for X11/Xft/Xft.h])
+         AC_TRY_LINK(
 #include <X11/Xlib.h>
 #include <X11/Xft/Xft.h>
-      , XftFont foo,
+, XftFont foo,
         AC_MSG_RESULT([yes])
-        XFT="yes",
+           XFT="yes"
+               LIBS="$LIBS -lXft",
         AC_MSG_RESULT([no])
-      )
+         )
     )
+
   else
-    AC_MSG_RESULT([no])
+       AC_MSG_RESULT([no])
   fi,
-       AC_MSG_RESULT([no])
+  AC_MSG_RESULT([no])
 )
 if test x$XFT = "xyes"; then
-  LIBS="$LIBS -lXft"
   AC_DEFINE(XFT,1,Enable support of the Xft extension)
 fi
 
This page took 0.023986 seconds and 4 git commands to generate.