| configure.ac (63fbc773) | configure.ac (0d16e2e7) |
|---|---|
| 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 --- 918 unchanged lines hidden (view full) --- 927 used for the build environment. 928 Cases : 929 arm-target < 6 : armv4t compatibility 930 arm-target = 6 : exact armv6 compatibility 931 arm-target > 6 : armv7-a compatibility 932 933 Usage: --with-arm-target=7 934],with_arm_target=$withval,with_arm_target=4) | 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 --- 918 unchanged lines hidden (view full) --- 927 used for the build environment. 928 Cases : 929 arm-target < 6 : armv4t compatibility 930 arm-target = 6 : exact armv6 compatibility 931 arm-target > 6 : armv7-a compatibility 932 933 Usage: --with-arm-target=7 934],with_arm_target=$withval,with_arm_target=4) |
| 935AC_ARG_WITH(macosx-target, 936[ --macosx-target The minimal macOS/OSX deployment and build target 937 938 Usage: --macosx-target=10.7 939],with_macosx_target=$withval,with_macosx_target=10.7) |
|
| 935AC_ARG_WITH(rat-scan, 936[ --with-rat-scan Scan source code for license headers. 937 Use as --with-rat-scan to automatically download pre-built Rat binaries. 938 Alternatively use as --with-rat-scan=<path-to-rat-direcetory> to use 939 a separately installed library. 940],with_rat_scan=$withval,) 941 942BUILD_TYPE="OOo" --- 2882 unchanged lines hidden (view full) --- 3825AC_SUBST(LIBXML_CFLAGS) 3826AC_SUBST(LIBXML_LIBS) 3827 3828 3829dnl =================================================================== 3830dnl Checks for a MacOS platform SDK compatible with an OSX 10.7 deployment target 3831dnl =================================================================== 3832if test "$_os" = "Darwin"; then | 940AC_ARG_WITH(rat-scan, 941[ --with-rat-scan Scan source code for license headers. 942 Use as --with-rat-scan to automatically download pre-built Rat binaries. 943 Alternatively use as --with-rat-scan=<path-to-rat-direcetory> to use 944 a separately installed library. 945],with_rat_scan=$withval,) 946 947BUILD_TYPE="OOo" --- 2882 unchanged lines hidden (view full) --- 3830AC_SUBST(LIBXML_CFLAGS) 3831AC_SUBST(LIBXML_LIBS) 3832 3833 3834dnl =================================================================== 3835dnl Checks for a MacOS platform SDK compatible with an OSX 10.7 deployment target 3836dnl =================================================================== 3837if test "$_os" = "Darwin"; then |
| 3833 sdk_target=10.7 | 3838 sdk_target=$with_macosx_target |
| 3834 AC_MSG_CHECKING([checking SDK compatibility with OSX $sdk_target]) 3835 3836 sdk_minor=`echo $sdk_target | cut -d"." -f2` 3837 3838 if test "$sdk_minor" -lt "7"; then 3839 AC_MSG_ERROR([SDK version < 10.7 is not longer supported]) 3840 else 3841 MACOSX_DEPLOYMENT_TARGET=$sdk_target --- 3493 unchanged lines hidden --- | 3839 AC_MSG_CHECKING([checking SDK compatibility with OSX $sdk_target]) 3840 3841 sdk_minor=`echo $sdk_target | cut -d"." -f2` 3842 3843 if test "$sdk_minor" -lt "7"; then 3844 AC_MSG_ERROR([SDK version < 10.7 is not longer supported]) 3845 else 3846 MACOSX_DEPLOYMENT_TARGET=$sdk_target --- 3493 unchanged lines hidden --- |