common/autoconf/libraries.m4

Mon, 16 Apr 2018 00:48:00 -0700

author
kevinw
date
Mon, 16 Apr 2018 00:48:00 -0700
changeset 2215
7a73b8b4ac8a
parent 2206
7ba4e17574e0
child 2220
47fda751abb6
permissions
-rw-r--r--

8038340: Cleanup and fix sysroot and devkit handling on Linux and Solaris
Reviewed-by: erikj, ihse

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
ihse@868 254 AC_DEFUN([LIB_CHECK_POTENTIAL_FREETYPE],
ihse@868 255 [
ihse@868 256 POTENTIAL_FREETYPE_INCLUDE_PATH="$1"
ihse@868 257 POTENTIAL_FREETYPE_LIB_PATH="$2"
ihse@868 258 METHOD="$3"
ihse@868 259
ihse@868 260 # First check if the files exists.
ihse@868 261 if test -s "$POTENTIAL_FREETYPE_INCLUDE_PATH/ft2build.h"; then
ihse@868 262 # We found an arbitrary include file. That's a good sign.
ihse@868 263 AC_MSG_NOTICE([Found freetype include files at $POTENTIAL_FREETYPE_INCLUDE_PATH using $METHOD])
ihse@868 264 FOUND_FREETYPE=yes
ihse@868 265
ihse@868 266 FREETYPE_LIB_NAME="${LIBRARY_PREFIX}freetype${SHARED_LIBRARY_SUFFIX}"
ihse@868 267 if ! test -s "$POTENTIAL_FREETYPE_LIB_PATH/$FREETYPE_LIB_NAME"; then
ihse@868 268 AC_MSG_NOTICE([Could not find $POTENTIAL_FREETYPE_LIB_PATH/$FREETYPE_LIB_NAME. Ignoring location.])
ihse@868 269 FOUND_FREETYPE=no
ihse@868 270 else
ihse@868 271 if test "x$OPENJDK_TARGET_OS" = xwindows; then
ihse@868 272 # On Windows, we will need both .lib and .dll file.
ihse@868 273 if ! test -s "$POTENTIAL_FREETYPE_LIB_PATH/freetype.lib"; then
ihse@868 274 AC_MSG_NOTICE([Could not find $POTENTIAL_FREETYPE_LIB_PATH/freetype.lib. Ignoring location.])
ihse@868 275 FOUND_FREETYPE=no
ihse@868 276 fi
ihse@868 277 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 278 # On solaris-x86_86, default is (normally) PATH/lib/amd64. Update our guess!
ihse@868 279 POTENTIAL_FREETYPE_LIB_PATH="$POTENTIAL_FREETYPE_LIB_PATH/amd64"
ihse@868 280 fi
ihse@868 281 fi
ihse@868 282 fi
ihse@868 283
ihse@868 284 if test "x$FOUND_FREETYPE" = xyes; then
ihse@868 285 BASIC_FIXUP_PATH(POTENTIAL_FREETYPE_INCLUDE_PATH)
ihse@868 286 BASIC_FIXUP_PATH(POTENTIAL_FREETYPE_LIB_PATH)
ihse@868 287
ihse@868 288 FREETYPE_INCLUDE_PATH="$POTENTIAL_FREETYPE_INCLUDE_PATH"
ihse@868 289 AC_MSG_CHECKING([for freetype includes])
ihse@868 290 AC_MSG_RESULT([$FREETYPE_INCLUDE_PATH])
ihse@868 291 FREETYPE_LIB_PATH="$POTENTIAL_FREETYPE_LIB_PATH"
ihse@868 292 AC_MSG_CHECKING([for freetype libraries])
ihse@868 293 AC_MSG_RESULT([$FREETYPE_LIB_PATH])
ihse@868 294 fi
ihse@868 295 ])
ihse@868 296
erikj@459 297 AC_DEFUN_ONCE([LIB_SETUP_FREETYPE],
erikj@459 298 [
erikj@459 299
ihse@839 300 ###############################################################################
ihse@839 301 #
ihse@868 302 # The ubiquitous freetype library is used to render fonts.
ihse@839 303 #
ihse@839 304 AC_ARG_WITH(freetype, [AS_HELP_STRING([--with-freetype],
ihse@868 305 [specify prefix directory for the freetype package
ihse@839 306 (expecting the libraries under PATH/lib and the headers under PATH/include)])])
ihse@868 307 AC_ARG_WITH(freetype-include, [AS_HELP_STRING([--with-freetype-include],
ihse@868 308 [specify directory for the freetype include files])])
ihse@868 309 AC_ARG_WITH(freetype-lib, [AS_HELP_STRING([--with-freetype-lib],
ihse@868 310 [specify directory for the freetype library])])
ihse@868 311 AC_ARG_ENABLE(freetype-bundling, [AS_HELP_STRING([--disable-freetype-bundling],
ihse@868 312 [disable bundling of the freetype library with the build result @<:@enabled on Windows or when using --with-freetype, disabled otherwise@:>@])])
erikj@459 313
ihse@868 314 FREETYPE_CFLAGS=
ihse@868 315 FREETYPE_LIBS=
ihse@868 316 FREETYPE_BUNDLE_LIB_PATH=
erikj@459 317
ihse@868 318 if test "x$FREETYPE_NOT_NEEDED" = xyes; then
ihse@839 319 if test "x$with_freetype" != x || test "x$with_freetype_include" != x || test "x$with_freetype_lib" != x; then
ihse@839 320 AC_MSG_WARN([freetype not used, so --with-freetype is ignored])
ihse@839 321 fi
ihse@868 322 if test "x$enable_freetype_bundling" != x; then
ihse@868 323 AC_MSG_WARN([freetype not used, so --enable-freetype-bundling is ignored])
ihse@868 324 fi
ihse@839 325 else
ihse@868 326 # freetype is needed to build; go get it!
erikj@459 327
ihse@868 328 BUNDLE_FREETYPE="$enable_freetype_bundling"
ihse@868 329
ihse@868 330 if test "x$with_freetype" != x || test "x$with_freetype_include" != x || test "x$with_freetype_lib" != x; then
ihse@868 331 # User has specified settings
ihse@868 332
ihse@868 333 if test "x$BUNDLE_FREETYPE" = x; then
ihse@868 334 # If not specified, default is to bundle freetype
ihse@868 335 BUNDLE_FREETYPE=yes
ihse@839 336 fi
ihse@868 337
ihse@868 338 if test "x$with_freetype" != x; then
ihse@868 339 POTENTIAL_FREETYPE_INCLUDE_PATH="$with_freetype/include"
ihse@868 340 POTENTIAL_FREETYPE_LIB_PATH="$with_freetype/lib"
ihse@839 341 fi
ihse@868 342
ihse@868 343 # Allow --with-freetype-lib and --with-freetype-include to override
ihse@868 344 if test "x$with_freetype_include" != x; then
ihse@868 345 POTENTIAL_FREETYPE_INCLUDE_PATH="$with_freetype_include"
ihse@839 346 fi
ihse@868 347 if test "x$with_freetype_lib" != x; then
ihse@868 348 POTENTIAL_FREETYPE_LIB_PATH="$with_freetype_lib"
ihse@868 349 fi
ihse@868 350
ihse@868 351 if test "x$POTENTIAL_FREETYPE_INCLUDE_PATH" != x && test "x$POTENTIAL_FREETYPE_LIB_PATH" != x; then
ihse@868 352 # Okay, we got it. Check that it works.
ihse@868 353 LIB_CHECK_POTENTIAL_FREETYPE($POTENTIAL_FREETYPE_INCLUDE_PATH, $POTENTIAL_FREETYPE_LIB_PATH, [--with-freetype])
ihse@868 354 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 355 AC_MSG_ERROR([Can not find or use freetype at location given by --with-freetype])
erikj@459 356 fi
ihse@868 357 else
ihse@868 358 # User specified only one of lib or include. This is an error.
ihse@868 359 if test "x$POTENTIAL_FREETYPE_INCLUDE_PATH" = x ; then
ihse@868 360 AC_MSG_NOTICE([User specified --with-freetype-lib but not --with-freetype-include])
ihse@868 361 AC_MSG_ERROR([Need both freetype lib and include paths. Consider using --with-freetype instead.])
ihse@868 362 else
ihse@868 363 AC_MSG_NOTICE([User specified --with-freetype-include but not --with-freetype-lib])
ihse@868 364 AC_MSG_ERROR([Need both freetype lib and include paths. Consider using --with-freetype instead.])
ihse@839 365 fi
ihse@839 366 fi
ihse@868 367 else
ihse@868 368 # User did not specify settings, but we need freetype. Try to locate it.
ihse@868 369
ihse@868 370 if test "x$BUNDLE_FREETYPE" = x; then
ihse@868 371 # If not specified, default is to bundle freetype only on windows
ihse@868 372 if test "x$OPENJDK_TARGET_OS" = xwindows; then
ihse@868 373 BUNDLE_FREETYPE=yes
ihse@868 374 else
ihse@868 375 BUNDLE_FREETYPE=no
ihse@839 376 fi
ihse@868 377 fi
ihse@868 378
ihse@868 379 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 380 # Check builddeps
ihse@868 381 BDEPS_CHECK_MODULE(FREETYPE, freetype2, xxx, [FOUND_FREETYPE=yes], [FOUND_FREETYPE=no])
ihse@868 382 # BDEPS_CHECK_MODULE will set FREETYPE_CFLAGS and _LIBS, but we don't get a lib path for bundling.
ihse@868 383 if test "x$FOUND_FREETYPE" = xyes; then
ihse@868 384 if test "x$BUNDLE_FREETYPE" = xyes; then
ihse@868 385 AC_MSG_NOTICE([Found freetype using builddeps, but ignoring since we can not bundle that])
ihse@868 386 FOUND_FREETYPE=no
ihse@868 387 else
ihse@868 388 AC_MSG_CHECKING([for freetype])
ihse@868 389 AC_MSG_RESULT([yes (using builddeps)])
ihse@868 390 fi
ihse@839 391 fi
ihse@839 392 fi
ihse@868 393
kevinw@2215 394 # If we have a sysroot, assume that's where we are supposed to look and skip pkg-config.
kevinw@2215 395 if test "x$SYSROOT" = x; then
kevinw@2215 396 if test "x$FOUND_FREETYPE" != xyes; then
kevinw@2215 397 # Check modules using pkg-config, but only if we have it (ugly output results otherwise)
kevinw@2215 398 if test "x$PKG_CONFIG" != x; then
kevinw@2215 399 PKG_CHECK_MODULES(FREETYPE, freetype2, [FOUND_FREETYPE=yes], [FOUND_FREETYPE=no])
kevinw@2215 400 if test "x$FOUND_FREETYPE" = xyes; then
kevinw@2215 401 # On solaris, pkg_check adds -lz to freetype libs, which isn't necessary for us.
kevinw@2215 402 FREETYPE_LIBS=`$ECHO $FREETYPE_LIBS | $SED 's/-lz//g'`
kevinw@2215 403 # 64-bit libs for Solaris x86 are installed in the amd64 subdirectory, change lib to lib/amd64
kevinw@2215 404 if test "x$OPENJDK_TARGET_OS" = xsolaris && test "x$OPENJDK_TARGET_CPU" = xx86_64; then
kevinw@2215 405 FREETYPE_LIBS=`$ECHO $FREETYPE_LIBS | $SED 's?/lib?/lib/amd64?g'`
kevinw@2215 406 fi
kevinw@2215 407 # BDEPS_CHECK_MODULE will set FREETYPE_CFLAGS and _LIBS, but we don't get a lib path for bundling.
kevinw@2215 408 if test "x$BUNDLE_FREETYPE" = xyes; then
kevinw@2215 409 AC_MSG_NOTICE([Found freetype using pkg-config, but ignoring since we can not bundle that])
kevinw@2215 410 FOUND_FREETYPE=no
kevinw@2215 411 else
kevinw@2215 412 AC_MSG_CHECKING([for freetype])
kevinw@2215 413 AC_MSG_RESULT([yes (using pkg-config)])
kevinw@2215 414 fi
ihse@868 415 fi
ihse@868 416 fi
ihse@868 417 fi
ihse@868 418 fi
ihse@868 419
ihse@868 420 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 421 # Check in well-known locations
ihse@868 422 if test "x$OPENJDK_TARGET_OS" = xwindows; then
ihse@868 423 FREETYPE_BASE_DIR="$PROGRAMFILES/GnuWin32"
ihse@868 424 BASIC_WINDOWS_REWRITE_AS_UNIX_PATH(FREETYPE_BASE_DIR)
ihse@868 425 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib], [well-known location])
ihse@868 426 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 427 FREETYPE_BASE_DIR="$ProgramW6432/GnuWin32"
ihse@868 428 BASIC_WINDOWS_REWRITE_AS_UNIX_PATH(FREETYPE_BASE_DIR)
ihse@868 429 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib], [well-known location])
ihse@868 430 fi
ihse@868 431 else
kevinw@2215 432 FREETYPE_BASE_DIR="$SYSROOT/usr"
ihse@868 433 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib], [well-known location])
ihse@868 434
ihse@868 435 if test "x$FOUND_FREETYPE" != xyes; then
kevinw@2215 436 FREETYPE_BASE_DIR="$SYSROOT/usr/X11"
ihse@868 437 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib], [well-known location])
ihse@868 438 fi
ihse@868 439
ihse@868 440 if test "x$FOUND_FREETYPE" != xyes; then
kevinw@2215 441 FREETYPE_BASE_DIR="$SYSROOT/usr/sfw"
kevinw@2215 442 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib], [well-known location])
kevinw@2215 443 fi
kevinw@2215 444
kevinw@2215 445 if test "x$FOUND_FREETYPE" != xyes; then
kevinw@2215 446 FREETYPE_BASE_DIR="$SYSROOT/usr"
ihse@868 447 if test "x$OPENJDK_TARGET_CPU_BITS" = x64; then
ihse@868 448 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib/x86_64-linux-gnu], [well-known location])
ihse@868 449 else
ihse@868 450 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib/i386-linux-gnu], [well-known location])
ihse@868 451 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 452 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib32], [well-known location])
ihse@868 453 fi
ihse@868 454 fi
ihse@868 455 fi
ihse@868 456 fi
ihse@868 457 fi # end check in well-known locations
ihse@868 458
ihse@868 459 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 460 HELP_MSG_MISSING_DEPENDENCY([freetype])
ihse@868 461 AC_MSG_ERROR([Could not find freetype! $HELP_MSG ])
ihse@868 462 fi
ihse@868 463 fi # end user specified settings
ihse@868 464
ihse@868 465 # Set FREETYPE_CFLAGS, _LIBS and _LIB_PATH from include and lib dir.
ihse@868 466 if test "x$FREETYPE_CFLAGS" = x; then
ihse@868 467 BASIC_FIXUP_PATH(FREETYPE_INCLUDE_PATH)
ihse@868 468 if test -d $FREETYPE_INCLUDE_PATH/freetype2/freetype; then
ihse@868 469 FREETYPE_CFLAGS="-I$FREETYPE_INCLUDE_PATH/freetype2 -I$FREETYPE_INCLUDE_PATH"
ihse@868 470 else
ihse@868 471 FREETYPE_CFLAGS="-I$FREETYPE_INCLUDE_PATH"
ihse@839 472 fi
ihse@839 473 fi
ihse@868 474
ihse@868 475 if test "x$FREETYPE_LIBS" = x; then
ihse@868 476 BASIC_FIXUP_PATH(FREETYPE_LIB_PATH)
ihse@868 477 if test "x$OPENJDK_TARGET_OS" = xwindows; then
ihse@868 478 FREETYPE_LIBS="$FREETYPE_LIB_PATH/freetype.lib"
ihse@868 479 else
ihse@868 480 FREETYPE_LIBS="-L$FREETYPE_LIB_PATH -lfreetype"
ihse@839 481 fi
ihse@839 482 fi
erikj@459 483
ihse@868 484 # Try to compile it
ihse@868 485 AC_MSG_CHECKING([if we can compile and link with freetype])
ihse@868 486 AC_LANG_PUSH(C++)
ihse@868 487 PREV_CXXCFLAGS="$CXXFLAGS"
ihse@873 488 PREV_LIBS="$LIBS"
ihse@868 489 PREV_CXX="$CXX"
ihse@868 490 CXXFLAGS="$CXXFLAGS $FREETYPE_CFLAGS"
ihse@873 491 LIBS="$LIBS $FREETYPE_LIBS"
ihse@868 492 CXX="$FIXPATH $CXX"
ihse@868 493 AC_LINK_IFELSE([AC_LANG_SOURCE([[
ihse@868 494 #include<ft2build.h>
ihse@868 495 #include FT_FREETYPE_H
ihse@868 496 int main () {
ihse@868 497 FT_Init_FreeType(NULL);
ihse@868 498 return 0;
ihse@868 499 }
ihse@868 500 ]])],
ihse@868 501 [
ihse@868 502 AC_MSG_RESULT([yes])
ihse@868 503 ],
ihse@868 504 [
ihse@868 505 AC_MSG_RESULT([no])
ihse@868 506 AC_MSG_NOTICE([Could not compile and link with freetype. This might be a 32/64-bit mismatch.])
ihse@868 507 AC_MSG_NOTICE([Using FREETYPE_CFLAGS=$FREETYPE_CFLAGS and FREETYPE_LIBS=$FREETYPE_LIBS])
ihse@868 508
ihse@868 509 HELP_MSG_MISSING_DEPENDENCY([freetype])
ihse@868 510
ihse@868 511 AC_MSG_ERROR([Can not continue without freetype. $HELP_MSG])
ihse@868 512 ]
ihse@868 513 )
ihse@868 514 CXXCFLAGS="$PREV_CXXFLAGS"
ihse@873 515 LIBS="$PREV_LIBS"
ihse@868 516 CXX="$PREV_CXX"
ihse@868 517 AC_LANG_POP(C++)
ihse@868 518
ihse@868 519 AC_MSG_CHECKING([if we should bundle freetype])
ihse@868 520 if test "x$BUNDLE_FREETYPE" = xyes; then
ihse@868 521 FREETYPE_BUNDLE_LIB_PATH="$FREETYPE_LIB_PATH"
ihse@839 522 fi
ihse@868 523 AC_MSG_RESULT([$BUNDLE_FREETYPE])
ihse@839 524
ihse@868 525 fi # end freetype needed
ihse@868 526
ihse@868 527 AC_SUBST(FREETYPE_BUNDLE_LIB_PATH)
ihse@868 528 AC_SUBST(FREETYPE_CFLAGS)
ihse@868 529 AC_SUBST(FREETYPE_LIBS)
erikj@459 530 ])
erikj@459 531
erikj@459 532 AC_DEFUN_ONCE([LIB_SETUP_ALSA],
erikj@459 533 [
erikj@459 534
ihse@839 535 ###############################################################################
ihse@839 536 #
ihse@839 537 # Check for alsa headers and libraries. Used on Linux/GNU systems.
ihse@839 538 #
ihse@839 539 AC_ARG_WITH(alsa, [AS_HELP_STRING([--with-alsa],
ihse@839 540 [specify prefix directory for the alsa package
ihse@839 541 (expecting the libraries under PATH/lib and the headers under PATH/include)])])
ihse@839 542 AC_ARG_WITH(alsa-include, [AS_HELP_STRING([--with-alsa-include],
ihse@839 543 [specify directory for the alsa include files])])
ihse@839 544 AC_ARG_WITH(alsa-lib, [AS_HELP_STRING([--with-alsa-lib],
ihse@839 545 [specify directory for the alsa library])])
erikj@459 546
ihse@839 547 if test "x$ALSA_NOT_NEEDED" = xyes; then
ihse@839 548 if test "x${with_alsa}" != x || test "x${with_alsa_include}" != x || test "x${with_alsa_lib}" != x; then
ihse@839 549 AC_MSG_WARN([alsa not used, so --with-alsa is ignored])
ihse@839 550 fi
ihse@839 551 ALSA_CFLAGS=
ihse@839 552 ALSA_LIBS=
ihse@839 553 else
ihse@839 554 ALSA_FOUND=no
erikj@459 555
ihse@839 556 if test "x${with_alsa}" = xno || test "x${with_alsa_include}" = xno || test "x${with_alsa_lib}" = xno; then
ihse@839 557 AC_MSG_ERROR([It is not possible to disable the use of alsa. Remove the --without-alsa option.])
ihse@839 558 fi
erikj@459 559
ihse@839 560 if test "x${with_alsa}" != x; then
ihse@961 561 ALSA_LIBS="-L${with_alsa}/lib -lasound"
ihse@839 562 ALSA_CFLAGS="-I${with_alsa}/include"
ihse@839 563 ALSA_FOUND=yes
ihse@839 564 fi
ihse@839 565 if test "x${with_alsa_include}" != x; then
ihse@839 566 ALSA_CFLAGS="-I${with_alsa_include}"
ihse@839 567 ALSA_FOUND=yes
ihse@839 568 fi
ihse@839 569 if test "x${with_alsa_lib}" != x; then
ihse@961 570 ALSA_LIBS="-L${with_alsa_lib} -lasound"
ihse@839 571 ALSA_FOUND=yes
ihse@839 572 fi
ihse@839 573 if test "x$ALSA_FOUND" = xno; then
ihse@839 574 BDEPS_CHECK_MODULE(ALSA, alsa, xxx, [ALSA_FOUND=yes], [ALSA_FOUND=no])
ihse@839 575 fi
kevinw@2215 576 # Do not try pkg-config if we have a sysroot set.
kevinw@2215 577 if test "x$SYSROOT" = x; then
kevinw@2215 578 if test "x$ALSA_FOUND" = xno; then
kevinw@2215 579 PKG_CHECK_MODULES(ALSA, alsa, [ALSA_FOUND=yes], [ALSA_FOUND=no])
kevinw@2215 580 fi
ihse@839 581 fi
ihse@839 582 if test "x$ALSA_FOUND" = xno; then
ihse@839 583 AC_CHECK_HEADERS([alsa/asoundlib.h],
ihse@839 584 [
ihse@839 585 ALSA_FOUND=yes
ihse@839 586 ALSA_CFLAGS=-Iignoreme
ihse@839 587 ALSA_LIBS=-lasound
ihse@839 588 DEFAULT_ALSA=yes
ihse@839 589 ],
ihse@839 590 [ALSA_FOUND=no])
ihse@839 591 fi
ihse@839 592 if test "x$ALSA_FOUND" = xno; then
ihse@839 593 HELP_MSG_MISSING_DEPENDENCY([alsa])
ihse@839 594 AC_MSG_ERROR([Could not find alsa! $HELP_MSG ])
ihse@839 595 fi
ihse@839 596 fi
erikj@459 597
ihse@839 598 AC_SUBST(ALSA_CFLAGS)
ihse@839 599 AC_SUBST(ALSA_LIBS)
erikj@459 600 ])
erikj@459 601
erikj@459 602 AC_DEFUN_ONCE([LIB_SETUP_MISC_LIBS],
erikj@459 603 [
erikj@459 604
ihse@839 605 ###############################################################################
ihse@839 606 #
ihse@839 607 # Check for the jpeg library
ihse@839 608 #
erikj@459 609
ihse@839 610 USE_EXTERNAL_LIBJPEG=true
ihse@839 611 AC_CHECK_LIB(jpeg, main, [],
ihse@839 612 [ USE_EXTERNAL_LIBJPEG=false
ihse@839 613 AC_MSG_NOTICE([Will use jpeg decoder bundled with the OpenJDK source])
ihse@839 614 ])
ihse@839 615 AC_SUBST(USE_EXTERNAL_LIBJPEG)
erikj@459 616
ihse@839 617 ###############################################################################
ihse@839 618 #
ihse@839 619 # Check for the gif library
ihse@839 620 #
omajid@665 621
ihse@839 622 AC_ARG_WITH(giflib, [AS_HELP_STRING([--with-giflib],
ihse@839 623 [use giflib from build system or OpenJDK source (system, bundled) @<:@bundled@:>@])])
omajid@665 624
omajid@665 625
ihse@839 626 AC_MSG_CHECKING([for which giflib to use])
omajid@665 627
ihse@839 628 # default is bundled
ihse@839 629 DEFAULT_GIFLIB=bundled
ihse@839 630
ihse@839 631 #
ihse@839 632 # if user didn't specify, use DEFAULT_GIFLIB
ihse@839 633 #
ihse@839 634 if test "x${with_giflib}" = "x"; then
omajid@665 635 with_giflib=${DEFAULT_GIFLIB}
ihse@839 636 fi
omajid@665 637
ihse@839 638 AC_MSG_RESULT(${with_giflib})
omajid@665 639
ihse@839 640 if test "x${with_giflib}" = "xbundled"; then
omajid@665 641 USE_EXTERNAL_LIBGIF=false
ihse@839 642 elif test "x${with_giflib}" = "xsystem"; then
omajid@665 643 AC_CHECK_HEADER(gif_lib.h, [],
ihse@839 644 [ AC_MSG_ERROR([--with-giflib=system specified, but gif_lib.h not found!])])
omajid@665 645 AC_CHECK_LIB(gif, DGifGetCode, [],
ihse@839 646 [ AC_MSG_ERROR([--with-giflib=system specified, but no giflib found!])])
omajid@665 647
omajid@665 648 USE_EXTERNAL_LIBGIF=true
ihse@839 649 else
omajid@665 650 AC_MSG_ERROR([Invalid value of --with-giflib: ${with_giflib}, use 'system' or 'bundled'])
ihse@839 651 fi
ihse@839 652 AC_SUBST(USE_EXTERNAL_LIBGIF)
erikj@459 653
ihse@839 654 ###############################################################################
ihse@839 655 #
ihse@839 656 # Check for the zlib library
ihse@839 657 #
erikj@459 658
ihse@839 659 AC_ARG_WITH(zlib, [AS_HELP_STRING([--with-zlib],
ihse@839 660 [use zlib from build system or OpenJDK source (system, bundled) @<:@bundled@:>@])])
erikj@459 661
ihse@839 662 AC_CHECK_LIB(z, compress,
ihse@839 663 [ ZLIB_FOUND=yes ],
ihse@839 664 [ ZLIB_FOUND=no ])
erikj@459 665
ihse@839 666 AC_MSG_CHECKING([for which zlib to use])
erikj@459 667
ihse@839 668 DEFAULT_ZLIB=bundled
ihse@839 669 if test "x$OPENJDK_TARGET_OS" = xmacosx; then
ihse@839 670 #
ihse@839 671 # On macosx default is system...on others default is
ihse@839 672 #
erikj@459 673 DEFAULT_ZLIB=system
ihse@839 674 fi
erikj@459 675
ihse@839 676 if test "x${ZLIB_FOUND}" != "xyes"; then
ihse@839 677 #
ihse@839 678 # If we don't find any system...set default to bundled
ihse@839 679 #
erikj@459 680 DEFAULT_ZLIB=bundled
ihse@839 681 fi
erikj@459 682
ihse@839 683 #
ihse@839 684 # If user didn't specify, use DEFAULT_ZLIB
ihse@839 685 #
ihse@839 686 if test "x${with_zlib}" = "x"; then
erikj@459 687 with_zlib=${DEFAULT_ZLIB}
ihse@839 688 fi
erikj@459 689
ihse@839 690 if test "x${with_zlib}" = "xbundled"; then
erikj@459 691 USE_EXTERNAL_LIBZ=false
erikj@459 692 AC_MSG_RESULT([bundled])
ihse@839 693 elif test "x${with_zlib}" = "xsystem"; then
erikj@459 694 if test "x${ZLIB_FOUND}" = "xyes"; then
ihse@839 695 USE_EXTERNAL_LIBZ=true
ihse@839 696 AC_MSG_RESULT([system])
erikj@459 697 else
ihse@839 698 AC_MSG_RESULT([system not found])
ihse@839 699 AC_MSG_ERROR([--with-zlib=system specified, but no zlib found!])
erikj@459 700 fi
ihse@839 701 else
ihse@839 702 AC_MSG_ERROR([Invalid value for --with-zlib: ${with_zlib}, use 'system' or 'bundled'])
ihse@839 703 fi
erikj@459 704
ihse@839 705 AC_SUBST(USE_EXTERNAL_LIBZ)
erikj@459 706
ihse@839 707 ###############################################################################
ihse@839 708 LIBZIP_CAN_USE_MMAP=true
ohair@478 709
ihse@839 710 AC_SUBST(LIBZIP_CAN_USE_MMAP)
erikj@459 711
ihse@839 712 ###############################################################################
ihse@839 713 #
ihse@839 714 # Check if altzone exists in time.h
ihse@839 715 #
erikj@459 716
ihse@839 717 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <time.h>], [return (int)altzone;])],
ihse@839 718 [has_altzone=yes],
ihse@839 719 [has_altzone=no])
ihse@839 720 if test "x$has_altzone" = xyes; then
erikj@459 721 AC_DEFINE([HAVE_ALTZONE], 1, [Define if you have the external 'altzone' variable in time.h])
ihse@839 722 fi
erikj@459 723
ihse@839 724 ###############################################################################
ihse@839 725 #
ihse@839 726 # Check the maths library
ihse@839 727 #
erikj@459 728
ihse@839 729 AC_CHECK_LIB(m, cos, [],
ihse@839 730 [
ihse@839 731 AC_MSG_NOTICE([Maths library was not found])
ihse@839 732 ]
ihse@839 733 )
ihse@839 734 AC_SUBST(LIBM)
erikj@459 735
ihse@839 736 ###############################################################################
ihse@839 737 #
ihse@839 738 # Check for libdl.so
erikj@459 739
ihse@839 740 save_LIBS="$LIBS"
ihse@839 741 LIBS=""
ihse@839 742 AC_CHECK_LIB(dl,dlopen)
ihse@839 743 LIBDL="$LIBS"
ihse@839 744 AC_SUBST(LIBDL)
ihse@839 745 LIBS="$save_LIBS"
erikj@459 746 ])
erikj@459 747
erikj@459 748 AC_DEFUN_ONCE([LIB_SETUP_STATIC_LINK_LIBSTDCPP],
erikj@459 749 [
ihse@839 750 ###############################################################################
ihse@839 751 #
ihse@839 752 # statically link libstdc++ before C++ ABI is stablized on Linux unless
ihse@839 753 # dynamic build is configured on command line.
ihse@839 754 #
ihse@839 755 AC_ARG_WITH([stdc++lib], [AS_HELP_STRING([--with-stdc++lib=<static>,<dynamic>,<default>],
ihse@839 756 [force linking of the C++ runtime on Linux to either static or dynamic, default is static with dynamic as fallback])],
ihse@839 757 [
ihse@839 758 if test "x$with_stdc__lib" != xdynamic && test "x$with_stdc__lib" != xstatic \
ihse@839 759 && test "x$with_stdc__lib" != xdefault; then
ihse@839 760 AC_MSG_ERROR([Bad parameter value --with-stdc++lib=$with_stdc__lib!])
ihse@839 761 fi
ihse@839 762 ],
ihse@839 763 [with_stdc__lib=default]
ihse@839 764 )
erikj@459 765
ihse@839 766 if test "x$OPENJDK_TARGET_OS" = xlinux; then
erikj@459 767 # Test if -lstdc++ works.
erikj@459 768 AC_MSG_CHECKING([if dynamic link of stdc++ is possible])
erikj@459 769 AC_LANG_PUSH(C++)
erikj@459 770 OLD_CXXFLAGS="$CXXFLAGS"
erikj@459 771 CXXFLAGS="$CXXFLAGS -lstdc++"
erikj@459 772 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [return 0;])],
ihse@839 773 [has_dynamic_libstdcxx=yes],
ihse@839 774 [has_dynamic_libstdcxx=no])
erikj@459 775 CXXFLAGS="$OLD_CXXFLAGS"
erikj@459 776 AC_LANG_POP(C++)
erikj@459 777 AC_MSG_RESULT([$has_dynamic_libstdcxx])
erikj@459 778
erikj@459 779 # Test if stdc++ can be linked statically.
erikj@459 780 AC_MSG_CHECKING([if static link of stdc++ is possible])
erikj@459 781 STATIC_STDCXX_FLAGS="-Wl,-Bstatic -lstdc++ -lgcc -Wl,-Bdynamic"
erikj@459 782 AC_LANG_PUSH(C++)
erikj@459 783 OLD_LIBS="$LIBS"
erikj@459 784 OLD_CXX="$CXX"
erikj@459 785 LIBS="$STATIC_STDCXX_FLAGS"
ihse@839 786 CXX="$CC"
erikj@459 787 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [return 0;])],
ihse@839 788 [has_static_libstdcxx=yes],
ihse@839 789 [has_static_libstdcxx=no])
erikj@459 790 LIBS="$OLD_LIBS"
erikj@459 791 CXX="$OLD_CXX"
erikj@459 792 AC_LANG_POP(C++)
erikj@459 793 AC_MSG_RESULT([$has_static_libstdcxx])
erikj@459 794
tbell@511 795 if test "x$has_static_libstdcxx" = xno && test "x$has_dynamic_libstdcxx" = xno; then
ihse@839 796 AC_MSG_ERROR([Cannot link to stdc++, neither dynamically nor statically!])
erikj@459 797 fi
erikj@459 798
tbell@511 799 if test "x$with_stdc__lib" = xstatic && test "x$has_static_libstdcxx" = xno; then
ihse@839 800 AC_MSG_ERROR([Static linking of libstdc++ was not possible!])
erikj@459 801 fi
erikj@459 802
tbell@511 803 if test "x$with_stdc__lib" = xdynamic && test "x$has_dynamic_libstdcxx" = xno; then
ihse@839 804 AC_MSG_ERROR([Dynamic linking of libstdc++ was not possible!])
erikj@459 805 fi
erikj@459 806
erikj@459 807 AC_MSG_CHECKING([how to link with libstdc++])
tbell@511 808 # If dynamic was requested, it's available since it would fail above otherwise.
tbell@511 809 # If dynamic wasn't requested, go with static unless it isn't available.
omajid@671 810 if test "x$with_stdc__lib" = xdynamic || test "x$has_static_libstdcxx" = xno || test "x$JVM_VARIANT_ZEROSHARK" = xtrue; then
ihse@839 811 LIBCXX="$LIBCXX -lstdc++"
ihse@839 812 LDCXX="$CXX"
ihse@839 813 STATIC_CXX_SETTING="STATIC_CXX=false"
ihse@839 814 AC_MSG_RESULT([dynamic])
tbell@511 815 else
ihse@839 816 LIBCXX="$LIBCXX $STATIC_STDCXX_FLAGS"
ihse@839 817 LDCXX="$CC"
ihse@839 818 STATIC_CXX_SETTING="STATIC_CXX=true"
ihse@839 819 AC_MSG_RESULT([static])
erikj@459 820 fi
ihse@839 821 fi
ihse@839 822 AC_SUBST(STATIC_CXX_SETTING)
erikj@459 823
ihse@839 824 if test "x$JVM_VARIANT_ZERO" = xtrue || test "x$JVM_VARIANT_ZEROSHARK" = xtrue; then
omajid@671 825 # Figure out LIBFFI_CFLAGS and LIBFFI_LIBS
omajid@671 826 PKG_CHECK_MODULES([LIBFFI], [libffi])
omajid@671 827
ihse@839 828 fi
omajid@671 829
ihse@839 830 if test "x$JVM_VARIANT_ZEROSHARK" = xtrue; then
omajid@671 831 AC_CHECK_PROG([LLVM_CONFIG], [llvm-config], [llvm-config])
omajid@671 832
omajid@671 833 if test "x$LLVM_CONFIG" != xllvm-config; then
ihse@839 834 AC_MSG_ERROR([llvm-config not found in $PATH.])
omajid@671 835 fi
omajid@671 836
omajid@671 837 llvm_components="jit mcjit engine nativecodegen native"
omajid@671 838 unset LLVM_CFLAGS
omajid@671 839 for flag in $("$LLVM_CONFIG" --cxxflags); do
omajid@671 840 if echo "${flag}" | grep -q '^-@<:@ID@:>@'; then
omajid@671 841 if test "${flag}" != "-D_DEBUG" ; then
omajid@671 842 if test "${LLVM_CFLAGS}" != "" ; then
omajid@671 843 LLVM_CFLAGS="${LLVM_CFLAGS} "
omajid@671 844 fi
omajid@671 845 LLVM_CFLAGS="${LLVM_CFLAGS}${flag}"
omajid@671 846 fi
omajid@671 847 fi
omajid@671 848 done
omajid@671 849 llvm_version=$("${LLVM_CONFIG}" --version | sed 's/\.//; s/svn.*//')
omajid@671 850 LLVM_CFLAGS="${LLVM_CFLAGS} -DSHARK_LLVM_VERSION=${llvm_version}"
omajid@671 851
omajid@671 852 unset LLVM_LDFLAGS
omajid@671 853 for flag in $("${LLVM_CONFIG}" --ldflags); do
omajid@671 854 if echo "${flag}" | grep -q '^-L'; then
omajid@671 855 if test "${LLVM_LDFLAGS}" != ""; then
omajid@671 856 LLVM_LDFLAGS="${LLVM_LDFLAGS} "
omajid@671 857 fi
omajid@671 858 LLVM_LDFLAGS="${LLVM_LDFLAGS}${flag}"
omajid@671 859 fi
omajid@671 860 done
omajid@671 861
omajid@671 862 unset LLVM_LIBS
omajid@671 863 for flag in $("${LLVM_CONFIG}" --libs ${llvm_components}); do
omajid@671 864 if echo "${flag}" | grep -q '^-l'; then
omajid@671 865 if test "${LLVM_LIBS}" != ""; then
omajid@671 866 LLVM_LIBS="${LLVM_LIBS} "
omajid@671 867 fi
omajid@671 868 LLVM_LIBS="${LLVM_LIBS}${flag}"
omajid@671 869 fi
omajid@671 870 done
omajid@671 871
omajid@671 872 AC_SUBST(LLVM_CFLAGS)
omajid@671 873 AC_SUBST(LLVM_LDFLAGS)
omajid@671 874 AC_SUBST(LLVM_LIBS)
ihse@839 875 fi
omajid@671 876
ihse@839 877 # libCrun is the c++ runtime-library with SunStudio (roughly the equivalent of gcc's libstdc++.so)
kevinw@2206 878 if test "x$TOOLCHAIN_TYPE" = xsolstudio && test "x$LIBCXX" = x; then
kevinw@2215 879 LIBCXX="${SYSROOT}/usr/lib${OPENJDK_TARGET_CPU_ISADIR}/libCrun.so.1"
ihse@839 880 fi
erikj@459 881
ihse@839 882 # TODO better (platform agnostic) test
kevinw@2206 883 if test "x$OPENJDK_TARGET_OS" = xmacosx && test "x$LIBCXX" = x && test "x$TOOLCHAIN_TYPE" = xgcc; then
erikj@459 884 LIBCXX="-lstdc++"
ihse@839 885 fi
erikj@459 886
ihse@839 887 AC_SUBST(LIBCXX)
erikj@459 888 ])
kevinw@2206 889
kevinw@2206 890 AC_DEFUN_ONCE([LIB_SETUP_ON_WINDOWS],
kevinw@2206 891 [
kevinw@2206 892 if test "x$OPENJDK_TARGET_OS" = "xwindows"; then
kevinw@2206 893 TOOLCHAIN_SETUP_MSVCR_DLL
kevinw@2206 894 BASIC_DEPRECATED_ARG_WITH([dxsdk])
kevinw@2206 895 BASIC_DEPRECATED_ARG_WITH([dxsdk-lib])
kevinw@2206 896 BASIC_DEPRECATED_ARG_WITH([dxsdk-include])
kevinw@2206 897 fi
kevinw@2206 898 AC_SUBST(MSVCR_DLL)
kevinw@2206 899 ])

mercurial