~ubuntu-branches/ubuntu/karmic/gnash/karmic

« back to all changes in this revision

Viewing changes to testsuite/libbase/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2008-10-13 14:29:49 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20081013142949-f6qdvnu4mn05ltdc
Tags: 0.8.4~~bzr9980-0ubuntu1
* new upstream release 0.8.4 (LP: #240325)
* ship new lib usr/lib/gnash/libmozsdk.so.* in mozilla-plugin-gnash
  - update debian/mozilla-plugin-gnash.install
* ship new lib usr/lib/gnash/libgnashnet.so.* in gnash-common
  - update debian/gnash-common.install
* add basic debian/build_head script to build latest CVS head packages.
  - add debian/build_head
* new sound architecture requires build depend on libsdl1.2-dev
  - update debian/control
* head build script now has been completely migrated to bzr (upstream +
  ubuntu)
  - update debian/build_head
* disable kde gui until klash/qt4 has been fixed; keep kde packages as empty
  packages for now.
  - update debian/rules
  - debian/klash.install
  - debian/klash.links
  - debian/klash.manpages
  - debian/konqueror-plugin-gnash.install
* drop libkonq5-dev build dependency accordingly
  - update debian/control
* don't install headers manually anymore. gnash doesnt provide a -dev
  package after all
  - update debian/rules
* update libs installed in gnash-common; libgnashserver-*.so is not available
  anymore (removed); in turn we add the new libgnashcore-*.so
  - update debian/gnash-common.install
* use -Os for optimization and properly pass CXXFLAGS=$(CFLAGS) to configure
  - update debian/rules
* touch firefox .autoreg in postinst of mozilla plugin
  - update debian/mozilla-plugin-gnash.postinst
* link gnash in ubufox plugins directory for the plugin alternative switcher
  - add debian/mozilla-plugin-gnash.links
* suggest ubufox accordingly
  - update debian/control
* add new required build-depends on libgif-dev
  - update debian/control
* add Xb-Npp-Description and Xb-Npp-File as new plugin database meta data
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
#   along with this program; if not, write to the Free Software
17
17
#   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 
19
 
 
20
 
#
21
 
 
22
19
AUTOMAKE_OPTIONS = dejagnu
23
20
 
24
21
LDADD = $(top_builddir)/libbase/libgnashbase.la 
25
22
 
26
23
# AM_CPPFLAGS isn't right here since per-program *_CPPFLAGS override global
27
24
# AM_CPPFLAGS
28
 
INCLUDES = -I.. \
29
 
        -I$(top_srcdir)  \
 
25
INCLUDES = \
30
26
        -I$(top_srcdir)/libbase \
31
 
        -I$(top_srcdir)/server  \
32
 
        -I$(top_srcdir)/libgeometry \
 
27
        -I$(top_srcdir)/libcore  \
33
28
        -I$(top_srcdir)/testsuite \
34
29
        $(MING_CFLAGS) \
35
30
        $(LIBXML_CFLAGS) \
39
34
 
40
35
abs_builddir=`(cd $(top_builddir)/testsuite/libbase; pwd)`
41
36
 
 
37
CLEANFILES = \
 
38
        testrun.sum \
 
39
        testrun.log \
 
40
        gnash-dbg.log \
 
41
        site.exp.bak \
 
42
        NoSeekFileTestCache \
 
43
        $(NULL)
 
44
 
42
45
check_PROGRAMS = \
43
46
        NoSeekFileTest \
44
47
        URLTest \
45
48
        RcTest \
46
49
        IntTypesTest \
 
50
        Point2dTest \
 
51
        snappingrangetest \
 
52
        Range2dTest \
 
53
        string_tableTest \
47
54
        $(NULL)
48
55
 
49
 
if CURL
50
 
check_PROGRAMS += CurlStreamTest
51
 
endif
52
 
 
53
 
CLEANFILES = \
54
 
      testrun.sum \
55
 
      testrun.log \
56
 
      gnash-dbg.log \
57
 
      site.exp.bak \
58
 
      NoSeekFileTestCache
59
 
 
60
 
CurlStreamTest_SOURCES = CurlStreamTest.cpp
61
 
CurlStreamTest_CPPFLAGS = '-DINPUT="$(srcdir)/CurlStreamTest.cpp"'
 
56
#if CURL
 
57
## This test needs an http server running to be useful
 
58
#check_PROGRAMS += CurlStreamTest
 
59
#CurlStreamTest_SOURCES = CurlStreamTest.cpp
 
60
#CurlStreamTest_CPPFLAGS = '-DINPUT="$(srcdir)/CurlStreamTest.cpp"'
 
61
#endif
62
62
 
63
63
NoSeekFileTest_SOURCES = NoSeekFileTest.cpp
64
64
NoSeekFileTest_CPPFLAGS = '-DINPUT="$(srcdir)/NoSeekFileTest.cpp"'
72
72
IntTypesTest_SOURCES = IntTypesTest.cpp
73
73
IntTypesTest_CPPFLAGS = -DSRCDIR="$(srcdir)"
74
74
 
 
75
# Test the Memory class
 
76
#memtest_SOURCES = memtest.cpp
 
77
 
 
78
Point2dTest_SOURCES = Point2dTest.cpp
 
79
Range2dTest_SOURCES = Range2dTest.cpp
 
80
snappingrangetest_SOURCES = snappingrangetest.cpp
 
81
 
75
82
# LogTest_SOURCES = TCXXLog.cpp
76
83
# LogTest_CPPFLAGS = '-DBUILDDIR="$(abs_builddir)"'
77
84
 
 
85
string_tableTest_SOURCES = string_tableTest.cpp
 
86
string_tableTest_CPPFLAGS = -DSRCDIR="$(srcdir)"
 
87
 
78
88
TEST_DRIVERS = ../simple.exp
79
89
TEST_CASES = \
80
 
        NoSeekFileTest \
81
 
        URLTest \
82
 
        RcTest \
 
90
        $(check_PROGRAMS) \
83
91
        $(NULL)
84
92
 
85
93
check-DEJAGNU: site-update $(TEST_CASES)