zsh-workers
 help / color / mirror / code / Atom feed
* SunOS build failures for the last 2 days
@ 2005-08-17 15:08 Vin Shelton
  2005-08-17 16:51 ` Andrey Borzenkov
  2005-08-17 17:15 ` Wayne Davison
  0 siblings, 2 replies; 8+ messages in thread
From: Vin Shelton @ 2005-08-17 15:08 UTC (permalink / raw)
  To: zsh-workers

Greetings,

For the last 2 days, my nightly builds from CVS on SunOS-5.5 and 5.8
have failed like this:

make[2]: Entering directory
`/u/sheltonv/software/SunOS-5.8/build/zsh-2005-08-17/Src'
cc -c -I. -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H
-fast -xarch=v8plusa -xchip=ultra2i -xcache=16/32/1:512/64/1  -o
builtin.o /u/sheltonv/software/SunOS-5.8/src/zsh-2005-08-17/Src/builtin.c
"./utils.epro", line 14: syntax error before or at: c
"./utils.epro", line 14: warning: undefined or missing type for: c
"/u/sheltonv/software/SunOS-5.8/src/zsh-2005-08-17/Src/builtin.c",
line 3914: cannot recover from previous errors
cc: acomp failed for
/u/sheltonv/software/SunOS-5.8/src/zsh-2005-08-17/Src/builtin.c

If you look at line 14 in utils.epro, here's what you see:

extern mod_import_function wchar_t*wcs_nicechar _((wint_t c));

Here are the configure options I'm using:

"'--prefix=/u/sheltonv/software/SunOS-5.8/zsh-2005-08-17'
'--datadir=/u/sheltonv/software/SunOS-5.8/share' '--enable-zsh-mem'
'--enable-etcdir=/u/sheltonv/software/SunOS-5.8/etc'
'--enable-dynamic' '--with-tcsetpgrp' '--disable-nls'
'--disable-locale' 'CC=cc' 'CFLAGS=-fast -xarch=v8plusa -xchip=ultra2i
-xcache=16/32/1:512/64/1'"

Up until a couple of days ago, these builds worked.  Let me know if
there's more information you need to diagnose these build failures.

Thanks,
   Vin


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: SunOS build failures for the last 2 days
  2005-08-17 15:08 SunOS build failures for the last 2 days Vin Shelton
@ 2005-08-17 16:51 ` Andrey Borzenkov
  2005-08-17 17:15 ` Wayne Davison
  1 sibling, 0 replies; 8+ messages in thread
From: Andrey Borzenkov @ 2005-08-17 16:51 UTC (permalink / raw)
  To: zsh-workers, acs

[-- Attachment #1: Type: text/plain, Size: 1617 bytes --]

On Wednesday 17 August 2005 19:08, Vin Shelton wrote:
> "./utils.epro", line 14: warning: undefined or missing type for: c
[...]
> extern mod_import_function wchar_t*wcs_nicechar _((wint_t c));
>
> Here are the configure options I'm using:
>
> "'--prefix=/u/sheltonv/software/SunOS-5.8/zsh-2005-08-17'
> '--datadir=/u/sheltonv/software/SunOS-5.8/share' '--enable-zsh-mem'
> '--enable-etcdir=/u/sheltonv/software/SunOS-5.8/etc'
> '--enable-dynamic' '--with-tcsetpgrp' '--disable-nls'
> '--disable-locale' 'CC=cc' 'CFLAGS=-fast -xarch=v8plusa -xchip=ultra2i
> -xcache=16/32/1:512/64/1'"
>

Now zsh defaults to UNICODE support if available; does not Solaris 8 have it?

Anyway this patch plays it safe; does it help? (Offhand - configure.ac is 
using obsolete AC_CHECK_TYPE invocation)

Index: configure.ac
===================================================================
RCS file: /cvsroot/zsh/zsh/configure.ac,v
retrieving revision 1.38
diff -u -p -r1.38 configure.ac
--- configure.ac        16 Aug 2005 23:16:27 -0000      1.38
+++ configure.ac        17 Aug 2005 16:50:32 -0000
@@ -847,6 +847,7 @@ AC_CHECK_TYPE(ino_t, unsigned long)
 AC_TYPE_MODE_T
 AC_TYPE_UID_T
 AC_TYPE_SIZE_T
+AC_CHECK_TYPES([wint_t])

 dnl ------------------------------------------------
 dnl Check size of long and try to find a 64-bit type
@@ -2079,6 +2080,7 @@ AC_ARG_ENABLE(multibyte,
 int main() {
 #if defined(HAVE_WCHAR_H) && defined(HAVE_WCTOMB) \
  && defined(HAVE_MBRTOWC) && defined(HAVE_WCRTOMB) \
+ && defined(HAVE_WINT_T) \
  && defined (__STDC_ISO_10646__)
     return 0;
 #else


[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: SunOS build failures for the last 2 days
  2005-08-17 15:08 SunOS build failures for the last 2 days Vin Shelton
  2005-08-17 16:51 ` Andrey Borzenkov
@ 2005-08-17 17:15 ` Wayne Davison
  2005-08-17 17:35   ` Andrey Borzenkov
  2005-08-17 18:52   ` Vin Shelton
  1 sibling, 2 replies; 8+ messages in thread
From: Wayne Davison @ 2005-08-17 17:15 UTC (permalink / raw)
  To: acs; +Cc: zsh-workers

[-- Attachment #1: Type: text/plain, Size: 991 bytes --]

On Wed, Aug 17, 2005 at 11:08:41AM -0400, Vin Shelton wrote:
> "./utils.epro", line 14: syntax error before or at: c
> "./utils.epro", line 14: warning: undefined or missing type for: c

The source was just recently changed to define ZLE_UNICODE_SUPPORT by
default on (what we hoped would be) systems that would support the new
Unicode support.  You can get back to the non-Unicode codebase by using
the configure option --disable-multibyte.  However, it would be nice if
you could help us to debug what part of the Unicode support is failing
on SunOS.

That error message makes it look like the type "wint_t" isn't known to
the compiler, but if that is true, I don't see how getkeystring() would
successfully build without ZLE_UNICODE_SUPPORT being defined -- unless
the new configure test for multibyte support had messed up somehow?
Perhaps try compiling and running the attached C program (compile it in
the same dir as your zsh config.h using "cc -o multibyte multibyte.c").

..wayne..

[-- Attachment #2: multibyte.c --]
[-- Type: text/x-csrc, Size: 311 bytes --]

#include <stdio.h>
#include "config.h"

#ifdef HAVE_LOCALE_H
# include <locale.h>
#endif

int
main()
{
#if defined(HAVE_WCHAR_H) && defined(HAVE_WCTOMB) \
 && defined(HAVE_MBRTOWC) && defined(HAVE_WCRTOMB) \
 && defined (__STDC_ISO_10646__)
    printf("Yes\n");
#else
    printf("No\n");
#endif
    return 0;
}

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: SunOS build failures for the last 2 days
  2005-08-17 17:15 ` Wayne Davison
@ 2005-08-17 17:35   ` Andrey Borzenkov
  2005-08-17 17:50     ` Wayne Davison
  2005-08-17 18:52   ` Vin Shelton
  1 sibling, 1 reply; 8+ messages in thread
From: Andrey Borzenkov @ 2005-08-17 17:35 UTC (permalink / raw)
  To: zsh-workers

[-- Attachment #1: Type: text/plain, Size: 662 bytes --]

On Wednesday 17 August 2005 21:15, Wayne Davison wrote:
> On Wed, Aug 17, 2005 at 11:08:41AM -0400, Vin Shelton wrote:
> > "./utils.epro", line 14: syntax error before or at: c
> > "./utils.epro", line 14: warning: undefined or missing type for: c
[...]
> That error message makes it look like the type "wint_t" isn't known to
> the compiler, but if that is true, I don't see how getkeystring() would
> successfully build without ZLE_UNICODE_SUPPORT being defined

Are you sure it was built? Looks like compiler chokes before it is as far.
Anyway it also means conditions in getkeystring should be replaced by single 
ZLE_UNICODE_SUPPORT.

-andrey

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: SunOS build failures for the last 2 days
  2005-08-17 17:35   ` Andrey Borzenkov
@ 2005-08-17 17:50     ` Wayne Davison
  2005-08-17 18:15       ` Wayne Davison
  0 siblings, 1 reply; 8+ messages in thread
From: Wayne Davison @ 2005-08-17 17:50 UTC (permalink / raw)
  To: Andrey Borzenkov; +Cc: zsh-workers

On Wed, Aug 17, 2005 at 09:35:29PM +0400, Andrey Borzenkov wrote:
> Are you sure it was built?

He said it was building fine before ZLE_UNICODE_SUPPORT got turned on,
which indicates to me either that wint_t is actually there, or that the
ifdef before the use of the wint_t doesn't succeed:

#if defined(HAVE_WCHAR_H) && defined(HAVE_WCTOMB) && defined(__STDC_ISO_10646__)

If the latter is true, then I can only imagine that the #error directive
didn't work as expected in the multibyte AC_TRY_COMPILE in configure.

> Anyway it also means conditions in getkeystring should be replaced by
> single ZLE_UNICODE_SUPPORT.

No.  Those are there to support the u and U escapes in printf, even when
ZLE_UNICODE_SUPPORT is disabled (this was just recently pointed out to
me).

..wayne..


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: SunOS build failures for the last 2 days
  2005-08-17 17:50     ` Wayne Davison
@ 2005-08-17 18:15       ` Wayne Davison
  0 siblings, 0 replies; 8+ messages in thread
From: Wayne Davison @ 2005-08-17 18:15 UTC (permalink / raw)
  To: Andrey Borzenkov; +Cc: zsh-workers

On Wed, Aug 17, 2005 at 10:50:38AM -0700, Wayne Davison wrote:
> #if defined(HAVE_WCHAR_H) && defined(HAVE_WCTOMB) && defined(__STDC_ISO_10646__)
> 
> If the latter is true, then I can only imagine that the #error directive
> didn't work as expected in the multibyte AC_TRY_COMPILE in configure.

One other possibility just occurred to me -- perhaps there is a
difference between what configure includes for AC_TRY_COMPILE and what
zsh includes, and the configure includes somehow manage to define
__STDC_ISO_10646__ whereas the zsh includes do not.

..wayne..


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: SunOS build failures for the last 2 days
  2005-08-17 17:15 ` Wayne Davison
  2005-08-17 17:35   ` Andrey Borzenkov
@ 2005-08-17 18:52   ` Vin Shelton
  2005-08-17 19:16     ` Wayne Davison
  1 sibling, 1 reply; 8+ messages in thread
From: Vin Shelton @ 2005-08-17 18:52 UTC (permalink / raw)
  To: Wayne Davison; +Cc: zsh-workers

[-- Attachment #1: Type: text/plain, Size: 1326 bytes --]

On 8/17/05, Wayne Davison <wayned@users.sourceforge.net> wrote:
> On Wed, Aug 17, 2005 at 11:08:41AM -0400, Vin Shelton wrote:
> > "./utils.epro", line 14: syntax error before or at: c
> > "./utils.epro", line 14: warning: undefined or missing type for: c
> 
> The source was just recently changed to define ZLE_UNICODE_SUPPORT by
> default on (what we hoped would be) systems that would support the new
> Unicode support.  You can get back to the non-Unicode codebase by using
> the configure option --disable-multibyte.  However, it would be nice if
> you could help us to debug what part of the Unicode support is failing
> on SunOS.
> 
> That error message makes it look like the type "wint_t" isn't known to
> the compiler, but if that is true, I don't see how getkeystring() would
> successfully build without ZLE_UNICODE_SUPPORT being defined -- unless
> the new configure test for multibyte support had messed up somehow?
> Perhaps try compiling and running the attached C program (compile it in
> the same dir as your zsh config.h using "cc -o multibyte multibyte.c").
> 

This prints 'No'.

FYI - I've attached the (SunOS-5.8) config.h file.  You'll note that
HAVE_WCHAR_H and HAVE_WCRTOMB are defined.

IIRC, Sun's wide character support is broken in these OS versions.

Regards,
  Vin

[-- Attachment #2: config.h --]
[-- Type: application/octet-stream, Size: 29146 bytes --]

/* config.h.  Generated by configure.  */
/* config.h.in.  Generated from configure.ac by autoheader.  */

/***** begin user configuration section *****/

/* Define this to be the location of your password file */
#define PASSWD_FILE "/etc/passwd"

/* Define this to be the name of your NIS/YP password *
 * map (if applicable)                                */
#define PASSWD_MAP "passwd.byname"

/* Define to 1 if you want user names to be cached */
#define CACHE_USERNAMES 1

/* Define to 1 if system supports job control */
#define JOB_CONTROL 1

/* Define this if you use "suspended" instead of "stopped" */
#define USE_SUSPENDED 1

/* The default history buffer size in lines */
#define DEFAULT_HISTSIZE 30

/* The default editor for the fc builtin */
#define DEFAULT_FCEDIT "vi"

/* The default prefix for temporary files */
#define DEFAULT_TMPPREFIX "/tmp/zsh"

/***** end of user configuration section            *****/
/***** shouldn't have to change anything below here *****/



/* Define to 1 if you want to use dynamically loaded modules on AIX. */
/* #undef AIXDYNAMIC */

/* Define to 1 if kill(pid, 0) doesn't return ESRCH, ie BeOS R4.51. */
/* #undef BROKEN_KILL_ESRCH */

/* Define to 1 if sigsuspend() is broken */
/* #undef BROKEN_POSIX_SIGSUSPEND */

/* Define to 1 if compiler incorrectly cast signed to unsigned. */
/* #undef BROKEN_SIGNED_TO_UNSIGNED_CASTING */

/* Define to 1 if tcsetpgrp() doesn't work, ie BeOS R4.51. */
/* #undef BROKEN_TCSETPGRP */

/* Define to 1 if you use BSD style signal handling (and can block signals).
   */
/* #undef BSD_SIGNALS */

/* Undefine if you don't want local features. By default this is defined. */
/* #undef CONFIG_LOCALE */

/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
   systems. This function is required for `alloca.c' support on those systems.
   */
/* #undef CRAY_STACKSEG_END */

/* Define to 1 if using `alloca.c'. */
/* #undef C_ALLOCA */

/* Define to 1 if you want to debug zsh. */
/* #undef DEBUG */

/* The default path; used when running commands with command -p */
#define DEFAULT_PATH "/usr/xpg4/bin:/usr/ccs/bin:/usr/bin:/opt/SUNWspro/bin"

/* Define to 1 if an underscore has to be prepended to dlsym() argument. */
/* #undef DLSYM_NEEDS_UNDERSCORE */

/* The extension used for dynamically loaded modules. */
#define DL_EXT "so"

/* Define to 1 if you want to use dynamically loaded modules. */
#define DYNAMIC 1

/* Define to 1 if multiple modules defining the same symbol are OK. */
#define DYNAMIC_NAME_CLASH_OK 1

/* Define to 1 if the `getpgrp' function requires zero arguments. */
#define GETPGRP_VOID 1

/* Define to 1 if getpwnam() is faked, ie BeOS R4.51. */
/* #undef GETPWNAM_FAKED */

/* The global file to source whenever zsh is run as a login shell; if
   undefined, don't source anything */
#define GLOBAL_ZLOGIN "/u/sheltonv/software/SunOS-5.8/etc/zlogin"

/* The global file to source whenever zsh was run as a login shell. This is
   sourced right before exiting. If undefined, don't source anything. */
#define GLOBAL_ZLOGOUT "/u/sheltonv/software/SunOS-5.8/etc/zlogout"

/* The global file to source whenever zsh is run as a login shell, before
   zshrc is read; if undefined, don't source anything. */
#define GLOBAL_ZPROFILE "/u/sheltonv/software/SunOS-5.8/etc/zprofile"

/* The global file to source absolutely first whenever zsh is run; if
   undefined, don't source anything. */
#define GLOBAL_ZSHENV "/u/sheltonv/software/SunOS-5.8/etc/zshenv"

/* The global file to source whenever zsh is run; if undefined, don't source
   anything */
#define GLOBAL_ZSHRC "/u/sheltonv/software/SunOS-5.8/etc/zshrc"

/* Define if TIOCGWINSZ is defined in sys/ioctl.h but not in termios.h. */
/* #undef GWINSZ_IN_SYS_IOCTL */

/* Define to 1 if you have `alloca', as a function or macro. */
#define HAVE_ALLOCA 1

/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
   */
#define HAVE_ALLOCA_H 1

/* Define if you have the termcap boolcodes symbol. */
#define HAVE_BOOLCODES 1

/* Define if you have the terminfo boolnames symbol. */
#define HAVE_BOOLNAMES 1

/* Define to 1 if you have the `brk' function. */
#define HAVE_BRK 1

/* Define to 1 if there is a prototype defined for brk() on your system. */
#define HAVE_BRK_PROTO 1

/* Define to 1 if you have the `cap_get_proc' function. */
/* #undef HAVE_CAP_GET_PROC */

/* Define to 1 if you have the <curses.h> header file. */
#define HAVE_CURSES_H 1

/* Define to 1 if you have the `difftime' function. */
#define HAVE_DIFFTIME 1

/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
   */
#define HAVE_DIRENT_H 1

/* Define to 1 if you have the `dlclose' function. */
#define HAVE_DLCLOSE 1

/* Define to 1 if you have the `dlerror' function. */
#define HAVE_DLERROR 1

/* Define to 1 if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1

/* Define to 1 if you have the `dlopen' function. */
#define HAVE_DLOPEN 1

/* Define to 1 if you have the `dlsym' function. */
#define HAVE_DLSYM 1

/* Define to 1 if you have the <dl.h> header file. */
/* #undef HAVE_DL_H */

/* Define to 1 if you have the `erand48' function. */
#define HAVE_ERAND48 1

/* Define to 1 if you have the <errno.h> header file. */
#define HAVE_ERRNO_H 1

/* Define to 1 if you have the `faccessx' function. */
/* #undef HAVE_FACCESSX */

/* Define to 1 if you have the `fchdir' function. */
#define HAVE_FCHDIR 1

/* Define to 1 if you have the <fcntl.h> header file. */
#define HAVE_FCNTL_H 1

/* Define to 1 if system has working FIFOs. */
#define HAVE_FIFOS 1

/* Define to 1 if you have the `fseeko' function. */
#define HAVE_FSEEKO 1

/* Define to 1 if you have the `fstat' function. */
#define HAVE_FSTAT 1

/* Define to 1 if you have the `ftello' function. */
#define HAVE_FTELLO 1

/* Define to 1 if you have the `ftruncate' function. */
#define HAVE_FTRUNCATE 1

/* Define to 1 if you have the `getenv' function. */
#define HAVE_GETENV 1

/* Define to 1 if you have the `getgrgid' function. */
#define HAVE_GETGRGID 1

/* Define to 1 if you have the `getgrnam' function. */
#define HAVE_GETGRNAM 1

/* Define to 1 if you have the `gethostbyname2' function. */
/* #undef HAVE_GETHOSTBYNAME2 */

/* Define to 1 if you have the `gethostname' function. */
#define HAVE_GETHOSTNAME 1

/* Define to 1 if you have the `getipnodebyname' function. */
#define HAVE_GETIPNODEBYNAME 1

/* Define to 1 if you have the `getlogin' function. */
#define HAVE_GETLOGIN 1

/* Define to 1 if you have the `getpagesize' function. */
#define HAVE_GETPAGESIZE 1

/* Define to 1 if you have the `getpwent' function. */
#define HAVE_GETPWENT 1

/* Define to 1 if you have the `getpwnam' function. */
#define HAVE_GETPWNAM 1

/* Define to 1 if you have the `getpwuid' function. */
#define HAVE_GETPWUID 1

/* Define to 1 if you have the `getrlimit' function. */
#define HAVE_GETRLIMIT 1

/* Define to 1 if you have the `getrusage' function. */
#define HAVE_GETRUSAGE 1

/* Define to 1 if you have the `gettimeofday' function. */
#define HAVE_GETTIMEOFDAY 1

/* Define to 1 if you have the `grantpt' function. */
#define HAVE_GRANTPT 1

/* Define to 1 if you have the <grp.h> header file. */
#define HAVE_GRP_H 1

/* Define to 1 if you have the `htons' function. */
#define HAVE_HTONS 1

/* Define to 1 if you have the `iconv' function. */
#define HAVE_ICONV 1

/* Define to 1 if you have the <iconv.h> header file. */
#define HAVE_ICONV_H 1

/* Define to 1 if you have the `inet_aton' function. */
/* #undef HAVE_INET_ATON */

/* Define to 1 if you have the `inet_ntop' function. */
#define HAVE_INET_NTOP 1

/* Define to 1 if you have the `inet_pton' function. */
#define HAVE_INET_PTON 1

/* Define to 1 if you have the `initgroups' function. */
#define HAVE_INITGROUPS 1

/* Define to 1 if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1

/* Define to 1 if there is a prototype defined for ioctl() on your system. */
#define HAVE_IOCTL_PROTO 1

/* Define to 1 if you have the `killpg' function. */
#define HAVE_KILLPG 1

/* Define to 1 if you have the <langinfo.h> header file. */
#define HAVE_LANGINFO_H 1

/* Define to 1 if you have the `lchown' function. */
#define HAVE_LCHOWN 1

/* Define to 1 if you have the `cap' library (-lcap). */
/* #undef HAVE_LIBCAP */

/* Define to 1 if you have the <libc.h> header file. */
/* #undef HAVE_LIBC_H */

/* Define to 1 if you have the `dl' library (-ldl). */
#define HAVE_LIBDL 1

/* Define to 1 if you have the `m' library (-lm). */
#define HAVE_LIBM 1

/* Define to 1 if you have the `socket' library (-lsocket). */
#define HAVE_LIBSOCKET 1

/* Define to 1 if you have the <limits.h> header file. */
#define HAVE_LIMITS_H 1

/* Define to 1 if system has working link(). */
#define HAVE_LINK 1

/* Define to 1 if you have the `load' function. */
/* #undef HAVE_LOAD */

/* Define to 1 if you have the `loadbind' function. */
/* #undef HAVE_LOADBIND */

/* Define to 1 if you have the `loadquery' function. */
/* #undef HAVE_LOADQUERY */

/* Define to 1 if you have the <locale.h> header file. */
#define HAVE_LOCALE_H 1

/* Define to 1 if you have the `lstat' function. */
#define HAVE_LSTAT 1

/* Define to 1 if you have the `mbrtowc' function. */
#define HAVE_MBRTOWC 1

/* Define to 1 if you have the `memcpy' function. */
#define HAVE_MEMCPY 1

/* Define to 1 if you have the `memmove' function. */
#define HAVE_MEMMOVE 1

/* Define to 1 if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1

/* Define to 1 if you have the `mkfifo' function. */
#define HAVE_MKFIFO 1

/* Define to 1 if there is a prototype defined for mknod() on your system. */
#define HAVE_MKNOD_PROTO 1

/* Define to 1 if you have the `mkstemp' function. */
#define HAVE_MKSTEMP 1

/* Define to 1 if you have a working `mmap' system call. */
#define HAVE_MMAP 1

/* Define to 1 if you have the `msync' function. */
#define HAVE_MSYNC 1

/* Define to 1 if you have the `munmap' function. */
#define HAVE_MUNMAP 1

/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
/* #undef HAVE_NDIR_H */

/* Define to 1 if you have the <netinet/in_systm.h> header file. */
#define HAVE_NETINET_IN_SYSTM_H 1

/* Define to 1 if you have the `nice' function. */
#define HAVE_NICE 1

/* Define to 1 if you have NIS. */
#define HAVE_NIS 1

/* Define to 1 if you have the `nis_list' function. */
#define HAVE_NIS_LIST 1

/* Define to 1 if you have NISPLUS. */
/* #undef HAVE_NIS_PLUS */

/* Define to 1 if you have the `nl_langinfo' function. */
#define HAVE_NL_LANGINFO 1

/* Define to 1 if you have the `ntohs' function. */
#define HAVE_NTOHS 1

/* Define if you have the termcap numcodes symbol. */
#define HAVE_NUMCODES 1

/* Define if you have the terminfo numnames symbol. */
#define HAVE_NUMNAMES 1

/* Define to 1 if you have the `open_memstream' function. */
/* #undef HAVE_OPEN_MEMSTREAM */

/* Define to 1 if your termcap library has the ospeed variable */
#define HAVE_OSPEED 1

/* Define to 1 if you have the `pathconf' function. */
#define HAVE_PATHCONF 1

/* Define to 1 if you have the `pcre_compile' function. */
/* #undef HAVE_PCRE_COMPILE */

/* Define to 1 if you have the `pcre_exec' function. */
/* #undef HAVE_PCRE_EXEC */

/* Define to 1 if you have the <pcre.h> header file. */
/* #undef HAVE_PCRE_H */

/* Define to 1 if you have the `pcre_study' function. */
/* #undef HAVE_PCRE_STUDY */

/* Define to 1 if you have the `poll' function. */
#define HAVE_POLL 1

/* Define to 1 if you have the <poll.h> header file. */
#define HAVE_POLL_H 1

/* Define to 1 if you have the `ptsname' function. */
#define HAVE_PTSNAME 1

/* Define to 1 if you have the `putenv' function. */
#define HAVE_PUTENV 1

/* Define to 1 if you have the <pwd.h> header file. */
#define HAVE_PWD_H 1

/* Define to 1 if you have the `readlink' function. */
#define HAVE_READLINK 1

/* Define to 1 if RLIMIT_AIO_MEM is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_AIO_MEM */

/* Define to 1 if RLIMIT_AIO_OPS is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_AIO_OPS */

/* Define to 1 if RLIMIT_AS is present (whether or not as a macro). */
#define HAVE_RLIMIT_AS 1

/* Define to 1 if RLIMIT_LOCKS is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_LOCKS */

/* Define to 1 if RLIMIT_MEMLOCK is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_MEMLOCK */

/* Define to 1 if RLIMIT_MSGQUEUE is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_MSGQUEUE */

/* Define to 1 if RLIMIT_NOFILE is present (whether or not as a macro). */
#define HAVE_RLIMIT_NOFILE 1

/* Define to 1 if RLIMIT_NPROC is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_NPROC */

/* Define to 1 if RLIMIT_PTHREAD is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_PTHREAD */

/* Define to 1 if RLIMIT_RSS is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_RSS */

/* Define to 1 if RLIMIT_SBSIZE is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_SBSIZE */

/* Define to 1 if RLIMIT_SIGPENDING is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_SIGPENDING */

/* Define to 1 if RLIMIT_TCACHE is present (whether or not as a macro). */
/* #undef HAVE_RLIMIT_TCACHE */

/* Define to 1 if RLIMIT_VMEM is present (whether or not as a macro). */
#define HAVE_RLIMIT_VMEM 1

/* Define to 1 if you have the `sbrk' function. */
#define HAVE_SBRK 1

/* Define to 1 if there is a prototype defined for sbrk() on your system. */
#define HAVE_SBRK_PROTO 1

/* Define to 1 if you have the `select' function. */
#define HAVE_SELECT 1

/* Define to 1 if you have the `seteuid' function. */
#define HAVE_SETEUID 1

/* Define to 1 if you have the `setlocale' function. */
#define HAVE_SETLOCALE 1

/* Define to 1 if you have the `setpgid' function. */
#define HAVE_SETPGID 1

/* Define to 1 if you have the `setpgrp' function. */
#define HAVE_SETPGRP 1

/* Define to 1 if you have the `setresuid' function. */
/* #undef HAVE_SETRESUID */

/* Define to 1 if you have the `setreuid' function. */
#define HAVE_SETREUID 1

/* Define to 1 if you have the `setsid' function. */
#define HAVE_SETSID 1

/* Define to 1 if you have the `setuid' function. */
#define HAVE_SETUID 1

/* Define to 1 if you have the `setupterm' function. */
#define HAVE_SETUPTERM 1

/* Define to 1 if you have the `shl_findsym' function. */
/* #undef HAVE_SHL_FINDSYM */

/* Define to 1 if you have the `shl_load' function. */
/* #undef HAVE_SHL_LOAD */

/* Define to 1 if you have the `shl_unload' function. */
/* #undef HAVE_SHL_UNLOAD */

/* Define to 1 if you have the `sigaction' function. */
#define HAVE_SIGACTION 1

/* Define to 1 if you have the `sigblock' function. */
/* #undef HAVE_SIGBLOCK */

/* Define to 1 if you have the `sighold' function. */
#define HAVE_SIGHOLD 1

/* Define to 1 if you have the `signgam' function. */
#define HAVE_SIGNGAM 1

/* Define to 1 if you have the `sigprocmask' function. */
#define HAVE_SIGPROCMASK 1

/* Define to 1 if you have the `sigrelse' function. */
#define HAVE_SIGRELSE 1

/* Define to 1 if you have the `sigsetmask' function. */
/* #undef HAVE_SIGSETMASK */

/* Define to 1 if you have the <stddef.h> header file. */
#define HAVE_STDDEF_H 1

/* Define to 1 if you have the <stdint.h> header file. */
/* #undef HAVE_STDINT_H */

/* Define to 1 if you have the <stdio.h> header file. */
#define HAVE_STDIO_H 1

/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1

/* Define if you have the termcap strcodes symbol. */
#define HAVE_STRCODES 1

/* Define to 1 if you have the `strcoll' function and it is properly defined.
   */
#define HAVE_STRCOLL 1

/* Define to 1 if you have the `strerror' function. */
#define HAVE_STRERROR 1

/* Define to 1 if you have the `strftime' function. */
#define HAVE_STRFTIME 1

/* Define to 1 if you have the <strings.h> header file. */
#define HAVE_STRINGS_H 1

/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1

/* Define if you have the terminfo strnames symbol. */
#define HAVE_STRNAMES 1

/* Define to 1 if you have the `strstr' function. */
#define HAVE_STRSTR 1

/* Define if your system's struct direct has a member named d_ino. */
/* #undef HAVE_STRUCT_DIRECT_D_INO */

/* Define if your system's struct direct has a member named d_stat. */
/* #undef HAVE_STRUCT_DIRECT_D_STAT */

/* Define if your system's struct dirent has a member named d_ino. */
#define HAVE_STRUCT_DIRENT_D_INO 1

/* Define if your system's struct dirent has a member named d_stat. */
/* #undef HAVE_STRUCT_DIRENT_D_STAT */

/* Define to 1 if `ru_idrss' is member of `struct rusage'. */
#define HAVE_STRUCT_RUSAGE_RU_IDRSS 1

/* Define to 1 if `ru_inblock' is member of `struct rusage'. */
#define HAVE_STRUCT_RUSAGE_RU_INBLOCK 1

/* Define to 1 if `ru_isrss' is member of `struct rusage'. */
#define HAVE_STRUCT_RUSAGE_RU_ISRSS 1

/* Define to 1 if `ru_ixrss' is member of `struct rusage'. */
#define HAVE_STRUCT_RUSAGE_RU_IXRSS 1

/* Define to 1 if `ru_majflt' is member of `struct rusage'. */
#define HAVE_STRUCT_RUSAGE_RU_MAJFLT 1

/* Define to 1 if `ru_maxrss' is member of `struct rusage'. */
#define HAVE_STRUCT_RUSAGE_RU_MAXRSS 1

/* Define to 1 if `ru_minflt' is member of `struct rusage'. */
#define HAVE_STRUCT_RUSAGE_RU_MINFLT 1

/* Define to 1 if `ru_msgrcv' is member of `struct rusage'. */
#define HAVE_STRUCT_RUSAGE_RU_MSGRCV 1

/* Define to 1 if `ru_msgsnd' is member of `struct rusage'. */
#define HAVE_STRUCT_RUSAGE_RU_MSGSND 1

/* Define to 1 if `ru_nivcsw' is member of `struct rusage'. */
#define HAVE_STRUCT_RUSAGE_RU_NIVCSW 1

/* Define to 1 if `ru_nsignals' is member of `struct rusage'. */
#define HAVE_STRUCT_RUSAGE_RU_NSIGNALS 1

/* Define to 1 if `ru_nswap' is member of `struct rusage'. */
#define HAVE_STRUCT_RUSAGE_RU_NSWAP 1

/* Define to 1 if `ru_nvcsw' is member of `struct rusage'. */
#define HAVE_STRUCT_RUSAGE_RU_NVCSW 1

/* Define to 1 if `ru_oublock' is member of `struct rusage'. */
#define HAVE_STRUCT_RUSAGE_RU_OUBLOCK 1

/* Define if your system's struct sockaddr_in6 has a member named
   sin6_scope_id. */
#define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1

/* Define to 1 if struct timezone is defined by a system header */
#define HAVE_STRUCT_TIMEZONE 1

/* Define to 1 if struct utmp is defined by a system header */
#define HAVE_STRUCT_UTMP 1

/* Define to 1 if struct utmpx is defined by a system header */
#define HAVE_STRUCT_UTMPX 1

/* Define if your system's struct utmpx has a member named ut_host. */
#define HAVE_STRUCT_UTMPX_UT_HOST 1

/* Define if your system's struct utmpx has a member named ut_tv. */
#define HAVE_STRUCT_UTMPX_UT_TV 1

/* Define if your system's struct utmpx has a member named ut_xtime. */
#define HAVE_STRUCT_UTMPX_UT_XTIME 1

/* Define if your system's struct utmp has a member named ut_host. */
/* #undef HAVE_STRUCT_UTMP_UT_HOST */

/* Define to 1 if you have RFS superroot directory. */
/* #undef HAVE_SUPERROOT */

/* Define to 1 if you have the `sysconf' function. */
#define HAVE_SYSCONF 1

/* Define to 1 if you have the <sys/capability.h> header file. */
/* #undef HAVE_SYS_CAPABILITY_H */

/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
   */
/* #undef HAVE_SYS_DIR_H */

/* Define to 1 if you have the <sys/filio.h> header file. */
#define HAVE_SYS_FILIO_H 1

/* Define to 1 if you have the <sys/mman.h> header file. */
#define HAVE_SYS_MMAN_H 1

/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
   */
/* #undef HAVE_SYS_NDIR_H */

/* Define to 1 if you have the <sys/param.h> header file. */
#define HAVE_SYS_PARAM_H 1

/* Define to 1 if you have the <sys/resource.h> header file. */
#define HAVE_SYS_RESOURCE_H 1

/* Define to 1 if you have the <sys/select.h> header file. */
#define HAVE_SYS_SELECT_H 1

/* Define to 1 if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1

/* Define to 1 if you have the <sys/stropts.h> header file. */
#define HAVE_SYS_STROPTS_H 1

/* Define to 1 if you have the <sys/times.h> header file. */
#define HAVE_SYS_TIMES_H 1

/* Define to 1 if you have the <sys/time.h> header file. */
#define HAVE_SYS_TIME_H 1

/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1

/* Define to 1 if you have the <sys/utsname.h> header file. */
#define HAVE_SYS_UTSNAME_H 1

/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
#define HAVE_SYS_WAIT_H 1

/* Define to 1 if you have the `tcgetattr' function. */
#define HAVE_TCGETATTR 1

/* Define to 1 if you have the `tcsetpgrp' function. */
#define HAVE_TCSETPGRP 1

/* Define to 1 if you have the <termcap.h> header file. */
/* #undef HAVE_TERMCAP_H */

/* Define to 1 if you have the <termios.h> header file. */
#define HAVE_TERMIOS_H 1

/* Define to 1 if you have the <termio.h> header file. */
#define HAVE_TERMIO_H 1

/* Define to 1 if you have the <term.h> header file. */
#define HAVE_TERM_H 1

/* Define to 1 if you have the `tgetent' function. */
#define HAVE_TGETENT 1

/* Define to 1 if you have the `tigetflag' function. */
#define HAVE_TIGETFLAG 1

/* Define to 1 if you have the `tigetnum' function. */
#define HAVE_TIGETNUM 1

/* Define to 1 if you have the `tigetstr' function. */
#define HAVE_TIGETSTR 1

/* Define to 1 if you have the `uname' function. */
#define HAVE_UNAME 1

/* Define to 1 if the compiler can initialise a union. */
#define HAVE_UNION_INIT 1

/* Define to 1 if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1

/* Define to 1 if you have the `unload' function. */
/* #undef HAVE_UNLOAD */

/* Define to 1 if you have the `unlockpt' function. */
#define HAVE_UNLOCKPT 1

/* Define to 1 if you have the <utmpx.h> header file. */
#define HAVE_UTMPX_H 1

/* Define to 1 if you have the <utmp.h> header file. */
#define HAVE_UTMP_H 1

/* Define to 1 if compiler supports variable-length arrays */
#define HAVE_VARIABLE_LENGTH_ARRAYS 1

/* Define to 1 if you have the `wait3' function. */
#define HAVE_WAIT3 1

/* Define to 1 if you have the `waitpid' function. */
#define HAVE_WAITPID 1

/* Define to 1 if you have the <wchar.h> header file. */
#define HAVE_WCHAR_H 1

/* Define to 1 if you have the `wcrtomb' function. */
#define HAVE_WCRTOMB 1

/* Define to 1 if you have the `wctomb' function. */
#define HAVE_WCTOMB 1

/* Define to 1 if you have the `_mktemp' function. */
#define HAVE__MKTEMP 1

/* Define to 1 if you want to use dynamically loaded modules on HPUX 10. */
/* #undef HPUXDYNAMIC */

/* Define as const if the declaration of iconv() needs const. */
#define ICONV_CONST const

/* Define to 1 if ino_t is 64 bit (for large file support). */
#define INO_T_IS_64_BIT 1

/* Define to 1 if we must include <sys/ioctl.h> to get a prototype for
   ioctl(). */
/* #undef IOCTL_IN_SYS_IOCTL */

/* Definitions used when a long is less than eight byte, to try to provide
   some support for eight byte operations. Note that ZSH_64_BIT_TYPE,
   OFF_T_IS_64_BIT, INO_T_IS_64_BIT do *not* get defined if long is already 64
   bits, since in that case no special handling is required. Define to 1 if
   long is 64 bits */
/* #undef LONG_IS_64_BIT */

/* Define to be the machine type (microprocessor class or machine model). */
#define MACHTYPE "sparc"

/* Define for Maildir support */
/* #undef MAILDIR_SUPPORT */

/* Define for function depth limits */
#define MAX_FUNCTION_DEPTH 4096

/* Define to 1 if you have ospeed, but it is not defined in termcap.h */
#define MUST_DEFINE_OSPEED 1

/* Define to 1 if you have no signal blocking at all (bummer). */
/* #undef NO_SIGNAL_BLOCKING */

/* Define to 1 if off_t is 64 bit (for large file support) */
#define OFF_T_IS_64_BIT 1

/* Define to be the name of the operating system. */
#define OSTYPE "solaris2.8"

/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT ""

/* Define to the full name of this package. */
#define PACKAGE_NAME ""

/* Define to the full name and version of this package. */
#define PACKAGE_STRING ""

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME ""

/* Define to the version of this package. */
#define PACKAGE_VERSION ""

/* Define to the path of the /dev/fd filesystem. */
#define PATH_DEV_FD "/dev/fd"

/* Define to be location of utmpx file. */
#define PATH_UTMPX_FILE "/etc/utmpx"

/* Define to be location of utmp file. */
/* #undef PATH_UTMP_FILE */

/* Define to be location of wtmpx file. */
#define PATH_WTMPX_FILE "/etc/wtmpx"

/* Define to be location of wtmp file. */
/* #undef PATH_WTMP_FILE */

/* Define to 1 if you use POSIX style signal handling. */
#define POSIX_SIGNALS 1

/* Define to 1 if ANSI function prototypes are usable. */
#define PROTOTYPES 1

/* Undefine this if you don't want to get a restricted shell when zsh is
   exec'd with basename that starts with r. By default this is defined. */
#define RESTRICTED_R 1

/* Define as the return type of signal handlers (`int' or `void'). */
#define RETSIGTYPE void

/* Define to 1 if RLIMIT_RSS and RLIMIT_AS both exist and are equal. */
/* #undef RLIMIT_RSS_IS_AS */

/* Define to 1 if RLIMIT_VMEM and RLIMIT_AS both exist and are equal. */
#define RLIMIT_VMEM_IS_AS 1

/* Define to 1 if RLIMIT_VMEM and RLIMIT_RSS both exist and are equal. */
/* #undef RLIMIT_VMEM_IS_RSS */

/* Define to 1 if struct rlimit uses long long */
#define RLIM_T_IS_LONG_LONG 1

/* Define to 1 if struct rlimit uses quad_t. */
/* #undef RLIM_T_IS_QUAD_T */

/* Define to 1 if struct rlimit uses unsigned. */
/* #undef RLIM_T_IS_UNSIGNED */

/* Define to 1 if select() is defined in <sys/socket.h>, ie BeOS R4.51 */
/* #undef SELECT_IN_SYS_SOCKET_H */

/* Define to 1 if /bin/sh does not interpret \ escape sequences. */
/* #undef SH_USE_BSD_ECHO */

/* If using the C implementation of alloca, define if you know the
   direction of stack growth for your system; otherwise it will be
   automatically deduced at run-time.
	STACK_DIRECTION > 0 => grows toward higher addresses
	STACK_DIRECTION < 0 => grows toward lower addresses
	STACK_DIRECTION = 0 => direction of growth unknown */
/* #undef STACK_DIRECTION */

/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
/* #undef STAT_MACROS_BROKEN */

/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1

/* Define to 1 if you use SYS style signal handling (and can block signals).
   */
/* #undef SYSV_SIGNALS */

/* Define if term.h chokes without curses.h. */
#define TERM_H_NEEDS_CURSES_H 1

/* Define to 1 if tgetent() accepts NULL as a buffer. */
#define TGETENT_ACCEPTS_NULL 1

/* Define to what tgetent() returns on success (0 on HP-UX X/Open curses). */
#define TGETENT_SUCCESS 1

/* Define if sys/time.h and sys/select.h cannot be both included. */
/* #undef TIME_H_SELECT_H_CONFLICTS */

/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
#define TIME_WITH_SYS_TIME 1

/* Define to 1 if all the kit for using /dev/ptmx for ptys is available. */
#define USE_DEV_PTMX 1

/* Define to 1 if you need to use the native getcwd. */
/* #undef USE_GETCWD */

/* Define to 1 if h_errno is not defined by the system. */
/* #undef USE_LOCAL_H_ERRNO */

/* Define to be a string corresponding the vendor of the machine. */
#define VENDOR "sun"

/* Define if your should include sys/stream.h and sys/ptem.h. */
#define WINSIZE_IN_PTEM 1

/* Define to 1 if you want unicode support in the line editor. */
/* #undef ZLE_UNICODE_SUPPORT */

/* Define to a 64 bit integer type if there is one, but long is shorter. */
#define ZSH_64_BIT_TYPE long long

/* Define to an unsigned variant of ZSH_64_BIT_TYPE if that is defined. */
#define ZSH_64_BIT_UTYPE unsigned long long

/* Define to 1 if you want to get debugging information on internal hash
   tables. This turns on the `hashinfo' builtin. */
/* #undef ZSH_HASH_DEBUG */

/* Define to 1 if you want to use zsh's own memory allocation routines */
#define ZSH_MEM 1

/* Define to 1 if you want to debug zsh memory allocation routines. */
/* #undef ZSH_MEM_DEBUG */

/* Define to 1 if you want to turn on warnings of memory allocation errors */
/* #undef ZSH_MEM_WARNING */

/* Define to 1 if you want to turn on memory checking for free(). */
/* #undef ZSH_SECURE_FREE */

/* Define to the base type of the third argument of accept */
#define ZSOCKLEN_T int

/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */

/* Define to `int' if <sys/types.h> doesn't define. */
/* #undef gid_t */

/* Define to `unsigned long' if <sys/types.h> doesn't define. */
/* #undef ino_t */

/* Define to `int' if <sys/types.h> does not define. */
/* #undef mode_t */

/* Define to `long' if <sys/types.h> does not define. */
/* #undef off_t */

/* Define to `int' if <sys/types.h> does not define. */
/* #undef pid_t */

/* Define to the type used in struct rlimit. */
/* #undef rlim_t */

/* Define to `unsigned int' if <sys/types.h> or <signal.h> doesn't define */
/* #undef sigset_t */

/* Define to `unsigned' if <sys/types.h> does not define. */
/* #undef size_t */

/* Define to `int' if <sys/types.h> doesn't define. */
/* #undef uid_t */

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: SunOS build failures for the last 2 days
  2005-08-17 18:52   ` Vin Shelton
@ 2005-08-17 19:16     ` Wayne Davison
  0 siblings, 0 replies; 8+ messages in thread
From: Wayne Davison @ 2005-08-17 19:16 UTC (permalink / raw)
  To: acs; +Cc: zsh-workers

[-- Attachment #1: Type: text/plain, Size: 480 bytes --]

On Wed, Aug 17, 2005 at 02:52:54PM -0400, Vin Shelton wrote:
> This prints 'No'.

OK.  I also note that the ZLE_UNICODE_SUPPORT define is not defined in
your config.h, which is as it should be for a "No" case.  So, I just
forced multibyte off for my system and I note that those prototypes
are still in the utils.epro file.  Ahh, the #ifdef lines are not
properly marked as needing to be copied into the utils.epro file.
Attached is a patch that I'm about to check in.

..wayne..

[-- Attachment #2: ifdef.patch --]
[-- Type: text/plain, Size: 1531 bytes --]

--- Src/string.c	15 Aug 2005 17:20:29 -0000	1.6
+++ Src/string.c	17 Aug 2005 19:11:55 -0000
@@ -54,6 +54,7 @@ ztrdup(const char *s)
     return t;
 }
 
+/**/
 #ifdef ZLE_UNICODE_SUPPORT
 /**/
 mod_export wchar_t *
@@ -67,6 +68,7 @@ wcs_ztrdup(const wchar_t *s)
     wcscpy(t, s);
     return t;
 }
+/**/
 #endif /* ZLE_UNICODE_SUPPORT */
 
 
--- Src/utils.c	15 Aug 2005 17:20:29 -0000	1.87
+++ Src/utils.c	17 Aug 2005 19:11:55 -0000
@@ -243,6 +243,7 @@ nicechar(int c)
     return buf;
 }
 
+/**/
 #ifdef ZLE_UNICODE_SUPPORT
 /**/
 mod_export wchar_t *
@@ -280,6 +281,7 @@ wcs_nicechar(wint_t c)
     *s = 0;
     return buf;
 }
+/**/
 #endif /* ZLE_UNICODE_SUPPORT */
 
 
@@ -2493,6 +2495,7 @@ zarrdup(char **s)
     return y;
 }
 
+/**/
 #ifdef ZLE_UNICODE_SUPPORT
 /**/
 mod_export wchar_t **
@@ -2506,6 +2509,7 @@ wcs_zarrdup(wchar_t **s)
 
     return y;
 }
+/**/
 #endif /* ZLE_UNICODE_SUPPORT */
 
 /**/
@@ -3106,6 +3110,7 @@ zputs(char const *s, FILE *stream)
     return 0;
 }
 
+/**/
 #ifdef ZLE_UNICODE_SUPPORT
 /**/
 mod_export int
@@ -3127,6 +3132,7 @@ wcs_zputs(wchar_t const *s, FILE *stream
     }
     return 0;
 }
+/**/
 #endif /* ZLE_UNICODE_SUPPORT */
 
 /* Create a visibly-represented duplicate of a string. */
@@ -3215,6 +3221,7 @@ niceztrlen(char const *s)
     return l;
 }
 
+/**/
 #ifdef ZLE_UNICODE_SUPPORT
 /**/
 mod_export size_t
@@ -3236,6 +3243,7 @@ wcs_nicewidth(wchar_t const *s)
     }
     return l;
 }
+/**/
 #endif /* ZLE_UNICODE_SUPPORT */
 
 /* check for special characters in the string */

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2005-08-17 19:17 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-08-17 15:08 SunOS build failures for the last 2 days Vin Shelton
2005-08-17 16:51 ` Andrey Borzenkov
2005-08-17 17:15 ` Wayne Davison
2005-08-17 17:35   ` Andrey Borzenkov
2005-08-17 17:50     ` Wayne Davison
2005-08-17 18:15       ` Wayne Davison
2005-08-17 18:52   ` Vin Shelton
2005-08-17 19:16     ` Wayne Davison

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).