forked from eProsima/Fast-CDR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
69 lines (56 loc) · 2.15 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
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
# Copyright 2016 Proyectos y Sistemas de Mantenimiento SL (eProsima).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Autoconf script FastCDR
#
#
# Define variables for the FastCDR version number.
#
m4_define([version_major],[1])
m4_define([version_minor],[0])
m4_define([version_micro],[26])
AC_INIT([fastcdr], [version_major.version_minor.version_micro], [[email protected]], [eProsima FastCDR], [http://eprosima.com/])
CONFIG_ARGS="$*"
AC_SUBST(CONFIG_ARGS)
#Minimum autoconf version we require.
AC_PREREQ([2.59])
AM_INIT_AUTOMAKE([1.10 no-define foreign subdir-objects])
# Makes version available in config.h
AC_DEFINE(FASTCDR_VERSION_MAJOR, version_major, [fastcdr version major])
AC_DEFINE(FASTCDR_VERSION_MINOR, version_minor, [fastcdr version minor])
AC_DEFINE(FASTCDR_VERSION_MICRO, version_micro, [fastcdr version micro])
# Check stdcxx
AX_CXX_COMPILE_STDCXX_11(,optional)
AS_IF([test $HAVE_CXX11 = 1],
[AC_DEFINE(HAVE_CXX0X, 1, ["Define if g++ supports C++0x features. "]),
AC_DEFINE(HAVE_CXX_CONSTEXPR, 1, [""])],
[AC_DEFINE(HAVE_CXX_CONSTEXPR, 0, [""]), AX_CXX_COMPILE_STDCXX_0X()])
# Check endianess
AC_C_BIGENDIAN(
AC_DEFINE(FASTCDR_IS_BIG_ENDIAN_TARGET, 1, [machine is bigendian]),
AC_DEFINE(FASTCDR_IS_BIG_ENDIAN_TARGET, 0, [machine is littleendian]),
AC_MSG_ERROR(unknown endianess),
AC_MSG_ERROR(universial endianess not supported)
)
# Check for libraries used in the main build process
AC_PROG_CXX
AC_PROG_CPP
# Init libtool
AC_CONFIG_MACRO_DIR([m4])
LT_INIT
AC_CONFIG_HEADERS([include/fastcdr/config.h:include/fastcdr/config.h.in])
AC_CONFIG_FILES([Makefile
include/Makefile
src/cpp/Makefile])
AC_OUTPUT