|
a/Makefile.am |
|
b/Makefile.am |
1 |
|
1 |
|
2 |
AM_CPPFLAGS = -DDEBUG -g -Wall \
|
2 |
AM_CPPFLAGS = -DDEBUG -g -Wall \
|
3 |
-DDATADIR=\"${pkgdatadir}\" -DCONFIGDIR=\"${sysconfdir}\"
|
3 |
-DDATADIR=\"${pkgdatadir}\" -DCONFIGDIR=\"${sysconfdir}\"
|
4 |
|
4 |
|
5 |
AM_CXXFLAGS = -std=c++0x
|
5 |
AM_CXXFLAGS = -std=c++11
|
6 |
|
6 |
|
7 |
lib_LTLIBRARIES = libupnpp.la
|
7 |
lib_LTLIBRARIES = libupnpp.la
|
8 |
|
8 |
|
9 |
libupnpp_la_SOURCES = \
|
9 |
libupnpp_la_SOURCES = \
|
10 |
libupnpp/control/avlastchg.cxx \
|
10 |
libupnpp/control/avlastchg.cxx \
|
|
... |
|
... |
58 |
libupnpp/expatmm.hxx \
|
58 |
libupnpp/expatmm.hxx \
|
59 |
libupnpp/getsyshwaddr.c \
|
59 |
libupnpp/getsyshwaddr.c \
|
60 |
libupnpp/getsyshwaddr.h \
|
60 |
libupnpp/getsyshwaddr.h \
|
61 |
libupnpp/ixmlwrap.cxx \
|
61 |
libupnpp/ixmlwrap.cxx \
|
62 |
libupnpp/ixmlwrap.hxx \
|
62 |
libupnpp/ixmlwrap.hxx \
|
63 |
libupnpp/log.cxx \
|
63 |
libupnpp/log.cpp \
|
|
|
64 |
libupnpp/log.h \
|
64 |
libupnpp/log.hxx \
|
65 |
libupnpp/log.hxx \
|
65 |
libupnpp/md5.cxx \
|
66 |
libupnpp/md5.cxx \
|
66 |
libupnpp/md5.hxx \
|
67 |
libupnpp/md5.hxx \
|
67 |
libupnpp/ptmutex.hxx \
|
68 |
libupnpp/ptmutex.hxx \
|
68 |
libupnpp/workqueue.hxx \
|
69 |
libupnpp/smallut.cpp \
|
|
|
70 |
libupnpp/smallut.h \
|
69 |
libupnpp/soaphelp.cxx \
|
71 |
libupnpp/soaphelp.cxx \
|
70 |
libupnpp/soaphelp.hxx \
|
72 |
libupnpp/soaphelp.hxx \
|
71 |
libupnpp/upnpavutils.cxx \
|
73 |
libupnpp/upnpavutils.cxx \
|
72 |
libupnpp/upnpavutils.hxx \
|
74 |
libupnpp/upnpavutils.hxx \
|
73 |
libupnpp/upnpp_p.hxx \
|
75 |
libupnpp/upnpp_p.hxx \
|
74 |
libupnpp/upnpplib.cxx \
|
76 |
libupnpp/upnpplib.cxx \
|
75 |
libupnpp/upnpplib.hxx \
|
77 |
libupnpp/upnpplib.hxx \
|
76 |
libupnpp/workqueue.hxx
|
78 |
libupnpp/workqueue.h
|
77 |
|
79 |
|
78 |
nobase_include_HEADERS = \
|
80 |
nobase_include_HEADERS = \
|
79 |
libupnpp/base64.hxx \
|
81 |
libupnpp/base64.hxx \
|
80 |
libupnpp/conf_post.h \
|
82 |
libupnpp/conf_post.h \
|
81 |
libupnpp/config.h \
|
83 |
libupnpp/config.h \
|
|
... |
|
... |
97 |
libupnpp/control/ohtime.hxx \
|
99 |
libupnpp/control/ohtime.hxx \
|
98 |
libupnpp/control/ohvolume.hxx \
|
100 |
libupnpp/control/ohvolume.hxx \
|
99 |
libupnpp/control/renderingcontrol.hxx \
|
101 |
libupnpp/control/renderingcontrol.hxx \
|
100 |
libupnpp/control/service.hxx \
|
102 |
libupnpp/control/service.hxx \
|
101 |
libupnpp/device/device.hxx \
|
103 |
libupnpp/device/device.hxx \
|
|
|
104 |
libupnpp/log.h \
|
102 |
libupnpp/log.hxx \
|
105 |
libupnpp/log.hxx \
|
103 |
libupnpp/ptmutex.hxx \
|
106 |
libupnpp/ptmutex.hxx \
|
104 |
libupnpp/soaphelp.hxx \
|
107 |
libupnpp/soaphelp.hxx \
|
105 |
libupnpp/upnpavutils.hxx \
|
108 |
libupnpp/upnpavutils.hxx \
|
106 |
libupnpp/upnpplib.hxx \
|
109 |
libupnpp/upnpplib.hxx \
|
107 |
libupnpp/upnpputils.hxx \
|
110 |
libupnpp/upnpputils.hxx \
|
108 |
libupnpp/workqueue.hxx
|
111 |
libupnpp/workqueue.h
|
109 |
|
112 |
|
110 |
libupnpp_la_LDFLAGS = -version-info $(VERSION_INFO)
|
113 |
libupnpp_la_LDFLAGS = -version-info $(VERSION_INFO)
|
111 |
|
114 |
|
112 |
libupnpp_la_LIBADD = $(LIBUPNPP_LIBS)
|
115 |
libupnpp_la_LIBADD = $(LIBUPNPP_LIBS)
|
113 |
|
116 |
|