| configure.ac (2ad018be) | configure.ac (1309f2c9) |
|---|---|
| 1dnl /****************************************************************** 2dnl * vi:set sw=3 ts=3 et: 3dnl * 4dnl * Name: configure.in 5dnl * Auth: Willem van Dorp, Ross Nicholson, Oisin Boydell - Sun Microsystems Ireland 6dnl * Date: $Date: 2008-09-08 07:38:40 $ 7dnl * 8dnl * Desc: This file serves as input for the GNU autoconf package --- 838 unchanged lines hidden (view full) --- 847 --disable-verbose Decrease build verbosity. 848],,) 849AC_ARG_ENABLE(dependency-tracking, 850[ --disable-dependency-tracking Disables generation of dependency information. 851],,) 852AC_ARG_ENABLE(copyleft, 853[ --enable-copyleft Whether to use copyleft components. 854],,) | 1dnl /****************************************************************** 2dnl * vi:set sw=3 ts=3 et: 3dnl * 4dnl * Name: configure.in 5dnl * Auth: Willem van Dorp, Ross Nicholson, Oisin Boydell - Sun Microsystems Ireland 6dnl * Date: $Date: 2008-09-08 07:38:40 $ 7dnl * 8dnl * Desc: This file serves as input for the GNU autoconf package --- 838 unchanged lines hidden (view full) --- 847 --disable-verbose Decrease build verbosity. 848],,) 849AC_ARG_ENABLE(dependency-tracking, 850[ --disable-dependency-tracking Disables generation of dependency information. 851],,) 852AC_ARG_ENABLE(copyleft, 853[ --enable-copyleft Whether to use copyleft components. 854],,) |
| 855AC_ARG_WITH(arm-target, 856[ --arm-target The minimal targeted arm processor 857 used for the build environment. 858 Cases : 859 arm-target < 6 : armv4t compatibility 860 arm-target = 6 : exact armv6 compatibility 861 arm-target > 6 : armv7-a compatibility |
|
| 855 | 862 |
| 863 Usage: --with-arm-target=7 864],with_arm_target=$withval,with_arm_target=4) 865 |
|
| 856BUILD_TYPE="OOo" 857 858dnl =================================================================== 859dnl Message. 860dnl =================================================================== 861echo "********************************************************************" 862echo "* *" 863echo "* OpenOffice.org build configuration. *" --- 4988 unchanged lines hidden (view full) --- 5852 else 5853 AC_MSG_RESULT([no]) 5854 fi 5855fi 5856AC_SUBST(ENABLE_GSTREAMER) 5857AC_SUBST(GSTREAMER_CFLAGS) 5858AC_SUBST(GSTREAMER_LIBS) 5859 | 866BUILD_TYPE="OOo" 867 868dnl =================================================================== 869dnl Message. 870dnl =================================================================== 871echo "********************************************************************" 872echo "* *" 873echo "* OpenOffice.org build configuration. *" --- 4988 unchanged lines hidden (view full) --- 5862 else 5863 AC_MSG_RESULT([no]) 5864 fi 5865fi 5866AC_SUBST(ENABLE_GSTREAMER) 5867AC_SUBST(GSTREAMER_CFLAGS) 5868AC_SUBST(GSTREAMER_LIBS) 5869 |
| 5870dnl =================================================================== 5871dnl Check the ARM target 5872dnl =================================================================== |
|
| 5860 | 5873 |
| 5874if test "$_os" = "Linux" && echo "$build_cpu" | $GREP -q arm; then 5875 # default value 5876 ARM_TARGET=ARMV4T 5877 AC_MSG_CHECKING([which ARM processor optimization to use]) 5878 if test "$with_arm_target" -lt "6"; then 5879 ARM_TARGET=ARMV4T 5880 elif test "$with_arm_target" = "6"; then 5881 ARM_TARGET=ARMV6 5882 elif test "$with_arm_target" -gt "6"; then 5883 ARM_TARGET=ARMV7 5884 fi 5885 AC_MSG_RESULT([$ARM_TARGET]) 5886 AC_SUBST(ARM_TARGET) 5887fi 5888 |
|
| 5861dnl =================================================================== 5862dnl Check whether the Cairo libraries are available. 5863dnl =================================================================== 5864 5865ENABLE_CAIRO="" 5866BUILD_PIXMAN="" 5867SYSTEM_CAIRO="" 5868 --- 1524 unchanged lines hidden --- | 5889dnl =================================================================== 5890dnl Check whether the Cairo libraries are available. 5891dnl =================================================================== 5892 5893ENABLE_CAIRO="" 5894BUILD_PIXMAN="" 5895SYSTEM_CAIRO="" 5896 --- 1524 unchanged lines hidden --- |