Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 156877 Details for
Bug 227163
app-misc/graphlcd-base-0.1.5-r1 doesn't respect user LDFLAGS
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
graphlcd-base-0.1.5-ldflags.patch
graphlcd-base-0.1.5-ldflags.patch (text/plain), 7.25 KB, created by
Peter Alfredsen (RETIRED)
on 2008-06-15 12:35:46 UTC
(
hide
)
Description:
graphlcd-base-0.1.5-ldflags.patch
Filename:
MIME Type:
Creator:
Peter Alfredsen (RETIRED)
Created:
2008-06-15 12:35:46 UTC
Size:
7.25 KB
patch
obsolete
>diff -NrU5 graphlcd-base-0.1.5.orig/glcddrivers/Makefile graphlcd-base-0.1.5/glcddrivers/Makefile >--- graphlcd-base-0.1.5.orig/glcddrivers/Makefile 2008-06-15 13:47:31.000000000 +0200 >+++ graphlcd-base-0.1.5/glcddrivers/Makefile 2008-06-15 14:15:29.000000000 +0200 >@@ -20,11 +20,11 @@ > > > ### Implicit rules: > > %.o: %.c >- $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< >+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< > > # Dependencies: > > MAKEDEP = g++ -MM -MG > DEPFILE = .dependencies >@@ -36,11 +36,11 @@ > ### Targets: > > all: $(LIBNAME) > > $(LIBNAME): $(OBJS) >- $(CXX) $(CXXFLAGS) -shared $(OBJS) $(LIBS) -ldl -lpthread -Wl,-soname="$(BASENAME).$(VERMAJOR)" -o $@ >+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) $(LIBS) -ldl -lpthread -Wl,-soname="$(BASENAME).$(VERMAJOR)" -o $@ > ln -sf $(LIBNAME) $(BASENAME) > > install: all > install -d $(LIBDIR) > install -m 755 $(LIBNAME) $(LIBDIR)/ >diff -NrU5 graphlcd-base-0.1.5.orig/glcdgraphics/Makefile graphlcd-base-0.1.5/glcdgraphics/Makefile >--- graphlcd-base-0.1.5.orig/glcdgraphics/Makefile 2008-06-15 13:47:31.000000000 +0200 >+++ graphlcd-base-0.1.5/glcdgraphics/Makefile 2008-06-15 14:16:07.000000000 +0200 >@@ -19,11 +19,11 @@ > HEADERS = bitmap.h font.h glcd.h image.h imagefile.h pbm.h > > ### Implicit rules: > > %.o: %.c >- $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< >+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< > > # Dependencies: > > MAKEDEP = g++ -MM -MG > DEPFILE = .dependencies >@@ -44,11 +44,11 @@ > endif### Targets: > > all: $(LIBNAME) > > $(LIBNAME): $(OBJS) >- $(CXX) $(CXXFLAGS) -shared $(OBJS) $(LIBS) -Wl,-soname="$(BASENAME).$(VERMAJOR)" -o $@ >+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) $(LIBS) -Wl,-soname="$(BASENAME).$(VERMAJOR)" -o $@ > ln -sf $(LIBNAME) $(BASENAME) > > install: all > install -d $(LIBDIR) > install -m 755 $(LIBNAME) $(LIBDIR)/ >diff -NrU5 graphlcd-base-0.1.5.orig/tools/convpic/Makefile graphlcd-base-0.1.5/tools/convpic/Makefile >--- graphlcd-base-0.1.5.orig/tools/convpic/Makefile 2008-06-15 13:47:31.000000000 +0200 >+++ graphlcd-base-0.1.5/tools/convpic/Makefile 2008-06-15 14:16:32.000000000 +0200 >@@ -16,11 +16,11 @@ > .PHONY: all > > # Implicit rules: > > %.o: %.c >- $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< >+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< > > # Dependencies: > > MAKEDEP = $(CXX) -MM -MG > DEPFILE = .dependencies >@@ -30,11 +30,11 @@ > -include $(DEPFILE) > > # The main program: > > $(PRGNAME): $(OBJS) >- $(CXX) $(CXXFLAGS) -rdynamic $(OBJS) $(LIBS) $(LIBDIRS) -lglcdgraphics -lstdc++ -o $(PRGNAME) >+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -rdynamic $(OBJS) $(LIBS) $(LIBDIRS) -lglcdgraphics -lstdc++ -o $(PRGNAME) > > install: $(PRGNAME) > install -d $(BINDIR) > install -m 755 -o root -g root $(PRGNAME) $(BINDIR) > >diff -NrU5 graphlcd-base-0.1.5.orig/tools/crtfont/Makefile graphlcd-base-0.1.5/tools/crtfont/Makefile >--- graphlcd-base-0.1.5.orig/tools/crtfont/Makefile 2008-06-15 13:47:31.000000000 +0200 >+++ graphlcd-base-0.1.5/tools/crtfont/Makefile 2008-06-15 14:18:28.000000000 +0200 >@@ -15,11 +15,11 @@ > .PHONY: all > > # Implicit rules: > > %.o: %.c >- $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< >+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< > > # Dependencies: > > MAKEDEP = $(CXX) -MM -MG > DEPFILE = .dependencies >@@ -40,11 +40,11 @@ > endif### Targets: > > # The main program: > > $(PRGNAME): $(OBJS) >- $(CXX) $(CXXFLAGS) -rdynamic $(OBJS) $(LIBDIRS) -lglcdgraphics -lstdc++ -o $(PRGNAME) >+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -rdynamic $(OBJS) $(LIBDIRS) -lglcdgraphics -lstdc++ -o $(PRGNAME) > > install: $(PRGNAME) > install -d $(BINDIR) > install -m 755 -o root -g root $(PRGNAME) $(BINDIR) > >diff -NrU5 graphlcd-base-0.1.5.orig/tools/genfont/Makefile graphlcd-base-0.1.5/tools/genfont/Makefile >--- graphlcd-base-0.1.5.orig/tools/genfont/Makefile 2008-06-15 13:47:31.000000000 +0200 >+++ graphlcd-base-0.1.5/tools/genfont/Makefile 2008-06-15 14:18:46.000000000 +0200 >@@ -18,11 +18,11 @@ > .PHONY: all > > # Implicit rules: > > %.o: %.c >- $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< >+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< > > # Dependencies: > > MAKEDEP = $(CXX) -MM -MG > DEPFILE = .dependencies >@@ -32,11 +32,11 @@ > -include $(DEPFILE) > > # The main program: > > $(PRGNAME): $(OBJS) >- $(CXX) $(CXXFLAGS) -rdynamic $(OBJS) $(LIBDIRS) $(LIBS) -lglcdgraphics -lstdc++ -o $(PRGNAME) >+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -rdynamic $(OBJS) $(LIBDIRS) $(LIBS) -lglcdgraphics -lstdc++ -o $(PRGNAME) > > install: $(PRGNAME) > install -d $(BINDIR) > install -m 755 -o root -g root $(PRGNAME) $(BINDIR) > >diff -NrU5 graphlcd-base-0.1.5.orig/tools/lcdtestpattern/Makefile graphlcd-base-0.1.5/tools/lcdtestpattern/Makefile >--- graphlcd-base-0.1.5.orig/tools/lcdtestpattern/Makefile 2008-06-15 13:47:31.000000000 +0200 >+++ graphlcd-base-0.1.5/tools/lcdtestpattern/Makefile 2008-06-15 14:19:08.000000000 +0200 >@@ -16,11 +16,11 @@ > .PHONY: all > > # Implicit rules: > > %.o: %.c >- $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< >+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< > > # Dependencies: > > MAKEDEP = $(CXX) -MM -MG > DEPFILE = .dependencies >@@ -41,11 +41,11 @@ > endif### Targets: > > # The main program: > > $(PRGNAME): $(OBJS) >- $(CXX) $(CXXFLAGS) -rdynamic $(OBJS) $(LIBS) $(LIBDIRS) -lglcdgraphics -lglcddrivers -lstdc++ -o $(PRGNAME) >+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -rdynamic $(OBJS) $(LIBS) $(LIBDIRS) -lglcdgraphics -lglcddrivers -lstdc++ -o $(PRGNAME) > > install: $(PRGNAME) > install -d $(BINDIR) > install -m 755 -o root -g root $(PRGNAME) $(BINDIR) > >diff -NrU5 graphlcd-base-0.1.5.orig/tools/showpic/Makefile graphlcd-base-0.1.5/tools/showpic/Makefile >--- graphlcd-base-0.1.5.orig/tools/showpic/Makefile 2008-06-15 13:47:31.000000000 +0200 >+++ graphlcd-base-0.1.5/tools/showpic/Makefile 2008-06-15 14:19:29.000000000 +0200 >@@ -16,11 +16,11 @@ > .PHONY: all > > # Implicit rules: > > %.o: %.c >- $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< >+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< > > # Dependencies: > > MAKEDEP = $(CXX) -MM -MG > DEPFILE = .dependencies >@@ -41,11 +41,11 @@ > endif### Targets: > > # The main program: > > $(PRGNAME): $(OBJS) >- $(CXX) $(CXXFLAGS) -rdynamic $(OBJS) $(LIBS) $(LIBDIRS) -lglcdgraphics -lglcddrivers -lstdc++ -o $(PRGNAME) >+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -rdynamic $(OBJS) $(LIBS) $(LIBDIRS) -lglcdgraphics -lglcddrivers -lstdc++ -o $(PRGNAME) > > install: $(PRGNAME) > install -d $(BINDIR) > install -m 755 -o root -g root $(PRGNAME) $(BINDIR) > >diff -NrU5 graphlcd-base-0.1.5.orig/tools/showtext/Makefile graphlcd-base-0.1.5/tools/showtext/Makefile >--- graphlcd-base-0.1.5.orig/tools/showtext/Makefile 2008-06-15 13:47:31.000000000 +0200 >+++ graphlcd-base-0.1.5/tools/showtext/Makefile 2008-06-15 14:23:52.000000000 +0200 >@@ -16,11 +16,11 @@ > .PHONY: all > > # Implicit rules: > > %.o: %.c >- $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< >+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< > > # Dependencies: > > MAKEDEP = $(CXX) -MM -MG > DEPFILE = .dependencies >@@ -41,11 +41,11 @@ > endif### Targets: > > # The main program: > > $(PRGNAME): $(OBJS) >- $(CXX) $(CXXFLAGS) -rdynamic $(OBJS) $(LIBS) $(LIBDIRS) -lglcdgraphics -lglcddrivers -lstdc++ -o $(PRGNAME) >+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -rdynamic $(OBJS) $(LIBS) $(LIBDIRS) -lglcdgraphics -lglcddrivers -lstdc++ -o $(PRGNAME) > > install: $(PRGNAME) > install -d $(BINDIR) > install -m 755 -o root -g root $(PRGNAME) $(BINDIR) >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 227163
: 156877