|
a/configure.ac |
|
b/configure.ac |
1 |
AC_INIT([libupnpp], [0.8.4], [jfd@lesbonscomptes.com],
|
1 |
AC_INIT([libupnpp], [0.8.5], [jfd@lesbonscomptes.com],
|
2 |
[libupnpp], [http://www.lesbonscomptes.com/upmpdcli])
|
2 |
[libupnpp], [http://www.lesbonscomptes.com/upmpdcli])
|
|
|
3 |
|
|
|
4 |
# Lib version info. See:
|
|
|
5 |
# https://www.sourceware.org/autobook/autobook/autobook_91.html#SEC91
|
|
|
6 |
# https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
|
|
|
7 |
# The Makefile uses both -release and -version-info: for now the lib
|
|
|
8 |
# interface is unstable and dependant packages should be updated every time
|
|
|
9 |
# the lib release changes. Once things are stabilized, we should drop the
|
|
|
10 |
# -release flag. Lib names for now: libupnpp-x.y.z.so.0.0.0
|
|
|
11 |
VERSION_INFO=0:0:0
|
|
|
12 |
|
3 |
AC_PREREQ([2.53])
|
13 |
AC_PREREQ([2.53])
|
4 |
AC_CONFIG_SRCDIR([libupnpp/upnpplib.hxx])
|
14 |
AC_CONFIG_SRCDIR([libupnpp/upnpplib.hxx])
|
5 |
AC_CONFIG_HEADERS([libupnpp/config.h])
|
15 |
AC_CONFIG_HEADERS([libupnpp/config.h])
|
|
|
16 |
|
6 |
|
17 |
|
7 |
AM_INIT_AUTOMAKE([1.10 no-define subdir-objects foreign])
|
18 |
AM_INIT_AUTOMAKE([1.10 no-define subdir-objects foreign])
|
8 |
AC_DISABLE_STATIC
|
19 |
AC_DISABLE_STATIC
|
9 |
LT_INIT
|
20 |
LT_INIT
|
10 |
|
21 |
|
|
... |
|
... |
31 |
LIBUPNPP_LIBS="$LIBS"
|
42 |
LIBUPNPP_LIBS="$LIBS"
|
32 |
|
43 |
|
33 |
LIBS=""
|
44 |
LIBS=""
|
34 |
|
45 |
|
35 |
AC_SUBST(LIBUPNPP_LIBS)
|
46 |
AC_SUBST(LIBUPNPP_LIBS)
|
|
|
47 |
AC_SUBST(VERSION_INFO)
|
36 |
|
48 |
|
37 |
AC_CONFIG_FILES([Makefile])
|
49 |
AC_CONFIG_FILES([Makefile])
|
38 |
AC_OUTPUT
|
50 |
AC_OUTPUT
|