blob: 02454588f75d97f52677ef63bef44269aea863db [file] [log] [blame]
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +00001# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
Adam Tkacd07a0a62009-03-13 13:58:44 +00004AC_PREREQ([2.57])
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +00005AC_INIT([libjpeg], [6.b])
6
7AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2])
8
9# Always build with prototypes
10AC_DEFINE([HAVE_PROTOTYPES], 1, [Define if your compiler supports prototypes])
11# Don't use undefined types
12AC_DEFINE([INCOMPLETE_TYPES_BROKEN], 1, [Define if you want use complete types])
13
14# Checks for programs.
Pierre Ossman2ae181c2009-03-09 13:21:27 +000015AC_PROG_CPP
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000016AC_PROG_CC
Adam Tkac6e075fc2009-04-03 14:47:50 +000017AC_PROG_CXX
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000018AC_PROG_INSTALL
19AC_PROG_LIBTOOL
20AC_PROG_LN_S
21
22# Checks for libraries.
23
24# Checks for header files.
25AC_HEADER_STDC
26AC_CHECK_HEADERS([stddef.h stdlib.h string.h])
27AC_CHECK_HEADER([sys/types.h], AC_DEFINE([NEED_SYS_TYPES_H], 1, [Define if you have sys/types.h]))
28
29# Checks for typedefs, structures, and compiler characteristics.
30AC_C_CONST
31AC_C_CHAR_UNSIGNED
32AC_C_INLINE
33AC_TYPE_SIZE_T
34AC_CHECK_TYPES([unsigned char, unsigned short])
35
36AC_MSG_CHECKING([if right shift is signed])
37AC_TRY_RUN(
38 [#include <stdio.h>
39 int is_shifting_signed (long arg) {
40 long res = arg >> 4;
41
42 if (res == -0x7F7E80CL)
43 return 1; /* right shift is signed */
44
45 /* see if unsigned-shift hack will fix it. */
46 /* we can't just test exact value since it depends on width of long... */
47 res |= (~0L) << (32-4);
48 if (res == -0x7F7E80CL)
49 return 0; /* right shift is unsigned */
50
51 printf("Right shift isn't acting as I expect it to.\n");
52 printf("I fear the JPEG software will not work at all.\n\n");
53 return 0; /* try it with unsigned anyway */
54 }
55 int main (void) {
56 exit(is_shifting_signed(-0x7F7E80B1L));
57 }],
58 [AC_MSG_RESULT(no)
59 AC_DEFINE([RIGHT_SHIFT_IS_UNSIGNED], 1, [Define if shift is unsigned])],
60 [AC_MSG_RESULT(yes)],
61 [AC_MSG_RESULT(Assuming that right shift is signed on target machine.)])
62
63# test whether global names are unique to at least 15 chars
64AC_MSG_CHECKING([for short external names])
65AC_TRY_LINK(
66 [int possibly_duplicate_function () { return 0; }
67 int possibly_dupli_function () { return 1; }], [ ],
68 [AC_MSG_RESULT(ok)],
69 [AC_MSG_RESULT(short)
70 AC_DEFINE([NEED_SHORT_EXTERNAL_NAMES], 1, [Define if you need short function names])])
71
72# Checks for library functions.
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000073AC_CHECK_FUNCS([memset memcpy], [],
74 [AC_DEFINE([NEED_BSD_STRINGS], 1,
75 [Define if you have BSD-like bzero and bcopy])])
76
Pierre Ossman2ae181c2009-03-09 13:21:27 +000077# Set flags to indicate platform
78case "$host_os" in
79 cygwin* | mingw* | pw32* | interix*)
80 is_win32=1
81 ;;
82esac
83AM_CONDITIONAL([IS_WIN32], [test "x$is_win32" = "x1"])
84
Pierre Ossman59a39382009-03-09 13:15:56 +000085# SIMD is optional
Pierre Ossman59a39382009-03-09 13:15:56 +000086AC_ARG_WITH([simd],
Pierre Ossman2ae181c2009-03-09 13:21:27 +000087 AC_HELP_STRING([--without-simd],[Omit accelerated SIMD routines.]))
Pierre Ossman59a39382009-03-09 13:15:56 +000088if test "x${with_simd}" != "xno"; then
Pierre Ossman2ae181c2009-03-09 13:21:27 +000089 # Check if we're on a supported CPU
90 AC_MSG_CHECKING([if host cpu type is i386 or compatible])
91 case "$host_cpu" in
92 i*86 | x86 | ia32)
93 AC_MSG_RESULT(yes)
94 AC_PROG_NASM
95 AC_DEFINE([WITH_SIMD], [1], [Use accelerated SIMD routines.])
96 ;;
97 *)
98 AC_MSG_RESULT([no ("$host_cpu")])
99 with_simd=no
100 ;;
101 esac
Pierre Ossman59a39382009-03-09 13:15:56 +0000102fi
Pierre Ossman2ae181c2009-03-09 13:21:27 +0000103AM_CONDITIONAL([WITH_SIMD], [test "x$with_simd" != "xno"])
Pierre Ossman59a39382009-03-09 13:15:56 +0000104
Pierre Ossmanba0ce392009-03-06 15:30:42 +0000105# jconfig.h is the file we use, but we have another before that to
106# fool autoheader. the reason is that we include this header in our
107# API headers, which can screw things up for users of the lib.
108# jconfig.h is a minimal version that allows this package to be built
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +0000109AC_CONFIG_HEADERS([config.h])
110AC_CONFIG_HEADERS([jconfig.h])
Pierre Ossman3a65ef42009-03-16 13:34:18 +0000111AC_CONFIG_FILES([Makefile simd/Makefile])
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +0000112AC_OUTPUT