-
libetpan fails to compile on solaris. This is due to a missing setenv, getopt_long and a non-gnu date command.
I also noticed, that it is not possible to disable ipv6 support of which solaris 2.8 lacks.
The attached patch fixes these issues.
2009-05-04 14:16:48 UTC in libEtPan! - a mail library
-
fliewatuet committed revision 154 to the Slrn Documentation Project SVN repository, changing 2 files.
2009-01-06 19:56:24 UTC in Slrn Documentation Project
-
fliewatuet committed revision 147 to the Slrn Documentation Project SVN repository, changing 5 files.
2008-09-08 19:20:57 UTC in Slrn Documentation Project
-
Fixed in revision 115.
2008-07-19 09:20:54 UTC in Slrn Documentation Project
-
fliewatuet committed revision 115 to the Slrn Documentation Project SVN repository, changing 8 files.
2008-07-19 09:17:38 UTC in Slrn Documentation Project
-
* printing in windows is only valid for windows 98
update it for windows XP
* How to activate utf-8 mode in windows should be added.
2008-07-19 08:56:38 UTC in Slrn Documentation Project
-
fliewatuet committed revision 108 to the Slrn Documentation Project SVN repository, changing 1 files.
2008-07-07 19:48:51 UTC in Slrn Documentation Project
-
Logged In: YES
user_id=1641149
OK, exif works now fine.
Thank you.
2006-11-13 09:03:25 UTC in GQview image viewer
-
Logged In: YES
user_id=1641149
Patch does not work, the code crashes in the following routine
620 static guint32 exif_byte_get_int32(unsigned char *f, ExifByteOrder bo)
621 {
622 if (bo == EXIF_BYTE_ORDER_INTEL)
623 return GUINT32_FROM_LE(*(guint32*)f);
624 else
625 return GUINT32_FROM_BE(*(guint32*)f);
626 }
Backtrace shows
#0 0x0003fd98 in exif_byte_get_int32...
2006-11-10 08:47:13 UTC in GQview image viewer
-
Hi,
the exif support in gqview is broken on sparc solaris systems.
First problem:
The BYTE_ORDER macro is not defined on this system, so gqview
will never detect if the file has stored exif information,
because without that macro defined the code in exif.c behaves
like it was compiled on a little endian machine.
Second problem:
When the first problem is solved, the code crashes...
2006-11-09 09:37:16 UTC in GQview image viewer