BASE Users,

I just updated my Fedora Core 3 installation, then attempted to install BASE 1.2.17, but tifftopnm.c wouldn't compile because TRUE and FALSE weren't defined.

If I traced back through the header files correctly, it appears that the maintainers of the netpbm software have removed the definitions of TRUE and FALSE from the pm_config.h header file for the netpbm-devel.i386 10.31-1.FC3 RPM, whereas there was no problem with the older version, netpbm-devel.i386 10.28-1.FC3.2.

I fixed the compile problem by adding the following lines to the top of the tifftopnm.c file:

#ifndef TRUE
#define TRUE 1
#endif

#ifndef FALSE
#define FALSE 0
#endif

--
Conrad Halling
[EMAIL PROTECTED]



-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
The BASE general discussion mailing list
basedb-users@lists.sourceforge.net
unsubscribe: send a mail with subject "unsubscribe" to
[EMAIL PROTECTED]

Reply via email to