blob: 869055ac18d1d70f2961740ea80328bee3bc4d8f [file] [log] [blame]
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +00001# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
DRCbf0fab92010-02-12 22:22:01 +00004AC_PREREQ([2.56])
DRCde3c8612011-02-04 11:07:34 +00005AC_INIT([libjpeg-turbo], [1.1.90])
DRC079b4342010-02-15 11:32:23 +00006BUILD=`date +%Y%m%d`
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +00007
8AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2])
DRC8ff1f252010-02-15 11:08:57 +00009AC_PREFIX_DEFAULT(/opt/libjpeg-turbo)
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000010
11# Always build with prototypes
12AC_DEFINE([HAVE_PROTOTYPES], 1, [Define if your compiler supports prototypes])
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000013
14# Checks for programs.
DRCe7b699d2010-02-14 07:39:07 +000015SAVED_CFLAGS=${CFLAGS}
DRCb4a50ce2011-02-26 21:07:50 +000016SAVED_CPPFLAGS=${CPPFLAGS}
Pierre Ossman2ae181c2009-03-09 13:21:27 +000017AC_PROG_CPP
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000018AC_PROG_CC
19AC_PROG_INSTALL
20AC_PROG_LIBTOOL
21AC_PROG_LN_S
22
DRCbdb12882010-08-21 21:14:17 +000023# Check whether compiler supports pointers to undefined structures
24AC_MSG_CHECKING(whether compiler supports pointers to undefined structures)
25AC_TRY_COMPILE([ typedef struct undefined_structure * undef_struct_ptr; ], ,
26AC_MSG_RESULT(yes),
27[AC_MSG_RESULT(no)
28AC_DEFINE([INCOMPLETE_TYPES_BROKEN],[1],[Compiler does not support pointers to undefined structures.])])
29
DRCe7b699d2010-02-14 07:39:07 +000030if test "x${GCC}" = "xyes"; then
31 if test "x${SAVED_CFLAGS}" = "x"; then
32 CFLAGS=-O3
33 fi
DRCb4a50ce2011-02-26 21:07:50 +000034 if test "x${SAVED_CPPFLAGS}" = "x"; then
35 CPPFLAGS=-Wall
36 fi
DRCe7b699d2010-02-14 07:39:07 +000037fi
38
DRC1e2f2982010-02-16 22:35:25 +000039AC_CHECK_DECL([__SUNPRO_C], [SUNCC="yes"], [SUNCC="no"])
40if test "x${SUNCC}" = "xyes"; then
41 if test "x${SAVED_CFLAGS}" = "x"; then
42 CFLAGS=-xO5
43 fi
DRC1e2f2982010-02-16 22:35:25 +000044fi
45
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000046# Checks for libraries.
47
48# Checks for header files.
49AC_HEADER_STDC
50AC_CHECK_HEADERS([stddef.h stdlib.h string.h])
51AC_CHECK_HEADER([sys/types.h], AC_DEFINE([NEED_SYS_TYPES_H], 1, [Define if you have sys/types.h]))
52
53# Checks for typedefs, structures, and compiler characteristics.
54AC_C_CONST
55AC_C_CHAR_UNSIGNED
56AC_C_INLINE
57AC_TYPE_SIZE_T
58AC_CHECK_TYPES([unsigned char, unsigned short])
59
60AC_MSG_CHECKING([if right shift is signed])
61AC_TRY_RUN(
62 [#include <stdio.h>
63 int is_shifting_signed (long arg) {
64 long res = arg >> 4;
65
66 if (res == -0x7F7E80CL)
67 return 1; /* right shift is signed */
68
69 /* see if unsigned-shift hack will fix it. */
70 /* we can't just test exact value since it depends on width of long... */
71 res |= (~0L) << (32-4);
72 if (res == -0x7F7E80CL)
73 return 0; /* right shift is unsigned */
74
75 printf("Right shift isn't acting as I expect it to.\n");
76 printf("I fear the JPEG software will not work at all.\n\n");
77 return 0; /* try it with unsigned anyway */
78 }
79 int main (void) {
80 exit(is_shifting_signed(-0x7F7E80B1L));
81 }],
82 [AC_MSG_RESULT(no)
83 AC_DEFINE([RIGHT_SHIFT_IS_UNSIGNED], 1, [Define if shift is unsigned])],
84 [AC_MSG_RESULT(yes)],
85 [AC_MSG_RESULT(Assuming that right shift is signed on target machine.)])
86
87# test whether global names are unique to at least 15 chars
88AC_MSG_CHECKING([for short external names])
89AC_TRY_LINK(
90 [int possibly_duplicate_function () { return 0; }
91 int possibly_dupli_function () { return 1; }], [ ],
92 [AC_MSG_RESULT(ok)],
93 [AC_MSG_RESULT(short)
94 AC_DEFINE([NEED_SHORT_EXTERNAL_NAMES], 1, [Define if you need short function names])])
95
96# Checks for library functions.
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000097AC_CHECK_FUNCS([memset memcpy], [],
98 [AC_DEFINE([NEED_BSD_STRINGS], 1,
99 [Define if you have BSD-like bzero and bcopy])])
100
Pierre Ossman2ae181c2009-03-09 13:21:27 +0000101# Set flags to indicate platform
102case "$host_os" in
103 cygwin* | mingw* | pw32* | interix*)
104 is_win32=1
105 ;;
106esac
107AM_CONDITIONAL([IS_WIN32], [test "x$is_win32" = "x1"])
108
DRC1f80a102010-10-18 00:15:31 +0000109AC_MSG_CHECKING([libjpeg API version])
110AC_ARG_VAR(JPEG_LIB_VERSION, [libjpeg API version (62, 70, or 80)])
111if test "x$JPEG_LIB_VERSION" = "x"; then
112 AC_ARG_WITH([jpeg7],
113 AC_HELP_STRING([--with-jpeg7], [Emulate libjpeg v7 API/ABI (this makes libjpeg-turbo backward incompatible with libjpeg v6b.)]))
114 AC_ARG_WITH([jpeg8],
DRCf38eee02011-02-18 07:00:38 +0000115 AC_HELP_STRING([--with-jpeg8], [Emulate libjpeg v8 API/ABI (this makes libjpeg-turbo backward incompatible with libjpeg v6b.)]))
DRC1f80a102010-10-18 00:15:31 +0000116 if test "x${with_jpeg8}" = "xyes"; then
117 JPEG_LIB_VERSION=80
DRC36a6eec2010-10-08 08:05:44 +0000118 else
DRC1f80a102010-10-18 00:15:31 +0000119 if test "x${with_jpeg7}" = "xyes"; then
120 JPEG_LIB_VERSION=70
121 else
122 JPEG_LIB_VERSION=62
123 fi
DRC36a6eec2010-10-08 08:05:44 +0000124 fi
125fi
DRC1f80a102010-10-18 00:15:31 +0000126JPEG_LIB_VERSION_DECIMAL=`expr $JPEG_LIB_VERSION / 10`.`expr $JPEG_LIB_VERSION % 10`
DRC8515d3d2010-10-19 06:38:57 +0000127AC_SUBST(JPEG_LIB_VERSION_DECIMAL)
DRC1f80a102010-10-18 00:15:31 +0000128AC_MSG_RESULT([$JPEG_LIB_VERSION_DECIMAL])
129AC_DEFINE_UNQUOTED(JPEG_LIB_VERSION, [$JPEG_LIB_VERSION], [libjpeg API version])
130
131AC_MSG_CHECKING([libjpeg shared library version])
132AC_ARG_VAR(SO_MAJOR_VERSION, [Major version of the libjpeg-turbo shared library (default is determined by the API version)])
133AC_ARG_VAR(SO_MINOR_VERSION, [Minor version of the libjpeg-turbo shared library (default is determined by the API version)])
134if test "x$SO_MAJOR_VERSION" = "x"; then
135 case "$JPEG_LIB_VERSION" in
136 62) SO_MAJOR_VERSION=$JPEG_LIB_VERSION ;;
137 *) SO_MAJOR_VERSION=`expr $JPEG_LIB_VERSION / 10` ;;
138 esac
139fi
140if test "x$SO_MINOR_VERSION" = "x"; then
141 case "$JPEG_LIB_VERSION" in
142 80) SO_MINOR_VERSION=2 ;;
143 *) SO_MINOR_VERSION=0 ;;
144 esac
145fi
146AC_MSG_RESULT([$SO_MAJOR_VERSION:$SO_MINOR_VERSION])
147AC_SUBST(SO_MAJOR_VERSION)
148AC_SUBST(SO_MINOR_VERSION)
DRC36a6eec2010-10-08 08:05:44 +0000149
DRC7a0478e2010-11-07 19:12:30 +0000150VERSION_SCRIPT=yes
151AC_ARG_ENABLE([ld-version-script],
152 AS_HELP_STRING([--disable-ld-version-script],
153 [Disable linker version script for libjpeg-turbo (default is to use linker version script if the linker supports it)]),
154 [VERSION_SCRIPT=$enableval], [])
DRC8515d3d2010-10-19 06:38:57 +0000155
156AC_MSG_CHECKING([whether the linker supports version scripts])
157SAVED_LDFLAGS="$LDFLAGS"
158LDFLAGS="$LDFLAGS -Wl,--version-script,conftest.map"
159cat > conftest.map <<EOF
160VERS_1 {
161 global: *;
162};
163EOF
164AC_LINK_IFELSE(AC_LANG_PROGRAM([], []),
165 [VERSION_SCRIPT_FLAG=-Wl,--version-script,; AC_MSG_RESULT([yes (GNU style)])], [])
166if test "x$VERSION_SCRIPT_FLAG" = "x"; then
167 LDFLAGS="$SAVED_LDFLAGS -Wl,-M,conftest.map"
168 AC_LINK_IFELSE(AC_LANG_PROGRAM([], []),
169 [VERSION_SCRIPT_FLAG=-Wl,-M,; AC_MSG_RESULT([yes (Sun style)])], [])
170fi
171if test "x$VERSION_SCRIPT_FLAG" = "x"; then
172 VERSION_SCRIPT=no
173 AC_MSG_RESULT(no)
174fi
DRC8515d3d2010-10-19 06:38:57 +0000175LDFLAGS="$SAVED_LDFLAGS"
176
DRC9fa95592011-02-25 00:23:44 +0000177AC_MSG_CHECKING([whether to use version script when building libjpeg-turbo])
DRC8515d3d2010-10-19 06:38:57 +0000178AC_MSG_RESULT($VERSION_SCRIPT)
179
180AM_CONDITIONAL(VERSION_SCRIPT, test "x$VERSION_SCRIPT" = "xyes")
DRC8515d3d2010-10-19 06:38:57 +0000181AC_SUBST(VERSION_SCRIPT_FLAG)
DRC8515d3d2010-10-19 06:38:57 +0000182
DRC990e28d2011-01-04 21:40:11 +0000183AC_MSG_CHECKING([whether to include arithmetic encoding support])
DRCe3720042010-11-23 06:50:14 +0000184AC_ARG_WITH([arith-enc],
185 AC_HELP_STRING([--without-arith-enc], [Omit arithmetic encoding support]))
186if test "x$with_arith_enc" = "xno"; then
187 AC_MSG_RESULT(no)
188else
189 AC_DEFINE([C_ARITH_CODING_SUPPORTED], [1], [Support arithmetic encoding])
190 AC_MSG_RESULT(yes)
191fi
192AM_CONDITIONAL([WITH_ARITH_ENC], [test "x$with_arith_enc" != "xno"])
193
DRC990e28d2011-01-04 21:40:11 +0000194AC_MSG_CHECKING([whether to include arithmetic decoding support])
DRCe3720042010-11-23 06:50:14 +0000195AC_ARG_WITH([arith-dec],
196 AC_HELP_STRING([--without-arith-dec], [Omit arithmetic decoding support]))
197if test "x$with_arith_dec" = "xno"; then
198 AC_MSG_RESULT(no)
199else
200 AC_DEFINE([D_ARITH_CODING_SUPPORTED], [1], [Support arithmetic decoding])
201 AC_MSG_RESULT(yes)
202fi
203AM_CONDITIONAL([WITH_ARITH_DEC], [test "x$with_arith_dec" != "xno"])
204
205AM_CONDITIONAL([WITH_ARITH], [test "x$with_arith_dec" != "xno" -o "x$with_arith_enc" != "xno"])
206
DRC063ab492011-02-04 22:16:41 +0000207AC_ARG_VAR(JAVA_CFLAGS, [Compiler flags needed to find jni.h (default: -I/System/Library/Frameworks/JavaVM.framework/Headers on OS X, '-I/usr/java/include -I/usr/java/include/solaris' on Solaris, and '-I/usr/java/default/include -I/usr/java/default/include/linux' on Linux)])
DRC063ab492011-02-04 22:16:41 +0000208
DRCf8e00552011-02-04 11:06:36 +0000209AC_MSG_CHECKING([whether to include JNI wrapper in TurboJPEG/OSS])
210AC_ARG_WITH([jni],
211 AC_HELP_STRING([--with-jni],[Include JNI wrapper in the TurboJPEG/OSS library]))
DRC1421a262011-02-06 15:35:38 +0000212
213BUILDJNILIB=0
DRC1b0c3b02011-02-06 15:51:27 +0000214RPM_CONFIG_ARGS=
DRCf8e00552011-02-04 11:06:36 +0000215if test "x$with_jni" = "xyes"; then
216 AC_MSG_RESULT(yes)
DRC1421a262011-02-06 15:35:38 +0000217
218 case $host_os in
219 darwin*)
220 DEFAULT_JAVA_CFLAGS=-I/System/Library/Frameworks/JavaVM.framework/Headers
221 BUILDJNILIB=1
222 ;;
223 solaris*)
224 DEFAULT_JAVA_CFLAGS='-I/usr/java/include -I/usr/java/include/solaris'
225 ;;
226 linux*)
227 DEFAULT_JAVA_CFLAGS='-I/usr/java/default/include -I/usr/java/default/include/linux'
228 ;;
229 esac
230 if test "x$JAVA_CFLAGS" = "x"; then
231 JAVA_CFLAGS=$DEFAULT_JAVA_CFLAGS
232 fi
233
DRC063ab492011-02-04 22:16:41 +0000234 SAVE_CPPFLAGS=${CPPFLAGS}
235 CPPFLAGS="${CPPFLAGS} ${JAVA_CFLAGS}"
236 AC_CHECK_HEADERS([jni.h], [DUMMY=1],
237 [AC_MSG_ERROR([Could not find JNI header file])])
238 CPPFLAGS=${SAVE_CPPFLAGS}
239 AC_SUBST(JAVA_CFLAGS)
DRC1b0c3b02011-02-06 15:51:27 +0000240
241 RPM_CONFIG_ARGS=--with-jni
DRCf8e00552011-02-04 11:06:36 +0000242else
243 AC_MSG_RESULT(no)
244fi
245AM_CONDITIONAL([WITH_JNI], [test "x$with_jni" = "xyes"])
DRC25c58702011-02-05 04:41:36 +0000246AC_SUBST(BUILDJNILIB)
DRC1b0c3b02011-02-06 15:51:27 +0000247AC_SUBST(RPM_CONFIG_ARGS)
DRCf8e00552011-02-04 11:06:36 +0000248
DRC60cddeb2010-02-12 05:37:07 +0000249# SIMD is optional
250AC_ARG_WITH([simd],
251 AC_HELP_STRING([--without-simd],[Omit accelerated SIMD routines.]))
252if test "x${with_simd}" != "xno"; then
253 # Check if we're on a supported CPU
254 AC_MSG_CHECKING([if we have SIMD optimisations for cpu type])
255 case "$host_cpu" in
DRC49597872010-05-17 20:47:57 +0000256 x86_64 | amd64)
DRC60cddeb2010-02-12 05:37:07 +0000257 AC_MSG_RESULT([yes (x86_64)])
258 AC_PROG_NASM
259 simd_arch=x86_64
260 ;;
261 i*86 | x86 | ia32)
262 AC_MSG_RESULT([yes (i386)])
263 AC_PROG_NASM
264 simd_arch=i386
265 ;;
266 *)
267 AC_MSG_RESULT([no ("$host_cpu")])
DRC83f21442010-06-10 18:52:41 +0000268 AC_MSG_WARN([SIMD support not available for this CPU. Performance will suffer.])
269 with_simd=no;
DRC60cddeb2010-02-12 05:37:07 +0000270 ;;
271 esac
Pierre Ossmanba82ddf2009-06-29 11:20:42 +0000272
DRC60cddeb2010-02-12 05:37:07 +0000273 if test "x${with_simd}" != "xno"; then
274 AC_DEFINE([WITH_SIMD], [1], [Use accelerated SIMD routines.])
275 fi
276fi
DRC411dcf52010-02-12 04:28:29 +0000277
DRC60cddeb2010-02-12 05:37:07 +0000278AM_CONDITIONAL([WITH_SIMD], [test "x$with_simd" != "xno"])
Pierre Ossmanba82ddf2009-06-29 11:20:42 +0000279AM_CONDITIONAL([SIMD_I386], [test "x$simd_arch" = "xi386"])
280AM_CONDITIONAL([SIMD_X86_64], [test "x$simd_arch" = "xx86_64"])
DRC49597872010-05-17 20:47:57 +0000281AM_CONDITIONAL([X86_64], [test "x$host_cpu" = "xx86_64" -o "x$host_cpu" = "xamd64"])
Pierre Ossman59a39382009-03-09 13:15:56 +0000282
DRC079b4342010-02-15 11:32:23 +0000283case "$host_cpu" in
284 x86_64)
285 RPMARCH=x86_64
DRC52a19f22010-02-15 12:06:27 +0000286 DEBARCH=amd64
DRC079b4342010-02-15 11:32:23 +0000287 ;;
288 i*86 | x86 | ia32)
289 RPMARCH=i386
DRC52a19f22010-02-15 12:06:27 +0000290 DEBARCH=i386
DRC079b4342010-02-15 11:32:23 +0000291 ;;
292esac
293
294AC_SUBST(RPMARCH)
DRC52a19f22010-02-15 12:06:27 +0000295AC_SUBST(DEBARCH)
DRC079b4342010-02-15 11:32:23 +0000296AC_SUBST(BUILD)
DRC2cdd2ae2010-10-10 06:54:21 +0000297AC_DEFINE_UNQUOTED([BUILD], "$BUILD", [Build number])
DRC079b4342010-02-15 11:32:23 +0000298
Pierre Ossmanba0ce392009-03-06 15:30:42 +0000299# jconfig.h is the file we use, but we have another before that to
300# fool autoheader. the reason is that we include this header in our
301# API headers, which can screw things up for users of the lib.
302# jconfig.h is a minimal version that allows this package to be built
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +0000303AC_CONFIG_HEADERS([config.h])
304AC_CONFIG_HEADERS([jconfig.h])
DRCb94f2de2011-03-22 09:31:25 +0000305AC_CONFIG_FILES([pkgscripts/libjpeg-turbo.spec:release/libjpeg-turbo.spec.in])
306AC_CONFIG_FILES([pkgscripts/makecygwinpkg:release/makecygwinpkg.in])
307AC_CONFIG_FILES([pkgscripts/makedpkg:release/makedpkg.in])
308AC_CONFIG_FILES([pkgscripts/deb-control:release/deb-control.in])
309AC_CONFIG_FILES([pkgscripts/makemacpkg:release/makemacpkg.in])
310AC_CONFIG_FILES([pkgscripts/Description.plist:release/Description.plist.in])
311AC_CONFIG_FILES([pkgscripts/Info.plist:release/Info.plist.in])
312AC_CONFIG_FILES([pkgscripts/uninstall:release/uninstall.in])
313AC_CONFIG_FILES([pkgscripts/makesunpkg:release/makesunpkg.in])
314AC_CONFIG_FILES([pkgscripts/pkginfo:release/pkginfo.in])
DRC8515d3d2010-10-19 06:38:57 +0000315AC_CONFIG_FILES([libjpeg.map])
Pierre Ossman3a65ef42009-03-16 13:34:18 +0000316AC_CONFIG_FILES([Makefile simd/Makefile])
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +0000317AC_OUTPUT