| configure.ac (cc99daad) | configure.ac (0021cf80) |
|---|---|
| 1dnl * ************************************************************* 2dnl * 3dnl * Licensed to the Apache Software Foundation (ASF) under one 4dnl * or more contributor license agreements. See the NOTICE file 5dnl * distributed with this work for additional information 6dnl * regarding copyright ownership. The ASF licenses this file 7dnl * to you under the Apache License, Version 2.0 (the 8dnl * "License"); you may not use this file except in compliance --- 311 unchanged lines hidden (view full) --- 320[ --enable-static-gtk Modules that are linked against gtk libraries use 321 the static libraries instead of the dynamic ones. 322 (enables -Bstatic linker flag for gtk libraries) 323],,) 324AC_ARG_ENABLE(layout, 325[ --enable-layout Enable the compilation and use of layout dialogs 326],,) 327AC_ARG_ENABLE(nss_module, | 1dnl * ************************************************************* 2dnl * 3dnl * Licensed to the Apache Software Foundation (ASF) under one 4dnl * or more contributor license agreements. See the NOTICE file 5dnl * distributed with this work for additional information 6dnl * regarding copyright ownership. The ASF licenses this file 7dnl * to you under the Apache License, Version 2.0 (the 8dnl * "License"); you may not use this file except in compliance --- 311 unchanged lines hidden (view full) --- 320[ --enable-static-gtk Modules that are linked against gtk libraries use 321 the static libraries instead of the dynamic ones. 322 (enables -Bstatic linker flag for gtk libraries) 323],,) 324AC_ARG_ENABLE(layout, 325[ --enable-layout Enable the compilation and use of layout dialogs 326],,) 327AC_ARG_ENABLE(nss_module, |
| 328[ --disable-nss-module Whether to use the system provided NSS module | 328[ --disable-nss-module Whether to use the NSS module that is used for xml-security |
| 329],,enable_nss_module=yes) 330AC_ARG_ENABLE(kde, 331[ --enable-kde Determines whether to use Qt/KDE vclplug on platforms 332 where Qt and KDE are available. 333],,) 334AC_ARG_ENABLE(kdeab, 335[ --disable-kdeab Disable the KDE address book support 336],,if test "$enable_kde" = "yes"; then enable_kdeab=yes; fi) --- 80 unchanged lines hidden (view full) --- 417 needed jars are expected on the system. Use this to 418 disable that. 419 (except for the db case where --with-system-db 420 *has to* imply using the db.jar from there, too) 421],,) 422AC_ARG_WITH(system-zlib, 423[ --with-system-zlib Use zlib already on system 424],,) | 329],,enable_nss_module=yes) 330AC_ARG_ENABLE(kde, 331[ --enable-kde Determines whether to use Qt/KDE vclplug on platforms 332 where Qt and KDE are available. 333],,) 334AC_ARG_ENABLE(kdeab, 335[ --disable-kdeab Disable the KDE address book support 336],,if test "$enable_kde" = "yes"; then enable_kdeab=yes; fi) --- 80 unchanged lines hidden (view full) --- 417 needed jars are expected on the system. Use this to 418 disable that. 419 (except for the db case where --with-system-db 420 *has to* imply using the db.jar from there, too) 421],,) 422AC_ARG_WITH(system-zlib, 423[ --with-system-zlib Use zlib already on system 424],,) |
| 425AC_ARG_WITH(system-nss, 426[ --with-system-nss Use NSS already on system 427],,) |
|
| 425AC_ARG_WITH(system-openssl, 426[ --with-system-openssl Use OpenSSL already on system 427],,) 428AC_ARG_WITH(system-jpeg, 429[ --with-system-jpeg Use jpeg already on system 430],,) 431AC_ARG_WITH(system-expat, 432[ --with-system-expat Use expat already on system --- 4666 unchanged lines hidden (view full) --- 5099 AC_MSG_RESULT([no]) 5100fi 5101AC_SUBST(XRANDR_DLOPEN) 5102AC_SUBST(XRANDR_CFLAGS) 5103AC_SUBST(XRANDR_LIBS) 5104AC_SUBST(ENABLE_RANDR) 5105 5106dnl =================================================================== | 428AC_ARG_WITH(system-openssl, 429[ --with-system-openssl Use OpenSSL already on system 430],,) 431AC_ARG_WITH(system-jpeg, 432[ --with-system-jpeg Use jpeg already on system 433],,) 434AC_ARG_WITH(system-expat, 435[ --with-system-expat Use expat already on system --- 4666 unchanged lines hidden (view full) --- 5102 AC_MSG_RESULT([no]) 5103fi 5104AC_SUBST(XRANDR_DLOPEN) 5105AC_SUBST(XRANDR_CFLAGS) 5106AC_SUBST(XRANDR_LIBS) 5107AC_SUBST(ENABLE_RANDR) 5108 5109dnl =================================================================== |
| 5110dnl Check for system nss 5111dnl =================================================================== 5112AC_MSG_CHECKING([which libnss to use]) 5113if test -n "$with_system_nss" -o -n "$with_system_libs" && test "$with_system_nss" != "no"; then 5114 AC_MSG_RESULT([external]) 5115 PKG_CHECK_MODULES( NSS, nss ) 5116 SYSTEM_NSS=YES 5117else 5118 AC_MSG_RESULT([internal]) 5119 SYSTEM_NSS=NO 5120 BUILD_TYPE="$BUILD_TYPE NSS" 5121fi 5122AC_SUBST(SYSTEM_NSS) 5123AC_SUBST(NSS_CFLAGS) 5124AC_SUBST(NSS_LIBS) 5125 5126dnl =================================================================== |
|
| 5107dnl Check for system openssl 5108dnl =================================================================== 5109if test "$_os" = "Darwin" && test "$with_system_openssl" != "no"; then 5110 with_system_openssl=yes 5111fi 5112AC_MSG_CHECKING([which libssl to use]) 5113if test -n "$with_system_openssl" -o -n "$with_system_libs" && \ 5114 test "$with_system_openssl" != "no"; then --- 2310 unchanged lines hidden --- | 5127dnl Check for system openssl 5128dnl =================================================================== 5129if test "$_os" = "Darwin" && test "$with_system_openssl" != "no"; then 5130 with_system_openssl=yes 5131fi 5132AC_MSG_CHECKING([which libssl to use]) 5133if test -n "$with_system_openssl" -o -n "$with_system_libs" && \ 5134 test "$with_system_openssl" != "no"; then --- 2310 unchanged lines hidden --- |