]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/dual-decode.git/blob - configure.ac
In accordance to coding guidelines.
[glsdk/dual-decode.git] / configure.ac
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 AC_PREREQ([2.68])
5 AC_INIT(dual_decode,0.2, glsdk_apps@list.ti.com)
6 AC_CONFIG_SRCDIR([src])
7 AC_CONFIG_HEADERS([config.h])
9 #Check the version of pkg-config
10 PKG_PROG_PKG_CONFIG()
12 # Checks for programs.
13 AC_PROG_CC
15 #Test the C compiler
16 AC_LANG_C
18 # Checks for libraries.
19 AC_CHECK_HEADERS(X11/Xlib.h)
20 #Checks the presence of packages
21 PKG_CHECK_MODULES([GST], [gstreamer-0.10])
22 PKG_CHECK_MODULES([GSTINT], [gstreamer-interfaces-0.10])
23 PKG_CHECK_MODULES([GTK], [gtk+-2.0]) 
25 # Checks for header files.
27 # Checks for typedefs, structures, and compiler characteristics.
29 # Checks for library functions.
31 AC_OUTPUT(Makefile)