blob: eb17cb1747d80e81af2de8e2276605acde3ed72c (
plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
Index: libbase/Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/libbase/Makefile.am,v
retrieving revision 1.28
diff -u -B -u -8 -p -r1.28 Makefile.am
--- libbase/Makefile.am 15 May 2006 22:24:24 -0000 1.28
+++ libbase/Makefile.am 28 May 2006 19:58:19 -0000
@@ -101,17 +101,18 @@ libgnashbase_la_SOURCES = \
utility.cpp \
curl_adapter.cpp \
zlib_adapter.cpp \
URL.cpp
libgnashbase_la_LIBADD = \
$(JPEG_LIBS) \
$(ZLIB_LIBS) \
- $(CURL_LIBS)
+ $(CURL_LIBS) \
+ $(OPENGL_LIBS)
noinst_HEADERS = \
container.h \
demo.h \
dlmalloc.h \
GnashException.h \
grid_index.h \
image.h \
Index: server/Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/server/Makefile.am,v
retrieving revision 1.46
diff -u -B -u -8 -p -r1.46 Makefile.am
--- server/Makefile.am 24 May 2006 19:01:12 -0000 1.46
+++ server/Makefile.am 28 May 2006 19:58:19 -0000
@@ -228,17 +228,18 @@ noinst_HEADERS = $(as_incls) \
swf/tag_loaders.h \
xmlsocket.h \
fn_call.h
libgnashserver_la_LIBADD = \
libgnashasobjs.la \
$(ZLIB_LIBS) \
$(LIBXML_LIBS) \
- $(MP3_LIBS)
+ $(MP3_LIBS) \
+ $(OPENGL_LIBS)
# $(OPENGL_LIBS) #
#libserver_la_LDFLAGS = -module -avoid-version -no-undefined
#libserver_la_LIBDADD = #@DL_LIB@ # $(LIBLTDL)
# Rebuild with GCC 4.x Mudflap support
mudflap:
@echo "Rebuilding with GCC Mudflap support"
|