Move version functions from pixman-version.c into pixman-utils.c.
[profile/ivi/pixman.git] / configure.ac
1 dnl  Copyright 2005 Red Hat, Inc.
2 dnl 
3 dnl  Permission to use, copy, modify, distribute, and sell this software and its
4 dnl  documentation for any purpose is hereby granted without fee, provided that
5 dnl  the above copyright notice appear in all copies and that both that
6 dnl  copyright notice and this permission notice appear in supporting
7 dnl  documentation, and that the name of Red Hat not be used in
8 dnl  advertising or publicity pertaining to distribution of the software without
9 dnl  specific, written prior permission.  Red Hat makes no
10 dnl  representations about the suitability of this software for any purpose.  It
11 dnl  is provided "as is" without express or implied warranty.
12 dnl 
13 dnl  RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
14 dnl  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
15 dnl  EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
16 dnl  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
17 dnl  DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 dnl  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 dnl  PERFORMANCE OF THIS SOFTWARE.
20 dnl
21 dnl Process this file with autoconf to create configure.
22
23 AC_PREREQ([2.57])
24
25 #   Pixman versioning scheme
26 #
27 #   - The git version must at all times have an odd MICRO version
28 #     number.
29 #
30 #   - If you add API, increment the MICRO version to the next largest
31 #     odd number.
32 #
33 #   - If you release a version that contains new API, then increment
34 #     MINOR and set MICRO to 0. 
35 #
36 #   - If you release a new version that does not contain new API, then
37 #     increment MICRO to the next even number.
38 #
39 #   - After doing a release, increment MICRO again to make the version 
40 #     number in git odd.
41 #
42 #   - If you break the ABI, then
43 #
44 #        - increment MAJOR
45 #
46 #        - In the first development release where you break ABI, find
47 #          all instances of "pixman-n" and change them to pixman-(n+1)
48 #
49 #          This needs to be done at least in 
50 #                    configure.ac
51 #                    all Makefile.am's
52 #                    pixman-n.pc.in
53 #
54 #      This ensures that binary incompatible versions can be installed
55 #      in parallel.  See http://www106.pair.com/rhp/parallel.html for
56 #      more information
57
58 m4_define([pixman_major], 0)
59 m4_define([pixman_minor], 9)
60 m4_define([pixman_micro], 7)
61
62 m4_define([pixman_version],[pixman_major.pixman_minor.pixman_micro])
63
64 AC_INIT(pixman, pixman_version, "sandmann@daimi.au.dk", pixman)
65 AM_INIT_AUTOMAKE([dist-bzip2])
66
67 AM_CONFIG_HEADER(config.h)
68
69 AC_PROG_CC
70 AC_PROG_LIBTOOL
71 AC_CHECK_FUNCS([getisax])
72 AC_C_BIGENDIAN
73
74
75 # We ignore pixman_major in the version here because the major version should
76 # always be encoded in the actual library name. Ie., the soname is:
77 #
78 #      pixman-$(pixman_major).0.minor.micro
79 #
80 m4_define([lt_current], [pixman_minor])
81 m4_define([lt_revision], [pixman_micro])
82 m4_define([lt_age], [pixman_minor])
83
84 LT_VERSION_INFO="lt_current:lt_revision:lt_age"
85
86 PIXMAN_VERSION_MAJOR=pixman_major()
87 AC_SUBST(PIXMAN_VERSION_MAJOR)
88 PIXMAN_VERSION_MINOR=pixman_minor()
89 AC_SUBST(PIXMAN_VERSION_MINOR)
90 PIXMAN_VERSION_MICRO=pixman_micro()
91 AC_SUBST(PIXMAN_VERSION_MICRO)
92
93 AC_SUBST(LT_VERSION_INFO)
94
95 # Check for dependencies
96 #PKG_CHECK_MODULES(DEP, x11)
97
98 changequote(,)dnl
99 if test "x$GCC" = "xyes"; then
100   case " $CFLAGS " in
101   *[\ \ ]-Wall[\ \      ]*) ;;
102   *) CFLAGS="$CFLAGS -Wall" ;;
103   esac fi changequote([,])dnl
104
105 dnl =========================================================================
106 dnl -fvisibility stuff
107
108 have_gcc4=no
109 AC_MSG_CHECKING(for -fvisibility)
110 AC_COMPILE_IFELSE([
111 #if defined(__GNUC__) && (__GNUC__ >= 4)
112 #else
113 #error Need GCC 4.0 for visibility
114 #endif
115 int main () { return 0; } 
116 ], have_gcc4=yes)
117
118 if test "x$have_gcc4" = "xyes"; then
119    CFLAGS="$CFLAGS -fvisibility=hidden"
120 fi
121 AC_MSG_RESULT($have_gcc4)
122
123 dnl ===========================================================================
124 dnl Check for MMX
125
126 MMX_CFLAGS="-mmmx -Winline --param inline-unit-growth=10000 --param large-function-growth=10000"
127
128 have_mmx_intrinsics=no
129 AC_MSG_CHECKING(whether to use MMX intrinsics)
130 xserver_save_CFLAGS=$CFLAGS
131 CFLAGS="$CFLAGS $MMX_CFLAGS"
132 AC_COMPILE_IFELSE([
133 #if defined(__GNUC__) && (__GNUC__ < 3 || (__GNUC__ == 3 && __GNUC_MINOR__ < 4))
134 #error "Need GCC >= 3.4 for MMX intrinsics"
135 #endif
136 #include <mmintrin.h>
137 int main () {
138     __m64 v = _mm_cvtsi32_si64 (1);
139     return _mm_cvtsi64_si32 (v);
140 }], have_mmx_intrinsics=yes)
141 CFLAGS=$xserver_save_CFLAGS
142 AC_MSG_RESULT($have_mmx_intrinsics)
143
144 if test $have_mmx_intrinsics = yes ; then
145    AC_DEFINE(USE_MMX, 1, [use MMX compiler intrinsics])
146 else
147    MMX_CFLAGS=
148 fi
149
150 AM_CONDITIONAL(USE_MMX, test $have_mmx_intrinsics = yes)
151
152 dnl =======================================================
153
154 dnl GCC 4.2 when compiling with -msse will generate SSE instructions
155 dnl on its own.  This means anything compiled with -mss can only be
156 dnl run after a runtime check for SSE.  Unfortunately, since we still
157 dnl need to support MMX-but-not-SSE (such as the OLPC), this means we
158 dnl can only use SSE when compiling for x86-64 (where SSE is always
159 dnl supported).
160
161 have_sse_intrinsics=no
162 AC_MSG_CHECKING(whether to use SSE intrinsics)
163 xserver_save_CFLAGS=$CFLAGS
164 CFLAGS="$CFLAGS -msse $MMX_CFLAGS"
165
166 AC_COMPILE_IFELSE([
167 #if !defined(__amd64__) && !defined(__x86_64__)
168 #error "Need x86-64 for SSE"
169 #endif
170 #include <mmintrin.h>
171 #include <xmmintrin.h>
172 int main () {
173     __m64 v = _mm_cvtsi32_si64 (1);
174     v = _mm_shuffle_pi16 (v, _MM_SHUFFLE(3, 3, 3, 3));
175     return _mm_cvtsi64_si32 (v);
176 }], have_sse_intrinsics=yes)
177 CFLAGS=$xserver_save_CFLAGS
178 AC_MSG_RESULT($have_sse_intrinsics)
179
180 if test $have_sse_intrinsics = yes ; then
181    AC_DEFINE(USE_SSE, 1, [use SSE compiler intrinsics])
182    MMX_CFLAGS="-msse $MMX_CFLAGS"
183 fi
184
185 AM_CONDITIONAL(USE_SSE, test $have_sse_intrinsics = yes)
186
187
188 dnl ===========================================================================
189 dnl Check for SSE2
190
191 SSE_CFLAGS="-mmmx -msse2 -Winline --param inline-unit-growth=10000 --param large-function-growth=10000"
192
193 have_sse2_intrinsics=no
194 AC_MSG_CHECKING(whether to use SSE2 intrinsics)
195 xserver_save_CFLAGS=$CFLAGS
196 CFLAGS="$CFLAGS -msse2 $MMX_CFLAGS"
197
198 AC_COMPILE_IFELSE([
199 #include <mmintrin.h>
200 #include <xmmintrin.h>
201 int main () {
202     __m128i a, b, c;
203         c = _mm_xor_si128 (a, b);
204     return 0;
205 }], have_sse2_intrinsics=yes)
206 CFLAGS=$xserver_save_CFLAGS
207 AC_MSG_RESULT($have_sse2_intrinsics)
208
209 if test $have_sse2_intrinsics = yes ; then
210    AC_DEFINE(USE_SSE2, 1, [use SSE compiler intrinsics])
211 fi
212
213 AM_CONDITIONAL(USE_SSE2, test $have_sse2_intrinsics = yes)
214
215 dnl ========================================================
216 AC_SUBST(MMX_CFLAGS)
217 AC_SUBST(SSE_CFLAGS)
218
219 PKG_CHECK_MODULES(GTK, [gtk+-2.0], [HAVE_GTK=yes], [HAVE_GTK=no])
220 AM_CONDITIONAL(HAVE_GTK, [test "x$HAVE_GTK" = xyes])
221
222 AC_SUBST(GTK_CFLAGS)
223 AC_SUBST(GTK_LIBS)
224 AC_SUBST(DEP_CFLAGS)
225 AC_SUBST(DEP_LIBS)
226                   
227 AC_OUTPUT([pixman-1.pc
228            Makefile
229            pixman/Makefile
230            pixman/pixman-version.h
231            test/Makefile])