diff options
author | Richard Narron <richard@aaazen.com> | 2019-12-29 11:20:28 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-12-29 11:20:28 +0700 |
commit | c5864ccde0498a33582aa7fe20619b9176bb9cad (patch) | |
tree | e5256fdb72c7b6f1c46e4cc2e9d935e42d0f9126 /network/linksys-tftp/linksys-tftp-1.2.1-r1-Makefile.patch | |
parent | bd1a7fd096cf42895510ebcd2b0c9411bd5e98cf (diff) | |
download | slackbuilds-c5864ccde0498a33582aa7fe20619b9176bb9cad.tar.gz |
network/linksys-tftp: Added (tftp client).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/linksys-tftp/linksys-tftp-1.2.1-r1-Makefile.patch')
-rw-r--r-- | network/linksys-tftp/linksys-tftp-1.2.1-r1-Makefile.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/network/linksys-tftp/linksys-tftp-1.2.1-r1-Makefile.patch b/network/linksys-tftp/linksys-tftp-1.2.1-r1-Makefile.patch new file mode 100644 index 0000000000..b374e808ec --- /dev/null +++ b/network/linksys-tftp/linksys-tftp-1.2.1-r1-Makefile.patch @@ -0,0 +1,28 @@ +Fix LDFLAGS (bug http://bugs.gentoo.org/336956 ) and +CFLAGS (bug http://bugs.gentoo.org/240894 ) by +Michael Weber <xmw@gentoo.org> + +--- linksys-tftp-1.2.1/Makefile ++++ linksys-tftp-1.2.1/Makefile +@@ -19,18 +19,18 @@ + # We override /usr/include/arpa/tftp.h with our own because + # we want tu_block to be unsigned short, not short as on most platforms + # +-CFLAGS= -I. -O2 -Dsin=sin_x ++CFLAGS += -I. -Dsin=sin_x + #DEBUG + # CFLAGS= -I. -Wall -ggdb -Dsin=sin_x + SRCS= main.c tftp.c tftpsubs.c + OBJS= main.o tftp.o tftpsubs.o + DOBJS= tftpsubs.o +-CC= gcc ++CC?= gcc + + all: linksys-tftp + + linksys-tftp: ${OBJS} +- ${CC} -o $@ ${CFLAGS} ${OBJS} ++ ${CC} -o $@ ${CFLAGS} ${OBJS} ${LDFLAGS} + + clean: + rm -f ${OBJS} ${DOBJS} *core linksys-tftp |