diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-03-08 13:08:36 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-03-08 13:08:36 +0100 |
commit | d41b150e8f88bc028d2ce251b2dde2f7cf3eb51f (patch) | |
tree | 4e06b1bc1bd313b94dcedc41339551d4c31a4cd4 /package/bitlbee/patches/patch-lib_Makefile | |
parent | 1b4303286aab39ee1d4da3318a179f37b51c62b9 (diff) |
update to latest upstream version
Diffstat (limited to 'package/bitlbee/patches/patch-lib_Makefile')
-rw-r--r-- | package/bitlbee/patches/patch-lib_Makefile | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/package/bitlbee/patches/patch-lib_Makefile b/package/bitlbee/patches/patch-lib_Makefile index 8fc2484cc..3d15131d8 100644 --- a/package/bitlbee/patches/patch-lib_Makefile +++ b/package/bitlbee/patches/patch-lib_Makefile @@ -1,20 +1,26 @@ ---- bitlbee-1.2.4.orig/lib/Makefile 2009-10-17 17:26:46.000000000 +0200 -+++ bitlbee-1.2.4/lib/Makefile 2010-03-07 19:58:49.626028152 +0100 -@@ -12,7 +12,7 @@ - objects = arc.o base64.o $(EVENT_HANDLER) http_client.o ini.o md5.o misc.o proxy.o sha1.o $(SSL_CLIENT) url.o xmltree.o +--- bitlbee-3.0.1.orig/lib/Makefile 2010-11-24 23:44:00.000000000 +0100 ++++ bitlbee-3.0.1/lib/Makefile 2011-03-03 22:39:24.000000000 +0100 +@@ -14,7 +14,7 @@ endif + # [SH] Program variables + objects = arc.o base64.o $(DES) $(EVENT_HANDLER) ftutil.o http_client.o ini.o md5.o misc.o oauth.o proxy.o sha1.o $(SSL_CLIENT) url.o xmltree.o - CFLAGS += -Wall -LFLAGS += -r +LFLAGS += -Wl,-r -nostdlib # [SH] Phony targets all: lib.o -@@ -32,7 +32,7 @@ distclean: clean $(subdirs) +@@ -35,12 +35,12 @@ distclean: clean $(subdirs) lib.o: $(objects) $(subdirs) @echo '*' Linking lib.o - @$(LD) $(LFLAGS) $(objects) -o lib.o -+ @$(CC) $(LFLAGS) $(objects) -o lib.o ++ $(CC) $(LFLAGS) $(objects) -o lib.o $(objects): ../Makefile.settings Makefile + $(objects): %.o: $(SRCDIR)%.c + @echo '*' Compiling $< +- @$(CC) -c $(CFLAGS) $< -o $@ ++ $(CC) -c $(CFLAGS) $< -o $@ + + -include .depend/*.d |