udisks: services: change default.target to multi-user.target
[AGL/meta-agl-demo.git] / recipes-multimedia / libmp4v2 / files / 0001-add-a-configure-option-to-disable-build-of-man-pages.patch
1 From 530a31e3eb24b2f1ed7b30859ed62a2d1b24bd91 Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
3 Date: Tue, 7 Feb 2017 11:51:58 +0100
4 Subject: [PATCH] add a configure option to disable build of man-pages
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8
9 Upstream-Status: Pending
10
11 Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
12 ---
13  configure.ac | 4 +++-
14  1 file changed, 3 insertions(+), 1 deletion(-)
15
16 diff --git a/configure.ac b/configure.ac
17 index 8316c67..099fc0c 100644
18 --- a/configure.ac
19 +++ b/configure.ac
20 @@ -67,6 +67,8 @@ AC_ARG_ENABLE([largefile],
21      [AS_HELP_STRING([--disable-largefile],[disable LFS (large file support)])])
22  AC_ARG_ENABLE([util],
23      [AS_HELP_STRING([--disable-util],[disable build of command-line utilities])])
24 +AC_ARG_ENABLE([man],
25 +    [AS_HELP_STRING([--disable-man],[disable build of man-pages])])
26  AC_ARG_ENABLE([bi],
27      [AS_HELP_STRING([--enable-bi=ARCH],[enable -mARCH for bi-arch compilation])])
28  AC_ARG_ENABLE([ub],
29 @@ -395,7 +397,7 @@ AM_CONDITIONAL([ADD_PLATFORM_POSIX],[test "$X_PLATFORM" = "posix"])
30  AM_CONDITIONAL([ADD_PLATFORM_WIN32],[test "$X_PLATFORM" = "win32"])
31  
32  AM_CONDITIONAL([ADD_UTIL],[test "$enable_util" != "no"])
33 -AM_CONDITIONAL([ADD_MANS],[test "$X_PLATFORM" != "win32"])
34 +AM_CONDITIONAL([ADD_MANS],[test "$enable_man" != "no"])
35  
36  ###############################################################################
37  # declare common substitutions
38 -- 
39 2.9.3
40