FreeBSD Bugzilla – Attachment 137359 Details for
Bug 182811
[patch update] net/findmtu add stage support, fix build on 10a4
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 1.92 KB, created by
Kurt Jaeger
on 2013-10-07 21:00:00 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
Kurt Jaeger
Created:
2013-10-07 21:00:00 UTC
Size:
1.92 KB
patch
obsolete
>diff -r -u -N net/findmtu/Makefile /usr/home/pi/myp/net/findmtu/Makefile >--- net/findmtu/Makefile 2013-10-07 21:48:04.000000000 +0200 >+++ /usr/home/pi/myp/net/findmtu/Makefile 2013-10-07 21:48:26.000000000 +0200 >@@ -11,18 +11,16 @@ > > SUB_FILES= findmtu > >-NO_STAGE= yes >- > do-configure: > ${LN} -s ${WRKSRC}/Makefile.rawsocket ${WRKSRC}/Makefile > > do-install: >- ${INSTALL_SCRIPT} ${WRKDIR}/findmtu ${PREFIX}/bin/findmtu >- ${INSTALL_PROGRAM} ${WRKSRC}/findmtu ${PREFIX}/bin/findmtu.real >+ ${INSTALL_SCRIPT} ${WRKDIR}/findmtu ${STAGEDIR}/${PREFIX}/bin/findmtu >+ ${INSTALL_PROGRAM} ${WRKSRC}/findmtu ${STAGEDIR}/${PREFIX}/bin/findmtu.real > .ifndef(NOPORTDOCS) >- ${MKDIR} ${DOCSDIR} >- ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} >- ${INSTALL_DATA} ${WRKSRC}/README.freebsd ${DOCSDIR} >+ ${MKDIR} ${STAGEDIR}/${DOCSDIR} >+ ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}/${DOCSDIR} >+ ${INSTALL_DATA} ${WRKSRC}/README.freebsd ${STAGEDIR}/${DOCSDIR} > .endif > > .include <bsd.port.mk> >diff -r -u -N net/findmtu/files/patch-Makefile.rawsocket /usr/home/pi/myp/net/findmtu/files/patch-Makefile.rawsocket >--- net/findmtu/files/patch-Makefile.rawsocket 1970-01-01 01:00:00.000000000 +0100 >+++ /usr/home/pi/myp/net/findmtu/files/patch-Makefile.rawsocket 2013-10-07 21:53:24.000000000 +0200 >@@ -0,0 +1,22 @@ >+--- Makefile.rawsocket.orig 2003-10-29 18:54:07.000000000 +0100 >++++ Makefile.rawsocket 2013-10-07 21:52:54.000000000 +0200 >+@@ -1,14 +1,15 @@ >+-all: findmtu >+ >++all: findmtu >+ >+ findmtu: findmtu.o findmtu-rawsocket.o Makefile >+- gcc -g -Wall -o findmtu findmtu.o findmtu-rawsocket.o >++ ${CC} -g -Wall -o findmtu findmtu.o findmtu-rawsocket.o >+ >+ findmtu.o: findmtu.c findmtu.h Makefile >+- gcc -DRAWSOCKET -Wall -c findmtu.c >++ ${CC} -DRAWSOCKET -Wall -c findmtu.c >+ >+ findmtu-rawsocket.o: findmtu-rawsocket.c findmtu.h Makefile >+- gcc -DRAWSOCKET -Wall -c findmtu-rawsocket.c >++ ${CC} -DRAWSOCKET -Wall -c findmtu-rawsocket.c >+ >+ clean: >+ rm -f findmtu *.o >++
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 182811
: 137359
Working