@@ -73,11 +73,11 @@ AC_DEFUN_ONCE([LIB_SETUP_FREETYPE],
7373[
7474 AC_ARG_WITH ( freetype , [ AS_HELP_STRING ( [ --with-freetype] ,
7575 [ specify whether to use 'system' or 'bundled' freetype.
76- The selected option applies to both build time and run time.
77- The default behaviour can be platform dependent.
78- If using 'system' and either the include files or libraries cannot be
79- located automatically, then additionally specify both using
80- --with-freetype-include and --with-freetype-lib.] ) ] )
76+ The selected option applies to both build time and run time.
77+ The default behaviour can be platform dependent.
78+ If using 'system' and either the include files or libraries cannot be
79+ located automatically, then additionally specify both using
80+ --with-freetype-include and --with-freetype-lib.] ) ] )
8181 AC_ARG_WITH ( freetype-include , [ AS_HELP_STRING ( [ --with-freetype-include] ,
8282 [ specify directory for the freetype include files] ) ] )
8383 AC_ARG_WITH ( freetype-lib , [ AS_HELP_STRING ( [ --with-freetype-lib] ,
@@ -95,8 +95,10 @@ AC_DEFUN_ONCE([LIB_SETUP_FREETYPE],
9595 FREETYPE_CFLAGS=
9696 FREETYPE_LIBS=
9797
98- if (test "x$with_freetype_include" = "x" && test "x$with_freetype_lib" != "x") || \
99- (test "x$with_freetype_include" != "x" && test "x$with_freetype_lib" = "x"); then
98+ if (test "x$with_freetype_include" = "x" && \
99+ test "x$with_freetype_lib" != "x") || \
100+ (test "x$with_freetype_include" != "x" && \
101+ test "x$with_freetype_lib" = "x"); then
100102 AC_MSG_ERROR ( [ Must specify both or neither of --with-freetype-include and --with-freetype-lib] )
101103 fi
102104
@@ -126,8 +128,8 @@ AC_DEFUN_ONCE([LIB_SETUP_FREETYPE],
126128 fi
127129
128130 if test "x$FREETYPE_TO_USE" = "xsystem" && \
129- (test "x$OPENJDK_TARGET_OS" = "xwindows" || \
130- test "x$OPENJDK_TARGET_OS" = "xmacosx"); then
131+ (test "x$OPENJDK_TARGET_OS" = "xwindows" || \
132+ test "x$OPENJDK_TARGET_OS" = "xmacosx"); then
131133 AC_MSG_ERROR ( [ Only bundled freetype can be specified on Mac and Windows] )
132134 fi
133135
0 commit comments