* NetNut <netnut404@...> [030130 16:44]:
> hello, I tried your patch, and it patched fine, but when I run the make I get
> some errors.
[snip]
> gbconfig.o gbconfig.c
> gbconfig.c: In function `configure_select_mailbox':
> gbconfig.c:125: `SSLLabel' undeclared (first use in this function)
> gbconfig.c:125: (Each undeclared identifier is reported only once
> gbconfig.c:125: for each function it appears in.)
> gbconfig.c:126: `SSLCheckbox' undeclared (first use in this function)
> gbconfig.c: In function `configure_set_type':
> gbconfig.c:227: `SSLLabel' undeclared (first use in this function)
> gbconfig.c:228: `SSLCheckbox' undeclared (first use in this function)
> make: *** [gbconfig.o] Error 1
Sorry, my mistake. The lines at 125, 227 and 228 should be surrounded by
#ifdef HAVE_SSL, otherwise, gbuffy won't work with my patch installed and
gbuffy _not_ configured with ssl.
The reason why _you_ are getting the error is probably because you didn't
specify --with-ssl when running ./configure. Or maybe you didn't run
autoconf first, my patch patches configure.in, not the generated configure.
So, try this:
$ autoconf <--- to generate a new configure.in
$ ./configure --with-ssl <--- to enable ssl
$ make
Hope this helps
Eivind