bug-mailutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: (no subject)


From: Sam Roberts
Subject: Re: (no subject)
Date: Thu, 14 Feb 2002 11:46:09 -0500
User-agent: Mutt/1.5.0i

Hi Steven,

Sorry for the delay.

Ok, I've a Tru64 machine, but other than building our software on it,
I don't have any experience with porting to it.

I'm trying to reproduce this, and I'm having some trouble, and I don't
have that much time.

Some questions:

- what are you building? Did you get a release package that already
had the configure script built, or did you do the autogen.sh yourself?

- can you send me your package?

- if you did the autogen.sh, what versions of autoconf and the rest are
you using?

- how do you call configure? do you use GNU make, or the vendors make?
Are the GNU tools installed?

I had to modify my PATH to ensure that the vendors compiler was found,
and not gcc. However, I still have to use GNU make. I'm also getting
lots of warnings, and finally errors. But... I don't see PROTOTYPES
defined by anything, and I don't see the presence of the prototypes
causing any problems.

Cheers!

Sam

p.s. Out of personal interest, what are you using mailutils for?

On Wed, Jan 23, 2002 at 10:39:16PM -0500, Steven Michael ROBBINS 
<address@hidden> wrote:
> Hello,
> 
> In order to build this on Tru64 unix (aka DIGITAL UNIX) with
> the vendor compiler, I had to condition all the prototype definitions
> on the autoconf symbol PROTOTYPES, rather than __STDC__.
> 
> 2001-12-01  Steve M. Robbins  <address@hidden>
> 
>        * include/mailutils/*.h: Use symbol PROTOTYPES instead
>        of __STDC__ to enable function prototypes.
> 
> 
> 
> Diff is attached.
> 
> Cheers,
> -Steve
> 
> 
> 

> ? stamp-h.inT
> ? confdefs.h
> ? lex.yy.c
> ? prototypes-diff.changelog
> ? prototypes-diff.2002-01-21
> ? mailbox/so_locations
> ? readmsg/Makefile
> ? readmsg/Makefile.in
> ? readmsg/.deps
> Index: include/mailutils/address.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/address.h,v
> retrieving revision 1.7
> diff -u -b -B -r1.7 address.h
> --- include/mailutils/address.h       23 Jan 2002 04:35:51 -0000      1.7
> +++ include/mailutils/address.h       24 Jan 2002 03:27:26 -0000
> @@ -21,7 +21,7 @@
>  #include <sys/types.h>
>  
>  #ifndef __P
> -# ifdef __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()
> Index: include/mailutils/attribute.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/attribute.h,v
> retrieving revision 1.7
> diff -u -b -B -r1.7 attribute.h
> --- include/mailutils/attribute.h     3 Jul 2001 11:53:08 -0000       1.7
> +++ include/mailutils/attribute.h     24 Jan 2002 03:27:26 -0000
> @@ -25,7 +25,7 @@
>  #endif
>  
>  #ifndef __P
> -# ifdef __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()
> Index: include/mailutils/auth.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/auth.h,v
> retrieving revision 1.8
> diff -u -b -B -r1.8 auth.h
> --- include/mailutils/auth.h  19 Jan 2002 20:17:34 -0000      1.8
> +++ include/mailutils/auth.h  24 Jan 2002 03:27:26 -0000
> @@ -22,7 +22,7 @@
>  #include <mailutils/url.h>
>  
>  #ifndef __P
> -#ifdef __STDC__
> +#if PROTOTYPES
>  #define __P(args) args
>  #else
>  #define __P(args) ()
> Index: include/mailutils/body.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/body.h,v
> retrieving revision 1.8
> diff -u -b -B -r1.8 body.h
> --- include/mailutils/body.h  15 Oct 2001 00:56:09 -0000      1.8
> +++ include/mailutils/body.h  24 Jan 2002 03:27:26 -0000
> @@ -22,7 +22,7 @@
>  #include <mailutils/stream.h>
>  
>  #ifndef __P
> -# ifdef __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()
> Index: include/mailutils/debug.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/debug.h,v
> retrieving revision 1.4
> diff -u -b -B -r1.4 debug.h
> --- include/mailutils/debug.h 22 Jul 2001 09:38:09 -0000      1.4
> +++ include/mailutils/debug.h 24 Jan 2002 03:27:26 -0000
> @@ -22,7 +22,7 @@
>  #include <stdarg.h>
>  
>  #ifndef __P
> -#ifdef __STDC__
> +#if PROTOTYPES
>  #define __P(args) args
>  #else
>  #define __P(args) ()
> Index: include/mailutils/envelope.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/envelope.h,v
> retrieving revision 1.2
> diff -u -b -B -r1.2 envelope.h
> --- include/mailutils/envelope.h      11 Dec 2000 04:38:36 -0000      1.2
> +++ include/mailutils/envelope.h      24 Jan 2002 03:27:26 -0000
> @@ -25,7 +25,7 @@
>  #endif
>  
>  #ifndef __P
> -# ifdef __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()
> Index: include/mailutils/error.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/error.h,v
> retrieving revision 1.2
> diff -u -b -B -r1.2 error.h
> --- include/mailutils/error.h 5 Nov 2001 13:38:50 -0000       1.2
> +++ include/mailutils/error.h 24 Jan 2002 03:27:26 -0000
> @@ -21,7 +21,7 @@
>  #include <stdarg.h>
>  
>  #ifndef __P
> -#ifdef __STDC__
> +#if PROTOTYPES
>  #define __P(args) args
>  #else
>  #define __P(args) ()
> Index: include/mailutils/filter.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/filter.h,v
> retrieving revision 1.2
> diff -u -b -B -r1.2 filter.h
> --- include/mailutils/filter.h        10 Apr 2001 05:15:48 -0000      1.2
> +++ include/mailutils/filter.h        24 Jan 2002 03:27:26 -0000
> @@ -28,7 +28,7 @@
>  #include <mailutils/stream.h>
>  
>  #ifndef __P
> -# ifdef __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()
> Index: include/mailutils/folder.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/folder.h,v
> retrieving revision 1.9
> diff -u -b -B -r1.9 folder.h
> --- include/mailutils/folder.h        19 Jan 2002 20:20:13 -0000      1.9
> +++ include/mailutils/folder.h        24 Jan 2002 03:27:27 -0000
> @@ -33,7 +33,7 @@
>  #endif
>  
>  #ifndef __P
> -# ifdef __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()
> Index: include/mailutils/header.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/header.h,v
> retrieving revision 1.11
> diff -u -b -B -r1.11 header.h
> --- include/mailutils/header.h        15 Oct 2001 00:56:09 -0000      1.11
> +++ include/mailutils/header.h        24 Jan 2002 03:27:27 -0000
> @@ -22,7 +22,7 @@
>  #include <mailutils/stream.h>
>  
>  #ifndef __P
> -#ifdef __STDC__
> +#if PROTOTYPES
>  #define __P(args) args
>  #else
>  #define __P(args) ()
> Index: include/mailutils/iterator.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/iterator.h,v
> retrieving revision 1.2
> diff -u -b -B -r1.2 iterator.h
> --- include/mailutils/iterator.h      5 Mar 2001 04:47:52 -0000       1.2
> +++ include/mailutils/iterator.h      24 Jan 2002 03:27:27 -0000
> @@ -22,7 +22,7 @@
>  #include <sys/types.h>
>  
>  #ifndef __P
> -#ifdef __STDC__
> +#if PROTOTYPES
>  #define __P(args) args
>  #else
>  #define __P(args) ()
> Index: include/mailutils/list.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/list.h,v
> retrieving revision 1.4
> diff -u -b -B -r1.4 list.h
> --- include/mailutils/list.h  23 Jan 2002 04:34:07 -0000      1.4
> +++ include/mailutils/list.h  24 Jan 2002 03:27:27 -0000
> @@ -21,7 +21,7 @@
>  #include <sys/types.h>
>  
>  #ifndef __P
> -# ifdef __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()
> Index: include/mailutils/locker.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/locker.h,v
> retrieving revision 1.3
> diff -u -b -B -r1.3 locker.h
> --- include/mailutils/locker.h        2 May 2001 04:45:11 -0000       1.3
> +++ include/mailutils/locker.h        24 Jan 2002 03:27:27 -0000
> @@ -25,7 +25,7 @@
>  #endif
>  
>  #ifndef __P
> -# ifdef __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()
> Index: include/mailutils/mailbox.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/mailbox.h,v
> retrieving revision 1.17
> diff -u -b -B -r1.17 mailbox.h
> --- include/mailutils/mailbox.h       19 Jan 2002 20:26:26 -0000      1.17
> +++ include/mailutils/mailbox.h       24 Jan 2002 03:27:27 -0000
> @@ -38,7 +38,7 @@
>  #endif
>  
>  #ifndef __P
> -# ifdef __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()
> Index: include/mailutils/mailer.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/mailer.h,v
> retrieving revision 1.9
> diff -u -b -B -r1.9 mailer.h
> --- include/mailutils/mailer.h        18 Dec 2001 03:07:23 -0000      1.9
> +++ include/mailutils/mailer.h        24 Jan 2002 03:27:27 -0000
> @@ -29,7 +29,7 @@
>  #include <mailutils/url.h>
>  
>  #ifndef __P
> -# ifdef __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()
> Index: include/mailutils/message.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/message.h,v
> retrieving revision 1.17
> diff -u -b -B -r1.17 message.h
> --- include/mailutils/message.h       19 Jan 2002 20:30:46 -0000      1.17
> +++ include/mailutils/message.h       24 Jan 2002 03:27:27 -0000
> @@ -34,7 +34,7 @@
>  #include <mailutils/stream.h>
>  
>  #ifndef __P
> -# ifdef __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()
> Index: include/mailutils/mime.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/mime.h,v
> retrieving revision 1.5
> diff -u -b -B -r1.5 mime.h
> --- include/mailutils/mime.h  5 Mar 2001 04:47:52 -0000       1.5
> +++ include/mailutils/mime.h  24 Jan 2002 03:27:27 -0000
> @@ -23,7 +23,7 @@
>  #include <mailutils/stream.h>
>  
>  #ifndef __P
> -# ifdef __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()
> Index: include/mailutils/monitor.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/monitor.h,v
> retrieving revision 1.2
> diff -u -b -B -r1.2 monitor.h
> --- include/mailutils/monitor.h       11 Dec 2000 04:38:36 -0000      1.2
> +++ include/mailutils/monitor.h       24 Jan 2002 03:27:27 -0000
> @@ -25,7 +25,7 @@
>  #endif
>  
>  #ifndef __P
> -# ifdef __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()
> Index: include/mailutils/mutil.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/mutil.h,v
> retrieving revision 1.12
> diff -u -b -B -r1.12 mutil.h
> --- include/mailutils/mutil.h 17 Jan 2002 22:29:30 -0000      1.12
> +++ include/mailutils/mutil.h 24 Jan 2002 03:27:27 -0000
> @@ -26,7 +26,7 @@
>  #include <time.h>
>  
>  #ifndef __P
> -# ifdef __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()
> Index: include/mailutils/observer.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/observer.h,v
> retrieving revision 1.6
> diff -u -b -B -r1.6 observer.h
> --- include/mailutils/observer.h      5 Mar 2001 04:47:52 -0000       1.6
> +++ include/mailutils/observer.h      24 Jan 2002 03:27:27 -0000
> @@ -21,7 +21,7 @@
>  #include <sys/types.h>
>  
>  #ifndef __P
> -#ifdef __STDC__
> +#if PROTOTYPES
>  #define __P(args) args
>  #else
>  #define __P(args) ()
> Index: include/mailutils/parse822.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/parse822.h,v
> retrieving revision 1.8
> diff -u -b -B -r1.8 parse822.h
> --- include/mailutils/parse822.h      4 Sep 2001 01:25:06 -0000       1.8
> +++ include/mailutils/parse822.h      24 Jan 2002 03:27:27 -0000
> @@ -26,7 +26,7 @@
>  #include <mailutils/mutil.h>
>  
>  #ifndef __P
> -# ifdef __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()
> Index: include/mailutils/property.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/property.h,v
> retrieving revision 1.5
> diff -u -b -B -r1.5 property.h
> --- include/mailutils/property.h      15 Oct 2001 00:56:09 -0000      1.5
> +++ include/mailutils/property.h      24 Jan 2002 03:27:27 -0000
> @@ -21,7 +21,7 @@
>  #include <sys/types.h>
>  
>  #ifndef __P
> -# ifdef __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()
> Index: include/mailutils/registrar.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/registrar.h,v
> retrieving revision 1.7
> diff -u -b -B -r1.7 registrar.h
> --- include/mailutils/registrar.h     8 Sep 2001 10:38:18 -0000       1.7
> +++ include/mailutils/registrar.h     24 Jan 2002 03:27:27 -0000
> @@ -27,7 +27,7 @@
>  #include <mailutils/list.h>
>  
>  #ifndef __P
> -# ifdef __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()
> Index: include/mailutils/stream.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/stream.h,v
> retrieving revision 1.9
> diff -u -b -B -r1.9 stream.h
> --- include/mailutils/stream.h        18 Dec 2001 01:27:07 -0000      1.9
> +++ include/mailutils/stream.h        24 Jan 2002 03:27:27 -0000
> @@ -28,7 +28,7 @@
>  #endif
>  
>  #ifndef __P
> -# ifdef __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()
> Index: include/mailutils/url.h
> ===================================================================
> RCS file: /cvs/mailutils/include/mailutils/url.h,v
> retrieving revision 1.4
> diff -u -b -B -r1.4 url.h
> --- include/mailutils/url.h   18 Jul 2001 12:54:50 -0000      1.4
> +++ include/mailutils/url.h   24 Jan 2002 03:27:27 -0000
> @@ -25,7 +25,7 @@
>  #endif
>  
>  #ifndef __P
> -# if __STDC__
> +# if PROTOTYPES
>  #  define __P(args) args
>  # else
>  #  define __P(args) ()


-- 
Sam Roberts <address@hidden>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]