blob: 168f1d7f2d5f8ea775609c02cf9e75be7fb5915e [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
DRC1f80a102010-10-18 00:15:31 +0000101AC_MSG_CHECKING([libjpeg API version])
102AC_ARG_VAR(JPEG_LIB_VERSION, [libjpeg API version (62, 70, or 80)])
103if test "x$JPEG_LIB_VERSION" = "x"; then
104 AC_ARG_WITH([jpeg7],
105 AC_HELP_STRING([--with-jpeg7], [Emulate libjpeg v7 API/ABI (this makes libjpeg-turbo backward incompatible with libjpeg v6b.)]))
106 AC_ARG_WITH([jpeg8],
DRCf38eee02011-02-18 07:00:38 +0000107 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 +0000108 if test "x${with_jpeg8}" = "xyes"; then
109 JPEG_LIB_VERSION=80
DRC36a6eec2010-10-08 08:05:44 +0000110 else
DRC1f80a102010-10-18 00:15:31 +0000111 if test "x${with_jpeg7}" = "xyes"; then
112 JPEG_LIB_VERSION=70
113 else
114 JPEG_LIB_VERSION=62
115 fi
DRC36a6eec2010-10-08 08:05:44 +0000116 fi
117fi
DRC1f80a102010-10-18 00:15:31 +0000118JPEG_LIB_VERSION_DECIMAL=`expr $JPEG_LIB_VERSION / 10`.`expr $JPEG_LIB_VERSION % 10`
DRC8515d3d2010-10-19 06:38:57 +0000119AC_SUBST(JPEG_LIB_VERSION_DECIMAL)
DRC1f80a102010-10-18 00:15:31 +0000120AC_MSG_RESULT([$JPEG_LIB_VERSION_DECIMAL])
121AC_DEFINE_UNQUOTED(JPEG_LIB_VERSION, [$JPEG_LIB_VERSION], [libjpeg API version])
122
123AC_MSG_CHECKING([libjpeg shared library version])
124AC_ARG_VAR(SO_MAJOR_VERSION, [Major version of the libjpeg-turbo shared library (default is determined by the API version)])
125AC_ARG_VAR(SO_MINOR_VERSION, [Minor version of the libjpeg-turbo shared library (default is determined by the API version)])
126if test "x$SO_MAJOR_VERSION" = "x"; then
127 case "$JPEG_LIB_VERSION" in
128 62) SO_MAJOR_VERSION=$JPEG_LIB_VERSION ;;
129 *) SO_MAJOR_VERSION=`expr $JPEG_LIB_VERSION / 10` ;;
130 esac
131fi
132if test "x$SO_MINOR_VERSION" = "x"; then
133 case "$JPEG_LIB_VERSION" in
134 80) SO_MINOR_VERSION=2 ;;
135 *) SO_MINOR_VERSION=0 ;;
136 esac
137fi
138AC_MSG_RESULT([$SO_MAJOR_VERSION:$SO_MINOR_VERSION])
139AC_SUBST(SO_MAJOR_VERSION)
140AC_SUBST(SO_MINOR_VERSION)
DRC36a6eec2010-10-08 08:05:44 +0000141
DRC7a0478e2010-11-07 19:12:30 +0000142VERSION_SCRIPT=yes
143AC_ARG_ENABLE([ld-version-script],
144 AS_HELP_STRING([--disable-ld-version-script],
145 [Disable linker version script for libjpeg-turbo (default is to use linker version script if the linker supports it)]),
146 [VERSION_SCRIPT=$enableval], [])
DRC8515d3d2010-10-19 06:38:57 +0000147
148AC_MSG_CHECKING([whether the linker supports version scripts])
149SAVED_LDFLAGS="$LDFLAGS"
150LDFLAGS="$LDFLAGS -Wl,--version-script,conftest.map"
151cat > conftest.map <<EOF
152VERS_1 {
153 global: *;
154};
155EOF
156AC_LINK_IFELSE(AC_LANG_PROGRAM([], []),
157 [VERSION_SCRIPT_FLAG=-Wl,--version-script,; AC_MSG_RESULT([yes (GNU style)])], [])
158if test "x$VERSION_SCRIPT_FLAG" = "x"; then
159 LDFLAGS="$SAVED_LDFLAGS -Wl,-M,conftest.map"
160 AC_LINK_IFELSE(AC_LANG_PROGRAM([], []),
161 [VERSION_SCRIPT_FLAG=-Wl,-M,; AC_MSG_RESULT([yes (Sun style)])], [])
162fi
163if test "x$VERSION_SCRIPT_FLAG" = "x"; then
164 VERSION_SCRIPT=no
165 AC_MSG_RESULT(no)
166fi
DRC8515d3d2010-10-19 06:38:57 +0000167LDFLAGS="$SAVED_LDFLAGS"
168
DRC9fa95592011-02-25 00:23:44 +0000169AC_MSG_CHECKING([whether to use version script when building libjpeg-turbo])
DRC8515d3d2010-10-19 06:38:57 +0000170AC_MSG_RESULT($VERSION_SCRIPT)
171
172AM_CONDITIONAL(VERSION_SCRIPT, test "x$VERSION_SCRIPT" = "xyes")
DRC8515d3d2010-10-19 06:38:57 +0000173AC_SUBST(VERSION_SCRIPT_FLAG)
DRC8515d3d2010-10-19 06:38:57 +0000174
DRC990e28d2011-01-04 21:40:11 +0000175AC_MSG_CHECKING([whether to include arithmetic encoding support])
DRCe3720042010-11-23 06:50:14 +0000176AC_ARG_WITH([arith-enc],
177 AC_HELP_STRING([--without-arith-enc], [Omit arithmetic encoding support]))
178if test "x$with_arith_enc" = "xno"; then
179 AC_MSG_RESULT(no)
180else
181 AC_DEFINE([C_ARITH_CODING_SUPPORTED], [1], [Support arithmetic encoding])
182 AC_MSG_RESULT(yes)
183fi
184AM_CONDITIONAL([WITH_ARITH_ENC], [test "x$with_arith_enc" != "xno"])
185
DRC990e28d2011-01-04 21:40:11 +0000186AC_MSG_CHECKING([whether to include arithmetic decoding support])
DRCe3720042010-11-23 06:50:14 +0000187AC_ARG_WITH([arith-dec],
188 AC_HELP_STRING([--without-arith-dec], [Omit arithmetic decoding support]))
189if test "x$with_arith_dec" = "xno"; then
190 AC_MSG_RESULT(no)
191else
192 AC_DEFINE([D_ARITH_CODING_SUPPORTED], [1], [Support arithmetic decoding])
193 AC_MSG_RESULT(yes)
194fi
195AM_CONDITIONAL([WITH_ARITH_DEC], [test "x$with_arith_dec" != "xno"])
196
197AM_CONDITIONAL([WITH_ARITH], [test "x$with_arith_dec" != "xno" -o "x$with_arith_enc" != "xno"])
198
DRCf2602ce2011-04-01 00:20:33 +0000199AC_ARG_VAR(JAVAC, [Java compiler command (default: javac)])
200if test "x$JAVAC" = "x"; then
201 JAVAC=javac
202fi
203AC_SUBST(JAVAC)
204AC_ARG_VAR(JAVACFLAGS, [Java compiler flags])
205AC_SUBST(JAVACFLAGS)
206AC_ARG_VAR(JAR, [Java archive command (default: jar)])
207if test "x$JAR" = "x"; then
208 JAR=jar
209fi
210AC_SUBST(JAR)
211AC_ARG_VAR(JAVA, [Java runtime command (default: java)])
212if test "x$JAVA" = "x"; then
213 JAVA=java
214fi
215AC_SUBST(JAVA)
216AC_ARG_VAR(JNI_CFLAGS, [C compiler flags needed to include 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 +0000217
DRCf2602ce2011-04-01 00:20:33 +0000218AC_MSG_CHECKING([whether to build TurboJPEG/OSS Java wrapper])
219AC_ARG_WITH([java],
220 AC_HELP_STRING([--with-java],[Build Java wrapper for the TurboJPEG/OSS library]))
DRC1421a262011-02-06 15:35:38 +0000221
DRC1b0c3b02011-02-06 15:51:27 +0000222RPM_CONFIG_ARGS=
DRCf2602ce2011-04-01 00:20:33 +0000223WITH_JAVA=0
224if test "x$with_java" = "xyes"; then
DRCf8e00552011-02-04 11:06:36 +0000225 AC_MSG_RESULT(yes)
DRC1421a262011-02-06 15:35:38 +0000226
227 case $host_os in
228 darwin*)
DRCe08c05f2011-03-31 08:03:26 +0000229 DEFAULT_JNI_CFLAGS=-I/System/Library/Frameworks/JavaVM.framework/Headers
DRC1421a262011-02-06 15:35:38 +0000230 ;;
231 solaris*)
DRCe08c05f2011-03-31 08:03:26 +0000232 DEFAULT_JNI_CFLAGS='-I/usr/java/include -I/usr/java/include/solaris'
DRC1421a262011-02-06 15:35:38 +0000233 ;;
234 linux*)
DRCe08c05f2011-03-31 08:03:26 +0000235 DEFAULT_JNI_CFLAGS='-I/usr/java/default/include -I/usr/java/default/include/linux'
DRC1421a262011-02-06 15:35:38 +0000236 ;;
237 esac
DRCe08c05f2011-03-31 08:03:26 +0000238 if test "x$JNI_CFLAGS" = "x"; then
239 JNI_CFLAGS=$DEFAULT_JNI_CFLAGS
DRC1421a262011-02-06 15:35:38 +0000240 fi
241
DRC063ab492011-02-04 22:16:41 +0000242 SAVE_CPPFLAGS=${CPPFLAGS}
DRCe08c05f2011-03-31 08:03:26 +0000243 CPPFLAGS="${CPPFLAGS} ${JNI_CFLAGS}"
DRC063ab492011-02-04 22:16:41 +0000244 AC_CHECK_HEADERS([jni.h], [DUMMY=1],
245 [AC_MSG_ERROR([Could not find JNI header file])])
246 CPPFLAGS=${SAVE_CPPFLAGS}
DRCe08c05f2011-03-31 08:03:26 +0000247 AC_SUBST(JNI_CFLAGS)
DRC1b0c3b02011-02-06 15:51:27 +0000248
DRCf2602ce2011-04-01 00:20:33 +0000249 RPM_CONFIG_ARGS=--with-java
250 JAVA_RPM_CONTENTS_1='%dir /opt/%{name}/classes'
251 JAVA_RPM_CONTENTS_2=/opt/%{name}/classes/turbojpeg.jar
252 WITH_JAVA=1
DRCf8e00552011-02-04 11:06:36 +0000253else
254 AC_MSG_RESULT(no)
255fi
DRCf2602ce2011-04-01 00:20:33 +0000256AM_CONDITIONAL([WITH_JAVA], [test "x$with_java" = "xyes"])
257AC_SUBST(WITH_JAVA)
258AC_SUBST(JAVA_RPM_CONTENTS_1)
259AC_SUBST(JAVA_RPM_CONTENTS_2)
DRC1b0c3b02011-02-06 15:51:27 +0000260AC_SUBST(RPM_CONFIG_ARGS)
DRCf8e00552011-02-04 11:06:36 +0000261
DRC60cddeb2010-02-12 05:37:07 +0000262# SIMD is optional
263AC_ARG_WITH([simd],
DRCddcd5a12011-04-15 00:24:02 +0000264 AC_HELP_STRING([--without-simd],[Omit SIMD extensions.]))
DRC60cddeb2010-02-12 05:37:07 +0000265if test "x${with_simd}" != "xno"; then
266 # Check if we're on a supported CPU
267 AC_MSG_CHECKING([if we have SIMD optimisations for cpu type])
268 case "$host_cpu" in
DRC49597872010-05-17 20:47:57 +0000269 x86_64 | amd64)
DRC60cddeb2010-02-12 05:37:07 +0000270 AC_MSG_RESULT([yes (x86_64)])
271 AC_PROG_NASM
272 simd_arch=x86_64
273 ;;
274 i*86 | x86 | ia32)
275 AC_MSG_RESULT([yes (i386)])
276 AC_PROG_NASM
277 simd_arch=i386
278 ;;
279 *)
280 AC_MSG_RESULT([no ("$host_cpu")])
DRC83f21442010-06-10 18:52:41 +0000281 AC_MSG_WARN([SIMD support not available for this CPU. Performance will suffer.])
282 with_simd=no;
DRC60cddeb2010-02-12 05:37:07 +0000283 ;;
284 esac
Pierre Ossmanba82ddf2009-06-29 11:20:42 +0000285
DRC60cddeb2010-02-12 05:37:07 +0000286 if test "x${with_simd}" != "xno"; then
287 AC_DEFINE([WITH_SIMD], [1], [Use accelerated SIMD routines.])
288 fi
289fi
DRC411dcf52010-02-12 04:28:29 +0000290
DRC60cddeb2010-02-12 05:37:07 +0000291AM_CONDITIONAL([WITH_SIMD], [test "x$with_simd" != "xno"])
Pierre Ossmanba82ddf2009-06-29 11:20:42 +0000292AM_CONDITIONAL([SIMD_I386], [test "x$simd_arch" = "xi386"])
293AM_CONDITIONAL([SIMD_X86_64], [test "x$simd_arch" = "xx86_64"])
DRC49597872010-05-17 20:47:57 +0000294AM_CONDITIONAL([X86_64], [test "x$host_cpu" = "xx86_64" -o "x$host_cpu" = "xamd64"])
Pierre Ossman59a39382009-03-09 13:15:56 +0000295
DRC079b4342010-02-15 11:32:23 +0000296case "$host_cpu" in
297 x86_64)
298 RPMARCH=x86_64
DRC52a19f22010-02-15 12:06:27 +0000299 DEBARCH=amd64
DRC079b4342010-02-15 11:32:23 +0000300 ;;
301 i*86 | x86 | ia32)
302 RPMARCH=i386
DRC52a19f22010-02-15 12:06:27 +0000303 DEBARCH=i386
DRC079b4342010-02-15 11:32:23 +0000304 ;;
305esac
306
307AC_SUBST(RPMARCH)
DRC52a19f22010-02-15 12:06:27 +0000308AC_SUBST(DEBARCH)
DRC079b4342010-02-15 11:32:23 +0000309AC_SUBST(BUILD)
DRC2cdd2ae2010-10-10 06:54:21 +0000310AC_DEFINE_UNQUOTED([BUILD], "$BUILD", [Build number])
DRC079b4342010-02-15 11:32:23 +0000311
Pierre Ossmanba0ce392009-03-06 15:30:42 +0000312# jconfig.h is the file we use, but we have another before that to
313# fool autoheader. the reason is that we include this header in our
314# API headers, which can screw things up for users of the lib.
315# jconfig.h is a minimal version that allows this package to be built
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +0000316AC_CONFIG_HEADERS([config.h])
317AC_CONFIG_HEADERS([jconfig.h])
DRCb94f2de2011-03-22 09:31:25 +0000318AC_CONFIG_FILES([pkgscripts/libjpeg-turbo.spec:release/libjpeg-turbo.spec.in])
319AC_CONFIG_FILES([pkgscripts/makecygwinpkg:release/makecygwinpkg.in])
320AC_CONFIG_FILES([pkgscripts/makedpkg:release/makedpkg.in])
321AC_CONFIG_FILES([pkgscripts/deb-control:release/deb-control.in])
322AC_CONFIG_FILES([pkgscripts/makemacpkg:release/makemacpkg.in])
323AC_CONFIG_FILES([pkgscripts/Description.plist:release/Description.plist.in])
324AC_CONFIG_FILES([pkgscripts/Info.plist:release/Info.plist.in])
325AC_CONFIG_FILES([pkgscripts/uninstall:release/uninstall.in])
326AC_CONFIG_FILES([pkgscripts/makesunpkg:release/makesunpkg.in])
327AC_CONFIG_FILES([pkgscripts/pkginfo:release/pkginfo.in])
DRC8515d3d2010-10-19 06:38:57 +0000328AC_CONFIG_FILES([libjpeg.map])
Pierre Ossman3a65ef42009-03-16 13:34:18 +0000329AC_CONFIG_FILES([Makefile simd/Makefile])
DRCdffd53d2011-04-01 00:37:20 +0000330AC_CONFIG_FILES([java/Makefile])
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +0000331AC_OUTPUT