Thanks. it work.
another problem:
after i signup a new email account it return a blank page.
the other html templates work fine. i'm using Solaris 8.
----
Chris Chan
----- Original Message -----
From: "Ken Jones" <[EMAIL PROTECTED]>
To: "Chris Chan" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Monday, October 09, 2000 8:33 PM
Subject: Re: any update on vpop-signup-0.2.tar.gz ?
Chris Chan wrote:
>
> Ken,
>
> is there a new version of
>
> vpop-signup-0.2.tar.gz ?
>
> it fail to compile with latest version of vpopmail.
>
> (This is a web base adduser C program like hotmail)
>
> ========= Error Message =======
> # gmake
> gcc -I/var/vpopmail/include -o main.o -c main.c
> gcc -I/var/vpopmail/include -o env.o -c env.c
> gcc -I/var/vpopmail/include -o var.o -c var.c
> gcc -I/var/vpopmail/include -o file.o -c file.c
> gcc -I/var/vpopmail/include -o parse.o -c parse.c
> gcc -I/var/vpopmail/include -o misc.o -c misc.c
> gcc -I/var/vpopmail/include -o addu.o -c addu.c
> In file included from addu.c:24:
> /var/vpopmail/include/vpopmail.h:90: parse error before `gid_t'
> /var/vpopmail/include/vpopmail.h:110: warning: parameter names (without
> types) in function declaration
> gmake: *** [addu.o] Error 1
>
> ----
> Chris Chan
Edit addu.c and change it from:
#include <stdio.h>
#include <stdlib.h>
#include "file.h"
To:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "file.h"
FreeBSD requires the #include <unistd.h> header for the definition of
gid_t
I'll put together a new full release this week.
Ken