summaryrefslogtreecommitdiff
path: root/configure.ac
blob: cf97dd4ddd79bb41d602446c13df1de0072b5673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.68])
AC_INIT(system-plugin-common, 0.0.01, [BUG-REPORT-ADDRESS])

AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([config.h])

AC_USE_SYSTEM_EXTENSIONS
AC_SYS_LARGEFILE
AC_PREFIX_DEFAULT([/usr])
AM_INIT_AUTOMAKE([foreign])

LT_PREREQ(2.2)
LT_INIT([disable-static])

# Checks for programs.
AC_PROG_MKDIR_P
AC_PROG_LN_S
AC_PROG_SED
AC_PROG_GREP
AC_PROG_AWK
#AC_PROG_INSTALL

AC_PROG_CC
AC_PROG_CC_C99
AM_PROG_CC_C_O
AC_PROG_GCC_TRADITIONAL
AC_PATH_PROG([M4], [m4])
M4_DEFINES=

# ------------------------------------------------------------------------------
AC_ARG_WITH([rootprefix],
        AS_HELP_STRING([--with-rootprefix=DIR],
                [rootfs directory prefix for config files and kernel modules]),
                [], [with_rootprefix=${ac_default_prefix}])
AC_SUBST([rootprefix], [$with_rootprefix])

# ------------------------------------------------------------------------------
AC_ARG_ENABLE([engmode],
        AS_HELP_STRING([--enable-engmode], [disable engineer mode]),
                [case "${enableval}" in
                        yes) with_engmode=yes ;;
                        no) with_engmode=no ;;
                        *) AC_MSG_ERROR(bad value ${enableval} for --disable-engmode) ;;
                esac],
                with_engmode=yes)
if test "x$with_engmode" != "xno"; then
        M4_DEFINES="$M4_DEFINES -DWITH_ENGMODE"
fi
AC_SUBST(WITH_ENGMODE)
AM_CONDITIONAL([WITH_ENGMODE], [test "x$with_engmode" != xno])

# ------------------------------------------------------------------------------
AC_ARG_WITH(initial-boot,
            AS_HELP_STRING([--with-initialbootdone=PATH],
                           [tizen system initial boot done]),
                [INITAILBOOT_DONE="$withval"],
                [INITAILBOOT_DONE="/opt/etc/.initialboot_done"])
AC_SUBST(INITAILBOOT_DONE)

AC_ARG_WITH(need-initialized,
        AS_HELP_STRING([--with-initializedone=PATH],
                       [tizen system need initialized done]),
                [INITIALIZE_DONE="$withval"],
                [INITIALIZE_DONE="/opt/etc/.initialize_done"])
AC_SUBST(INITIALIZE_DONE)

# ------------------------------------------------------------------------------
AC_ARG_WITH(tizen-readahead,
            AS_HELP_STRING([--with-tizenreadaheaddir=PATH],
                           [tizen readahead dir]),
                [READAHEAD_DIR="$withval"],
                [READAHEAD_DIR="/opt/etc"])
AC_SUBST(READAHEAD_DIR)

# ------------------------------------------------------------------------------
AC_ARG_ENABLE([engmode2],
        AS_HELP_STRING([--enable-engmode2], [disable engineer mode2]),
                [case "${enableval}" in
                        yes) with_engmode2=yes ;;
                        no) with_engmode2=no ;;
                        *) AC_MSG_ERROR(bad value ${enableval} for --disable-engmode2) ;;
                esac],
                with_engmode2=yes)
if test "x$with_engmode2" != "xno"; then
        M4_DEFINES="$M4_DEFINES -DWITH_ENGMODE2"
fi
AC_SUBST(WITH_ENGMODE2)
AM_CONDITIONAL([WITH_ENGMODE2], [test "x$with_engmode2" != xno])

# ------------------------------------------------------------------------------
AC_ARG_ENABLE([udevd-killer],
        AS_HELP_STRING([--enable-udevd-killer],
                       [install udevd killer service]),
                [case "${enableval}" in
                        yes) enable_udevd_killer=yes ;;
                        no) enable_udevd_killer=no ;;
                        *) AC_MSG_ERROR(bad value ${enableval} for --enable-udevd-killer) ;;
                esac],
                enable_udevd_killer=no)
AC_SUBST(WITH_UDEVD_KILLER)
AM_CONDITIONAL([WITH_UDEVD_KILLER], [test "x$enable_udevd_killer" != xno])

# ------------------------------------------------------------------------------
AC_ARG_ENABLE([mobile],
        AS_HELP_STRING([--enable-mobile],
                       [enable mobile configuration]),
                [case "${enableval}" in
                        yes) enable_mobile=yes ;;
                        no) enable_mobile=no ;;
                        *) AC_MSG_ERROR(bad value ${enableval} for --enable-mobile) ;;
                esac],
                enable_mobile=no)
AC_SUBST(MOBILE)
AM_CONDITIONAL([MOBILE], [test "x$enable_mobile" != xno])

# ------------------------------------------------------------------------------
AC_ARG_ENABLE([wmready],
        AS_HELP_STRING([--disable-wmready], [without window manager waiting]),
                [case "${enableval}" in
                        yes) have_winmgr=yes ;;
                        no) have_winmgr=no ;;
                        *) AC_MSG_ERROR(bad value ${enableval} for --disable-wmready) ;;
                esac],
                have_winmgr=yes)
AC_SUBST(WITH_WMREADY)
AM_CONDITIONAL([WITH_WMREADY], [test "x$have_winmgr" != xno])

# ------------------------------------------------------------------------------
AC_ARG_ENABLE([frequent-fstrim],
        AS_HELP_STRING([--enable-frequent-fstrim],
                       [use more frequently fstrim timer]),
                [case "${enableval}" in
                        yes) enable_frequent_fstrim=yes ;;
                        no) enable_frequent_fstrim=no ;;
                        *) AC_MSG_ERROR(bad value ${enableval} for --enable-frequent-fstrim) ;;
                esac],
                enable_frequent_fstrim=no)
if test "x$enable_frequent_fstrim" == "xyes"; then
        M4_DEFINES="$M4_DEFINES -DWITH_FREQUENT_FSTRIM"
fi

AC_SUBST(M4_DEFINES)
AC_SUBST(WITH_FREQUENT_FSTRIM)
AM_CONDITIONAL([WITH_FREQUENT_FSTRIM], [test "x$enable_frequent_fstrim" != xno])

# ------------------------------------------------------------------------------
AC_ARG_WITH(dirty-writeback-centisecs,
            AS_HELP_STRING([--with-dirty-writeback-centisecs=NUMBER],
                           [Path to /etc/rc.local]),
                           [DIRTY_WRITEBACK_CENTISECS="$withval"],
                           [DIRTY_WRITEBACK_CENTISECS="500"])

AC_DEFINE_UNQUOTED(DIRTY_WRITEBACK_CENTISECS, ["$DIRTY_WRITEBACK_CENTISECS"], [Path of /etc/rc.local script])
AC_SUBST(DIRTY_WRITEBACK_CENTISECS)

# ------------------------------------------------------------------------------
PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.3.2])
PKG_CHECK_MODULES(GLIB, [glib-2.0])
PKG_CHECK_MODULES(GIO, [gio-2.0])

# ------------------------------------------------------------------------------
AC_CONFIG_FILES([Makefile])

AC_OUTPUT
AC_MSG_RESULT([
        $PACKAGE_NAME $VERSION

        prefix:                  ${prefix}
        rootprefix:              ${with_rootprefix}
        sysconf dir:             ${sysconfdir}
        datarootdir:             ${datarootdir}
        lib dir:                 ${libdir}
        rootlib dir:             ${with_rootlibdir}
        initial boot done flag:  ${INITAILBOOT_DONE}
        inialized done flag:     ${INITIALIZE_DONE}

        XATTR:                   ${have_xattr}
        SMACK:                   ${have_smack}

        engineer mode:           ${with_engmode}
        window manager:          ${have_winmgr}
        udevd killer:            ${enable_udevd_killer}
        frequent fstrim:         ${enable_frequent_fstrim}
        enable mobile:           ${enable_mobile}
])