Dear all:
While attempting to install an unrelated package, the installation
failed. Going over some of the errors I've found that the install script
failed at creating a directory, namely '/usr/local/include', saying that
the directory already exists.
When i looked at /usr/local i found not a directory, but a file,
named - you guessed it - 'include'. When I looked at the contents of that
file it seemed like it came from some cd writing (or scsi) related thing
(I'm not versed at all in C).
My question is: can i safely delete that file and make an 'include'
dir instead?
Thanks in advance for your help.
Here is the beginning of the 'include' file:
/******************************************************************
* CopyPolicy: GNU Public License 2 applies
* Copyright (C) 1998 Monty [EMAIL PROTECTED]
* and Heiko Eissfeldt [EMAIL PROTECTED]
*
* Toplevel interface header; applications include this
*
******************************************************************/
#ifndef _cdda_interface_h_
#define _cdda_interface_h_
#ifndef CD_FRAMESIZE
#define CD_FRAMESIZE 2048
#endif
#ifndef CD_FRAMESIZE_RAW
#define CD_FRAMESIZE_RAW 2352
#endif
#define CD_FRAMESAMPLES (CD_FRAMESIZE_RAW / 4)
#include <sys/types.h>
#include <signal.h>
#define MAXTRK 100
typedef struct TOC { /* structure of table of contents */
unsigned char bFlags;
unsigned char bTrack;
size32 dwStartSector;
} TOC;
/* interface types */
#define GENERIC_SCSI 0
#define COOKED_IOCTL 1
#define TEST_INTERFACE 2
#define CDDA_MESSAGE_FORGETIT 0
#define CDDA_MESSAGE_PRINTIT 1
#define CDDA_MESSAGE_LOGIT 2
/* cdrom access function pointer */
void SetupInterface( unsigned char *int_name );
and follows ...
--
Lic. Fernan Aguero
Instituto de Investigaciones Biotecnologicas
Universidad Nacional de General San Martin
Parque Tecnologico Miguelete
INTI, Edificio 24, 1650, San Martin, Argentina
Phone: 54-11-4580-7255 ext 310
Fax: 54-11-4752-9639
Email: [EMAIL PROTECTED]
Web: under construction
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]