public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-dns/sheerdns/files: sheerdns-1.0.1-makefile.patch
@ 2010-01-22 16:03 Dawid Weglinski (cla)
  0 siblings, 0 replies; 3+ messages in thread
From: Dawid Weglinski (cla) @ 2010-01-22 16:03 UTC (permalink / raw
  To: gentoo-commits

cla         10/01/22 16:03:03

  Added:                sheerdns-1.0.1-makefile.patch
  Log:
  Respect user CFLAGS (bug #240888)
  (Portage version: 2.2_rc61/cvs/Linux x86_64)

Revision  Changes    Path
1.1                  net-dns/sheerdns/files/sheerdns-1.0.1-makefile.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/sheerdns/files/sheerdns-1.0.1-makefile.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/sheerdns/files/sheerdns-1.0.1-makefile.patch?rev=1.1&content-type=text/plain

Index: sheerdns-1.0.1-makefile.patch
===================================================================
diff -Naur sheerdns.old/Makefile sheerdns/Makefile
--- sheerdns.old/Makefile	2010-01-22 16:15:33.000000000 +0100
+++ sheerdns/Makefile	2010-01-22 16:16:45.000000000 +0100
@@ -1,5 +1,5 @@
 
-CFLAGS	= -Wall -g -O2 -pedantic -I/usr/lib
+CFLAGS	+= -I/usr/lib
 
 SRCS=$(wildcard *.c)
 
@@ -11,13 +11,13 @@
 OBJECTS=$(SRCS:.c=.o)
 
 sheerdns: $(OBJECTS)
-	gcc -o sheerdns $(OBJECTS)
+	$(CC) -o sheerdns $(OBJECTS)
 
 sheerdnshash: hash.c
-	gcc $(CFLAGS) -o sheerdnshash hash.c -DSTANDALONE -Wall
+	$(CC) $(CFLAGS) -o sheerdnshash hash.c -DSTANDALONE -Wall
 
 .c.o: $(SRCS)
-	gcc $(CFLAGS) -c $<
+	$(CC) $(CFLAGS) -c $<
 
 clean:
 	rm -f sheerdns sheerdnshash *.o






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-dns/sheerdns/files: sheerdns-1.0.1-makefile.patch
@ 2010-08-06 13:57 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 3+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-08-06 13:57 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/08/06 13:57:10

  Modified:             sheerdns-1.0.1-makefile.patch
  Log:
  Respect LDFLAGS + multilib support. Bug #309123. THanks to Doktor Notor <notordoktor@gmail.com> for the patch
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  net-dns/sheerdns/files/sheerdns-1.0.1-makefile.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/sheerdns/files/sheerdns-1.0.1-makefile.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/sheerdns/files/sheerdns-1.0.1-makefile.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/sheerdns/files/sheerdns-1.0.1-makefile.patch?r1=1.1&r2=1.2

Index: sheerdns-1.0.1-makefile.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/sheerdns/files/sheerdns-1.0.1-makefile.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sheerdns-1.0.1-makefile.patch	22 Jan 2010 16:03:03 -0000	1.1
+++ sheerdns-1.0.1-makefile.patch	6 Aug 2010 13:57:10 -0000	1.2
@@ -13,11 +13,11 @@
  
  sheerdns: $(OBJECTS)
 -	gcc -o sheerdns $(OBJECTS)
-+	$(CC) -o sheerdns $(OBJECTS)
++	$(CC) -o sheerdns $(OBJECTS) $(LDFLAGS)
  
  sheerdnshash: hash.c
 -	gcc $(CFLAGS) -o sheerdnshash hash.c -DSTANDALONE -Wall
-+	$(CC) $(CFLAGS) -o sheerdnshash hash.c -DSTANDALONE -Wall
++	$(CC) $(CFLAGS) -o sheerdnshash hash.c -DSTANDALONE -Wall $(LDFLAGS)
  
  .c.o: $(SRCS)
 -	gcc $(CFLAGS) -c $<






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-dns/sheerdns/files: sheerdns-1.0.1-makefile.patch
@ 2014-03-22 19:07 Michael Palimaka (kensington)
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Palimaka (kensington) @ 2014-03-22 19:07 UTC (permalink / raw
  To: gentoo-commits

kensington    14/03/22 19:07:12

  Removed:              sheerdns-1.0.1-makefile.patch
  Log:
  Remove old.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-03-22 19:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-06 13:57 [gentoo-commits] gentoo-x86 commit in net-dns/sheerdns/files: sheerdns-1.0.1-makefile.patch Markos Chandras (hwoarang)
  -- strict thread matches above, loose matches on Subject: below --
2014-03-22 19:07 Michael Palimaka (kensington)
2010-01-22 16:03 Dawid Weglinski (cla)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox