[BACK]Return to Makefile.common CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / pkgsrc / shells / zsh

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /pkgsrc/shells/zsh/Attic/Makefile.common between version 1.14 and 1.15

version 1.14, 2004/08/20 10:36:12 version 1.15, 2004/08/20 11:48:46
Line 30  BUILD_DEFS+= ZSH_STATIC
Line 30  BUILD_DEFS+= ZSH_STATIC
 .if defined(ZSH_STATIC) && !empty(ZSH_STATIC:M[Yy][Ee][Ss])  .if defined(ZSH_STATIC) && !empty(ZSH_STATIC:M[Yy][Ee][Ss])
 CONFIGURE_ARGS+=--disable-dynamic  CONFIGURE_ARGS+=--disable-dynamic
   
 .  if !(${OPSYS} == "NetBSD" && exists(/libexec/ld.elf_so))  NETBSD_SHLINKER=        /libexec/ld.elf_so
   
   .  if ${OPSYS} == "NetBSD" && \
         defined(MKDYNAMICROOT) && !empty(MKDYNAMICROOT:M[Yy][Ee][Ss]) && \
         ${OBJECT_FMT} == "ELF" && exists(${NETBSD_SHLINKER})
   #
   # Built a dynamically linked "zsh" binary on NetBSD systems which use
   # dynamically linked binaries on the root filesystem. The binary will
   # only depend on the run-time link-editor and shared libraries on the
   # root filesystem. We use "-rpath" below by purpose because the
   # buildlink 3 framework won't filter it out.
   #
   LDFLAGS+=       -Wl,-dynamic-linker=${NETBSD_SHLINKER} -rpath=/lib
   .  else
 LDFLAGS+=       -static  LDFLAGS+=       -static
 .  endif  .  endif
 .else  .else

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15

CVSweb <webmaster@jp.NetBSD.org>