Package Upload
[platform/core/uifw/e17-extra-modules.git] / extndialog / configure.ac
1 # Process this file with autoconf to produce a configure script.
2 dnl Process this file with autoconf to produce a configure script.
3
4 # get rid of that stupid cache mechanism
5 rm -f config.cache
6
7 AC_INIT([extndialog], [0.1.0], [enlightenment-devel@lists.sourceforge.net])
8 AC_PREREQ([2.52])
9 AC_CONFIG_SRCDIR([configure.ac])
10
11 AM_CONFIG_HEADER([config.h])
12
13 AM_INIT_AUTOMAKE([1.8])
14
15 AC_USE_SYSTEM_EXTENSIONS
16 AM_PROG_CC_STDC
17 AM_PROG_CC_C_O
18
19 requirements="\
20    elementary \
21    "
22
23 PKG_CHECK_MODULES(EXTNDIALOG, [${requirements}])
24
25 AC_CONFIG_FILES([
26 Makefile
27 src/Makefile
28 ])
29
30 AC_OUTPUT