2005-01-21 03:40:41 by Masao Uebayashi | Files touched by this commit (2) |
Log message:
Teach about Interix further. From Yoshifumi Hiramatsu.
|
2005-01-18 13:44:53 by Masao Uebayashi | Files touched by this commit (3) |
Log message:
Fix build on Interix. PR26847, from Hiramatsu Yoshifumi.
|
2004-11-25 17:12:54 by Takahiro Kambe | Files touched by this commit (1) |
Log message:
Add TEXINF_REQD to 4.0 to work on NetBSD 1.5.3.
Reported by mochida at Netside.
|
2004-08-27 08:29:11 by Johnny C. Lam | Files touched by this commit (71) |
Log message:
Replace RPATH_FLAG with LINKER_RPATH_FLAG and COMPILER_RPATH_FLAG,
which are the full option names used to set rpath directives for the
linker and the compiler, respectively. In places were we are invoking
the linker, use "${LINKER_RPATH_FLAG} <path>", where the space is
inserted in case the flag is a word, e.g. -rpath. The default values
of *_RPATH_FLAG are set by the compiler/*.mk files, depending on the
compiler that you use. They may be overridden on a ${OPSYS}-specific
basis by setting _OPSYS_LINKER_RPATH_FLAG and _OPSYS_COMPILER_RPATH_FLAG,
respectively. Garbage-collect _OPSYS_RPATH_NAME and _COMPILER_LD_FLAG.
|
2004-08-20 18:59:58 by Matthias Scheler | Files touched by this commit (1) |
Log message:
Set "BUILDLINK_PASSTHRU_RPATHDIRS" to stop buildlink3 from removing \
"/lib"
from the run time shared library path instead of trying to defeat its
option parser.
|
2004-08-20 13:48:46 by Matthias Scheler | Files touched by this commit (1) |
Log message:
Improve handling of "ZSH_STATIC" again:
1.) Only create a dynamically linked "zsh" binary if \
"MKDYNAMICROOT"
is defined and set to "yes". This way people who still use statically
linked binaries on their root filesystem will get a static binary.
2.) Link the "zsh" binary so that it use "/libexec/ld.elf_so" and
shared libraries from "/lib". It now works without the "/usr"
filesystem being mounted.
|
2004-08-20 12:36:12 by Matthias Scheler | Files touched by this commit (1) |
Log message:
Don't create a statically linked "zsh" binary on NetBSD system which have
dynamic library support on the root partition (e.g. 2.0 and newer). It is
enough that the "zsh" binary does *not* depend on its own shared libraries
which won't be on the root partition and we get a shell with proper I18N
support this way. Approved by Masao Uebayashi.
|
2004-08-16 18:17:39 by Marc Recht | Files touched by this commit (7) | |
Log message:
update to zsh-4.2.1
Changes since zsh version 4.2.0
-------------------------------
- The autoload and related builtins take options -k and -z to indicate
ksh or zsh autoloading style for given functions, making it possible
to mix and match.
- Assignments to associative arrays can use the i and r index flags.
For example,
assoc[(i)alpha*]=bravo
sets the value for the element whose key matches the pattern `alpha*';
assoc[(r)activ*]=passive
sets the value for the element whose current value matches the pattern
`activ*'.
- The glob qualifier F indicates a non-empty directory. Hence *(F)
indicates all subdirectories with entries, *(/^F) means all
subdirectories with no entries.
- fc -p and fc -P provide push/pop for the status of the shell's
history (both internal and using the history file). With automatic
scoping (fc -ap) it becomes easy to use a temporary history in a
function. This has been added to the calculator function zcalc to make
its internal history work more seamlessly.
- A new `try block' and `always block' syntax has been introduced
to make it easier to ensure the shell runs important tidy-up code
in the event of an error. It also runs after a break, continue, or
return, including a return forced by the ERR_RETURN option
(but not an exit, which is immediate). The syntax is:
`{' try-block-list `}' `always' `{' always-block-list `}'
where no newline or semicolon may appear between `}' and `always'.
This is compatible with all previous valid zsh syntax as an `always'
at that point used to be a syntax error. For example,
{ echo Code run in current shell } always { echo Tidy-up code }
- A new zle widget reset-prompt has been added to re-expand the current
prompt. Changes to the variable in use as well as changes in its
expanions are both taken into account. The same effect is now forced by
a job change notification, making the %j prompt escape and %(j..) ternary
expression more useful.
- The zftp module supports ports following the hostname in the normal suffix
notation, `host:port'. This requires IPv6 colon-style addresses to be
specified in suitably quoted square brackets, for example:
zftp open '[f000::baaa]'
zftp open '[f000::baaa]:ftp'
(the two are equivalent).
- Special traps, those that don't correspond to signals, i.e. ZERR, DEBUG
and EXIT are no longer executed inside other traps. This caused
unnecessary confusion if, for example, both DEBUG and EXIT traps
were set. The new behaviour is more compatible with other shells.
- New option TRAPS_ASYNC which if set allows traps to run while the
shell is waiting for a child process. This is the traditional zsh
behaviour; POSIX requires the option to be unset. In sh/ksh
compatibility mode the option is turned off by default and the option
letter -T turns it on, for compatibility with FreeBSD sh.
|
2004-08-04 05:33:40 by Min Sik Kim | Files touched by this commit (3) |
Log message:
Make this package build on Interix. Patches provided by Hiramatsu Yoshifumi
in PR pkg/25946.
|
2004-05-07 00:29:36 by Quentin Garnier | Files touched by this commit (1) |
Log message:
Enable pkgviews installation.
|