Change remaped keys synchronized to new tizen key layout
[platform/adaptation/xf86-misc-odroidu3.git] / configure.ac
1 #  Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved 
2
3 #  Permission to use, copy, modify, distribute, and sell this software and its
4 #  documentation for any purpose is hereby granted without fee, provided that
5 #  the above copyright notice appear in all copies and that both that
6 #  copyright notice and this permission notice appear in supporting
7 #  documentation, and that the name of Red Hat not be used in
8 #  advertising or publicity pertaining to distribution of the software without
9 #  specific, written prior permission.  Red Hat makes no
10 #  representations about the suitability of this software for any purpose.  It
11 #  is provided "as is" without express or implied warranty.
12
13 #  RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
14 #  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
15 #  EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
16 #  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
17 #  DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 #  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 #  PERFORMANCE OF THIS SOFTWARE.
20 #
21
22 #                                               -*- Autoconf -*-
23 # Process this file with autoconf to produce a configure script.
24
25 AC_PREREQ(2.61)
26 AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
27
28 # Checks for programs.
29 AC_PROG_INSTALL
30 AC_PROG_MAKE_SET
31
32 AC_CONFIG_SRCDIR([Makefile.am])
33 AM_CONFIG_HEADER([config.h])
34 AC_CONFIG_AUX_DIR(.)
35
36 AM_INIT_AUTOMAKE([dist-bzip2])
37
38 AM_MAINTAINER_MODE
39
40 # Checks for programs.
41 AC_DISABLE_STATIC
42 AC_PROG_LIBTOOL
43 AC_PROG_CC
44
45 AC_ARG_WITH(arch,         AS_HELP_STRING([--with-arch=ARCH], [Architecture (default: arm)]),
46                                 [ ARCH="$withval" ],
47                                 [ ARCH="arm" ])
48 AC_ARG_WITH(conf-prefix,      AS_HELP_STRING([--with-conf-prefix=CONF_PREFIX], [Architecture (default: /opt/etc)]),
49                                 [ CONF_PREFIX="$withval" ],
50                                 [ CONF_PREFIX="/opt/etc" ])
51
52 AC_SUBST(ARCH)
53 AC_SUBST(CONF_PREFIX)
54
55 AC_CONFIG_FILES([Makefile])
56 AC_OUTPUT