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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
|
# -*- Autoconf -*-
AC_INIT
dnl versions of gstreamer and plugins-base
GST_MAJORMINOR=0.10
GST_REQUIRED=0.10.0
GSTPB_REQUIRED=0.10.0
dnl fill in your package name and version here
dnl the fourth (nano) number should be 0 for a release, 1 for git HEAD,
dnl and 2... for a prerelease
dnl when going to/from release please set the nano correctly !
dnl releases only do Wall, cvs and prerelease does Werror too
AS_VERSION(gst-plugins-pps, GST_PPS_VERSION, 0, 0, 10, 0,
GST_PPS_CVS="no", GST_PPS_CVS="yes")
dnl AM_MAINTAINER_MODE provides the option to enable maintainer mode
dnl AM_MAINTAINER_MODE
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
dnl make aclocal work in maintainer mode
AC_SUBST(ACLOCAL_AMFLAGS, "-I m4")
AM_CONFIG_HEADER(config.h)
dnl check for tools
AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_CXX
AC_PROG_AWK
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_RANLIB
AC_PROG_LIBTOOL
dnl Add the languages which your application supports to po/LINGUAS
GETTEXT_PACKAGE=ppstream
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, ["$GETTEXT_PACKAGE"], [Define to the Gettext package name])
AC_SUBST(GETTEXT_PACKAGE)
AM_GLIB_GNU_GETTEXT
IT_PROG_INTLTOOL([0.40.0])
# Checks for header files.
AC_CHECK_HEADERS([arpa/inet.h netinet/in.h stdint.h stdlib.h string.h sys/socket.h sys/time.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_INT64_T
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_TYPE_UINT16_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
AC_TYPE_UINT8_T
# Checks for library functions.
AC_FUNC_FORK
AC_FUNC_MALLOC
AC_CHECK_FUNCS([memset select socket strerror])
dnl decide on error flags
AS_COMPILER_FLAG(-Wall, GST_WALL="yes", GST_WALL="no")
if test "x$GST_WALL" = "xyes"; then
GST_ERROR="$GST_ERROR -Wall"
if test "x$GST_PPS_CVS" = "xyes"; then
AS_COMPILER_FLAG(-Werror,GST_ERROR="$GST_ERROR -Werror",GST_ERROR="$GST_ERROR")
fi
fi
dnl Check for pkgconfig first
AC_CHECK_PROG(HAVE_PKGCONFIG, pkg-config, yes, no)
dnl Give error and exit if we don't have pkgconfig
if test "x$HAVE_PKGCONFIG" = "xno"; then
AC_MSG_ERROR(you need to have pkgconfig installed !)
fi
dnl Now we're ready to ask for gstreamer libs and cflags
dnl And we can also ask for the right version of gstreamer
PKG_CHECK_MODULES(GST, \
gstreamer-$GST_MAJORMINOR >= $GST_REQUIRED,
HAVE_GST=yes,HAVE_GST=no)
dnl Give error and exit if we don't have gstreamer
if test "x$HAVE_GST" = "xno"; then
AC_MSG_ERROR(you need gstreamer development packages installed !)
fi
dnl append GST_ERROR cflags to GST_CFLAGS
GST_CFLAGS="$GST_CFLAGS $GST_ERROR"
dnl make GST_CFLAGS and GST_LIBS available
AC_SUBST(GST_CFLAGS)
AC_SUBST(GST_LIBS)
dnl make GST_MAJORMINOR available in Makefile.am
AC_SUBST(GST_MAJORMINOR)
dnl If we need them, we can also use the base class libraries
PKG_CHECK_MODULES(GST_BASE, gstreamer-base-$GST_MAJORMINOR >= $GST_REQUIRED,
HAVE_GST_BASE=yes, HAVE_GST_BASE=no)
dnl Give a warning if we don't have gstreamer libs
dnl you can turn this into an error if you need them
if test "x$HAVE_GST_BASE" = "xno"; then
AC_MSG_NOTICE(no GStreamer base class libraries found (gstreamer-base-$GST_MAJORMINOR))
fi
dnl make _CFLAGS and _LIBS available
AC_SUBST(GST_BASE_CFLAGS)
AC_SUBST(GST_BASE_LIBS)
dnl If we need them, we can also use the gstreamer-plugins-base libraries
PKG_CHECK_MODULES(GSTPB_BASE,
gstreamer-plugins-base-$GST_MAJORMINOR >= $GSTPB_REQUIRED,
HAVE_GSTPB_BASE=yes, HAVE_GSTPB_BASE=no)
dnl Give a warning if we don't have gstreamer libs
dnl you can turn this into an error if you need them
if test "x$HAVE_GSTPB_BASE" = "xno"; then
AC_MSG_NOTICE(no GStreamer Plugins Base libraries found (gstreamer-plugins-base-$GST_MAJORMINOR))
fi
dnl make _CFLAGS and _LIBS available
AC_SUBST(GSTPB_BASE_CFLAGS)
AC_SUBST(GSTPB_BASE_LIBS)
dnl If we need them, we can also use the gstreamer-controller libraries
PKG_CHECK_MODULES(GSTCTRL,
gstreamer-controller-$GST_MAJORMINOR >= $GSTPB_REQUIRED,
HAVE_GSTCTRL=yes, HAVE_GSTCTRL=no)
dnl Give a warning if we don't have gstreamer-controller
dnl you can turn this into an error if you need them
if test "x$HAVE_GSTCTRL" = "xno"; then
AC_MSG_NOTICE(no GStreamer Controller libraries found (gstreamer-controller-$GST_MAJORMINOR))
fi
dnl make _CFLAGS and _LIBS available
AC_SUBST(GSTCTRL_CFLAGS)
AC_SUBST(GSTCTRL_LIBS)
dnl set the plugindir where plugins should be installed
if test "x${prefix}" = "x$HOME"; then
ppsdir="$HOME/.gstreamer-$GST_MAJORMINOR/plugins"
else
ppsdir="\$(libdir)/gstreamer-$GST_MAJORMINOR"
fi
AC_SUBST(ppsdir)
dnl set proper LDFLAGS for plugins
GST_PPS_LDFLAGS='-module -avoid-version -export-symbols-regex [_]*\(gst_\|Gst\|GST_\).*'
AC_SUBST(GST_PPS_LDFLAGS)
AC_ARG_ENABLE(wrapper,
AS_HELP_STRING([--disable-wrapper],
[Do not use wrapper]),
[use_wrapper=$enableval],
[use_wrapper=auto])
savedLDFLAGS=$LDFLAGS
savedLIB=$LIBS
AC_LANG(C++)
PPS_DEP_LIBS='-lppsbase -lppssg -lppsvodres -lppsfds -lppsvodnet'
LIBS="-lppsapi $PPS_DEP_LIBS $LIBS"
PPS_LIBS=
PPS32_LIBS=
WRAPPER_LDFLAGS="-pthread -lppsapi $PPS_DEP_LIBS"
WRAPPER_CFLAGS="-pthread"
AC_MSG_CHECKING([whether pps libraris is available])
AC_LINK_IFELSE(AC_LANG_CALL([], ppsvod_create),
[AC_MSG_RESULT(yes)
HAVE_PPS="yes"],
[AC_MSG_RESULT(no)
HAVE_PPS="no"])
if test "x$HAVE_PPS" = "xyes"; then
PPS_LIBS="-lppsapi $PPS_DEP_LIBS"
# AC_DEFINE_UNQUOTED(HAVE_LIBPPS)
else
AC_MSG_CHECKING([whether pps 32bit libraris is available])
saved32LDFLAGS=$LDFLAGS
LDFLAGS="-m32 $LDFLAGS"
AC_LINK_IFELSE(AC_LANG_CALL([], ppsvod_destroy),
[ HAVE_PPS32="yes"
AC_MSG_RESULT(yes)],
[ HAVE_PPS32="no"
AC_MSG_RESULT(no)])
if test "x$HAVE_PPS32" = "xyes"; then
PPS32_LIBS="-lppsapi $PPS_DEP_LIBS"
else
AC_MSG_ERROR(['couldn't find pps libraries.])
fi
LDFLAGS=$saved32LDFLAGS
WRAPPER_CFLAGS="-m32 $WRAPPER_CFLAGS"
WRAPPER_LDFLAGS="-m32 $WRAPPER_LDFLAGS"
use_wrapper=yes
# AC_DEFINE_UNQUOTED(HAVE_LIBPPS32)
fi
LDFLAGS=$savedLDFLAGS
LIBS=$savedLIB
AC_LANG(C)
AC_SUBST(WRAPPER_LDFLAGS)
AC_SUBST(WRAPPER_CFLAGS)
AM_CONDITIONAL(USE_PPSWRAPPER, [test "x$use_wrapper" != "xno"])
dnl ================================================================
dnl Totem plugins
dnl ================================================================
PLUGINDIR='${libdir}/totem/plugins'
AC_SUBST(PLUGINDIR)
AC_MSG_CHECKING([whether Totem plugin support is requested])
AC_ARG_ENABLE([totem],
AS_HELP_STRING([--enable-totem],[Enable totem support]),
[enable_totem=$enableval have_totem=$enableval],
[enable_totem=autodetect have_totem=yes])
AC_MSG_RESULT([$enable_totem])
if test "x$have_totem" != "xno"; then
AM_PATH_PYTHON([2.3],[],[have_totem=no])
if test "x$PYTHON" = "x:"; then
have_totem=no
fi
fi
AC_OUTPUT(Makefile
m4/Makefile
src/Makefile
po/Makefile.in
wrapper/Makefile
totem/Makefile
totem/plugin/Makefile)
|