forked from SIPfoundry/legacy-sipxecs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
configure.ac
34 lines (28 loc) · 956 Bytes
/
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
# Initial Version Copyright (C) 2010 eZuce, Inc., All Rights Reserved.
# Licensed to the User under the LGPL license.
#
#
AC_PREREQ(2.57)
AC_INIT(sipX, 0.0.4.5.2, [email protected])
# Pass standard and sipxecs common params to ./configure switches on all sub-projects.
# Doesn't have to handle ./configure vars like SIPX_PBXUSER because those
# can be passed handled
OPTIONS=
for a in $@; do
case $a in
--prefix*)OPTIONS+=" $a" ;;
esac
done
AC_SUBST(OPTIONS)
m4_include([config/autoconf-2.66.m4])
m4_include([config/sipXlib2.m4])
m4_include([mak/opensuse-build-service.m4])
m4_include([mak/rpm.m4])
m4_include([mak/centos-iso.m4])
m4_sinclude([custom/custom.m4])
AC_CONFIG_FILES([Makefile])
AC_CONFIG_FILES([mak/00-modules.mk:mak/modules.mk.in])
AC_CONFIG_FILES([mak/01-app.mk:mak/app.mk.in])
AC_CONFIG_FILES([mak/05-build.mk:mak/build.mk.in])
AC_CONFIG_FILES([mak/20-list-dependencies.mk:mak/list-dependencies.mk.in])
AC_OUTPUT