common/autoconf/libraries.m4

Wed, 02 Apr 2014 10:01:38 -0700

author
asaha
date
Wed, 02 Apr 2014 10:01:38 -0700
changeset 1028
feeb67be5886
parent 980
d6db2aec371e
child 1133
50aaf272884f
child 1304
c27cb0ab944f
permissions
-rw-r--r--

Merge

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

mercurial