forked from oe-alliance/openmultibootmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
41 lines (35 loc) · 1.09 KB
/
configure.ac
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
AC_INIT(plugins,1.0)
AM_INIT_AUTOMAKE(plugins,1.0)
AC_PATH_PROG(MSGFMT, msgfmt, AC_MSG_ERROR(Could not find msgfmt))
AM_PATH_PYTHON
AC_PYTHON_DEVEL
AC_PROG_CXX
CPPFLAGS="$CPPFLAGS $PYTHON_CPPFLAGS"
LDFLAGS="$LDFLAGS $PYTHON_LDFLAGS"
AC_ARG_WITH(po,
AS_HELP_STRING([--with-po],[enable updating of po files]),
[with_po="$withval"],[with_po="no"])
if test "$with_po" = "yes"; then
AC_PATH_PROG(MSGINIT, msginit)
AC_PATH_PROG(MSGMERGE, msgmerge)
AC_PATH_PROG(MSGUNIQ, msguniq)
AC_PATH_PROG(XGETTEXT, xgettext)
if test -z "$MSGINIT" -o -z "$MSGMERGE" -o -z "$MSGUNIQ" -o -z "$XGETTEXT"; then
AC_MSG_ERROR([Could not find required gettext tools])
fi
fi
AM_CONDITIONAL(UPDATE_PO, test "$with_po" = "yes")
AC_OUTPUT([
Makefile
po/Makefile
src/Makefile
src/ubi_reader/Makefile
src/ubi_reader/ubi/Makefile
src/ubi_reader/ubi/block/Makefile
src/ubi_reader/ubi/headers/Makefile
src/ubi_reader/ubi/volume/Makefile
src/ubi_reader/ubi_io/Makefile
src/ubi_reader/ubifs/Makefile
src/ubi_reader/ubifs/nodes/Makefile
src/ubi_reader/ui/Makefile
])