DALi Version 1.4.18
[platform/core/uifw/dali-core.git] / build / tizen / configure.ac
1 # Copyright (c) 2018 Samsung Electronics Co., Ltd.
2
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6
7 # http://www.apache.org/licenses/LICENSE-2.0
8
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15
16 m4_define([dali_version],[0.1.1])
17 AC_INIT([dali], [dali_version])
18 AM_INIT_AUTOMAKE([-Wall foreign])
19
20 AC_PROG_CXX
21 AC_PROG_LIBTOOL
22 AC_PROG_MKDIR_P
23
24 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
25
26 LT_INIT
27
28 DALI_VERSION=dali_version
29 AC_SUBST(DALI_VERSION)
30
31 DALI_CFLAGS=-DPLATFORM_TIZEN
32
33 # Use C++ 11
34 DALI_CFLAGS="$DALI_CFLAGS -std=c++11 -Wnon-virtual-dtor -Woverloaded-virtual -Wold-style-cast -Werror -Wall -Wextra -Wno-unused-parameter -Wfloat-equal -Wconversion"
35
36 AC_ARG_ENABLE(exportall,
37               [AC_HELP_STRING([--enable-exportall],
38                               [enables the exporting of all the symbols in the library])],
39               [enable_exportall=yes],
40               [enable_exportall=no])
41
42 AC_ARG_ENABLE([debug],
43               [AC_HELP_STRING([--enable-debug],
44                               [Turns on debugging])],
45               [enable_debug=$enableval],
46               [enable_debug=no])
47
48 AC_ARG_ENABLE([backtrace],
49               [AC_HELP_STRING([--enable-backtrace],
50                               [Backtrace for exceptions])],
51               [enable_backtrace=$enableval],
52               [enable_backtrace=yes])
53
54 AC_ARG_ENABLE([lock_backtrace],
55               [AC_HELP_STRING([--enable-lock-backtrace],
56                               [Backtrace for when more than 1 lock is held on the same thread])],
57               [enable_lock_backtrace=$enableval],
58               [enable_lock_backtrace=no])
59
60 AC_ARG_ENABLE([cxx03_abi],
61               [AC_HELP_STRING([--enable-cxx03-abi],
62                               [Specify abi for the build])],
63               [enable_cxx03_abi=$enableval],
64               [enable_cxx03_abi=no])
65
66 AC_ARG_ENABLE([rename_so],
67               [AC_HELP_STRING([--enable-rename-so],
68                               [Specify whether so file is renamed or not])],
69               [enable_rename_so=$enableval],
70               [enable_rename_so=yes])
71
72 AM_CONDITIONAL([ENABLE_CXX03_ABI], [test x$enable_cxx03_abi = xyes])
73 AM_CONDITIONAL([ENABLE_RENAME_SO], [test x$enable_rename_so = xyes])
74
75 if test "x$enable_cxx03_abi" = "xyes"; then
76   DALI_CFLAGS="$DALI_CFLAGS -D_GLIBCXX_USE_CXX11_ABI=0"
77 fi
78
79 if test "x$enable_debug" = "xyes"; then
80   DALI_CFLAGS="$DALI_CFLAGS -DDEBUG_ENABLED"
81 fi
82
83 if test "x$enable_trace" = "xyes"; then
84   DALI_CFLAGS="$DALI_CFLAGS -DTRACE_ENABLED"
85 fi
86
87 if test "x$enable_debug" = "xno" -a "x$enable_exportall" = "xno"; then
88   DALI_CFLAGS="$DALI_CFLAGS -fvisibility=hidden -DHIDE_DALI_INTERNALS"
89 fi
90
91 if test "x$enable_lock_backtrace" = "xyes"; then
92   DALI_CFLAGS="$DALI_CFLAGS -DLOCK_BACKTRACE_ENABLED"
93   enable_backtrace="yes"
94 fi
95
96 # Must come after locks backtrace feature test
97 if test "x$enable_backtrace" = "xyes"; then
98   DALI_CFLAGS="$DALI_CFLAGS -DBACKTRACE_ENABLED"
99 fi
100
101 if test x$DALI_DATA_RW_DIR != x; then
102   dataReadWriteDir=$DALI_DATA_RW_DIR
103 else
104   dataReadWriteDir=${prefix}/share/dali/
105 fi
106
107 if test x$DALI_DATA_RO_DIR != x; then
108   dataReadOnlyDir=$DALI_DATA_RO_DIR
109 else
110   dataReadOnlyDir=${prefix}/share/dali/
111 fi
112
113 DALI_CFLAGS="$DALI_CFLAGS -I${includedir}"
114 DALI_LDFLAGS="-L${libdir}"
115
116 AC_SUBST(dataReadWriteDir)
117 AC_SUBST(dataReadOnlyDir)
118 AC_SUBST(DALI_CFLAGS)
119 AC_SUBST(DALI_LDFLAGS)
120
121 # Specify the include directory for development headers
122 devincludepath=${includedir}
123 AC_SUBST(devincludepath)
124
125 AC_CONFIG_FILES([Makefile dali-core/Makefile])
126
127 if test "x$enable_cxx03_abi" = "xyes"; then
128 AC_CONFIG_FILES([dali-core-cxx03.pc])
129 fi
130
131 if test "x$enable_cxx03_abi" != "xyes"; then
132 AC_CONFIG_FILES([dali-core.pc])
133 fi
134
135 AC_OUTPUT
136
137 echo "
138 Configuration
139 -------------
140   Prefix:                           $prefix
141   Debug Build:                      $enable_debug
142   Trace Build:                      $enable_trace
143   Data Dir (Read/Write):            $dataReadWriteDir
144   Data Dir (Read Only):             $dataReadOnlyDir
145   Backtrace:                        $enable_backtrace
146   ScopedLock Backtrace:             $enable_lock_backtrace
147   C++03 ABI:                        $enable_cxx03_abi
148   Rename so file:                   $enable_rename_so
149 "