forked from smart-m3/sib-tcp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
executable file
·167 lines (137 loc) · 4.53 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
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
#############################################################################
#
#
#
# Copyright (c) 2007 Nokia Corporation
#
#############################################################################
AC_INIT()
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE(sib-tcp, 0.8)
AM_CONFIG_HEADER(config.h)
#############################################################################
# Constants
#############################################################################
#############################################################################
# Checks for some common programs needed for configure/compile/install
#############################################################################
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_AWK
AC_PROG_LIBTOOL
AC_PROG_RANLIB
#############################################################################
# Check for some header files (TODO: Add more?)
#############################################################################
AC_HEADER_STDC
AC_CHECK_HEADERS([limits.h stdlib.h string.h unistd.h])
##############################################################################
# Check for iconv
##############################################################################
AC_CHECK_FUNCS([iconv])
AC_CHECK_HEADERS([iconv.h])
AC_CHECK_LIB([iconv],[main])
##############################################################################
# Check for pthread presence
##############################################################################
AC_CHECK_HEADERS([pthread.h],
[],
[AC_MSG_ERROR(WhiteBoard node needs pthread library)])
AC_CHECK_LIB([pthread],[main])
### debug prints or not...
AC_ARG_WITH(debug,
AS_HELP_STRING([--with-debug],
[Print additional debug messages (default = no)]),
[AC_DEFINE([WHITEBOARD_DEBUG],[1],[Print debug messages])],
[with_debug=no]
)
AM_CONDITIONAL(SIB_DEBUG, test $with_debug = yes)
##############################################################################
# Check for CyberLink C & AV extension
##############################################################################
#[
# clinkc >= 1.0-21
# clinkcav >= 1.0-14
#])
#AC_SUBST(CLINKC_CFLAGS)
#AC_SUBST(CLINKC_LIBS)
##############################################################################
# Check for GNOME environment
##############################################################################
PKG_CHECK_MODULES(GNOME,
[
glib-2.0 >= 2.8.6
gobject-2.0 >= 2.8.6
gthread-2.0 >= 2.8.6
dbus-1 >= 0.61
])
AC_SUBST(GNOME_CFLAGS)
AC_SUBST(GNOME_LIBS)
PKG_CHECK_MODULES(LIBSIB,
[
libsib >= 2.0-beta1
libwhiteboard-util >= 2.0-beta1
libssap_parse_n_gen >= 2.0-beta1
])
AC_SUBST(LIBSIB_CFLAGS)
AC_SUBST(LIBSIB_LIBS)
AC_ARG_ENABLE(avahi,
AS_HELP_STRING([--enable-avahi],
[enable Avahi service discovery (default = no) NOTE: Not implemented yet!]),
[
if test $enableval = no; then
USE_AVAHI=no
else
USE_AVAHI=yes
AC_ERROR("Avahi support not yet implemented")
AC_DEFINE([AVAHI],[1],[Use Avahi servcie discovery])
PKG_CHECK_MODULES(AVAHI,
[
avahi-client >= 0.6.22
avahi-glib >= 0.6.22
avahi-gobject >= 0.6.22
])
AC_SUBST(AVAHI_CFLAGS)
AC_SUBST(AVAHI_LIBS)
fi
],[
USE_AVAHI=no
]
)
AM_CONDITIONAL(AVAHI, test $USE_AVAHI = yes)
##############################################################################
# Checks for typedefs, structures, and compiler characteristics.
##############################################################################
AC_C_CONST
AC_C_INLINE
AC_STRUCT_TM
##############################################################################
# Locale stuff
##############################################################################
AC_DEFINE_UNQUOTED([LOCALEDIR],
"${runtime_localedir}", [Runtime locale catalog files path])
##############################################################################
# Check compile target to be able to disable local player in emulator
##############################################################################
case $host in
i386-* | i686-*)
CFLAGS="$CFLAGS -Di686"
USE_i686=yes
USE_ARM=no
;;
arm-*)
CFLAGS="$CFLAGS -DARM"
USE_ARM=yes
USE_i686=no
;;
esac
AM_CONDITIONAL(ARM, test $USE_ARM = yes)
AM_CONDITIONAL(i686, test $USE_i686 = yes)
##############################################################################
# Files to create
##############################################################################
AC_OUTPUT(
Makefile
include/Makefile
src/Makefile
)