| Summary: | [patch] editors/emacs-devel: silence warning: 'alloca' macro redefined | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Ports & Packages | Reporter: | swell.k <swell.k> | ||||
| Component: | Individual Port(s) | Assignee: | Ashish SHUKLA <ashish> | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Only Me | ||||||
| Priority: | Normal | ||||||
| Version: | Latest | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
Responsible Changed From-To: freebsd-ports-bugs->ashish Over to maintainer (via the GNATS Auto Assign Tool) ashish 2010-11-18 03:39:13 UTC
FreeBSD ports repository
Modified files:
. UPDATING
editors/emacs-devel Makefile distinfo pkg-plist
editors/emacs-devel/files patch-configure
patch-doc-emacs-Makefile.in
patch-doc-lispintro-Makefile.in
patch-doc-lispref-Makefile.in
patch-doc-misc-Makefile.in
Added files:
editors/emacs-devel/files patch-src_config.in
Log:
- Update to bzr revision 102364.
- Restore GTK2 option.
- Enable IMAGEMAGICK option by default.
- Add GNUTLS option.
- Fix the issue with bad plist generation and mention it in UPDATING.
- Include 'alloca' fix provided by swell.k@gmail.com [1].
PR: ports/149049[1]
Submitted by: swell.k@gmail.com[1]
Approved by: tabthorpe (mentor)
Revision Changes Path
1.990 +16 -1 ports/UPDATING
1.45 +26 -9 ports/editors/emacs-devel/Makefile
1.23 +2 -3 ports/editors/emacs-devel/distinfo
1.3 +2 -2 ports/editors/emacs-devel/files/patch-configure
1.4 +10 -16 ports/editors/emacs-devel/files/patch-doc-emacs-Makefile.in
1.4 +11 -17 ports/editors/emacs-devel/files/patch-doc-lispintro-Makefile.in
1.3 +12 -9 ports/editors/emacs-devel/files/patch-doc-lispref-Makefile.in
1.4 +8 -5 ports/editors/emacs-devel/files/patch-doc-misc-Makefile.in
1.1 +14 -0 ports/editors/emacs-devel/files/patch-src_config.in (new)
1.24 +3 -1 ports/editors/emacs-devel/pkg-plist
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks! |
During build there is one noisy warining that affects every source file that includes config.h. How-To-Repeat: (same for gcc42 and gcc45) $ make ... clang -c -I/usr/pkg/include -Demacs -DHAVE_CONFIG_H -I. -I/a/pkgbuild/a/freebsd-ports/editors/emacs-devel/work/emacs-24.0.50.100884/src -Wold-style-definition -Wdeclaration-after-statement -Wno-pointer-sign -O2 -pipe -march=native -fno-strict-aliasing ccl.c In file included from ccl.c:27: ./config.h:1143:10: warning: 'alloca' macro redefined # define alloca __builtin_alloca ^ In file included from ccl.c:27: In file included from ./config.h:1137: /usr/include/stdlib.h:233:9: note: previous definition is here #define alloca(sz) __builtin_alloca(sz) ^