common/autoconf/libraries.m4

Wed, 16 May 2018 15:52:51 -0700

author
kevinw
date
Wed, 16 May 2018 15:52:51 -0700
changeset 2223
01cc48ed67f3
parent 2220
47fda751abb6
child 2316
64a3eeabf6e5
child 2400
9da665f87c4b
permissions
-rw-r--r--

8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
Reviewed-by: erikj, ihse, ddehaven, billyh

erikj@459 1 #
kevinw@2206 2 # Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
erikj@459 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
erikj@459 4 #
erikj@459 5 # This code is free software; you can redistribute it and/or modify it
erikj@459 6 # under the terms of the GNU General Public License version 2 only, as
erikj@459 7 # published by the Free Software Foundation. Oracle designates this
erikj@459 8 # particular file as subject to the "Classpath" exception as provided
erikj@459 9 # by Oracle in the LICENSE file that accompanied this code.
erikj@459 10 #
erikj@459 11 # This code is distributed in the hope that it will be useful, but WITHOUT
erikj@459 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
erikj@459 13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
erikj@459 14 # version 2 for more details (a copy is included in the LICENSE file that
erikj@459 15 # accompanied this code).
erikj@459 16 #
erikj@459 17 # You should have received a copy of the GNU General Public License version
erikj@459 18 # 2 along with this work; if not, write to the Free Software Foundation,
erikj@459 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
erikj@459 20 #
erikj@459 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
erikj@459 22 # or visit www.oracle.com if you need additional information or have any
erikj@459 23 # questions.
erikj@459 24 #
erikj@459 25
erikj@459 26 AC_DEFUN_ONCE([LIB_SETUP_INIT],
erikj@459 27 [
ihse@839 28
ihse@839 29 ###############################################################################
ihse@839 30 #
ihse@839 31 # OS specific settings that we never will need to probe.
ihse@839 32 #
ihse@839 33 if test "x$OPENJDK_TARGET_OS" = xlinux; then
erikj@459 34 AC_MSG_CHECKING([what is not needed on Linux?])
erikj@459 35 PULSE_NOT_NEEDED=yes
erikj@459 36 AC_MSG_RESULT([pulse])
ihse@839 37 fi
erikj@459 38
ihse@839 39 if test "x$OPENJDK_TARGET_OS" = xsolaris; then
erikj@459 40 AC_MSG_CHECKING([what is not needed on Solaris?])
erikj@459 41 ALSA_NOT_NEEDED=yes
erikj@459 42 PULSE_NOT_NEEDED=yes
erikj@459 43 AC_MSG_RESULT([alsa pulse])
ihse@839 44 fi
erikj@459 45
kvn@972 46 if test "x$OPENJDK_TARGET_OS" = xaix; then
simonis@971 47 AC_MSG_CHECKING([what is not needed on AIX?])
simonis@971 48 ALSA_NOT_NEEDED=yes
simonis@971 49 PULSE_NOT_NEEDED=yes
simonis@971 50 AC_MSG_RESULT([alsa pulse])
kvn@972 51 fi
simonis@971 52
simonis@971 53
ihse@839 54 if test "x$OPENJDK_TARGET_OS" = xwindows; then
erikj@459 55 AC_MSG_CHECKING([what is not needed on Windows?])
ihse@839 56 CUPS_NOT_NEEDED=yes
erikj@459 57 ALSA_NOT_NEEDED=yes
erikj@459 58 PULSE_NOT_NEEDED=yes
erikj@459 59 X11_NOT_NEEDED=yes
erikj@459 60 AC_MSG_RESULT([alsa cups pulse x11])
ihse@839 61 fi
erikj@459 62
ihse@839 63 if test "x$OPENJDK_TARGET_OS" = xmacosx; then
erikj@459 64 AC_MSG_CHECKING([what is not needed on MacOSX?])
erikj@459 65 ALSA_NOT_NEEDED=yes
erikj@459 66 PULSE_NOT_NEEDED=yes
erikj@459 67 X11_NOT_NEEDED=yes
ihse@868 68 AC_MSG_RESULT([alsa pulse x11])
ihse@839 69 fi
erikj@459 70
ihse@839 71 if test "x$OPENJDK_TARGET_OS" = xbsd; then
erikj@459 72 AC_MSG_CHECKING([what is not needed on bsd?])
erikj@459 73 ALSA_NOT_NEEDED=yes
ihse@839 74 AC_MSG_RESULT([alsa])
ihse@839 75 fi
erikj@459 76
ihse@839 77 if test "x$OPENJDK" = "xfalse"; then
ihse@868 78 FREETYPE_NOT_NEEDED=yes
ihse@839 79 fi
erikj@459 80
ihse@839 81 if test "x$SUPPORT_HEADFUL" = xno; then
ohair@478 82 X11_NOT_NEEDED=yes
ihse@839 83 fi
ohair@478 84
ddehaven@1304 85 # Deprecated and now ignored
ihse@863 86 BASIC_DEPRECATED_ARG_ENABLE(macosx-runtime-support, macosx_runtime_support)
erikj@459 87 ])
erikj@459 88
erikj@459 89 AC_DEFUN_ONCE([LIB_SETUP_X11],
erikj@459 90 [
erikj@459 91
ihse@839 92 ###############################################################################
ihse@839 93 #
ihse@839 94 # Check for X Windows
ihse@839 95 #
erikj@459 96
ihse@839 97 # Check if the user has specified sysroot, but not --x-includes or --x-libraries.
ihse@839 98 # Make a simple check for the libraries at the sysroot, and setup --x-includes and
ihse@839 99 # --x-libraries for the sysroot, if that seems to be correct.
kevinw@2215 100 if test "x$OPENJDK_TARGET_OS" = "xlinux"; then
kevinw@2215 101 if test "x$SYSROOT" != "x"; then
kevinw@2215 102 if test "x$x_includes" = xNONE; then
kevinw@2215 103 if test -f "$SYSROOT/usr/X11R6/include/X11/Xlib.h"; then
kevinw@2215 104 x_includes="$SYSROOT/usr/X11R6/include"
kevinw@2215 105 elif test -f "$SYSROOT/usr/include/X11/Xlib.h"; then
kevinw@2215 106 x_includes="$SYSROOT/usr/include"
kevinw@2215 107 fi
ihse@839 108 fi
kevinw@2215 109 if test "x$x_libraries" = xNONE; then
kevinw@2215 110 if test -f "$SYSROOT/usr/X11R6/lib/libX11.so"; then
kevinw@2215 111 x_libraries="$SYSROOT/usr/X11R6/lib"
kevinw@2215 112 elif test "$SYSROOT/usr/lib64/libX11.so" && test "x$OPENJDK_TARGET_CPU_BITS" = x64; then
kevinw@2215 113 x_libraries="$SYSROOT/usr/lib64"
kevinw@2215 114 elif test -f "$SYSROOT/usr/lib/libX11.so"; then
kevinw@2215 115 x_libraries="$SYSROOT/usr/lib"
kevinw@2215 116 fi
ihse@839 117 fi
erikj@459 118 fi
erikj@459 119 fi
ihse@839 120
ihse@839 121 # Now let autoconf do it's magic
ihse@839 122 AC_PATH_X
ihse@839 123 AC_PATH_XTRA
ihse@839 124
ihse@839 125 # AC_PATH_XTRA creates X_LIBS and sometimes adds -R flags. When cross compiling
ihse@839 126 # this doesn't make sense so we remove it.
ihse@839 127 if test "x$COMPILE_TYPE" = xcross; then
ihse@839 128 X_LIBS=`$ECHO $X_LIBS | $SED 's/-R \{0,1\}[[^ ]]*//g'`
ihse@839 129 fi
ihse@839 130
ihse@839 131 if test "x$no_x" = xyes && test "x$X11_NOT_NEEDED" != xyes; then
ihse@839 132 HELP_MSG_MISSING_DEPENDENCY([x11])
ihse@839 133 AC_MSG_ERROR([Could not find X11 libraries. $HELP_MSG])
ihse@839 134 fi
ihse@839 135
kevinw@2215 136
ihse@839 137 if test "x$OPENJDK_TARGET_OS" = xsolaris; then
ihse@839 138 OPENWIN_HOME="/usr/openwin"
kevinw@2215 139 X_CFLAGS="-I$SYSROOT$OPENWIN_HOME/include -I$SYSROOT$OPENWIN_HOME/include/X11/extensions"
kevinw@2215 140 X_LIBS="-L$SYSROOT$OPENWIN_HOME/sfw/lib$OPENJDK_TARGET_CPU_ISADIR \
kevinw@2215 141 -L$SYSROOT$OPENWIN_HOME/lib$OPENJDK_TARGET_CPU_ISADIR \
kevinw@2215 142 -R$OPENWIN_HOME/sfw/lib$OPENJDK_TARGET_CPU_ISADIR \
kevinw@2215 143 -R$OPENWIN_HOME/lib$OPENJDK_TARGET_CPU_ISADIR"
ihse@839 144 fi
erikj@459 145
ihse@839 146 #
ihse@839 147 # Weird Sol10 something check...TODO change to try compile
ihse@839 148 #
ihse@839 149 if test "x${OPENJDK_TARGET_OS}" = xsolaris; then
ihse@839 150 if test "`uname -r`" = "5.10"; then
ihse@839 151 if test "`${EGREP} -c XLinearGradient ${OPENWIN_HOME}/share/include/X11/extensions/Xrender.h`" = "0"; then
ihse@839 152 X_CFLAGS="${X_CFLAGS} -DSOLARIS10_NO_XRENDER_STRUCTS"
ihse@839 153 fi
ihse@839 154 fi
ihse@839 155 fi
erikj@600 156
ihse@839 157 AC_LANG_PUSH(C)
ihse@839 158 OLD_CFLAGS="$CFLAGS"
ihse@839 159 CFLAGS="$CFLAGS $X_CFLAGS"
erikj@459 160
ihse@839 161 # Need to include Xlib.h and Xutil.h to avoid "present but cannot be compiled" warnings on Solaris 10
ihse@839 162 AC_CHECK_HEADERS([X11/extensions/shape.h X11/extensions/Xrender.h X11/extensions/XTest.h X11/Intrinsic.h],
ihse@839 163 [X11_A_OK=yes],
ihse@839 164 [X11_A_OK=no; break],
ihse@839 165 [
ihse@839 166 # include <X11/Xlib.h>
ihse@839 167 # include <X11/Xutil.h>
ihse@839 168 ]
ihse@839 169 )
erikj@459 170
ihse@839 171 CFLAGS="$OLD_CFLAGS"
ihse@839 172 AC_LANG_POP(C)
erikj@459 173
ihse@839 174 if test "x$X11_A_OK" = xno && test "x$X11_NOT_NEEDED" != xyes; then
erikj@459 175 HELP_MSG_MISSING_DEPENDENCY([x11])
erikj@782 176 AC_MSG_ERROR([Could not find all X11 headers (shape.h Xrender.h XTest.h Intrinsic.h). $HELP_MSG])
ihse@839 177 fi
erikj@459 178
ihse@839 179 AC_SUBST(X_CFLAGS)
ihse@839 180 AC_SUBST(X_LIBS)
erikj@459 181 ])
erikj@459 182
erikj@459 183 AC_DEFUN_ONCE([LIB_SETUP_CUPS],
erikj@459 184 [
erikj@459 185
ihse@839 186 ###############################################################################
ihse@839 187 #
ihse@839 188 # The common unix printing system cups is used to print from java.
ihse@839 189 #
ihse@839 190 AC_ARG_WITH(cups, [AS_HELP_STRING([--with-cups],
ihse@839 191 [specify prefix directory for the cups package
ihse@839 192 (expecting the headers under PATH/include)])])
ihse@839 193 AC_ARG_WITH(cups-include, [AS_HELP_STRING([--with-cups-include],
ihse@839 194 [specify directory for the cups include files])])
erikj@459 195
ihse@839 196 if test "x$CUPS_NOT_NEEDED" = xyes; then
ihse@839 197 if test "x${with_cups}" != x || test "x${with_cups_include}" != x; then
ihse@839 198 AC_MSG_WARN([cups not used, so --with-cups is ignored])
ihse@839 199 fi
ihse@839 200 CUPS_CFLAGS=
ihse@839 201 else
ihse@839 202 CUPS_FOUND=no
erikj@459 203
ihse@839 204 if test "x${with_cups}" = xno || test "x${with_cups_include}" = xno; then
ihse@839 205 AC_MSG_ERROR([It is not possible to disable the use of cups. Remove the --without-cups option.])
ihse@839 206 fi
erikj@459 207
ihse@839 208 if test "x${with_cups}" != x; then
ihse@839 209 CUPS_CFLAGS="-I${with_cups}/include"
ihse@839 210 CUPS_FOUND=yes
ihse@839 211 fi
ihse@839 212 if test "x${with_cups_include}" != x; then
ihse@839 213 CUPS_CFLAGS="-I${with_cups_include}"
ihse@839 214 CUPS_FOUND=yes
ihse@839 215 fi
ihse@839 216 if test "x$CUPS_FOUND" = xno; then
ihse@839 217 BDEPS_CHECK_MODULE(CUPS, cups, xxx, [CUPS_FOUND=yes])
ihse@839 218 fi
ihse@839 219 if test "x$CUPS_FOUND" = xno; then
ihse@839 220 # Are the cups headers installed in the default /usr/include location?
ihse@839 221 AC_CHECK_HEADERS([cups/cups.h cups/ppd.h],
ihse@839 222 [
ihse@839 223 CUPS_FOUND=yes
ihse@839 224 CUPS_CFLAGS=
ihse@839 225 DEFAULT_CUPS=yes
ihse@839 226 ]
ihse@839 227 )
ihse@839 228 fi
ihse@839 229 if test "x$CUPS_FOUND" = xno; then
ihse@839 230 # Getting nervous now? Lets poke around for standard Solaris third-party
ihse@839 231 # package installation locations.
ihse@839 232 AC_MSG_CHECKING([for cups headers])
kevinw@2215 233 if test -s $SYSROOT/opt/sfw/cups/include/cups/cups.h; then
ihse@839 234 # An SFW package seems to be installed!
ihse@839 235 CUPS_FOUND=yes
kevinw@2215 236 CUPS_CFLAGS="-I$SYSROOT/opt/sfw/cups/include"
kevinw@2215 237 elif test -s $SYSROOT/opt/csw/include/cups/cups.h; then
ihse@839 238 # A CSW package seems to be installed!
ihse@839 239 CUPS_FOUND=yes
kevinw@2215 240 CUPS_CFLAGS="-I$SYSROOT/opt/csw/include"
ihse@839 241 fi
ihse@839 242 AC_MSG_RESULT([$CUPS_FOUND])
ihse@839 243 fi
ihse@839 244 if test "x$CUPS_FOUND" = xno; then
ihse@839 245 HELP_MSG_MISSING_DEPENDENCY([cups])
ihse@839 246 AC_MSG_ERROR([Could not find cups! $HELP_MSG ])
ihse@839 247 fi
ihse@839 248 fi
erikj@459 249
ihse@839 250 AC_SUBST(CUPS_CFLAGS)
erikj@459 251
erikj@459 252 ])
erikj@459 253
kevinw@2220 254 AC_DEFUN([LIB_BUILD_FREETYPE],
kevinw@2220 255 [
kevinw@2220 256 FREETYPE_SRC_PATH="$1"
kevinw@2220 257 BUILD_FREETYPE=yes
kevinw@2220 258
kevinw@2220 259 # Check if the freetype sources are acessible..
kevinw@2220 260 if ! test -d $FREETYPE_SRC_PATH; then
kevinw@2220 261 AC_MSG_WARN([--with-freetype-src specified, but can't find path "$FREETYPE_SRC_PATH" - ignoring --with-freetype-src])
kevinw@2220 262 BUILD_FREETYPE=no
kevinw@2220 263 fi
kevinw@2220 264 # ..and contain a vc2010 project file
kevinw@2220 265 vcxproj_path="$FREETYPE_SRC_PATH/builds/windows/vc2010/freetype.vcxproj"
kevinw@2220 266 if test "x$BUILD_FREETYPE" = xyes && ! test -s $vcxproj_path; then
kevinw@2220 267 AC_MSG_WARN([Can't find project file $vcxproj_path (you may try a newer freetype version) - ignoring --with-freetype-src])
kevinw@2220 268 BUILD_FREETYPE=no
kevinw@2220 269 fi
kevinw@2220 270 # Now check if configure found a version of 'msbuild.exe'
kevinw@2220 271 if test "x$BUILD_FREETYPE" = xyes && test "x$MSBUILD" == x ; then
kevinw@2220 272 AC_MSG_WARN([Can't find an msbuild.exe executable (you may try to install .NET 4.0) - ignoring --with-freetype-src])
kevinw@2220 273 BUILD_FREETYPE=no
kevinw@2220 274 fi
kevinw@2220 275
kevinw@2220 276 # Ready to go..
kevinw@2220 277 if test "x$BUILD_FREETYPE" = xyes; then
kevinw@2220 278
kevinw@2220 279 # msbuild requires trailing slashes for output directories
kevinw@2220 280 freetype_lib_path="$FREETYPE_SRC_PATH/lib$OPENJDK_TARGET_CPU_BITS/"
kevinw@2220 281 freetype_lib_path_unix="$freetype_lib_path"
kevinw@2220 282 freetype_obj_path="$FREETYPE_SRC_PATH/obj$OPENJDK_TARGET_CPU_BITS/"
kevinw@2220 283 BASIC_WINDOWS_REWRITE_AS_WINDOWS_MIXED_PATH(vcxproj_path)
kevinw@2220 284 BASIC_WINDOWS_REWRITE_AS_WINDOWS_MIXED_PATH(freetype_lib_path)
kevinw@2220 285 BASIC_WINDOWS_REWRITE_AS_WINDOWS_MIXED_PATH(freetype_obj_path)
kevinw@2220 286 if test "x$OPENJDK_TARGET_CPU_BITS" = x64; then
kevinw@2220 287 freetype_platform=x64
kevinw@2220 288 else
kevinw@2220 289 freetype_platform=win32
kevinw@2220 290 fi
kevinw@2220 291
kevinw@2220 292 # The original freetype project file is for VS 2010 (i.e. 'v100'),
kevinw@2220 293 # so we have to adapt the toolset if building with any other toolsed (i.e. SDK).
kevinw@2220 294 # Currently 'PLATFORM_TOOLSET' is set in 'TOOLCHAIN_CHECK_POSSIBLE_VISUAL_STUDIO_ROOT'/
kevinw@2220 295 # 'TOOLCHAIN_CHECK_POSSIBLE_WIN_SDK_ROOT' in toolchain_windows.m4
kevinw@2220 296 AC_MSG_NOTICE([Trying to compile freetype sources with PlatformToolset=$PLATFORM_TOOLSET to $freetype_lib_path_unix ...])
kevinw@2220 297
kevinw@2220 298 # First we try to build the freetype.dll
kevinw@2220 299 $ECHO -e "@echo off\n"\
kevinw@2220 300 "$MSBUILD $vcxproj_path "\
kevinw@2220 301 "/p:PlatformToolset=$PLATFORM_TOOLSET "\
kevinw@2220 302 "/p:Configuration=\"Release Multithreaded\" "\
kevinw@2220 303 "/p:Platform=$freetype_platform "\
kevinw@2220 304 "/p:ConfigurationType=DynamicLibrary "\
kevinw@2220 305 "/p:TargetName=freetype "\
kevinw@2220 306 "/p:OutDir=\"$freetype_lib_path\" "\
kevinw@2220 307 "/p:IntDir=\"$freetype_obj_path\" > freetype.log" > freetype.bat
kevinw@2220 308 cmd /c freetype.bat
kevinw@2220 309
kevinw@2220 310 if test -s "$freetype_lib_path_unix/freetype.dll"; then
kevinw@2220 311 # If that succeeds we also build freetype.lib
kevinw@2220 312 $ECHO -e "@echo off\n"\
kevinw@2220 313 "$MSBUILD $vcxproj_path "\
kevinw@2220 314 "/p:PlatformToolset=$PLATFORM_TOOLSET "\
kevinw@2220 315 "/p:Configuration=\"Release Multithreaded\" "\
kevinw@2220 316 "/p:Platform=$freetype_platform "\
kevinw@2220 317 "/p:ConfigurationType=StaticLibrary "\
kevinw@2220 318 "/p:TargetName=freetype "\
kevinw@2220 319 "/p:OutDir=\"$freetype_lib_path\" "\
kevinw@2220 320 "/p:IntDir=\"$freetype_obj_path\" >> freetype.log" > freetype.bat
kevinw@2220 321 cmd /c freetype.bat
kevinw@2220 322
kevinw@2220 323 if test -s "$freetype_lib_path_unix/freetype.lib"; then
kevinw@2220 324 # Once we build both, lib and dll, set freetype lib and include path appropriately
kevinw@2220 325 POTENTIAL_FREETYPE_INCLUDE_PATH="$FREETYPE_SRC_PATH/include"
kevinw@2220 326 POTENTIAL_FREETYPE_LIB_PATH="$freetype_lib_path_unix"
kevinw@2220 327 AC_MSG_NOTICE([Compiling freetype sources succeeded! (see freetype.log for build results)])
kevinw@2220 328 else
kevinw@2220 329 BUILD_FREETYPE=no
kevinw@2220 330 fi
kevinw@2220 331 else
kevinw@2220 332 BUILD_FREETYPE=no
kevinw@2220 333 fi
kevinw@2220 334 fi
kevinw@2220 335 ])
kevinw@2220 336
ihse@868 337 AC_DEFUN([LIB_CHECK_POTENTIAL_FREETYPE],
ihse@868 338 [
ihse@868 339 POTENTIAL_FREETYPE_INCLUDE_PATH="$1"
ihse@868 340 POTENTIAL_FREETYPE_LIB_PATH="$2"
ihse@868 341 METHOD="$3"
kevinw@2220 342
ihse@868 343 # First check if the files exists.
ihse@868 344 if test -s "$POTENTIAL_FREETYPE_INCLUDE_PATH/ft2build.h"; then
ihse@868 345 # We found an arbitrary include file. That's a good sign.
ihse@868 346 AC_MSG_NOTICE([Found freetype include files at $POTENTIAL_FREETYPE_INCLUDE_PATH using $METHOD])
ihse@868 347 FOUND_FREETYPE=yes
ihse@868 348
ihse@868 349 FREETYPE_LIB_NAME="${LIBRARY_PREFIX}freetype${SHARED_LIBRARY_SUFFIX}"
ihse@868 350 if ! test -s "$POTENTIAL_FREETYPE_LIB_PATH/$FREETYPE_LIB_NAME"; then
ihse@868 351 AC_MSG_NOTICE([Could not find $POTENTIAL_FREETYPE_LIB_PATH/$FREETYPE_LIB_NAME. Ignoring location.])
ihse@868 352 FOUND_FREETYPE=no
ihse@868 353 else
ihse@868 354 if test "x$OPENJDK_TARGET_OS" = xwindows; then
ihse@868 355 # On Windows, we will need both .lib and .dll file.
ihse@868 356 if ! test -s "$POTENTIAL_FREETYPE_LIB_PATH/freetype.lib"; then
ihse@868 357 AC_MSG_NOTICE([Could not find $POTENTIAL_FREETYPE_LIB_PATH/freetype.lib. Ignoring location.])
ihse@868 358 FOUND_FREETYPE=no
ihse@868 359 fi
ihse@868 360 elif test "x$OPENJDK_TARGET_OS" = xsolaris && test "x$OPENJDK_TARGET_CPU" = xx86_64 && test -s "$POTENTIAL_FREETYPE_LIB_PATH/amd64/$FREETYPE_LIB_NAME"; then
ihse@868 361 # On solaris-x86_86, default is (normally) PATH/lib/amd64. Update our guess!
ihse@868 362 POTENTIAL_FREETYPE_LIB_PATH="$POTENTIAL_FREETYPE_LIB_PATH/amd64"
ihse@868 363 fi
ihse@868 364 fi
ihse@868 365 fi
ihse@868 366
ihse@868 367 if test "x$FOUND_FREETYPE" = xyes; then
ihse@868 368 BASIC_FIXUP_PATH(POTENTIAL_FREETYPE_INCLUDE_PATH)
ihse@868 369 BASIC_FIXUP_PATH(POTENTIAL_FREETYPE_LIB_PATH)
ihse@868 370
ihse@868 371 FREETYPE_INCLUDE_PATH="$POTENTIAL_FREETYPE_INCLUDE_PATH"
ihse@868 372 AC_MSG_CHECKING([for freetype includes])
ihse@868 373 AC_MSG_RESULT([$FREETYPE_INCLUDE_PATH])
ihse@868 374 FREETYPE_LIB_PATH="$POTENTIAL_FREETYPE_LIB_PATH"
ihse@868 375 AC_MSG_CHECKING([for freetype libraries])
ihse@868 376 AC_MSG_RESULT([$FREETYPE_LIB_PATH])
ihse@868 377 fi
ihse@868 378 ])
ihse@868 379
erikj@459 380 AC_DEFUN_ONCE([LIB_SETUP_FREETYPE],
erikj@459 381 [
erikj@459 382
ihse@839 383 ###############################################################################
ihse@839 384 #
ihse@868 385 # The ubiquitous freetype library is used to render fonts.
ihse@839 386 #
ihse@839 387 AC_ARG_WITH(freetype, [AS_HELP_STRING([--with-freetype],
ihse@868 388 [specify prefix directory for the freetype package
ihse@839 389 (expecting the libraries under PATH/lib and the headers under PATH/include)])])
ihse@868 390 AC_ARG_WITH(freetype-include, [AS_HELP_STRING([--with-freetype-include],
ihse@868 391 [specify directory for the freetype include files])])
ihse@868 392 AC_ARG_WITH(freetype-lib, [AS_HELP_STRING([--with-freetype-lib],
ihse@868 393 [specify directory for the freetype library])])
kevinw@2220 394 AC_ARG_WITH(freetype-src, [AS_HELP_STRING([--with-freetype-src],
kevinw@2220 395 [specify directory with freetype sources to automatically build the library (experimental, Windows-only)])])
ihse@868 396 AC_ARG_ENABLE(freetype-bundling, [AS_HELP_STRING([--disable-freetype-bundling],
ihse@868 397 [disable bundling of the freetype library with the build result @<:@enabled on Windows or when using --with-freetype, disabled otherwise@:>@])])
erikj@459 398
ihse@868 399 FREETYPE_CFLAGS=
ihse@868 400 FREETYPE_LIBS=
ihse@868 401 FREETYPE_BUNDLE_LIB_PATH=
erikj@459 402
ihse@868 403 if test "x$FREETYPE_NOT_NEEDED" = xyes; then
kevinw@2220 404 if test "x$with_freetype" != x || test "x$with_freetype_include" != x || test "x$with_freetype_lib" != x || test "x$with_freetype_src" != x; then
ihse@839 405 AC_MSG_WARN([freetype not used, so --with-freetype is ignored])
ihse@839 406 fi
ihse@868 407 if test "x$enable_freetype_bundling" != x; then
ihse@868 408 AC_MSG_WARN([freetype not used, so --enable-freetype-bundling is ignored])
ihse@868 409 fi
ihse@839 410 else
ihse@868 411 # freetype is needed to build; go get it!
erikj@459 412
ihse@868 413 BUNDLE_FREETYPE="$enable_freetype_bundling"
ihse@868 414
kevinw@2220 415 if test "x$with_freetype_src" != x; then
kevinw@2220 416 if test "x$OPENJDK_TARGET_OS" = xwindows; then
kevinw@2220 417 # Try to build freetype if --with-freetype-src was given on Windows
kevinw@2220 418 LIB_BUILD_FREETYPE([$with_freetype_src])
kevinw@2220 419 if test "x$BUILD_FREETYPE" = xyes; then
kevinw@2220 420 # Okay, we built it. Check that it works.
kevinw@2220 421 LIB_CHECK_POTENTIAL_FREETYPE($POTENTIAL_FREETYPE_INCLUDE_PATH, $POTENTIAL_FREETYPE_LIB_PATH, [--with-freetype-src])
kevinw@2220 422 if test "x$FOUND_FREETYPE" != xyes; then
kevinw@2220 423 AC_MSG_ERROR([Can not use the built freetype at location given by --with-freetype-src])
kevinw@2220 424 fi
kevinw@2220 425 else
kevinw@2220 426 AC_MSG_NOTICE([User specified --with-freetype-src but building freetype failed. (see freetype.log for build results)])
kevinw@2220 427 AC_MSG_ERROR([Consider building freetype manually and using --with-freetype instead.])
kevinw@2220 428 fi
kevinw@2220 429 else
kevinw@2220 430 AC_MSG_WARN([--with-freetype-src is currently only supported on Windows - ignoring])
kevinw@2220 431 fi
kevinw@2220 432 fi
kevinw@2220 433
ihse@868 434 if test "x$with_freetype" != x || test "x$with_freetype_include" != x || test "x$with_freetype_lib" != x; then
ihse@868 435 # User has specified settings
ihse@868 436
ihse@868 437 if test "x$BUNDLE_FREETYPE" = x; then
ihse@868 438 # If not specified, default is to bundle freetype
ihse@868 439 BUNDLE_FREETYPE=yes
ihse@839 440 fi
kevinw@2220 441
ihse@868 442 if test "x$with_freetype" != x; then
ihse@868 443 POTENTIAL_FREETYPE_INCLUDE_PATH="$with_freetype/include"
ihse@868 444 POTENTIAL_FREETYPE_LIB_PATH="$with_freetype/lib"
ihse@839 445 fi
kevinw@2220 446
ihse@868 447 # Allow --with-freetype-lib and --with-freetype-include to override
ihse@868 448 if test "x$with_freetype_include" != x; then
ihse@868 449 POTENTIAL_FREETYPE_INCLUDE_PATH="$with_freetype_include"
ihse@839 450 fi
ihse@868 451 if test "x$with_freetype_lib" != x; then
ihse@868 452 POTENTIAL_FREETYPE_LIB_PATH="$with_freetype_lib"
ihse@868 453 fi
ihse@868 454
ihse@868 455 if test "x$POTENTIAL_FREETYPE_INCLUDE_PATH" != x && test "x$POTENTIAL_FREETYPE_LIB_PATH" != x; then
ihse@868 456 # Okay, we got it. Check that it works.
ihse@868 457 LIB_CHECK_POTENTIAL_FREETYPE($POTENTIAL_FREETYPE_INCLUDE_PATH, $POTENTIAL_FREETYPE_LIB_PATH, [--with-freetype])
ihse@868 458 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 459 AC_MSG_ERROR([Can not find or use freetype at location given by --with-freetype])
erikj@459 460 fi
ihse@868 461 else
ihse@868 462 # User specified only one of lib or include. This is an error.
ihse@868 463 if test "x$POTENTIAL_FREETYPE_INCLUDE_PATH" = x ; then
ihse@868 464 AC_MSG_NOTICE([User specified --with-freetype-lib but not --with-freetype-include])
ihse@868 465 AC_MSG_ERROR([Need both freetype lib and include paths. Consider using --with-freetype instead.])
ihse@868 466 else
ihse@868 467 AC_MSG_NOTICE([User specified --with-freetype-include but not --with-freetype-lib])
ihse@868 468 AC_MSG_ERROR([Need both freetype lib and include paths. Consider using --with-freetype instead.])
ihse@839 469 fi
ihse@839 470 fi
ihse@868 471 else
ihse@868 472 # User did not specify settings, but we need freetype. Try to locate it.
ihse@868 473
ihse@868 474 if test "x$BUNDLE_FREETYPE" = x; then
ihse@868 475 # If not specified, default is to bundle freetype only on windows
ihse@868 476 if test "x$OPENJDK_TARGET_OS" = xwindows; then
ihse@868 477 BUNDLE_FREETYPE=yes
ihse@868 478 else
ihse@868 479 BUNDLE_FREETYPE=no
ihse@839 480 fi
ihse@868 481 fi
ihse@868 482
ihse@868 483 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 484 # Check builddeps
ihse@868 485 BDEPS_CHECK_MODULE(FREETYPE, freetype2, xxx, [FOUND_FREETYPE=yes], [FOUND_FREETYPE=no])
ihse@868 486 # BDEPS_CHECK_MODULE will set FREETYPE_CFLAGS and _LIBS, but we don't get a lib path for bundling.
ihse@868 487 if test "x$FOUND_FREETYPE" = xyes; then
ihse@868 488 if test "x$BUNDLE_FREETYPE" = xyes; then
ihse@868 489 AC_MSG_NOTICE([Found freetype using builddeps, but ignoring since we can not bundle that])
ihse@868 490 FOUND_FREETYPE=no
ihse@868 491 else
ihse@868 492 AC_MSG_CHECKING([for freetype])
ihse@868 493 AC_MSG_RESULT([yes (using builddeps)])
ihse@868 494 fi
ihse@839 495 fi
ihse@839 496 fi
ihse@868 497
kevinw@2215 498 # If we have a sysroot, assume that's where we are supposed to look and skip pkg-config.
kevinw@2215 499 if test "x$SYSROOT" = x; then
kevinw@2215 500 if test "x$FOUND_FREETYPE" != xyes; then
kevinw@2215 501 # Check modules using pkg-config, but only if we have it (ugly output results otherwise)
kevinw@2215 502 if test "x$PKG_CONFIG" != x; then
kevinw@2215 503 PKG_CHECK_MODULES(FREETYPE, freetype2, [FOUND_FREETYPE=yes], [FOUND_FREETYPE=no])
kevinw@2215 504 if test "x$FOUND_FREETYPE" = xyes; then
kevinw@2215 505 # On solaris, pkg_check adds -lz to freetype libs, which isn't necessary for us.
kevinw@2215 506 FREETYPE_LIBS=`$ECHO $FREETYPE_LIBS | $SED 's/-lz//g'`
kevinw@2215 507 # 64-bit libs for Solaris x86 are installed in the amd64 subdirectory, change lib to lib/amd64
kevinw@2215 508 if test "x$OPENJDK_TARGET_OS" = xsolaris && test "x$OPENJDK_TARGET_CPU" = xx86_64; then
kevinw@2215 509 FREETYPE_LIBS=`$ECHO $FREETYPE_LIBS | $SED 's?/lib?/lib/amd64?g'`
kevinw@2215 510 fi
kevinw@2215 511 # BDEPS_CHECK_MODULE will set FREETYPE_CFLAGS and _LIBS, but we don't get a lib path for bundling.
kevinw@2215 512 if test "x$BUNDLE_FREETYPE" = xyes; then
kevinw@2215 513 AC_MSG_NOTICE([Found freetype using pkg-config, but ignoring since we can not bundle that])
kevinw@2215 514 FOUND_FREETYPE=no
kevinw@2215 515 else
kevinw@2215 516 AC_MSG_CHECKING([for freetype])
kevinw@2215 517 AC_MSG_RESULT([yes (using pkg-config)])
kevinw@2215 518 fi
ihse@868 519 fi
ihse@868 520 fi
ihse@868 521 fi
ihse@868 522 fi
ihse@868 523
ihse@868 524 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 525 # Check in well-known locations
ihse@868 526 if test "x$OPENJDK_TARGET_OS" = xwindows; then
ihse@868 527 FREETYPE_BASE_DIR="$PROGRAMFILES/GnuWin32"
ihse@868 528 BASIC_WINDOWS_REWRITE_AS_UNIX_PATH(FREETYPE_BASE_DIR)
ihse@868 529 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib], [well-known location])
ihse@868 530 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 531 FREETYPE_BASE_DIR="$ProgramW6432/GnuWin32"
ihse@868 532 BASIC_WINDOWS_REWRITE_AS_UNIX_PATH(FREETYPE_BASE_DIR)
ihse@868 533 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib], [well-known location])
ihse@868 534 fi
ihse@868 535 else
kevinw@2215 536 FREETYPE_BASE_DIR="$SYSROOT/usr"
ihse@868 537 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib], [well-known location])
ihse@868 538
ihse@868 539 if test "x$FOUND_FREETYPE" != xyes; then
kevinw@2215 540 FREETYPE_BASE_DIR="$SYSROOT/usr/X11"
ihse@868 541 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib], [well-known location])
ihse@868 542 fi
ihse@868 543
ihse@868 544 if test "x$FOUND_FREETYPE" != xyes; then
kevinw@2215 545 FREETYPE_BASE_DIR="$SYSROOT/usr/sfw"
kevinw@2215 546 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib], [well-known location])
kevinw@2215 547 fi
kevinw@2215 548
kevinw@2215 549 if test "x$FOUND_FREETYPE" != xyes; then
kevinw@2215 550 FREETYPE_BASE_DIR="$SYSROOT/usr"
ihse@868 551 if test "x$OPENJDK_TARGET_CPU_BITS" = x64; then
ihse@868 552 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib/x86_64-linux-gnu], [well-known location])
ihse@868 553 else
ihse@868 554 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib/i386-linux-gnu], [well-known location])
ihse@868 555 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 556 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib32], [well-known location])
ihse@868 557 fi
ihse@868 558 fi
ihse@868 559 fi
ihse@868 560 fi
ihse@868 561 fi # end check in well-known locations
ihse@868 562
ihse@868 563 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 564 HELP_MSG_MISSING_DEPENDENCY([freetype])
ihse@868 565 AC_MSG_ERROR([Could not find freetype! $HELP_MSG ])
ihse@868 566 fi
ihse@868 567 fi # end user specified settings
ihse@868 568
ihse@868 569 # Set FREETYPE_CFLAGS, _LIBS and _LIB_PATH from include and lib dir.
ihse@868 570 if test "x$FREETYPE_CFLAGS" = x; then
ihse@868 571 BASIC_FIXUP_PATH(FREETYPE_INCLUDE_PATH)
ihse@868 572 if test -d $FREETYPE_INCLUDE_PATH/freetype2/freetype; then
ihse@868 573 FREETYPE_CFLAGS="-I$FREETYPE_INCLUDE_PATH/freetype2 -I$FREETYPE_INCLUDE_PATH"
ihse@868 574 else
ihse@868 575 FREETYPE_CFLAGS="-I$FREETYPE_INCLUDE_PATH"
ihse@839 576 fi
ihse@839 577 fi
kevinw@2220 578
ihse@868 579 if test "x$FREETYPE_LIBS" = x; then
ihse@868 580 BASIC_FIXUP_PATH(FREETYPE_LIB_PATH)
ihse@868 581 if test "x$OPENJDK_TARGET_OS" = xwindows; then
ihse@868 582 FREETYPE_LIBS="$FREETYPE_LIB_PATH/freetype.lib"
ihse@868 583 else
ihse@868 584 FREETYPE_LIBS="-L$FREETYPE_LIB_PATH -lfreetype"
ihse@839 585 fi
ihse@839 586 fi
erikj@459 587
ihse@868 588 # Try to compile it
ihse@868 589 AC_MSG_CHECKING([if we can compile and link with freetype])
ihse@868 590 AC_LANG_PUSH(C++)
ihse@868 591 PREV_CXXCFLAGS="$CXXFLAGS"
ihse@873 592 PREV_LIBS="$LIBS"
ihse@868 593 PREV_CXX="$CXX"
kevinw@2220 594 CXXFLAGS="$CXXFLAGS $FREETYPE_CFLAGS"
ihse@873 595 LIBS="$LIBS $FREETYPE_LIBS"
ihse@868 596 CXX="$FIXPATH $CXX"
ihse@868 597 AC_LINK_IFELSE([AC_LANG_SOURCE([[
ihse@868 598 #include<ft2build.h>
ihse@868 599 #include FT_FREETYPE_H
ihse@868 600 int main () {
ihse@868 601 FT_Init_FreeType(NULL);
ihse@868 602 return 0;
ihse@868 603 }
ihse@868 604 ]])],
ihse@868 605 [
ihse@868 606 AC_MSG_RESULT([yes])
ihse@868 607 ],
ihse@868 608 [
ihse@868 609 AC_MSG_RESULT([no])
ihse@868 610 AC_MSG_NOTICE([Could not compile and link with freetype. This might be a 32/64-bit mismatch.])
ihse@868 611 AC_MSG_NOTICE([Using FREETYPE_CFLAGS=$FREETYPE_CFLAGS and FREETYPE_LIBS=$FREETYPE_LIBS])
kevinw@2220 612
ihse@868 613 HELP_MSG_MISSING_DEPENDENCY([freetype])
kevinw@2220 614
ihse@868 615 AC_MSG_ERROR([Can not continue without freetype. $HELP_MSG])
ihse@868 616 ]
ihse@868 617 )
ihse@868 618 CXXCFLAGS="$PREV_CXXFLAGS"
ihse@873 619 LIBS="$PREV_LIBS"
ihse@868 620 CXX="$PREV_CXX"
ihse@868 621 AC_LANG_POP(C++)
ihse@868 622
ihse@868 623 AC_MSG_CHECKING([if we should bundle freetype])
ihse@868 624 if test "x$BUNDLE_FREETYPE" = xyes; then
ihse@868 625 FREETYPE_BUNDLE_LIB_PATH="$FREETYPE_LIB_PATH"
ihse@839 626 fi
ihse@868 627 AC_MSG_RESULT([$BUNDLE_FREETYPE])
ihse@839 628
ihse@868 629 fi # end freetype needed
ihse@868 630
ihse@868 631 AC_SUBST(FREETYPE_BUNDLE_LIB_PATH)
ihse@868 632 AC_SUBST(FREETYPE_CFLAGS)
ihse@868 633 AC_SUBST(FREETYPE_LIBS)
erikj@459 634 ])
erikj@459 635
erikj@459 636 AC_DEFUN_ONCE([LIB_SETUP_ALSA],
erikj@459 637 [
erikj@459 638
ihse@839 639 ###############################################################################
ihse@839 640 #
ihse@839 641 # Check for alsa headers and libraries. Used on Linux/GNU systems.
ihse@839 642 #
ihse@839 643 AC_ARG_WITH(alsa, [AS_HELP_STRING([--with-alsa],
ihse@839 644 [specify prefix directory for the alsa package
ihse@839 645 (expecting the libraries under PATH/lib and the headers under PATH/include)])])
ihse@839 646 AC_ARG_WITH(alsa-include, [AS_HELP_STRING([--with-alsa-include],
ihse@839 647 [specify directory for the alsa include files])])
ihse@839 648 AC_ARG_WITH(alsa-lib, [AS_HELP_STRING([--with-alsa-lib],
ihse@839 649 [specify directory for the alsa library])])
erikj@459 650
ihse@839 651 if test "x$ALSA_NOT_NEEDED" = xyes; then
ihse@839 652 if test "x${with_alsa}" != x || test "x${with_alsa_include}" != x || test "x${with_alsa_lib}" != x; then
ihse@839 653 AC_MSG_WARN([alsa not used, so --with-alsa is ignored])
ihse@839 654 fi
ihse@839 655 ALSA_CFLAGS=
ihse@839 656 ALSA_LIBS=
ihse@839 657 else
ihse@839 658 ALSA_FOUND=no
erikj@459 659
ihse@839 660 if test "x${with_alsa}" = xno || test "x${with_alsa_include}" = xno || test "x${with_alsa_lib}" = xno; then
ihse@839 661 AC_MSG_ERROR([It is not possible to disable the use of alsa. Remove the --without-alsa option.])
ihse@839 662 fi
erikj@459 663
ihse@839 664 if test "x${with_alsa}" != x; then
ihse@961 665 ALSA_LIBS="-L${with_alsa}/lib -lasound"
ihse@839 666 ALSA_CFLAGS="-I${with_alsa}/include"
ihse@839 667 ALSA_FOUND=yes
ihse@839 668 fi
ihse@839 669 if test "x${with_alsa_include}" != x; then
ihse@839 670 ALSA_CFLAGS="-I${with_alsa_include}"
ihse@839 671 ALSA_FOUND=yes
ihse@839 672 fi
ihse@839 673 if test "x${with_alsa_lib}" != x; then
ihse@961 674 ALSA_LIBS="-L${with_alsa_lib} -lasound"
ihse@839 675 ALSA_FOUND=yes
ihse@839 676 fi
ihse@839 677 if test "x$ALSA_FOUND" = xno; then
ihse@839 678 BDEPS_CHECK_MODULE(ALSA, alsa, xxx, [ALSA_FOUND=yes], [ALSA_FOUND=no])
ihse@839 679 fi
kevinw@2215 680 # Do not try pkg-config if we have a sysroot set.
kevinw@2215 681 if test "x$SYSROOT" = x; then
kevinw@2215 682 if test "x$ALSA_FOUND" = xno; then
kevinw@2215 683 PKG_CHECK_MODULES(ALSA, alsa, [ALSA_FOUND=yes], [ALSA_FOUND=no])
kevinw@2215 684 fi
ihse@839 685 fi
ihse@839 686 if test "x$ALSA_FOUND" = xno; then
ihse@839 687 AC_CHECK_HEADERS([alsa/asoundlib.h],
ihse@839 688 [
ihse@839 689 ALSA_FOUND=yes
ihse@839 690 ALSA_CFLAGS=-Iignoreme
ihse@839 691 ALSA_LIBS=-lasound
ihse@839 692 DEFAULT_ALSA=yes
ihse@839 693 ],
ihse@839 694 [ALSA_FOUND=no])
ihse@839 695 fi
ihse@839 696 if test "x$ALSA_FOUND" = xno; then
ihse@839 697 HELP_MSG_MISSING_DEPENDENCY([alsa])
ihse@839 698 AC_MSG_ERROR([Could not find alsa! $HELP_MSG ])
ihse@839 699 fi
ihse@839 700 fi
erikj@459 701
ihse@839 702 AC_SUBST(ALSA_CFLAGS)
ihse@839 703 AC_SUBST(ALSA_LIBS)
erikj@459 704 ])
erikj@459 705
erikj@459 706 AC_DEFUN_ONCE([LIB_SETUP_MISC_LIBS],
erikj@459 707 [
erikj@459 708
ihse@839 709 ###############################################################################
ihse@839 710 #
ihse@839 711 # Check for the jpeg library
ihse@839 712 #
erikj@459 713
ihse@839 714 USE_EXTERNAL_LIBJPEG=true
ihse@839 715 AC_CHECK_LIB(jpeg, main, [],
ihse@839 716 [ USE_EXTERNAL_LIBJPEG=false
ihse@839 717 AC_MSG_NOTICE([Will use jpeg decoder bundled with the OpenJDK source])
ihse@839 718 ])
ihse@839 719 AC_SUBST(USE_EXTERNAL_LIBJPEG)
erikj@459 720
ihse@839 721 ###############################################################################
ihse@839 722 #
ihse@839 723 # Check for the gif library
ihse@839 724 #
omajid@665 725
ihse@839 726 AC_ARG_WITH(giflib, [AS_HELP_STRING([--with-giflib],
ihse@839 727 [use giflib from build system or OpenJDK source (system, bundled) @<:@bundled@:>@])])
omajid@665 728
omajid@665 729
ihse@839 730 AC_MSG_CHECKING([for which giflib to use])
omajid@665 731
ihse@839 732 # default is bundled
ihse@839 733 DEFAULT_GIFLIB=bundled
ihse@839 734
ihse@839 735 #
ihse@839 736 # if user didn't specify, use DEFAULT_GIFLIB
ihse@839 737 #
ihse@839 738 if test "x${with_giflib}" = "x"; then
omajid@665 739 with_giflib=${DEFAULT_GIFLIB}
ihse@839 740 fi
omajid@665 741
ihse@839 742 AC_MSG_RESULT(${with_giflib})
omajid@665 743
ihse@839 744 if test "x${with_giflib}" = "xbundled"; then
omajid@665 745 USE_EXTERNAL_LIBGIF=false
ihse@839 746 elif test "x${with_giflib}" = "xsystem"; then
omajid@665 747 AC_CHECK_HEADER(gif_lib.h, [],
ihse@839 748 [ AC_MSG_ERROR([--with-giflib=system specified, but gif_lib.h not found!])])
omajid@665 749 AC_CHECK_LIB(gif, DGifGetCode, [],
ihse@839 750 [ AC_MSG_ERROR([--with-giflib=system specified, but no giflib found!])])
omajid@665 751
omajid@665 752 USE_EXTERNAL_LIBGIF=true
ihse@839 753 else
omajid@665 754 AC_MSG_ERROR([Invalid value of --with-giflib: ${with_giflib}, use 'system' or 'bundled'])
ihse@839 755 fi
ihse@839 756 AC_SUBST(USE_EXTERNAL_LIBGIF)
erikj@459 757
ihse@839 758 ###############################################################################
ihse@839 759 #
ihse@839 760 # Check for the zlib library
ihse@839 761 #
erikj@459 762
ihse@839 763 AC_ARG_WITH(zlib, [AS_HELP_STRING([--with-zlib],
ihse@839 764 [use zlib from build system or OpenJDK source (system, bundled) @<:@bundled@:>@])])
erikj@459 765
ihse@839 766 AC_CHECK_LIB(z, compress,
ihse@839 767 [ ZLIB_FOUND=yes ],
ihse@839 768 [ ZLIB_FOUND=no ])
erikj@459 769
ihse@839 770 AC_MSG_CHECKING([for which zlib to use])
erikj@459 771
ihse@839 772 DEFAULT_ZLIB=bundled
ihse@839 773 if test "x$OPENJDK_TARGET_OS" = xmacosx; then
ihse@839 774 #
ihse@839 775 # On macosx default is system...on others default is
ihse@839 776 #
erikj@459 777 DEFAULT_ZLIB=system
ihse@839 778 fi
erikj@459 779
ihse@839 780 if test "x${ZLIB_FOUND}" != "xyes"; then
ihse@839 781 #
ihse@839 782 # If we don't find any system...set default to bundled
ihse@839 783 #
erikj@459 784 DEFAULT_ZLIB=bundled
ihse@839 785 fi
erikj@459 786
ihse@839 787 #
ihse@839 788 # If user didn't specify, use DEFAULT_ZLIB
ihse@839 789 #
ihse@839 790 if test "x${with_zlib}" = "x"; then
erikj@459 791 with_zlib=${DEFAULT_ZLIB}
ihse@839 792 fi
erikj@459 793
ihse@839 794 if test "x${with_zlib}" = "xbundled"; then
erikj@459 795 USE_EXTERNAL_LIBZ=false
erikj@459 796 AC_MSG_RESULT([bundled])
ihse@839 797 elif test "x${with_zlib}" = "xsystem"; then
erikj@459 798 if test "x${ZLIB_FOUND}" = "xyes"; then
ihse@839 799 USE_EXTERNAL_LIBZ=true
ihse@839 800 AC_MSG_RESULT([system])
erikj@459 801 else
ihse@839 802 AC_MSG_RESULT([system not found])
ihse@839 803 AC_MSG_ERROR([--with-zlib=system specified, but no zlib found!])
erikj@459 804 fi
ihse@839 805 else
ihse@839 806 AC_MSG_ERROR([Invalid value for --with-zlib: ${with_zlib}, use 'system' or 'bundled'])
ihse@839 807 fi
erikj@459 808
ihse@839 809 AC_SUBST(USE_EXTERNAL_LIBZ)
erikj@459 810
ihse@839 811 ###############################################################################
ihse@839 812 LIBZIP_CAN_USE_MMAP=true
ohair@478 813
ihse@839 814 AC_SUBST(LIBZIP_CAN_USE_MMAP)
erikj@459 815
ihse@839 816 ###############################################################################
ihse@839 817 #
ihse@839 818 # Check if altzone exists in time.h
ihse@839 819 #
erikj@459 820
ihse@839 821 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <time.h>], [return (int)altzone;])],
ihse@839 822 [has_altzone=yes],
ihse@839 823 [has_altzone=no])
ihse@839 824 if test "x$has_altzone" = xyes; then
erikj@459 825 AC_DEFINE([HAVE_ALTZONE], 1, [Define if you have the external 'altzone' variable in time.h])
ihse@839 826 fi
erikj@459 827
ihse@839 828 ###############################################################################
ihse@839 829 #
ihse@839 830 # Check the maths library
ihse@839 831 #
erikj@459 832
ihse@839 833 AC_CHECK_LIB(m, cos, [],
ihse@839 834 [
ihse@839 835 AC_MSG_NOTICE([Maths library was not found])
ihse@839 836 ]
ihse@839 837 )
ihse@839 838 AC_SUBST(LIBM)
erikj@459 839
ihse@839 840 ###############################################################################
ihse@839 841 #
ihse@839 842 # Check for libdl.so
erikj@459 843
ihse@839 844 save_LIBS="$LIBS"
ihse@839 845 LIBS=""
ihse@839 846 AC_CHECK_LIB(dl,dlopen)
ihse@839 847 LIBDL="$LIBS"
ihse@839 848 AC_SUBST(LIBDL)
ihse@839 849 LIBS="$save_LIBS"
erikj@459 850 ])
erikj@459 851
erikj@459 852 AC_DEFUN_ONCE([LIB_SETUP_STATIC_LINK_LIBSTDCPP],
erikj@459 853 [
ihse@839 854 ###############################################################################
ihse@839 855 #
ihse@839 856 # statically link libstdc++ before C++ ABI is stablized on Linux unless
ihse@839 857 # dynamic build is configured on command line.
ihse@839 858 #
ihse@839 859 AC_ARG_WITH([stdc++lib], [AS_HELP_STRING([--with-stdc++lib=<static>,<dynamic>,<default>],
ihse@839 860 [force linking of the C++ runtime on Linux to either static or dynamic, default is static with dynamic as fallback])],
ihse@839 861 [
ihse@839 862 if test "x$with_stdc__lib" != xdynamic && test "x$with_stdc__lib" != xstatic \
ihse@839 863 && test "x$with_stdc__lib" != xdefault; then
ihse@839 864 AC_MSG_ERROR([Bad parameter value --with-stdc++lib=$with_stdc__lib!])
ihse@839 865 fi
ihse@839 866 ],
ihse@839 867 [with_stdc__lib=default]
ihse@839 868 )
erikj@459 869
ihse@839 870 if test "x$OPENJDK_TARGET_OS" = xlinux; then
erikj@459 871 # Test if -lstdc++ works.
erikj@459 872 AC_MSG_CHECKING([if dynamic link of stdc++ is possible])
erikj@459 873 AC_LANG_PUSH(C++)
erikj@459 874 OLD_CXXFLAGS="$CXXFLAGS"
erikj@459 875 CXXFLAGS="$CXXFLAGS -lstdc++"
erikj@459 876 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [return 0;])],
ihse@839 877 [has_dynamic_libstdcxx=yes],
ihse@839 878 [has_dynamic_libstdcxx=no])
erikj@459 879 CXXFLAGS="$OLD_CXXFLAGS"
erikj@459 880 AC_LANG_POP(C++)
erikj@459 881 AC_MSG_RESULT([$has_dynamic_libstdcxx])
erikj@459 882
erikj@459 883 # Test if stdc++ can be linked statically.
erikj@459 884 AC_MSG_CHECKING([if static link of stdc++ is possible])
erikj@459 885 STATIC_STDCXX_FLAGS="-Wl,-Bstatic -lstdc++ -lgcc -Wl,-Bdynamic"
erikj@459 886 AC_LANG_PUSH(C++)
erikj@459 887 OLD_LIBS="$LIBS"
erikj@459 888 OLD_CXX="$CXX"
erikj@459 889 LIBS="$STATIC_STDCXX_FLAGS"
ihse@839 890 CXX="$CC"
erikj@459 891 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [return 0;])],
ihse@839 892 [has_static_libstdcxx=yes],
ihse@839 893 [has_static_libstdcxx=no])
erikj@459 894 LIBS="$OLD_LIBS"
erikj@459 895 CXX="$OLD_CXX"
erikj@459 896 AC_LANG_POP(C++)
erikj@459 897 AC_MSG_RESULT([$has_static_libstdcxx])
erikj@459 898
tbell@511 899 if test "x$has_static_libstdcxx" = xno && test "x$has_dynamic_libstdcxx" = xno; then
ihse@839 900 AC_MSG_ERROR([Cannot link to stdc++, neither dynamically nor statically!])
erikj@459 901 fi
erikj@459 902
tbell@511 903 if test "x$with_stdc__lib" = xstatic && test "x$has_static_libstdcxx" = xno; then
ihse@839 904 AC_MSG_ERROR([Static linking of libstdc++ was not possible!])
erikj@459 905 fi
erikj@459 906
tbell@511 907 if test "x$with_stdc__lib" = xdynamic && test "x$has_dynamic_libstdcxx" = xno; then
ihse@839 908 AC_MSG_ERROR([Dynamic linking of libstdc++ was not possible!])
erikj@459 909 fi
erikj@459 910
erikj@459 911 AC_MSG_CHECKING([how to link with libstdc++])
tbell@511 912 # If dynamic was requested, it's available since it would fail above otherwise.
tbell@511 913 # If dynamic wasn't requested, go with static unless it isn't available.
omajid@671 914 if test "x$with_stdc__lib" = xdynamic || test "x$has_static_libstdcxx" = xno || test "x$JVM_VARIANT_ZEROSHARK" = xtrue; then
ihse@839 915 LIBCXX="$LIBCXX -lstdc++"
ihse@839 916 LDCXX="$CXX"
ihse@839 917 STATIC_CXX_SETTING="STATIC_CXX=false"
ihse@839 918 AC_MSG_RESULT([dynamic])
tbell@511 919 else
ihse@839 920 LIBCXX="$LIBCXX $STATIC_STDCXX_FLAGS"
ihse@839 921 LDCXX="$CC"
ihse@839 922 STATIC_CXX_SETTING="STATIC_CXX=true"
ihse@839 923 AC_MSG_RESULT([static])
erikj@459 924 fi
ihse@839 925 fi
ihse@839 926 AC_SUBST(STATIC_CXX_SETTING)
erikj@459 927
ihse@839 928 if test "x$JVM_VARIANT_ZERO" = xtrue || test "x$JVM_VARIANT_ZEROSHARK" = xtrue; then
omajid@671 929 # Figure out LIBFFI_CFLAGS and LIBFFI_LIBS
omajid@671 930 PKG_CHECK_MODULES([LIBFFI], [libffi])
omajid@671 931
ihse@839 932 fi
omajid@671 933
ihse@839 934 if test "x$JVM_VARIANT_ZEROSHARK" = xtrue; then
omajid@671 935 AC_CHECK_PROG([LLVM_CONFIG], [llvm-config], [llvm-config])
omajid@671 936
omajid@671 937 if test "x$LLVM_CONFIG" != xllvm-config; then
ihse@839 938 AC_MSG_ERROR([llvm-config not found in $PATH.])
omajid@671 939 fi
omajid@671 940
omajid@671 941 llvm_components="jit mcjit engine nativecodegen native"
omajid@671 942 unset LLVM_CFLAGS
omajid@671 943 for flag in $("$LLVM_CONFIG" --cxxflags); do
omajid@671 944 if echo "${flag}" | grep -q '^-@<:@ID@:>@'; then
omajid@671 945 if test "${flag}" != "-D_DEBUG" ; then
omajid@671 946 if test "${LLVM_CFLAGS}" != "" ; then
omajid@671 947 LLVM_CFLAGS="${LLVM_CFLAGS} "
omajid@671 948 fi
omajid@671 949 LLVM_CFLAGS="${LLVM_CFLAGS}${flag}"
omajid@671 950 fi
omajid@671 951 fi
omajid@671 952 done
omajid@671 953 llvm_version=$("${LLVM_CONFIG}" --version | sed 's/\.//; s/svn.*//')
omajid@671 954 LLVM_CFLAGS="${LLVM_CFLAGS} -DSHARK_LLVM_VERSION=${llvm_version}"
omajid@671 955
omajid@671 956 unset LLVM_LDFLAGS
omajid@671 957 for flag in $("${LLVM_CONFIG}" --ldflags); do
omajid@671 958 if echo "${flag}" | grep -q '^-L'; then
omajid@671 959 if test "${LLVM_LDFLAGS}" != ""; then
omajid@671 960 LLVM_LDFLAGS="${LLVM_LDFLAGS} "
omajid@671 961 fi
omajid@671 962 LLVM_LDFLAGS="${LLVM_LDFLAGS}${flag}"
omajid@671 963 fi
omajid@671 964 done
omajid@671 965
omajid@671 966 unset LLVM_LIBS
omajid@671 967 for flag in $("${LLVM_CONFIG}" --libs ${llvm_components}); do
omajid@671 968 if echo "${flag}" | grep -q '^-l'; then
omajid@671 969 if test "${LLVM_LIBS}" != ""; then
omajid@671 970 LLVM_LIBS="${LLVM_LIBS} "
omajid@671 971 fi
omajid@671 972 LLVM_LIBS="${LLVM_LIBS}${flag}"
omajid@671 973 fi
omajid@671 974 done
omajid@671 975
omajid@671 976 AC_SUBST(LLVM_CFLAGS)
omajid@671 977 AC_SUBST(LLVM_LDFLAGS)
omajid@671 978 AC_SUBST(LLVM_LIBS)
ihse@839 979 fi
omajid@671 980
ihse@839 981 # libCrun is the c++ runtime-library with SunStudio (roughly the equivalent of gcc's libstdc++.so)
kevinw@2206 982 if test "x$TOOLCHAIN_TYPE" = xsolstudio && test "x$LIBCXX" = x; then
kevinw@2215 983 LIBCXX="${SYSROOT}/usr/lib${OPENJDK_TARGET_CPU_ISADIR}/libCrun.so.1"
ihse@839 984 fi
erikj@459 985
ihse@839 986 # TODO better (platform agnostic) test
kevinw@2206 987 if test "x$OPENJDK_TARGET_OS" = xmacosx && test "x$LIBCXX" = x && test "x$TOOLCHAIN_TYPE" = xgcc; then
erikj@459 988 LIBCXX="-lstdc++"
ihse@839 989 fi
erikj@459 990
ihse@839 991 AC_SUBST(LIBCXX)
erikj@459 992 ])
kevinw@2206 993
kevinw@2206 994 AC_DEFUN_ONCE([LIB_SETUP_ON_WINDOWS],
kevinw@2206 995 [
kevinw@2206 996 if test "x$OPENJDK_TARGET_OS" = "xwindows"; then
kevinw@2223 997 TOOLCHAIN_SETUP_VS_RUNTIME_DLLS
kevinw@2206 998 BASIC_DEPRECATED_ARG_WITH([dxsdk])
kevinw@2206 999 BASIC_DEPRECATED_ARG_WITH([dxsdk-lib])
kevinw@2206 1000 BASIC_DEPRECATED_ARG_WITH([dxsdk-include])
kevinw@2206 1001 fi
kevinw@2206 1002 ])

mercurial