~ubuntu-branches/ubuntu/precise/gnash/precise-proposed

« back to all changes in this revision

Viewing changes to .pc/release_version/cygnal/libnet/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Angel Abad, Angel Abad, Micah Gersten
  • Date: 2010-11-28 22:18:48 UTC
  • mfrom: (3.1.10 sid)
  • Revision ID: james.westby@ubuntu.com-20101128221848-apjipwy78m13612a
Tags: 0.8.8-6ubuntu1
[ Angel Abad <angelabad@ubuntu.com> ]
* Merge from debian unstable (LP: #682386). Remaining changes:
  - Add Ubuntu flash alternatives in postinst and prerm
    + update debian/browser-plugin-gnash.postinst
    + update debian/browser-plugin-gnash.prerm

[ Micah Gersten <micahg@ubuntu.com> ]
* Only install the flash alternative in /usr/lib/mozilla/plugins as the other
  locations are deprecated
  - update debian/browser-plugin-gnash.postinst

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
2
#   Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
 
3
#
 
4
#   This program is free software; you can redistribute it and/or modify
 
5
#   it under the terms of the GNU General Public License as published by
 
6
#   the Free Software Foundation; either version 3 of the License, or
 
7
#   (at your option) any later version.
 
8
#
 
9
#   This program is distributed in the hope that it will be useful,
 
10
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
#   GNU General Public License for more details.
 
13
#
 
14
#   You should have received a copy of the GNU General Public License
 
15
#   along with this program; if not, write to the Free Software
 
16
#   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
17
#
 
18
 
 
19
## Process this file with automake to generate Makefile.in
 
20
 
 
21
AUTOMAKE_OPTIONS = dejagnu
 
22
 
 
23
pkglib_LTLIBRARIES = libgnashnet.la
 
24
 
 
25
AM_LDFLAGS = \
 
26
        $(top_builddir)/libbase/libgnashbase.la \
 
27
        ../libamf/libgnashamf.la \
 
28
        $(SSH_LIBS) \
 
29
        $(SSL_LIBS) \
 
30
        $(GLIB_LIBS) \
 
31
        $(CURL_LIBS) \
 
32
        $(LIBADD_DL) \
 
33
        $(BOOST_LIBS) \
 
34
        $(PTHREAD_LIBS) \
 
35
        $(NULL)
 
36
 
 
37
localedir = $(datadir)/locale
 
38
 
 
39
INCLUDES = \
 
40
        -I$(top_srcdir)/cygnal/libamf \
 
41
        -I$(top_srcdir)/cygnal/libnet \
 
42
        -I$(top_srcdir)/libbase \
 
43
        -I$(top_srcdir)/libcore \
 
44
        -DLOCALEDIR=\"$(localedir)\" \
 
45
        $(SSL_CFLAGS) \
 
46
        $(SSH_CFLAGS) \
 
47
        $(CURL_CFLAGS) \
 
48
        $(BOOST_CFLAGS) \
 
49
        $(PTHREAD_CFLAGS) \
 
50
        $(NULL)
 
51
 
 
52
noinst_HEADERS = \
 
53
        cque.h \
 
54
        lirc.h \
 
55
        http.h \
 
56
        network.h \
 
57
        netstats.h \
 
58
        rtmp.h \
 
59
        rtmp_msg.h \
 
60
        rtmp_client.h \
 
61
        statistics.h \
 
62
        diskstream.h \
 
63
        cache.h
 
64
 
 
65
libgnashnet_la_SOURCES = \
 
66
        cque.cpp \
 
67
        lirc.cpp \
 
68
        http.cpp \
 
69
        network.cpp \
 
70
        netstats.cpp \
 
71
        rtmp.cpp \
 
72
        rtmp_msg.cpp \
 
73
        rtmp_client.cpp \
 
74
        statistics.cpp \
 
75
        diskstream.cpp \
 
76
        cache.cpp
 
77
 
 
78
if BUILD_SSL
 
79
libgnashnet_la_SOURCES += sslclient.cpp sslserver.cpp
 
80
noinst_HEADERS += sslclient.h sslserver.h
 
81
endif
 
82
 
 
83
if BUILD_SSH
 
84
libgnashnet_la_SOURCES += sshclient.cpp sshserver.cpp
 
85
noinst_HEADERS += sshclient.h sshserver.h
 
86
endif
 
87
 
 
88
if WIN32
 
89
  AM_LDFLAGS += -no-undefined
 
90
endif
 
91
 
 
92
if ENABLE_PCH
 
93
AM_CXXFLAGS = $(PCH_FLAGS)
 
94
endif
 
95
 
 
96
# Rebuild with GCC 4.x Mudflap support
 
97
mudflap:
 
98
        @echo "Rebuilding with GCC Mudflap support"
 
99
        $(MAKE) CXXFLAGS="$(CXXFLAGS) $(MUDFLAP_OPT)" LIBS="$(LIBS) $(MUDFLAP_LIB)"