configure.ac (07a3d7f1) | configure.ac (43feee13) |
---|---|
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 --- 44 unchanged lines hidden (view full) --- 53[ --with-system-graphite use graphite library already installed on system 54],,) 55AC_ARG_WITH(system-apache-commons, 56[ --with-system-apache-commons use apache-commons jar files already installed on system 57],,) 58AC_ARG_ENABLE(online-update, 59[ --disable-online-update Disables the Online Update feature. 60],,enable_online_update=yes) | 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 --- 44 unchanged lines hidden (view full) --- 53[ --with-system-graphite use graphite library already installed on system 54],,) 55AC_ARG_WITH(system-apache-commons, 56[ --with-system-apache-commons use apache-commons jar files already installed on system 57],,) 58AC_ARG_ENABLE(online-update, 59[ --disable-online-update Disables the Online Update feature. 60],,enable_online_update=yes) |
61AC_ARG_ENABLE(unit-tests, 62[ --disable-unit-tests Disables default unit tests (eg. unit tests using Google test, ...). 63],,enable_unit_tests=yes) |
|
61AC_ARG_ENABLE(ldap, 62[ --disable-ldap Disables the use of LDAP backend via OpenLDAP 63],,) 64AC_ARG_ENABLE(fetch-external, 65[ --disable-fetch-external Disables fetching external tarballs from web sources. 66],,) 67AC_ARG_WITH(external-tar, 68[ --with-external-tar=<TARFILE PATH> Specify path to tarfiles manually ], --- 1372 unchanged lines hidden (view full) --- 1441 SCPDEFS="$SCPDEFS -DENABLE_ONLINE_UPDATE" 1442 AC_MSG_RESULT([yes]) 1443else 1444 ENABLE_ONLINE_UPDATE="" 1445 AC_MSG_RESULT([no]) 1446fi 1447AC_SUBST(ENABLE_ONLINE_UPDATE) 1448 | 64AC_ARG_ENABLE(ldap, 65[ --disable-ldap Disables the use of LDAP backend via OpenLDAP 66],,) 67AC_ARG_ENABLE(fetch-external, 68[ --disable-fetch-external Disables fetching external tarballs from web sources. 69],,) 70AC_ARG_WITH(external-tar, 71[ --with-external-tar=<TARFILE PATH> Specify path to tarfiles manually ], --- 1372 unchanged lines hidden (view full) --- 1444 SCPDEFS="$SCPDEFS -DENABLE_ONLINE_UPDATE" 1445 AC_MSG_RESULT([yes]) 1446else 1447 ENABLE_ONLINE_UPDATE="" 1448 AC_MSG_RESULT([no]) 1449fi 1450AC_SUBST(ENABLE_ONLINE_UPDATE) 1451 |
1452dnl =================================================================== 1453dnl Unit Tests 1454dnl =================================================================== 1455AC_MSG_CHECKING([whether to enable unit tests]) 1456if test "$enable_unit_tests" = "yes" -o "$enable_unit_tests" = "TRUE"; then 1457 ENABLE_UNIT_TESTS="YES" 1458 BUILD_TYPE="$BUILD_TYPE GTEST" 1459 AC_MSG_RESULT([yes]) 1460else 1461 ENABLE_UNIT_TESTS="" 1462 AC_MSG_RESULT([no]) 1463fi 1464AC_SUBST(ENABLE_UNIT_TESTS) |
|
1449 1450AC_MSG_CHECKING([whether to enable native CUPS support]) 1451if test "$test_cups" = "yes" -a \( "$enable_cups" = "yes" -o "$enable_cups" = "TRUE" \) ; then 1452 ENABLE_CUPS="TRUE" 1453 AC_MSG_RESULT([yes]) 1454else 1455 ENABLE_CUPS="" 1456 AC_MSG_RESULT([no]) --- 5880 unchanged lines hidden --- | 1465 1466AC_MSG_CHECKING([whether to enable native CUPS support]) 1467if test "$test_cups" = "yes" -a \( "$enable_cups" = "yes" -o "$enable_cups" = "TRUE" \) ; then 1468 ENABLE_CUPS="TRUE" 1469 AC_MSG_RESULT([yes]) 1470else 1471 ENABLE_CUPS="" 1472 AC_MSG_RESULT([no]) --- 5880 unchanged lines hidden --- |