2014-10-08 05:57:37 by Makoto Fujiwara | Files touched by this commit (2) |
Log message:
Putting @ ahead of command (like @echo) is only valid when it is single
line Makefile recipe. If it is inside of shell script (of Makefile recipe),
we will get '@echo not found'. Sorry, it's long been a problem. Now fixed.
|
2014-02-24 11:00:02 by Makoto Fujiwara | Files touched by this commit (1) |
Log message:
Add note for LANG=ja_JP.UTF-8 for recent emacs.
|
2014-02-23 16:34:48 by Makoto Fujiwara | Files touched by this commit (1) |
Log message:
(1) Convert one SUBST_CLASS to REPLACE_PERL
(2) Add another SUBST_CLASS in the hope to solve following problem,
/usr/pkg/bin/emacs -q -no-site-file -batch -l texinfmt -f \
batch-texinfo-format -I .;)
>> /export/CHROOT/usr/pkgsrc/wip/tc-git/work/tc/doc/-I does not exist!
But this problem doesn not always happen.
|
2014-02-21 03:05:02 by Makoto Fujiwara | Files touched by this commit (3) |
Log message:
(1) patches/patch-etc_Makefile.in
This was NOT really necessary
(2) patches/patch-etc_Makefile.am
Make patch size smaller (or make it easy to figure out).
Add one line comment to indicate bushu.rev compilation
(3) Makefile
This packages some times stalls with
... Saving file /WRKOBJDIR/wip/tc-git/work/tc/etc/bushu.rev...
Put following line
+MAKE_JOBS_SAFE= no
|
2013-12-23 04:13:49 by Makoto Fujiwara | Files touched by this commit (2) |
Log message:
(kill-emacs) is not necessay (or even harmfull).
|
2013-12-21 04:20:16 by Makoto Fujiwara | Files touched by this commit (4) |
Log message:
(1) Add web2c for BUILD_DEPENDS (texinfo processing)
(2) Add patches/patch-etc_mk-bdic to modify mk-bdic elisp
to be function shape (otherwise it stalls after completion)
(3) to call mk-bdic correctly, etc/Makefile.am also modified
|
2013-12-15 15:21:09 by Makoto Fujiwara | Files touched by this commit (5) |
Log message:
(pkgsrc)
Makefile
Bump version 2.99.2 to 2.99.3
patches/patch-lisp_tc-recover.el
New file. Only for building on Emacs21-22 to provide the function
coding-system-from-name
patches/patch-BATCH-SORT
load above created new function
patches/patch-lisp_eelll.el
Fix char width
- (insert " ") <--- two byte char whited out
+ (insert " ") <--- two byte char whited out
Fix for obsolete function:
- (insert (char-to-string last-command-char)))
+ (insert (char-to-string last-command-event)))
patches/patch-etc_Makefile.am
Fix typo on comment line
|
2013-11-22 09:30:18 by Makoto Fujiwara | Files touched by this commit (3) |
Log message:
(1) Add makeinfo to USE_TOOLS
(2) correct patch to avoid following message:
etc/Makefile.am:20: error: '#' comment at start of rule is unportable
|
2013-10-22 15:05:16 by Makoto Fujiwara | Files touched by this commit (1) |
Log message:
(1) Put work around for the problem of:
fatal: unable to access 'http://github.com/kanchoku/tc.git/':
SSL certificate problem: unable to get local issuer certificate
+# Add "-c http.sslVerify=false" to git command or,
+PKGSRC_SETENV= GIT_SSL_NO_VERIFY=true
(2) If EMACS_TYPE is emacs25, refer wip version of emacs-current
-.include "../../editors/emacs/modules.mk"
+.include "../../wip/emacs-current/modules.mk"
|
2013-04-09 03:03:46 by Makoto Fujiwara | Files touched by this commit (3) |
Log message:
I don't know the actual reason, but the files added in
lisp_LISP= line in Makefile.{am,in} are now NOT byte-compiled.
So, $(lisp_LISP) is now added the files to be byte-compiled.
(probably due to automake functional change ?)
|