common/autoconf/libraries.m4

Tue, 20 Jan 2015 13:29:10 -0800

author
ddehaven
date
Tue, 20 Jan 2015 13:29:10 -0800
changeset 1304
c27cb0ab944f
parent 980
d6db2aec371e
child 1482
8fb429038513
child 2206
7ba4e17574e0
permissions
-rw-r--r--

8043340: [macosx] Fix hard-wired paths to JavaVM.framework
Summary: Build system tweaks to allow building on OS X 10.9 and later
Reviewed-by: erikj

erikj@459 1 #
ddehaven@1304 2 # Copyright (c) 2011, 2015, 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.
ihse@839 100 if test "x$SYS_ROOT" != "x/"; then
ihse@839 101 if test "x$x_includes" = xNONE; then
ihse@839 102 if test -f "$SYS_ROOT/usr/X11R6/include/X11/Xlib.h"; then
ihse@839 103 x_includes="$SYS_ROOT/usr/X11R6/include"
ihse@839 104 elif test -f "$SYS_ROOT/usr/include/X11/Xlib.h"; then
ihse@839 105 x_includes="$SYS_ROOT/usr/include"
ihse@839 106 fi
ihse@839 107 fi
ihse@839 108 if test "x$x_libraries" = xNONE; then
ihse@839 109 if test -f "$SYS_ROOT/usr/X11R6/lib/libX11.so"; then
ihse@839 110 x_libraries="$SYS_ROOT/usr/X11R6/lib"
ihse@839 111 elif test "$SYS_ROOT/usr/lib64/libX11.so" && test "x$OPENJDK_TARGET_CPU_BITS" = x64; then
ihse@839 112 x_libraries="$SYS_ROOT/usr/lib64"
ihse@839 113 elif test -f "$SYS_ROOT/usr/lib/libX11.so"; then
ihse@839 114 x_libraries="$SYS_ROOT/usr/lib"
ihse@839 115 fi
erikj@459 116 fi
erikj@459 117 fi
ihse@839 118
ihse@839 119 # Now let autoconf do it's magic
ihse@839 120 AC_PATH_X
ihse@839 121 AC_PATH_XTRA
ihse@839 122
ihse@839 123 # AC_PATH_XTRA creates X_LIBS and sometimes adds -R flags. When cross compiling
ihse@839 124 # this doesn't make sense so we remove it.
ihse@839 125 if test "x$COMPILE_TYPE" = xcross; then
ihse@839 126 X_LIBS=`$ECHO $X_LIBS | $SED 's/-R \{0,1\}[[^ ]]*//g'`
ihse@839 127 fi
ihse@839 128
ihse@839 129 if test "x$no_x" = xyes && test "x$X11_NOT_NEEDED" != xyes; then
ihse@839 130 HELP_MSG_MISSING_DEPENDENCY([x11])
ihse@839 131 AC_MSG_ERROR([Could not find X11 libraries. $HELP_MSG])
ihse@839 132 fi
ihse@839 133
ihse@839 134 if test "x$OPENJDK_TARGET_OS" = xsolaris; then
ihse@839 135 OPENWIN_HOME="/usr/openwin"
ihse@839 136 fi
ihse@839 137 AC_SUBST(OPENWIN_HOME)
erikj@459 138
erikj@459 139
ihse@839 140 #
ihse@839 141 # Weird Sol10 something check...TODO change to try compile
ihse@839 142 #
ihse@839 143 if test "x${OPENJDK_TARGET_OS}" = xsolaris; then
ihse@839 144 if test "`uname -r`" = "5.10"; then
ihse@839 145 if test "`${EGREP} -c XLinearGradient ${OPENWIN_HOME}/share/include/X11/extensions/Xrender.h`" = "0"; then
ihse@839 146 X_CFLAGS="${X_CFLAGS} -DSOLARIS10_NO_XRENDER_STRUCTS"
ihse@839 147 fi
ihse@839 148 fi
ihse@839 149 fi
erikj@600 150
ihse@839 151 AC_LANG_PUSH(C)
ihse@839 152 OLD_CFLAGS="$CFLAGS"
ihse@839 153 CFLAGS="$CFLAGS $X_CFLAGS"
erikj@459 154
ihse@839 155 # Need to include Xlib.h and Xutil.h to avoid "present but cannot be compiled" warnings on Solaris 10
ihse@839 156 AC_CHECK_HEADERS([X11/extensions/shape.h X11/extensions/Xrender.h X11/extensions/XTest.h X11/Intrinsic.h],
ihse@839 157 [X11_A_OK=yes],
ihse@839 158 [X11_A_OK=no; break],
ihse@839 159 [
ihse@839 160 # include <X11/Xlib.h>
ihse@839 161 # include <X11/Xutil.h>
ihse@839 162 ]
ihse@839 163 )
erikj@459 164
ihse@839 165 CFLAGS="$OLD_CFLAGS"
ihse@839 166 AC_LANG_POP(C)
erikj@459 167
ihse@839 168 if test "x$X11_A_OK" = xno && test "x$X11_NOT_NEEDED" != xyes; then
erikj@459 169 HELP_MSG_MISSING_DEPENDENCY([x11])
erikj@782 170 AC_MSG_ERROR([Could not find all X11 headers (shape.h Xrender.h XTest.h Intrinsic.h). $HELP_MSG])
ihse@839 171 fi
erikj@459 172
ihse@839 173 AC_SUBST(X_CFLAGS)
ihse@839 174 AC_SUBST(X_LIBS)
erikj@459 175 ])
erikj@459 176
erikj@459 177 AC_DEFUN_ONCE([LIB_SETUP_CUPS],
erikj@459 178 [
erikj@459 179
ihse@839 180 ###############################################################################
ihse@839 181 #
ihse@839 182 # The common unix printing system cups is used to print from java.
ihse@839 183 #
ihse@839 184 AC_ARG_WITH(cups, [AS_HELP_STRING([--with-cups],
ihse@839 185 [specify prefix directory for the cups package
ihse@839 186 (expecting the headers under PATH/include)])])
ihse@839 187 AC_ARG_WITH(cups-include, [AS_HELP_STRING([--with-cups-include],
ihse@839 188 [specify directory for the cups include files])])
erikj@459 189
ihse@839 190 if test "x$CUPS_NOT_NEEDED" = xyes; then
ihse@839 191 if test "x${with_cups}" != x || test "x${with_cups_include}" != x; then
ihse@839 192 AC_MSG_WARN([cups not used, so --with-cups is ignored])
ihse@839 193 fi
ihse@839 194 CUPS_CFLAGS=
ihse@839 195 else
ihse@839 196 CUPS_FOUND=no
erikj@459 197
ihse@839 198 if test "x${with_cups}" = xno || test "x${with_cups_include}" = xno; then
ihse@839 199 AC_MSG_ERROR([It is not possible to disable the use of cups. Remove the --without-cups option.])
ihse@839 200 fi
erikj@459 201
ihse@839 202 if test "x${with_cups}" != x; then
ihse@839 203 CUPS_CFLAGS="-I${with_cups}/include"
ihse@839 204 CUPS_FOUND=yes
ihse@839 205 fi
ihse@839 206 if test "x${with_cups_include}" != x; then
ihse@839 207 CUPS_CFLAGS="-I${with_cups_include}"
ihse@839 208 CUPS_FOUND=yes
ihse@839 209 fi
ihse@839 210 if test "x$CUPS_FOUND" = xno; then
ihse@839 211 BDEPS_CHECK_MODULE(CUPS, cups, xxx, [CUPS_FOUND=yes])
ihse@839 212 fi
ihse@839 213 if test "x$CUPS_FOUND" = xno; then
ihse@839 214 # Are the cups headers installed in the default /usr/include location?
ihse@839 215 AC_CHECK_HEADERS([cups/cups.h cups/ppd.h],
ihse@839 216 [
ihse@839 217 CUPS_FOUND=yes
ihse@839 218 CUPS_CFLAGS=
ihse@839 219 DEFAULT_CUPS=yes
ihse@839 220 ]
ihse@839 221 )
ihse@839 222 fi
ihse@839 223 if test "x$CUPS_FOUND" = xno; then
ihse@839 224 # Getting nervous now? Lets poke around for standard Solaris third-party
ihse@839 225 # package installation locations.
ihse@839 226 AC_MSG_CHECKING([for cups headers])
ihse@839 227 if test -s /opt/sfw/cups/include/cups/cups.h; then
ihse@839 228 # An SFW package seems to be installed!
ihse@839 229 CUPS_FOUND=yes
ihse@839 230 CUPS_CFLAGS="-I/opt/sfw/cups/include"
ihse@839 231 elif test -s /opt/csw/include/cups/cups.h; then
ihse@839 232 # A CSW package seems to be installed!
ihse@839 233 CUPS_FOUND=yes
ihse@839 234 CUPS_CFLAGS="-I/opt/csw/include"
ihse@839 235 fi
ihse@839 236 AC_MSG_RESULT([$CUPS_FOUND])
ihse@839 237 fi
ihse@839 238 if test "x$CUPS_FOUND" = xno; then
ihse@839 239 HELP_MSG_MISSING_DEPENDENCY([cups])
ihse@839 240 AC_MSG_ERROR([Could not find cups! $HELP_MSG ])
ihse@839 241 fi
ihse@839 242 fi
erikj@459 243
ihse@839 244 AC_SUBST(CUPS_CFLAGS)
erikj@459 245
erikj@459 246 ])
erikj@459 247
ihse@868 248 AC_DEFUN([LIB_CHECK_POTENTIAL_FREETYPE],
ihse@868 249 [
ihse@868 250 POTENTIAL_FREETYPE_INCLUDE_PATH="$1"
ihse@868 251 POTENTIAL_FREETYPE_LIB_PATH="$2"
ihse@868 252 METHOD="$3"
ihse@868 253
ihse@868 254 # First check if the files exists.
ihse@868 255 if test -s "$POTENTIAL_FREETYPE_INCLUDE_PATH/ft2build.h"; then
ihse@868 256 # We found an arbitrary include file. That's a good sign.
ihse@868 257 AC_MSG_NOTICE([Found freetype include files at $POTENTIAL_FREETYPE_INCLUDE_PATH using $METHOD])
ihse@868 258 FOUND_FREETYPE=yes
ihse@868 259
ihse@868 260 FREETYPE_LIB_NAME="${LIBRARY_PREFIX}freetype${SHARED_LIBRARY_SUFFIX}"
ihse@868 261 if ! test -s "$POTENTIAL_FREETYPE_LIB_PATH/$FREETYPE_LIB_NAME"; then
ihse@868 262 AC_MSG_NOTICE([Could not find $POTENTIAL_FREETYPE_LIB_PATH/$FREETYPE_LIB_NAME. Ignoring location.])
ihse@868 263 FOUND_FREETYPE=no
ihse@868 264 else
ihse@868 265 if test "x$OPENJDK_TARGET_OS" = xwindows; then
ihse@868 266 # On Windows, we will need both .lib and .dll file.
ihse@868 267 if ! test -s "$POTENTIAL_FREETYPE_LIB_PATH/freetype.lib"; then
ihse@868 268 AC_MSG_NOTICE([Could not find $POTENTIAL_FREETYPE_LIB_PATH/freetype.lib. Ignoring location.])
ihse@868 269 FOUND_FREETYPE=no
ihse@868 270 fi
ihse@868 271 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 272 # On solaris-x86_86, default is (normally) PATH/lib/amd64. Update our guess!
ihse@868 273 POTENTIAL_FREETYPE_LIB_PATH="$POTENTIAL_FREETYPE_LIB_PATH/amd64"
ihse@868 274 fi
ihse@868 275 fi
ihse@868 276 fi
ihse@868 277
ihse@868 278 if test "x$FOUND_FREETYPE" = xyes; then
ihse@868 279 BASIC_FIXUP_PATH(POTENTIAL_FREETYPE_INCLUDE_PATH)
ihse@868 280 BASIC_FIXUP_PATH(POTENTIAL_FREETYPE_LIB_PATH)
ihse@868 281
ihse@868 282 FREETYPE_INCLUDE_PATH="$POTENTIAL_FREETYPE_INCLUDE_PATH"
ihse@868 283 AC_MSG_CHECKING([for freetype includes])
ihse@868 284 AC_MSG_RESULT([$FREETYPE_INCLUDE_PATH])
ihse@868 285 FREETYPE_LIB_PATH="$POTENTIAL_FREETYPE_LIB_PATH"
ihse@868 286 AC_MSG_CHECKING([for freetype libraries])
ihse@868 287 AC_MSG_RESULT([$FREETYPE_LIB_PATH])
ihse@868 288 fi
ihse@868 289 ])
ihse@868 290
erikj@459 291 AC_DEFUN_ONCE([LIB_SETUP_FREETYPE],
erikj@459 292 [
erikj@459 293
ihse@839 294 ###############################################################################
ihse@839 295 #
ihse@868 296 # The ubiquitous freetype library is used to render fonts.
ihse@839 297 #
ihse@839 298 AC_ARG_WITH(freetype, [AS_HELP_STRING([--with-freetype],
ihse@868 299 [specify prefix directory for the freetype package
ihse@839 300 (expecting the libraries under PATH/lib and the headers under PATH/include)])])
ihse@868 301 AC_ARG_WITH(freetype-include, [AS_HELP_STRING([--with-freetype-include],
ihse@868 302 [specify directory for the freetype include files])])
ihse@868 303 AC_ARG_WITH(freetype-lib, [AS_HELP_STRING([--with-freetype-lib],
ihse@868 304 [specify directory for the freetype library])])
ihse@868 305 AC_ARG_ENABLE(freetype-bundling, [AS_HELP_STRING([--disable-freetype-bundling],
ihse@868 306 [disable bundling of the freetype library with the build result @<:@enabled on Windows or when using --with-freetype, disabled otherwise@:>@])])
erikj@459 307
ihse@868 308 FREETYPE_CFLAGS=
ihse@868 309 FREETYPE_LIBS=
ihse@868 310 FREETYPE_BUNDLE_LIB_PATH=
erikj@459 311
ihse@868 312 if test "x$FREETYPE_NOT_NEEDED" = xyes; then
ihse@839 313 if test "x$with_freetype" != x || test "x$with_freetype_include" != x || test "x$with_freetype_lib" != x; then
ihse@839 314 AC_MSG_WARN([freetype not used, so --with-freetype is ignored])
ihse@839 315 fi
ihse@868 316 if test "x$enable_freetype_bundling" != x; then
ihse@868 317 AC_MSG_WARN([freetype not used, so --enable-freetype-bundling is ignored])
ihse@868 318 fi
ihse@839 319 else
ihse@868 320 # freetype is needed to build; go get it!
erikj@459 321
ihse@868 322 BUNDLE_FREETYPE="$enable_freetype_bundling"
ihse@868 323
ihse@868 324 if test "x$with_freetype" != x || test "x$with_freetype_include" != x || test "x$with_freetype_lib" != x; then
ihse@868 325 # User has specified settings
ihse@868 326
ihse@868 327 if test "x$BUNDLE_FREETYPE" = x; then
ihse@868 328 # If not specified, default is to bundle freetype
ihse@868 329 BUNDLE_FREETYPE=yes
ihse@839 330 fi
ihse@868 331
ihse@868 332 if test "x$with_freetype" != x; then
ihse@868 333 POTENTIAL_FREETYPE_INCLUDE_PATH="$with_freetype/include"
ihse@868 334 POTENTIAL_FREETYPE_LIB_PATH="$with_freetype/lib"
ihse@839 335 fi
ihse@868 336
ihse@868 337 # Allow --with-freetype-lib and --with-freetype-include to override
ihse@868 338 if test "x$with_freetype_include" != x; then
ihse@868 339 POTENTIAL_FREETYPE_INCLUDE_PATH="$with_freetype_include"
ihse@839 340 fi
ihse@868 341 if test "x$with_freetype_lib" != x; then
ihse@868 342 POTENTIAL_FREETYPE_LIB_PATH="$with_freetype_lib"
ihse@868 343 fi
ihse@868 344
ihse@868 345 if test "x$POTENTIAL_FREETYPE_INCLUDE_PATH" != x && test "x$POTENTIAL_FREETYPE_LIB_PATH" != x; then
ihse@868 346 # Okay, we got it. Check that it works.
ihse@868 347 LIB_CHECK_POTENTIAL_FREETYPE($POTENTIAL_FREETYPE_INCLUDE_PATH, $POTENTIAL_FREETYPE_LIB_PATH, [--with-freetype])
ihse@868 348 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 349 AC_MSG_ERROR([Can not find or use freetype at location given by --with-freetype])
erikj@459 350 fi
ihse@868 351 else
ihse@868 352 # User specified only one of lib or include. This is an error.
ihse@868 353 if test "x$POTENTIAL_FREETYPE_INCLUDE_PATH" = x ; then
ihse@868 354 AC_MSG_NOTICE([User specified --with-freetype-lib but not --with-freetype-include])
ihse@868 355 AC_MSG_ERROR([Need both freetype lib and include paths. Consider using --with-freetype instead.])
ihse@868 356 else
ihse@868 357 AC_MSG_NOTICE([User specified --with-freetype-include but not --with-freetype-lib])
ihse@868 358 AC_MSG_ERROR([Need both freetype lib and include paths. Consider using --with-freetype instead.])
ihse@839 359 fi
ihse@839 360 fi
ihse@868 361 else
ihse@868 362 # User did not specify settings, but we need freetype. Try to locate it.
ihse@868 363
ihse@868 364 if test "x$BUNDLE_FREETYPE" = x; then
ihse@868 365 # If not specified, default is to bundle freetype only on windows
ihse@868 366 if test "x$OPENJDK_TARGET_OS" = xwindows; then
ihse@868 367 BUNDLE_FREETYPE=yes
ihse@868 368 else
ihse@868 369 BUNDLE_FREETYPE=no
ihse@839 370 fi
ihse@868 371 fi
ihse@868 372
ihse@868 373 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 374 # Check builddeps
ihse@868 375 BDEPS_CHECK_MODULE(FREETYPE, freetype2, xxx, [FOUND_FREETYPE=yes], [FOUND_FREETYPE=no])
ihse@868 376 # BDEPS_CHECK_MODULE will set FREETYPE_CFLAGS and _LIBS, but we don't get a lib path for bundling.
ihse@868 377 if test "x$FOUND_FREETYPE" = xyes; then
ihse@868 378 if test "x$BUNDLE_FREETYPE" = xyes; then
ihse@868 379 AC_MSG_NOTICE([Found freetype using builddeps, but ignoring since we can not bundle that])
ihse@868 380 FOUND_FREETYPE=no
ihse@868 381 else
ihse@868 382 AC_MSG_CHECKING([for freetype])
ihse@868 383 AC_MSG_RESULT([yes (using builddeps)])
ihse@868 384 fi
ihse@839 385 fi
ihse@839 386 fi
ihse@868 387
ihse@868 388 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 389 # Check modules using pkg-config, but only if we have it (ugly output results otherwise)
ihse@868 390 if test "x$PKG_CONFIG" != x; then
ihse@868 391 PKG_CHECK_MODULES(FREETYPE, freetype2, [FOUND_FREETYPE=yes], [FOUND_FREETYPE=no])
ihse@868 392 if test "x$FOUND_FREETYPE" = xyes; then
ihse@868 393 # On solaris, pkg_check adds -lz to freetype libs, which isn't necessary for us.
ihse@868 394 FREETYPE_LIBS=`$ECHO $FREETYPE_LIBS | $SED 's/-lz//g'`
ihse@868 395 # 64-bit libs for Solaris x86 are installed in the amd64 subdirectory, change lib to lib/amd64
ihse@868 396 if test "x$OPENJDK_TARGET_OS" = xsolaris && test "x$OPENJDK_TARGET_CPU" = xx86_64; then
ihse@868 397 FREETYPE_LIBS=`$ECHO $FREETYPE_LIBS | $SED 's?/lib?/lib/amd64?g'`
ihse@868 398 fi
ihse@868 399 # BDEPS_CHECK_MODULE will set FREETYPE_CFLAGS and _LIBS, but we don't get a lib path for bundling.
ihse@868 400 if test "x$BUNDLE_FREETYPE" = xyes; then
ihse@868 401 AC_MSG_NOTICE([Found freetype using pkg-config, but ignoring since we can not bundle that])
ihse@868 402 FOUND_FREETYPE=no
ihse@868 403 else
ihse@868 404 AC_MSG_CHECKING([for freetype])
ihse@868 405 AC_MSG_RESULT([yes (using pkg-config)])
ihse@868 406 fi
ihse@868 407 fi
ihse@868 408 fi
ihse@868 409 fi
ihse@868 410
ihse@868 411 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 412 # Check in well-known locations
ihse@868 413 if test "x$OPENJDK_TARGET_OS" = xwindows; then
ihse@868 414 FREETYPE_BASE_DIR="$PROGRAMFILES/GnuWin32"
ihse@868 415 BASIC_WINDOWS_REWRITE_AS_UNIX_PATH(FREETYPE_BASE_DIR)
ihse@868 416 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib], [well-known location])
ihse@868 417 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 418 FREETYPE_BASE_DIR="$ProgramW6432/GnuWin32"
ihse@868 419 BASIC_WINDOWS_REWRITE_AS_UNIX_PATH(FREETYPE_BASE_DIR)
ihse@868 420 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib], [well-known location])
ihse@868 421 fi
ihse@868 422 else
ihse@868 423 if test "x$SYS_ROOT" = "x/"; then
ihse@868 424 FREETYPE_ROOT=
ihse@868 425 else
ihse@868 426 FREETYPE_ROOT="$SYS_ROOT"
ihse@868 427 fi
ihse@868 428 FREETYPE_BASE_DIR="$FREETYPE_ROOT/usr"
ihse@868 429 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib], [well-known location])
ihse@868 430
ihse@868 431 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 432 FREETYPE_BASE_DIR="$FREETYPE_ROOT/usr/X11"
ihse@868 433 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib], [well-known location])
ihse@868 434 fi
ihse@868 435
ihse@868 436 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 437 FREETYPE_BASE_DIR="$FREETYPE_ROOT/usr"
ihse@868 438 if test "x$OPENJDK_TARGET_CPU_BITS" = x64; then
ihse@868 439 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib/x86_64-linux-gnu], [well-known location])
ihse@868 440 else
ihse@868 441 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib/i386-linux-gnu], [well-known location])
ihse@868 442 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 443 LIB_CHECK_POTENTIAL_FREETYPE([$FREETYPE_BASE_DIR/include], [$FREETYPE_BASE_DIR/lib32], [well-known location])
ihse@868 444 fi
ihse@868 445 fi
ihse@868 446 fi
ihse@868 447 fi
ihse@868 448 fi # end check in well-known locations
ihse@868 449
ihse@868 450 if test "x$FOUND_FREETYPE" != xyes; then
ihse@868 451 HELP_MSG_MISSING_DEPENDENCY([freetype])
ihse@868 452 AC_MSG_ERROR([Could not find freetype! $HELP_MSG ])
ihse@868 453 fi
ihse@868 454 fi # end user specified settings
ihse@868 455
ihse@868 456 # Set FREETYPE_CFLAGS, _LIBS and _LIB_PATH from include and lib dir.
ihse@868 457 if test "x$FREETYPE_CFLAGS" = x; then
ihse@868 458 BASIC_FIXUP_PATH(FREETYPE_INCLUDE_PATH)
ihse@868 459 if test -d $FREETYPE_INCLUDE_PATH/freetype2/freetype; then
ihse@868 460 FREETYPE_CFLAGS="-I$FREETYPE_INCLUDE_PATH/freetype2 -I$FREETYPE_INCLUDE_PATH"
ihse@868 461 else
ihse@868 462 FREETYPE_CFLAGS="-I$FREETYPE_INCLUDE_PATH"
ihse@839 463 fi
ihse@839 464 fi
ihse@868 465
ihse@868 466 if test "x$FREETYPE_LIBS" = x; then
ihse@868 467 BASIC_FIXUP_PATH(FREETYPE_LIB_PATH)
ihse@868 468 if test "x$OPENJDK_TARGET_OS" = xwindows; then
ihse@868 469 FREETYPE_LIBS="$FREETYPE_LIB_PATH/freetype.lib"
ihse@868 470 else
ihse@868 471 FREETYPE_LIBS="-L$FREETYPE_LIB_PATH -lfreetype"
ihse@839 472 fi
ihse@839 473 fi
erikj@459 474
ihse@868 475 # Try to compile it
ihse@868 476 AC_MSG_CHECKING([if we can compile and link with freetype])
ihse@868 477 AC_LANG_PUSH(C++)
ihse@868 478 PREV_CXXCFLAGS="$CXXFLAGS"
ihse@873 479 PREV_LIBS="$LIBS"
ihse@868 480 PREV_CXX="$CXX"
ihse@868 481 CXXFLAGS="$CXXFLAGS $FREETYPE_CFLAGS"
ihse@873 482 LIBS="$LIBS $FREETYPE_LIBS"
ihse@868 483 CXX="$FIXPATH $CXX"
ihse@868 484 AC_LINK_IFELSE([AC_LANG_SOURCE([[
ihse@868 485 #include<ft2build.h>
ihse@868 486 #include FT_FREETYPE_H
ihse@868 487 int main () {
ihse@868 488 FT_Init_FreeType(NULL);
ihse@868 489 return 0;
ihse@868 490 }
ihse@868 491 ]])],
ihse@868 492 [
ihse@868 493 AC_MSG_RESULT([yes])
ihse@868 494 ],
ihse@868 495 [
ihse@868 496 AC_MSG_RESULT([no])
ihse@868 497 AC_MSG_NOTICE([Could not compile and link with freetype. This might be a 32/64-bit mismatch.])
ihse@868 498 AC_MSG_NOTICE([Using FREETYPE_CFLAGS=$FREETYPE_CFLAGS and FREETYPE_LIBS=$FREETYPE_LIBS])
ihse@868 499
ihse@868 500 HELP_MSG_MISSING_DEPENDENCY([freetype])
ihse@868 501
ihse@868 502 AC_MSG_ERROR([Can not continue without freetype. $HELP_MSG])
ihse@868 503 ]
ihse@868 504 )
ihse@868 505 CXXCFLAGS="$PREV_CXXFLAGS"
ihse@873 506 LIBS="$PREV_LIBS"
ihse@868 507 CXX="$PREV_CXX"
ihse@868 508 AC_LANG_POP(C++)
ihse@868 509
ihse@868 510 AC_MSG_CHECKING([if we should bundle freetype])
ihse@868 511 if test "x$BUNDLE_FREETYPE" = xyes; then
ihse@868 512 FREETYPE_BUNDLE_LIB_PATH="$FREETYPE_LIB_PATH"
ihse@839 513 fi
ihse@868 514 AC_MSG_RESULT([$BUNDLE_FREETYPE])
ihse@839 515
ihse@868 516 fi # end freetype needed
ihse@868 517
ihse@868 518 AC_SUBST(FREETYPE_BUNDLE_LIB_PATH)
ihse@868 519 AC_SUBST(FREETYPE_CFLAGS)
ihse@868 520 AC_SUBST(FREETYPE_LIBS)
erikj@459 521 ])
erikj@459 522
erikj@459 523 AC_DEFUN_ONCE([LIB_SETUP_ALSA],
erikj@459 524 [
erikj@459 525
ihse@839 526 ###############################################################################
ihse@839 527 #
ihse@839 528 # Check for alsa headers and libraries. Used on Linux/GNU systems.
ihse@839 529 #
ihse@839 530 AC_ARG_WITH(alsa, [AS_HELP_STRING([--with-alsa],
ihse@839 531 [specify prefix directory for the alsa package
ihse@839 532 (expecting the libraries under PATH/lib and the headers under PATH/include)])])
ihse@839 533 AC_ARG_WITH(alsa-include, [AS_HELP_STRING([--with-alsa-include],
ihse@839 534 [specify directory for the alsa include files])])
ihse@839 535 AC_ARG_WITH(alsa-lib, [AS_HELP_STRING([--with-alsa-lib],
ihse@839 536 [specify directory for the alsa library])])
erikj@459 537
ihse@839 538 if test "x$ALSA_NOT_NEEDED" = xyes; then
ihse@839 539 if test "x${with_alsa}" != x || test "x${with_alsa_include}" != x || test "x${with_alsa_lib}" != x; then
ihse@839 540 AC_MSG_WARN([alsa not used, so --with-alsa is ignored])
ihse@839 541 fi
ihse@839 542 ALSA_CFLAGS=
ihse@839 543 ALSA_LIBS=
ihse@839 544 else
ihse@839 545 ALSA_FOUND=no
erikj@459 546
ihse@839 547 if test "x${with_alsa}" = xno || test "x${with_alsa_include}" = xno || test "x${with_alsa_lib}" = xno; then
ihse@839 548 AC_MSG_ERROR([It is not possible to disable the use of alsa. Remove the --without-alsa option.])
ihse@839 549 fi
erikj@459 550
ihse@839 551 if test "x${with_alsa}" != x; then
ihse@961 552 ALSA_LIBS="-L${with_alsa}/lib -lasound"
ihse@839 553 ALSA_CFLAGS="-I${with_alsa}/include"
ihse@839 554 ALSA_FOUND=yes
ihse@839 555 fi
ihse@839 556 if test "x${with_alsa_include}" != x; then
ihse@839 557 ALSA_CFLAGS="-I${with_alsa_include}"
ihse@839 558 ALSA_FOUND=yes
ihse@839 559 fi
ihse@839 560 if test "x${with_alsa_lib}" != x; then
ihse@961 561 ALSA_LIBS="-L${with_alsa_lib} -lasound"
ihse@839 562 ALSA_FOUND=yes
ihse@839 563 fi
ihse@839 564 if test "x$ALSA_FOUND" = xno; then
ihse@839 565 BDEPS_CHECK_MODULE(ALSA, alsa, xxx, [ALSA_FOUND=yes], [ALSA_FOUND=no])
ihse@839 566 fi
ihse@839 567 if test "x$ALSA_FOUND" = xno; then
ihse@839 568 PKG_CHECK_MODULES(ALSA, alsa, [ALSA_FOUND=yes], [ALSA_FOUND=no])
ihse@839 569 fi
ihse@839 570 if test "x$ALSA_FOUND" = xno; then
ihse@839 571 AC_CHECK_HEADERS([alsa/asoundlib.h],
ihse@839 572 [
ihse@839 573 ALSA_FOUND=yes
ihse@839 574 ALSA_CFLAGS=-Iignoreme
ihse@839 575 ALSA_LIBS=-lasound
ihse@839 576 DEFAULT_ALSA=yes
ihse@839 577 ],
ihse@839 578 [ALSA_FOUND=no])
ihse@839 579 fi
ihse@839 580 if test "x$ALSA_FOUND" = xno; then
ihse@839 581 HELP_MSG_MISSING_DEPENDENCY([alsa])
ihse@839 582 AC_MSG_ERROR([Could not find alsa! $HELP_MSG ])
ihse@839 583 fi
ihse@839 584 fi
erikj@459 585
ihse@839 586 AC_SUBST(ALSA_CFLAGS)
ihse@839 587 AC_SUBST(ALSA_LIBS)
erikj@459 588 ])
erikj@459 589
erikj@459 590 AC_DEFUN_ONCE([LIB_SETUP_MISC_LIBS],
erikj@459 591 [
erikj@459 592
ihse@839 593 ###############################################################################
ihse@839 594 #
ihse@839 595 # Check for the jpeg library
ihse@839 596 #
erikj@459 597
ihse@839 598 USE_EXTERNAL_LIBJPEG=true
ihse@839 599 AC_CHECK_LIB(jpeg, main, [],
ihse@839 600 [ USE_EXTERNAL_LIBJPEG=false
ihse@839 601 AC_MSG_NOTICE([Will use jpeg decoder bundled with the OpenJDK source])
ihse@839 602 ])
ihse@839 603 AC_SUBST(USE_EXTERNAL_LIBJPEG)
erikj@459 604
ihse@839 605 ###############################################################################
ihse@839 606 #
ihse@839 607 # Check for the gif library
ihse@839 608 #
omajid@665 609
ihse@839 610 AC_ARG_WITH(giflib, [AS_HELP_STRING([--with-giflib],
ihse@839 611 [use giflib from build system or OpenJDK source (system, bundled) @<:@bundled@:>@])])
omajid@665 612
omajid@665 613
ihse@839 614 AC_MSG_CHECKING([for which giflib to use])
omajid@665 615
ihse@839 616 # default is bundled
ihse@839 617 DEFAULT_GIFLIB=bundled
ihse@839 618
ihse@839 619 #
ihse@839 620 # if user didn't specify, use DEFAULT_GIFLIB
ihse@839 621 #
ihse@839 622 if test "x${with_giflib}" = "x"; then
omajid@665 623 with_giflib=${DEFAULT_GIFLIB}
ihse@839 624 fi
omajid@665 625
ihse@839 626 AC_MSG_RESULT(${with_giflib})
omajid@665 627
ihse@839 628 if test "x${with_giflib}" = "xbundled"; then
omajid@665 629 USE_EXTERNAL_LIBGIF=false
ihse@839 630 elif test "x${with_giflib}" = "xsystem"; then
omajid@665 631 AC_CHECK_HEADER(gif_lib.h, [],
ihse@839 632 [ AC_MSG_ERROR([--with-giflib=system specified, but gif_lib.h not found!])])
omajid@665 633 AC_CHECK_LIB(gif, DGifGetCode, [],
ihse@839 634 [ AC_MSG_ERROR([--with-giflib=system specified, but no giflib found!])])
omajid@665 635
omajid@665 636 USE_EXTERNAL_LIBGIF=true
ihse@839 637 else
omajid@665 638 AC_MSG_ERROR([Invalid value of --with-giflib: ${with_giflib}, use 'system' or 'bundled'])
ihse@839 639 fi
ihse@839 640 AC_SUBST(USE_EXTERNAL_LIBGIF)
erikj@459 641
ihse@839 642 ###############################################################################
ihse@839 643 #
ihse@839 644 # Check for the zlib library
ihse@839 645 #
erikj@459 646
ihse@839 647 AC_ARG_WITH(zlib, [AS_HELP_STRING([--with-zlib],
ihse@839 648 [use zlib from build system or OpenJDK source (system, bundled) @<:@bundled@:>@])])
erikj@459 649
ihse@839 650 AC_CHECK_LIB(z, compress,
ihse@839 651 [ ZLIB_FOUND=yes ],
ihse@839 652 [ ZLIB_FOUND=no ])
erikj@459 653
ihse@839 654 AC_MSG_CHECKING([for which zlib to use])
erikj@459 655
ihse@839 656 DEFAULT_ZLIB=bundled
ihse@839 657 if test "x$OPENJDK_TARGET_OS" = xmacosx; then
ihse@839 658 #
ihse@839 659 # On macosx default is system...on others default is
ihse@839 660 #
erikj@459 661 DEFAULT_ZLIB=system
ihse@839 662 fi
erikj@459 663
ihse@839 664 if test "x${ZLIB_FOUND}" != "xyes"; then
ihse@839 665 #
ihse@839 666 # If we don't find any system...set default to bundled
ihse@839 667 #
erikj@459 668 DEFAULT_ZLIB=bundled
ihse@839 669 fi
erikj@459 670
ihse@839 671 #
ihse@839 672 # If user didn't specify, use DEFAULT_ZLIB
ihse@839 673 #
ihse@839 674 if test "x${with_zlib}" = "x"; then
erikj@459 675 with_zlib=${DEFAULT_ZLIB}
ihse@839 676 fi
erikj@459 677
ihse@839 678 if test "x${with_zlib}" = "xbundled"; then
erikj@459 679 USE_EXTERNAL_LIBZ=false
erikj@459 680 AC_MSG_RESULT([bundled])
ihse@839 681 elif test "x${with_zlib}" = "xsystem"; then
erikj@459 682 if test "x${ZLIB_FOUND}" = "xyes"; then
ihse@839 683 USE_EXTERNAL_LIBZ=true
ihse@839 684 AC_MSG_RESULT([system])
erikj@459 685 else
ihse@839 686 AC_MSG_RESULT([system not found])
ihse@839 687 AC_MSG_ERROR([--with-zlib=system specified, but no zlib found!])
erikj@459 688 fi
ihse@839 689 else
ihse@839 690 AC_MSG_ERROR([Invalid value for --with-zlib: ${with_zlib}, use 'system' or 'bundled'])
ihse@839 691 fi
erikj@459 692
ihse@839 693 AC_SUBST(USE_EXTERNAL_LIBZ)
erikj@459 694
ihse@839 695 ###############################################################################
ihse@839 696 LIBZIP_CAN_USE_MMAP=true
ohair@478 697
ihse@839 698 AC_SUBST(LIBZIP_CAN_USE_MMAP)
erikj@459 699
ihse@839 700 ###############################################################################
ihse@839 701 #
ihse@839 702 # Check if altzone exists in time.h
ihse@839 703 #
erikj@459 704
ihse@839 705 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <time.h>], [return (int)altzone;])],
ihse@839 706 [has_altzone=yes],
ihse@839 707 [has_altzone=no])
ihse@839 708 if test "x$has_altzone" = xyes; then
erikj@459 709 AC_DEFINE([HAVE_ALTZONE], 1, [Define if you have the external 'altzone' variable in time.h])
ihse@839 710 fi
erikj@459 711
ihse@839 712 ###############################################################################
ihse@839 713 #
ihse@839 714 # Check the maths library
ihse@839 715 #
erikj@459 716
ihse@839 717 AC_CHECK_LIB(m, cos, [],
ihse@839 718 [
ihse@839 719 AC_MSG_NOTICE([Maths library was not found])
ihse@839 720 ]
ihse@839 721 )
ihse@839 722 AC_SUBST(LIBM)
erikj@459 723
ihse@839 724 ###############################################################################
ihse@839 725 #
ihse@839 726 # Check for libdl.so
erikj@459 727
ihse@839 728 save_LIBS="$LIBS"
ihse@839 729 LIBS=""
ihse@839 730 AC_CHECK_LIB(dl,dlopen)
ihse@839 731 LIBDL="$LIBS"
ihse@839 732 AC_SUBST(LIBDL)
ihse@839 733 LIBS="$save_LIBS"
erikj@459 734 ])
erikj@459 735
erikj@459 736 AC_DEFUN_ONCE([LIB_SETUP_STATIC_LINK_LIBSTDCPP],
erikj@459 737 [
ihse@839 738 ###############################################################################
ihse@839 739 #
ihse@839 740 # statically link libstdc++ before C++ ABI is stablized on Linux unless
ihse@839 741 # dynamic build is configured on command line.
ihse@839 742 #
ihse@839 743 AC_ARG_WITH([stdc++lib], [AS_HELP_STRING([--with-stdc++lib=<static>,<dynamic>,<default>],
ihse@839 744 [force linking of the C++ runtime on Linux to either static or dynamic, default is static with dynamic as fallback])],
ihse@839 745 [
ihse@839 746 if test "x$with_stdc__lib" != xdynamic && test "x$with_stdc__lib" != xstatic \
ihse@839 747 && test "x$with_stdc__lib" != xdefault; then
ihse@839 748 AC_MSG_ERROR([Bad parameter value --with-stdc++lib=$with_stdc__lib!])
ihse@839 749 fi
ihse@839 750 ],
ihse@839 751 [with_stdc__lib=default]
ihse@839 752 )
erikj@459 753
ihse@839 754 if test "x$OPENJDK_TARGET_OS" = xlinux; then
erikj@459 755 # Test if -lstdc++ works.
erikj@459 756 AC_MSG_CHECKING([if dynamic link of stdc++ is possible])
erikj@459 757 AC_LANG_PUSH(C++)
erikj@459 758 OLD_CXXFLAGS="$CXXFLAGS"
erikj@459 759 CXXFLAGS="$CXXFLAGS -lstdc++"
erikj@459 760 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [return 0;])],
ihse@839 761 [has_dynamic_libstdcxx=yes],
ihse@839 762 [has_dynamic_libstdcxx=no])
erikj@459 763 CXXFLAGS="$OLD_CXXFLAGS"
erikj@459 764 AC_LANG_POP(C++)
erikj@459 765 AC_MSG_RESULT([$has_dynamic_libstdcxx])
erikj@459 766
erikj@459 767 # Test if stdc++ can be linked statically.
erikj@459 768 AC_MSG_CHECKING([if static link of stdc++ is possible])
erikj@459 769 STATIC_STDCXX_FLAGS="-Wl,-Bstatic -lstdc++ -lgcc -Wl,-Bdynamic"
erikj@459 770 AC_LANG_PUSH(C++)
erikj@459 771 OLD_LIBS="$LIBS"
erikj@459 772 OLD_CXX="$CXX"
erikj@459 773 LIBS="$STATIC_STDCXX_FLAGS"
ihse@839 774 CXX="$CC"
erikj@459 775 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [return 0;])],
ihse@839 776 [has_static_libstdcxx=yes],
ihse@839 777 [has_static_libstdcxx=no])
erikj@459 778 LIBS="$OLD_LIBS"
erikj@459 779 CXX="$OLD_CXX"
erikj@459 780 AC_LANG_POP(C++)
erikj@459 781 AC_MSG_RESULT([$has_static_libstdcxx])
erikj@459 782
tbell@511 783 if test "x$has_static_libstdcxx" = xno && test "x$has_dynamic_libstdcxx" = xno; then
ihse@839 784 AC_MSG_ERROR([Cannot link to stdc++, neither dynamically nor statically!])
erikj@459 785 fi
erikj@459 786
tbell@511 787 if test "x$with_stdc__lib" = xstatic && test "x$has_static_libstdcxx" = xno; then
ihse@839 788 AC_MSG_ERROR([Static linking of libstdc++ was not possible!])
erikj@459 789 fi
erikj@459 790
tbell@511 791 if test "x$with_stdc__lib" = xdynamic && test "x$has_dynamic_libstdcxx" = xno; then
ihse@839 792 AC_MSG_ERROR([Dynamic linking of libstdc++ was not possible!])
erikj@459 793 fi
erikj@459 794
erikj@459 795 AC_MSG_CHECKING([how to link with libstdc++])
tbell@511 796 # If dynamic was requested, it's available since it would fail above otherwise.
tbell@511 797 # If dynamic wasn't requested, go with static unless it isn't available.
omajid@671 798 if test "x$with_stdc__lib" = xdynamic || test "x$has_static_libstdcxx" = xno || test "x$JVM_VARIANT_ZEROSHARK" = xtrue; then
ihse@839 799 LIBCXX="$LIBCXX -lstdc++"
ihse@839 800 LDCXX="$CXX"
ihse@839 801 STATIC_CXX_SETTING="STATIC_CXX=false"
ihse@839 802 AC_MSG_RESULT([dynamic])
tbell@511 803 else
ihse@839 804 LIBCXX="$LIBCXX $STATIC_STDCXX_FLAGS"
ihse@839 805 LDCXX="$CC"
ihse@839 806 STATIC_CXX_SETTING="STATIC_CXX=true"
ihse@839 807 AC_MSG_RESULT([static])
erikj@459 808 fi
ihse@839 809 fi
ihse@839 810 AC_SUBST(STATIC_CXX_SETTING)
erikj@459 811
ihse@839 812 if test "x$JVM_VARIANT_ZERO" = xtrue || test "x$JVM_VARIANT_ZEROSHARK" = xtrue; then
omajid@671 813 # Figure out LIBFFI_CFLAGS and LIBFFI_LIBS
omajid@671 814 PKG_CHECK_MODULES([LIBFFI], [libffi])
omajid@671 815
ihse@839 816 fi
omajid@671 817
ihse@839 818 if test "x$JVM_VARIANT_ZEROSHARK" = xtrue; then
omajid@671 819 AC_CHECK_PROG([LLVM_CONFIG], [llvm-config], [llvm-config])
omajid@671 820
omajid@671 821 if test "x$LLVM_CONFIG" != xllvm-config; then
ihse@839 822 AC_MSG_ERROR([llvm-config not found in $PATH.])
omajid@671 823 fi
omajid@671 824
omajid@671 825 llvm_components="jit mcjit engine nativecodegen native"
omajid@671 826 unset LLVM_CFLAGS
omajid@671 827 for flag in $("$LLVM_CONFIG" --cxxflags); do
omajid@671 828 if echo "${flag}" | grep -q '^-@<:@ID@:>@'; then
omajid@671 829 if test "${flag}" != "-D_DEBUG" ; then
omajid@671 830 if test "${LLVM_CFLAGS}" != "" ; then
omajid@671 831 LLVM_CFLAGS="${LLVM_CFLAGS} "
omajid@671 832 fi
omajid@671 833 LLVM_CFLAGS="${LLVM_CFLAGS}${flag}"
omajid@671 834 fi
omajid@671 835 fi
omajid@671 836 done
omajid@671 837 llvm_version=$("${LLVM_CONFIG}" --version | sed 's/\.//; s/svn.*//')
omajid@671 838 LLVM_CFLAGS="${LLVM_CFLAGS} -DSHARK_LLVM_VERSION=${llvm_version}"
omajid@671 839
omajid@671 840 unset LLVM_LDFLAGS
omajid@671 841 for flag in $("${LLVM_CONFIG}" --ldflags); do
omajid@671 842 if echo "${flag}" | grep -q '^-L'; then
omajid@671 843 if test "${LLVM_LDFLAGS}" != ""; then
omajid@671 844 LLVM_LDFLAGS="${LLVM_LDFLAGS} "
omajid@671 845 fi
omajid@671 846 LLVM_LDFLAGS="${LLVM_LDFLAGS}${flag}"
omajid@671 847 fi
omajid@671 848 done
omajid@671 849
omajid@671 850 unset LLVM_LIBS
omajid@671 851 for flag in $("${LLVM_CONFIG}" --libs ${llvm_components}); do
omajid@671 852 if echo "${flag}" | grep -q '^-l'; then
omajid@671 853 if test "${LLVM_LIBS}" != ""; then
omajid@671 854 LLVM_LIBS="${LLVM_LIBS} "
omajid@671 855 fi
omajid@671 856 LLVM_LIBS="${LLVM_LIBS}${flag}"
omajid@671 857 fi
omajid@671 858 done
omajid@671 859
omajid@671 860 AC_SUBST(LLVM_CFLAGS)
omajid@671 861 AC_SUBST(LLVM_LDFLAGS)
omajid@671 862 AC_SUBST(LLVM_LIBS)
ihse@839 863 fi
omajid@671 864
ihse@839 865 # libCrun is the c++ runtime-library with SunStudio (roughly the equivalent of gcc's libstdc++.so)
ihse@839 866 if test "x$OPENJDK_TARGET_OS" = xsolaris && test "x$LIBCXX" = x; then
ohair@478 867 LIBCXX="/usr/lib${OPENJDK_TARGET_CPU_ISADIR}/libCrun.so.1"
ihse@839 868 fi
erikj@459 869
ihse@839 870 # TODO better (platform agnostic) test
ihse@839 871 if test "x$OPENJDK_TARGET_OS" = xmacosx && test "x$LIBCXX" = x && test "x$GCC" = xyes; then
erikj@459 872 LIBCXX="-lstdc++"
ihse@839 873 fi
erikj@459 874
ihse@839 875 AC_SUBST(LIBCXX)
erikj@459 876 ])

mercurial