⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 configure.ac

📁 嵌入式图形库
💻 AC
字号:
dnl  Copyright 2005 Red Hat, Inc.dnl dnl  Permission to use, copy, modify, distribute, and sell this software and itsdnl  documentation for any purpose is hereby granted without fee, provided thatdnl  the above copyright notice appear in all copies and that both thatdnl  copyright notice and this permission notice appear in supportingdnl  documentation, and that the name of Red Hat not be used indnl  advertising or publicity pertaining to distribution of the software withoutdnl  specific, written prior permission.  Red Hat makes nodnl  representations about the suitability of this software for any purpose.  Itdnl  is provided "as is" without express or implied warranty.dnl dnl  RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,dnl  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NOdnl  EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT ORdnl  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,dnl  DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHERdnl  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE ORdnl  PERFORMANCE OF THIS SOFTWARE.dnldnl Process this file with autoconf to create configure.AC_PREREQ([2.57])#   Pixman versioning scheme##   - The git version must at all times have an odd MICRO version#     number.##   - If you add API, increment the MICRO version to the next largest#     odd number.##   - If you release a version that contains new API, then increment#     MINOR and set MICRO to 0. ##   - If you release a new version that does not contain new API, then#     increment MICRO to the next even number.##   - After doing a release, increment MICRO again to make the version #     number in git odd.##   - If you break the ABI, then##        - increment MAJOR##        - In the first development release where you break ABI, find#          all instances of "pixman-n" and change them to pixman-(n+1)##          This needs to be done at least in #                    configure.ac#                    all Makefile.am's#                    pixman-n.pc.in##      This ensures that binary incompatible versions can be installed#      in parallel.  See http://www106.pair.com/rhp/parallel.html for#      more informationm4_define([pixman_major], 0)m4_define([pixman_minor], 10)m4_define([pixman_micro], 0)m4_define([pixman_version],[pixman_major.pixman_minor.pixman_micro])AC_INIT(pixman, pixman_version, "sandmann@daimi.au.dk", pixman)AM_INIT_AUTOMAKE([dist-bzip2])AM_CONFIG_HEADER(config.h)AC_PROG_CCAC_PROG_LIBTOOLAC_CHECK_FUNCS([getisax])AC_C_BIGENDIAN# # We ignore pixman_major in the version here because the major version should# always be encoded in the actual library name. Ie., the soname is:##      pixman-$(pixman_major).0.minor.micro#m4_define([lt_current], [pixman_minor])m4_define([lt_revision], [pixman_micro])m4_define([lt_age], [pixman_minor])LT_VERSION_INFO="lt_current:lt_revision:lt_age"PIXMAN_VERSION_MAJOR=pixman_major()AC_SUBST(PIXMAN_VERSION_MAJOR)PIXMAN_VERSION_MINOR=pixman_minor()AC_SUBST(PIXMAN_VERSION_MINOR)PIXMAN_VERSION_MICRO=pixman_micro()AC_SUBST(PIXMAN_VERSION_MICRO)AC_SUBST(LT_VERSION_INFO)# Check for dependencies#PKG_CHECK_MODULES(DEP, x11)changequote(,)dnlif test "x$GCC" = "xyes"; then  case " $CFLAGS " in  *[\ \	]-Wall[\ \	]*) ;;  *) CFLAGS="$CFLAGS -Wall" ;;  esac fi changequote([,])dnldnl =========================================================================dnl -fvisibility stuffhave_gcc4=noAC_MSG_CHECKING(for -fvisibility)AC_COMPILE_IFELSE([#if defined(__GNUC__) && (__GNUC__ >= 4)#else#error Need GCC 4.0 for visibility#endifint main () { return 0; } ], have_gcc4=yes)if test "x$have_gcc4" = "xyes"; then   CFLAGS="$CFLAGS -fvisibility=hidden"fiAC_MSG_RESULT($have_gcc4)dnl ===========================================================================dnl Check for MMXMMX_CFLAGS="-mmmx -Winline --param inline-unit-growth=10000 --param large-function-growth=10000"have_mmx_intrinsics=noAC_MSG_CHECKING(whether to use MMX intrinsics)xserver_save_CFLAGS=$CFLAGSCFLAGS="$CFLAGS $MMX_CFLAGS"AC_COMPILE_IFELSE([#if defined(__GNUC__) && (__GNUC__ < 3 || (__GNUC__ == 3 && __GNUC_MINOR__ < 4))#error "Need GCC >= 3.4 for MMX intrinsics"#endif#include <mmintrin.h>int main () {    __m64 v = _mm_cvtsi32_si64 (1);    return _mm_cvtsi64_si32 (v);}], have_mmx_intrinsics=yes)CFLAGS=$xserver_save_CFLAGSAC_MSG_RESULT($have_mmx_intrinsics)if test $have_mmx_intrinsics = yes ; then   AC_DEFINE(USE_MMX, 1, [use MMX compiler intrinsics])else   MMX_CFLAGS=fiAM_CONDITIONAL(USE_MMX, test $have_mmx_intrinsics = yes)dnl =======================================================dnl GCC 4.2 when compiling with -msse will generate SSE instructionsdnl on its own.  This means anything compiled with -mss can only bednl run after a runtime check for SSE.  Unfortunately, since we stilldnl need to support MMX-but-not-SSE (such as the OLPC), this means wednl can only use SSE when compiling for x86-64 (where SSE is alwaysdnl supported).have_sse_intrinsics=noAC_MSG_CHECKING(whether to use SSE intrinsics)xserver_save_CFLAGS=$CFLAGSCFLAGS="$CFLAGS -msse $MMX_CFLAGS"AC_COMPILE_IFELSE([#if !defined(__amd64__) && !defined(__x86_64__)#error "Need x86-64 for SSE"#endif#include <mmintrin.h>#include <xmmintrin.h>int main () {    __m64 v = _mm_cvtsi32_si64 (1);    v = _mm_shuffle_pi16 (v, _MM_SHUFFLE(3, 3, 3, 3));    return _mm_cvtsi64_si32 (v);}], have_sse_intrinsics=yes)CFLAGS=$xserver_save_CFLAGSAC_MSG_RESULT($have_sse_intrinsics)if test $have_sse_intrinsics = yes ; then   AC_DEFINE(USE_SSE, 1, [use SSE compiler intrinsics])   MMX_CFLAGS="-msse $MMX_CFLAGS"fiAM_CONDITIONAL(USE_SSE, test $have_sse_intrinsics = yes)dnl ===========================================================================dnl Check for SSE2SSE_CFLAGS="-mmmx -msse2 -Winline --param inline-unit-growth=10000 --param large-function-growth=10000"have_sse2_intrinsics=noAC_MSG_CHECKING(whether to use SSE2 intrinsics)xserver_save_CFLAGS=$CFLAGSCFLAGS="$CFLAGS -msse2 $MMX_CFLAGS"AC_COMPILE_IFELSE([#include <mmintrin.h>#include <xmmintrin.h>int main () {    __m128i a, b, c;	c = _mm_xor_si128 (a, b);    return 0;}], have_sse2_intrinsics=yes)CFLAGS=$xserver_save_CFLAGSAC_MSG_RESULT($have_sse2_intrinsics)if test $have_sse2_intrinsics = yes ; then   AC_DEFINE(USE_SSE2, 1, [use SSE compiler intrinsics])fiAM_CONDITIONAL(USE_SSE2, test $have_sse2_intrinsics = yes)dnl ========================================================AC_SUBST(MMX_CFLAGS)AC_SUBST(SSE_CFLAGS)PKG_CHECK_MODULES(GTK, [gtk+-2.0], [HAVE_GTK=yes], [HAVE_GTK=no])AM_CONDITIONAL(HAVE_GTK, [test "x$HAVE_GTK" = xyes])AC_SUBST(GTK_CFLAGS)AC_SUBST(GTK_LIBS)AC_SUBST(DEP_CFLAGS)AC_SUBST(DEP_LIBS)		  AC_OUTPUT([pixman-1.pc           Makefile	   pixman/Makefile	   pixman/pixman-version.h	   test/Makefile])

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -