source: rtems-graphics-toolkit/jpeg-8d/configure.scan @ 8d99938

Last change on this file since 8d99938 was 86b99f7, checked in by Alexandru-Sever Horin <alex.sever.h@…>, on 08/01/12 at 22:40:32

Added jpeg-8d version. Made modifications to compile for RTEMS, without man or binaries

  • Property mode set to 100644
File size: 735 bytes
Line 
1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.69])
5AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
6AC_CONFIG_SRCDIR([jcomapi.c])
7AC_CONFIG_HEADERS([config.h])
8
9# Checks for programs.
10AC_PROG_CXX
11AC_PROG_AWK
12AC_PROG_CC
13AC_PROG_CPP
14AC_PROG_INSTALL
15AC_PROG_LN_S
16AC_PROG_MAKE_SET
17AC_PROG_RANLIB
18
19# Checks for libraries.
20
21# Checks for header files.
22AC_CHECK_HEADERS([fcntl.h locale.h malloc.h stddef.h stdlib.h string.h strings.h])
23
24# Checks for typedefs, structures, and compiler characteristics.
25AC_TYPE_SIZE_T
26
27# Checks for library functions.
28AC_FUNC_MALLOC
29AC_CHECK_FUNCS([setlocale])
30
31AC_CONFIG_FILES([Makefile])
32AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.