gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog backend/Makefile.am gui/Makefil... [relea


From: Markus Gothe
Subject: [Gnash-commit] gnash ChangeLog backend/Makefile.am gui/Makefil... [release_0_7_2]
Date: Fri, 10 Nov 2006 22:01:43 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Branch:         release_0_7_2
Changes by:     Markus Gothe <nihilus>  06/11/10 22:01:42

Modified files:
        .              : ChangeLog 
        backend        : Makefile.am 
        gui            : Makefile.am 
        libamf         : Makefile.am 
        libbase        : Makefile.am 
        libgeometry    : Makefile.am 
        server         : Makefile.am 
        server/asobj   : Makefile.am 
        server/parser  : Makefile.am 
        utilities      : Makefile.am 

Log message:
        Added _la_LDFLAGS = -release @address@hidden

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&only_with_tag=release_0_7_2&r1=1.1412.2.143&r2=1.1412.2.144
http://cvs.savannah.gnu.org/viewcvs/gnash/backend/Makefile.am?cvsroot=gnash&only_with_tag=release_0_7_2&r1=1.44.2.1&r2=1.44.2.2
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/Makefile.am?cvsroot=gnash&only_with_tag=release_0_7_2&r1=1.39.2.8&r2=1.39.2.9
http://cvs.savannah.gnu.org/viewcvs/gnash/libamf/Makefile.am?cvsroot=gnash&only_with_tag=release_0_7_2&r1=1.16.2.1&r2=1.16.2.2
http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/Makefile.am?cvsroot=gnash&only_with_tag=release_0_7_2&r1=1.45.2.1&r2=1.45.2.2
http://cvs.savannah.gnu.org/viewcvs/gnash/libgeometry/Makefile.am?cvsroot=gnash&only_with_tag=release_0_7_2&r1=1.19.2.1&r2=1.19.2.2
http://cvs.savannah.gnu.org/viewcvs/gnash/server/Makefile.am?cvsroot=gnash&only_with_tag=release_0_7_2&r1=1.80.2.3&r2=1.80.2.4
http://cvs.savannah.gnu.org/viewcvs/gnash/server/asobj/Makefile.am?cvsroot=gnash&only_with_tag=release_0_7_2&r1=1.12.2.1&r2=1.12.2.2
http://cvs.savannah.gnu.org/viewcvs/gnash/server/parser/Makefile.am?cvsroot=gnash&only_with_tag=release_0_7_2&r1=1.10.2.1&r2=1.10.2.2
http://cvs.savannah.gnu.org/viewcvs/gnash/utilities/Makefile.am?cvsroot=gnash&only_with_tag=release_0_7_2&r1=1.34.2.1&r2=1.34.2.2

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.1412.2.143
retrieving revision 1.1412.2.144
diff -u -b -r1.1412.2.143 -r1.1412.2.144
--- ChangeLog   9 Nov 2006 22:46:55 -0000       1.1412.2.143
+++ ChangeLog   10 Nov 2006 22:01:42 -0000      1.1412.2.144
@@ -1,3 +1,10 @@
+2006-11-10 Markus Gothe <address@hidden>
+
+       * backend/Makefile.am, gui/Makefile.am, libamf/Makefile.am, 
+       libbase/Makefile.am, libgeometry/Makefile.am, server/Makefile.am,
+       server/asobj/Makefile.am, server/parser/Makefile.am,
+       utilities/Makefile.am: Added _la_LDFLAGS = -release @address@hidden
+
 2006-11-09 Sandro Santilli <address@hidden>
 
        * utilities/processor.cpp: call gnash::clear() as last step to help

Index: backend/Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/backend/Makefile.am,v
retrieving revision 1.44.2.1
retrieving revision 1.44.2.2
diff -u -b -r1.44.2.1 -r1.44.2.2
--- backend/Makefile.am 4 Nov 2006 03:07:24 -0000       1.44.2.1
+++ backend/Makefile.am 10 Nov 2006 22:01:42 -0000      1.44.2.2
@@ -113,11 +113,12 @@
        $(RENDER_SOURCES) \
        $(SOUND_SOURCES)
 
-MUDFLAP_OPT = -fmudflap
-MUDFLAP_LIB =  /usr/local/lib/libmudflap.so
+libgnashbackend_la_LDFLAGS = -release @VERSION@
 
 # Rebuild with GCC 4.x Mudflap support
 mudflap:
        @echo "Rebuilding with GCC Mudflap support"
-       $(MAKE) CXXFLAGS="$(CXXFLAGS) $(MUDFLAP_OPT)" LIBS="$(LIBS) 
$(MUDFLAP_LIB)"
+       $(MAKE) CXXFLAGS="$(CXXFLAGS) -fmudflap" LDFLAGS="$(LDFLAGS) -lmudflap"
 
+clean-hook:
+       -rm -f core.*

Index: gui/Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/gui/Makefile.am,v
retrieving revision 1.39.2.8
retrieving revision 1.39.2.9
diff -u -b -r1.39.2.8 -r1.39.2.9
--- gui/Makefile.am     6 Nov 2006 01:05:08 -0000       1.39.2.8
+++ gui/Makefile.am     10 Nov 2006 22:01:42 -0000      1.39.2.9
@@ -17,7 +17,7 @@
 
 # 
 
-# $Id: Makefile.am,v 1.39.2.8 2006/11/06 01:05:08 rsavoye Exp $
+# $Id: Makefile.am,v 1.39.2.9 2006/11/10 22:01:42 nihilus Exp $
 
 AUTOMAKE_OPTIONS = 
 
@@ -230,7 +230,7 @@
 #guitest_SOURCES = guitest.cpp #fltk.cpp #fltksup.h fltksupp.h gnash.cpp 
gtk.cpp 
 #      gtksup.h gui.cpp gui.h menu.cpp menu.h sdl.cpp sdlsup.h [21~sdlsupp.h
 #guitest_LDADD = $(gnash_LDADD)
-
+libgnashgui_la_LDFLAGS = -release @VERSION@
 
 # Rebuild with GCC 4.x Mudflap support
 mudflap:

Index: libamf/Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/libamf/Makefile.am,v
retrieving revision 1.16.2.1
retrieving revision 1.16.2.2
diff -u -b -r1.16.2.1 -r1.16.2.2
--- libamf/Makefile.am  30 Oct 2006 14:28:47 -0000      1.16.2.1
+++ libamf/Makefile.am  10 Nov 2006 22:01:42 -0000      1.16.2.2
@@ -18,7 +18,7 @@
 # 
 #
 
-# $Id: Makefile.am,v 1.16.2.1 2006/10/30 14:28:47 rsavoye Exp $
+# $Id: Makefile.am,v 1.16.2.2 2006/11/10 22:01:42 nihilus Exp $
 
 AUTOMAKE_OPTIONS = 
 
@@ -41,6 +41,7 @@
 
 lib_LTLIBRARIES = libgnashamf.la
 libgnashamf_la_SOURCES = amf.cpp rtmp.cpp
+libgnashamf_la_LDFLAGS = -release @VERSION@
 # noinst_HEADERS = amf.h amfutf8.h
 
 INCLUDES = -I.. -I$(srcdir) \

Index: libbase/Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/libbase/Makefile.am,v
retrieving revision 1.45.2.1
retrieving revision 1.45.2.2
diff -u -b -r1.45.2.1 -r1.45.2.2
--- libbase/Makefile.am 30 Oct 2006 14:28:47 -0000      1.45.2.1
+++ libbase/Makefile.am 10 Nov 2006 22:01:42 -0000      1.45.2.2
@@ -125,6 +125,7 @@
 
 #libbase_la_LDFLAGS = -module -avoid-version -no-undefined
 #libbase_la_LIBDADD =  address@hidden@  # $(LIBLTDL)
+libgnashbase_la_LDFLAGS = -release @VERSION@
 
 # We use our own rule to build the demo so it isn't built by default.
 # Since it doesn't contain a main() routine, we only try to compile,

Index: libgeometry/Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/libgeometry/Makefile.am,v
retrieving revision 1.19.2.1
retrieving revision 1.19.2.2
diff -u -b -r1.19.2.1 -r1.19.2.2
--- libgeometry/Makefile.am     30 Oct 2006 14:28:47 -0000      1.19.2.1
+++ libgeometry/Makefile.am     10 Nov 2006 22:01:42 -0000      1.19.2.2
@@ -18,7 +18,7 @@
 # 
 #
 
-# $Id: Makefile.am,v 1.19.2.1 2006/10/30 14:28:47 rsavoye Exp $
+# $Id: Makefile.am,v 1.19.2.2 2006/11/10 22:01:42 nihilus Exp $
 
 AUTOMAKE_OPTIONS = 
 
@@ -66,6 +66,7 @@
 #libgeometry_la_LDFLAGS = -module -avoid-version -no-undefined
 #libgeometry_la_LIBDADD =  address@hidden@  # $(LIBLTDL)
 libgnashgeo_la_LIBADD = $(top_builddir)/libbase/libgnashbase.la
+libgnashgeo_la_LDFLAGS = -release @VERSION@
 
 # Rebuild with GCC 4.x Mudflap support
 mudflap:

Index: server/Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/server/Makefile.am,v
retrieving revision 1.80.2.3
retrieving revision 1.80.2.4
diff -u -b -r1.80.2.3 -r1.80.2.4
--- server/Makefile.am  4 Nov 2006 03:07:24 -0000       1.80.2.3
+++ server/Makefile.am  10 Nov 2006 22:01:42 -0000      1.80.2.4
@@ -18,7 +18,7 @@
 # 
 #
 
-# $Id: Makefile.am,v 1.80.2.3 2006/11/04 03:07:24 rsavoye Exp $
+# $Id: Makefile.am,v 1.80.2.4 2006/11/10 22:01:42 nihilus Exp $
 
 AUTOMAKE_OPTIONS = 
 
@@ -170,6 +170,7 @@
 
 #libserver_la_LDFLAGS = -module -avoid-version -no-undefined
 #libserver_la_LIBDADD =  address@hidden@  # $(LIBLTDL)
+libgnashserver_la_LDFLAGS = -release @VERSION@
 
 # Rebuild with GCC 4.x Mudflap support
 mudflap:

Index: server/asobj/Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/server/asobj/Makefile.am,v
retrieving revision 1.12.2.1
retrieving revision 1.12.2.2
diff -u -b -r1.12.2.1 -r1.12.2.2
--- server/asobj/Makefile.am    30 Oct 2006 14:28:49 -0000      1.12.2.1
+++ server/asobj/Makefile.am    10 Nov 2006 22:01:42 -0000      1.12.2.2
@@ -18,7 +18,7 @@
 # 
 #
 
-# $Id: Makefile.am,v 1.12.2.1 2006/10/30 14:28:49 rsavoye Exp $
+# $Id: Makefile.am,v 1.12.2.2 2006/11/10 22:01:42 nihilus Exp $
 
 AUTOMAKE_OPTIONS = 
 
@@ -111,6 +111,8 @@
        $(top_builddir)/libamf/libgnashamf.la \
        $(top_builddir)/libbase/libgnashbase.la
 
+libgnashasobjs_la_LDFLAGS = -release @VERSION@
+
 # Rebuild with GCC 4.x Mudflap support
 mudflap:
        @echo "Rebuilding with GCC Mudflap support"

Index: server/parser/Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/server/parser/Makefile.am,v
retrieving revision 1.10.2.1
retrieving revision 1.10.2.2
diff -u -b -r1.10.2.1 -r1.10.2.2
--- server/parser/Makefile.am   30 Oct 2006 14:28:54 -0000      1.10.2.1
+++ server/parser/Makefile.am   10 Nov 2006 22:01:42 -0000      1.10.2.2
@@ -18,7 +18,7 @@
 # 
 #
 
-# $Id: Makefile.am,v 1.10.2.1 2006/10/30 14:28:54 rsavoye Exp $
+# $Id: Makefile.am,v 1.10.2.2 2006/11/10 22:01:42 nihilus Exp $
 
 AUTOMAKE_OPTIONS = 
 
@@ -81,6 +81,8 @@
 libgnashparser_la_LIBADD = \
        $(top_builddir)/libbase/libgnashbase.la 
 
+libgnashparser_la_LDFLAGS = -release @VERSION@
+
 # Rebuild with GCC 4.x Mudflap support
 mudflap:
        @echo "Rebuilding with GCC Mudflap support"
@@ -88,4 +90,3 @@
 
 clean-hook:
        -rm -f core.*
-

Index: utilities/Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/utilities/Makefile.am,v
retrieving revision 1.34.2.1
retrieving revision 1.34.2.2
diff -u -b -r1.34.2.1 -r1.34.2.2
--- utilities/Makefile.am       4 Nov 2006 03:07:24 -0000       1.34.2.1
+++ utilities/Makefile.am       10 Nov 2006 22:01:42 -0000      1.34.2.2
@@ -69,11 +69,10 @@
 dumpshm_LDADD = $(GNASH_LIBS)
 #gparser_LDFLAGS = $(AM_LDFLAGS)
 
-MUDFLAP_OPT = -fmudflap
-MUDFLAP_LIB =  /usr/local/lib/libmudflap.so
-
 # Rebuild with GCC 4.x Mudflap support
 mudflap:
        @echo "Rebuilding with GCC Mudflap support"
-       $(MAKE) CXXFLAGS="$(CXXFLAGS) $(MUDFLAP_OPT)" LIBS="$(LIBS) 
$(MUDFLAP_LIB)"
+       $(MAKE) CXXFLAGS="$(CXXFLAGS) -fmudflap" LDFLAGS="$(LDFLAGS) -lmudflap"
 
+clean-hook:
+       -rm -f core.*




reply via email to

[Prev in Thread] Current Thread [Next in Thread]