Created
October 30, 2011 01:33
-
-
Save akhansen/1325343 to your computer and use it in GitHub Desktop.
dx error message on 10.7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/***********************************************************************/ | |
/* Open Visualization Data Explorer */ | |
/* (C) Copyright IBM Corp. 1989,1999 */ | |
/* ALL RIGHTS RESERVED */ | |
/* This code licensed under the */ | |
/* "IBM PUBLIC LICENSE - Open Visualization Data Explorer" */ | |
/***********************************************************************/ | |
/* | |
* _IM_image.c : calls ImageMagick API to write files, especially useful for those files | |
* whose formats DX does not support natively. | |
* FIXED!: does not write intermediate miff file if the miff does not exist (i.e. is not to be appended). | |
*FIXME: dx does not know all extensions that IM supports, can dx query IM API for the | |
* supported extensions and thereby alleviate the tedious supplying of both format and extension? | |
*/ | |
/* | |
* This was coded to preserve dx's prior behavior for other extensions/formats, entailing some complexity. | |
* How did we get here? | |
* | |
* Currently from WriteImage, there are two ways to get here: | |
* (1) special cases e.g. gif where an entry in ImageTable(in _rw_image.c) | |
* specifies the format and acceptable extensions and write_im is specified as the write function. | |
* The special case is triggered by giving the format and/or a listed extension. | |
* (2) "ImageMagick supported format" format was specified and or the extension was first matched in | |
* the table entry for "ImageMagick supported format" format. | |
* The extension must be included, recognized or not, in this case so ImageMagick knows what to write. | |
* This scheme permits the user to specify, via an extention, an output format the dx coders did not know about | |
* but that ImageMagick has added (perhaps later, perhaps as a delegate). | |
* This scheme also allows the coexistence of DX methods and IM methods for writing image files. For example, | |
* a format of null and an .rgb (or missing) extension gives the DX rgb output, while a format of | |
* "ImageMagick supported format" and an .rgb extension gives the more conventional raw red/green/blue bytes in a file. | |
* Another example is specifying "filename.miff" and "ImageMagick supported format", where dx writes its miff | |
* and IM converts and overwrites it to its liking. | |
* | |
* DX prefers the "format" to the extension, IM goes by the extension. | |
* WriteImage parameters can be (optional) format and (optional) filename+extension or filename . | |
* Whether dot-anything is accepted as an extension depends on the listing in ImageTable (_rw_image.c). | |
* dx will assume dx rgb format if the | |
*format is null and the filename's extension is not recognized (i.e. we won't get to this function). | |
*if dx recognized the extension for the format, the extension was | |
*removed from the basename and now the ImageArgs.extension points to the extension. | |
*however, dx will not (currently) have hardcoded all extensions that IM supports. | |
*So it is easily possible that by the time we get here, we have a format of "ImageMagick supported format" or null | |
* and a filename | |
* with or without an extension appended, with or without a null imageargs.extension. | |
*/ | |
/* | |
* DX and IM name spaces collide on these terms (for IM 4.2.8 at least) | |
*/ | |
#define ImageInfo DXImageInfo | |
#define ImageType DXImageType | |
#include <dxconfig.h> | |
#include <stdio.h> | |
#include <fcntl.h> | |
#include <string.h> | |
#include <dx/dx.h> | |
#include "_helper_jea.h" | |
#include "_rw_image.h" | |
#include <sys/types.h> | |
#if defined(HAVE_UNISTD_H) | |
#include <unistd.h> | |
#endif | |
#if ( CAN_HAVE_ARRAY_DASD == 1 ) | |
#include <iop/mov.h> | |
#include <iop/pfs.h> | |
#endif | |
#if defined(HAVE_SYS_STAT_H) | |
#include <sys/stat.h> | |
#endif | |
#ifdef HAVE_LIBMAGICK | |
/* we have some namespace conflicts with ImageMagick */ | |
#undef ImageInfo | |
#undef ImageType | |
#include <magick/api.h> | |
#endif /* def HAVE_LIBMAGICK */ | |
#if (0) | |
#define DEBUGMESSAGE(mess) DXMessage((mess)) | |
#else | |
#define DEBUGMESSAGE(mess) | |
#endif | |
#define STREQ(s1,s2) (strcmp((s1),(s2))==0) | |
static Error write_im(RWImageArgs *iargs); | |
/* | |
* DXWrite out the given image in some format supported by ImageMagick | |
* currently through an intermediary file in miff (Magick Image File | |
* Format) though ideally this would use ImageMagick-4.2.8+'s blob support | |
* for in-memory translation. | |
*/ | |
Error | |
_dxf_write_im(RWImageArgs *iargs) { | |
/* | |
* how does one error check ? let IM flag the error for an unsupported image format | |
* if (iargs->imgtyp != img_typ_fb) | |
* DXErrorGoto(ERROR_INTERNAL, "_dxf_write_fb: mismatched image types"); | |
*/ | |
return write_im(iargs); | |
} | |
static Error write_im(RWImageArgs *iargs) { | |
#ifdef HAVE_LIBMAGICK | |
RWImageArgs tmpargs = *iargs; | |
Image *image=NULL; | |
Image *resize_image=NULL; | |
int err = 0; | |
int pixelsize; | |
int linesize; | |
Field field; | |
Array array; | |
int i; | |
int dim[3], ndim; | |
int nx, ny; | |
Type dxcolortype; | |
int imcolortype; | |
char *p1, *p2; | |
void* colors; | |
void* copycolors=NULL; | |
char *compressFlag = NULL; | |
CompressionType ctype = UndefinedCompression; | |
ExceptionInfo | |
_dxd_exception_info; | |
ImageInfo* image_info; | |
ImageInfo* new_frame_info; | |
int miff_exists_flag = 0; | |
char* miff_filename = NULL; | |
FILE* miff_fp; | |
DEBUGMESSAGE("requested extension is "); | |
/* if basename's .ext recognized as a format, it is removed from basename and | |
* iargs->extension points to it */ | |
if(!iargs->extension) { | |
/* no extension or not recognized */ | |
if(iargs->format) { | |
if(strcmp(iargs->format,"ImageMagick supported format") && strcmp(iargs->format, "ImageMagick")) { | |
char* firstspace; | |
/* not "ImageMagick supported format" format, use format for extension */ | |
iargs->extension=iargs->format; | |
/* strip junk we can't deal withafter format... like "gif delayed=1" */ | |
firstspace=strchr(iargs->extension, ' '); | |
if(firstspace != NULL) | |
*firstspace='\0'; | |
} | |
} | |
} | |
/* still no recognized extension or "unique" format? it had better be on the filename! */ | |
if(!iargs->extension) { | |
int i; | |
for(i=strlen(iargs->basename);i>0;--i) { | |
if(iargs->basename[i]=='.') { | |
iargs->extension=&((iargs->basename)[i+1]); | |
iargs->basename[i]='\0'; | |
i=0; | |
} else if (iargs->basename[i]=='/') | |
i=0; | |
} | |
} | |
/* | |
* before proceeding, | |
* find out if we can handle the conversion to the requested extension | |
*/ | |
/* | |
* 8/99 some ambiguity here, since miff files are appendable. | |
* My arbitrary choice: if the miff file exists already, we append and do not erase. | |
* if the miff file does not exist, we erase when we are done. | |
* So if you want a multi-image file in some non-natively-supported-dx-format, | |
* writeimage to a miff, then on the last frame writeimage to e.g. an | |
* mpeg of the same name, specifying "im" format. Then it is up to you to erase it. | |
* Maybe some other scenario will prevail. | |
*/ | |
/* Only appending to miff files with extension .miff or type MIFF ignore this for others */ | |
if(strcmp(iargs->extension, "miff") == 0) { | |
tmpargs.format="miff"; | |
tmpargs.imgtyp=img_typ_miff; | |
/* does file exist? */ | |
miff_filename = (char *)DXAllocateLocal(strlen(iargs->basename)+strlen(tmpargs.format)+2); | |
strcpy(miff_filename,iargs->basename); | |
strcat(miff_filename,"."); | |
strcat(miff_filename,tmpargs.format); | |
if((miff_fp=fopen(miff_filename,"r"))) { | |
miff_exists_flag=1; | |
fclose(miff_fp); | |
} else { | |
miff_exists_flag=0; | |
} | |
if(miff_filename) DXFree((Pointer)miff_filename); | |
} | |
GetExceptionInfo(&_dxd_exception_info); | |
image_info=CloneImageInfo((ImageInfo *) NULL); | |
if(miff_exists_flag) { | |
FILE *existFile, *newFrameFile; | |
char *buf; | |
int noir; | |
new_frame_info=CloneImageInfo((ImageInfo *) NULL); | |
DEBUGMESSAGE("starting miff appending"); | |
DEBUGMESSAGE(iargs->basename); | |
/* _dxf_write_miff(&tmpargs); */ | |
/* | |
Initialize the image info structure and read an image. | |
*/ | |
(void) strcpy(image_info->filename,iargs->basename); | |
(void) strcat(image_info->filename,"."); | |
(void) strcat(image_info->filename,tmpargs.format); | |
DEBUGMESSAGE("reading following file"); | |
DEBUGMESSAGE(image_info->filename); | |
/* Now create new frame that will be added onto image. */ | |
field=iargs->image; | |
array=(Array)DXGetComponentValue(field,"colors"); | |
DXGetArrayInfo(array,NULL,&dxcolortype,NULL,NULL,NULL); | |
if (dxcolortype == TYPE_FLOAT) { | |
imcolortype = FloatPixel; | |
pixelsize = 3*sizeof(float); | |
} else { | |
imcolortype = CharPixel; | |
pixelsize = 3; | |
} | |
DXGetStringAttribute((Object)field, "compression", &compressFlag); | |
if(compressFlag == NULL) | |
ctype = UndefinedCompression; | |
else if(strcmp(compressFlag, "BZip")==0) | |
ctype = BZipCompression; | |
else if(strcmp(compressFlag, "Fax")==0) | |
ctype = FaxCompression; | |
else if(strcmp(compressFlag, "Group4")==0) | |
ctype = Group4Compression; | |
else if(strcmp(compressFlag, "JPEG")==0) | |
ctype = JPEGCompression; | |
else if(strcmp(compressFlag, "LZW")==0) | |
ctype = LZWCompression; | |
else if(strcmp(compressFlag, "RLE")==0) | |
ctype = RunlengthEncodedCompression; | |
else if(strcmp(compressFlag, "Zip")==0) | |
ctype = ZipCompression; | |
new_frame_info->compression = ctype; | |
colors=(void*)DXGetArrayData(array); | |
array=(Array)DXGetComponentValue(field,"connections"); | |
DXQueryGridConnections(array,&ndim,dim); | |
nx=dim[1]; | |
ny=dim[0]; | |
copycolors = (void*) DXAllocate(nx*ny*pixelsize); | |
if(!copycolors) { | |
DestroyImageInfo(new_frame_info); | |
DestroyImageInfo(image_info); | |
DXErrorReturn( ERROR_INTERNAL , "out of memory allocating copycolors _im_image.c"); | |
} | |
linesize= nx*pixelsize; | |
p1=(char*)colors; | |
p2=(char*)copycolors; | |
p1+=(ny-1)*linesize; | |
for (i=0; i<ny; ++i) { | |
memcpy(p2,p1,linesize); | |
p1-=linesize; | |
p2+=linesize; | |
} | |
image=ConstituteImage(nx,ny,"RGB",imcolortype,(void*)copycolors,&_dxd_exception_info); | |
if (!image) { | |
DestroyImageInfo(new_frame_info); | |
DestroyImageInfo(image_info); | |
DXFree(copycolors); | |
DXErrorReturn( ERROR_INTERNAL , "out of memory allocating Image _im_image.c"); | |
} | |
image->compression = ctype; | |
new_frame_info->compression = ctype; | |
{ | |
char gam[7]; | |
sprintf(gam, "%2.4f", iargs->gamma); | |
GammaImage(image, gam); | |
} | |
TemporaryFilename(image->filename); | |
strcpy(new_frame_info->filename, image->filename); | |
DEBUGMESSAGE(new_frame_info->filename); | |
if(iargs->reduction > 0) { | |
int width = (int)(iargs->reduction/100.0 * nx); | |
int height = (int)(iargs->reduction/100.0 * ny); | |
resize_image = ResizeImage(image, width, height, LanczosFilter, 1.0, &_dxd_exception_info); | |
if (!image) { | |
DestroyImageInfo(image_info); | |
DXFree(copycolors); | |
DXErrorReturn( ERROR_INTERNAL , "out of memory allocating Image for resize in _im_image.c"); | |
} else { | |
DestroyImage(image); | |
image = resize_image; | |
} | |
} | |
/* Write to temp file */ | |
err = WriteImage(new_frame_info, image); | |
if(err == 0) { | |
DXFree(copycolors); | |
DestroyImage(image); | |
DestroyImageInfo(new_frame_info); | |
DestroyImageInfo(image_info); | |
#if MagickLibVersion > 0x0537 | |
DestroyConstitute(); | |
#endif | |
DXSetError(ERROR_INTERNAL, "reason = %s, description = %s", | |
image->exception.reason, | |
image->exception.description); | |
} | |
/* Now append image */ | |
buf = (char*) DXAllocate(4000); | |
if (!buf) { | |
DXFree(copycolors); | |
DestroyImage(image); | |
DestroyImageInfo(new_frame_info); | |
DestroyImageInfo(image_info); | |
#if MagickLibVersion > 0x0537 | |
DestroyConstitute(); | |
#endif | |
DXErrorReturn( ERROR_INTERNAL , "out of memory allocating buffer _im_image.c"); | |
} | |
existFile = fopen(image_info->filename, "ab"); | |
newFrameFile = fopen(new_frame_info->filename, "rb"); | |
while( !feof(newFrameFile) ) { | |
noir = fread(buf, 1, 4000, newFrameFile); | |
if(fwrite(buf, 1, noir, existFile) != noir) { | |
DXErrorReturn( ERROR_INTERNAL, "error writing file." ); | |
} | |
} | |
fclose(existFile); | |
fclose(newFrameFile); | |
remove(new_frame_info->filename); | |
DEBUGMESSAGE("back from appending the image, what did I get?"); | |
/* Now cleanup */ | |
DXFree(buf); | |
DXFree(copycolors); | |
DestroyImage(image); | |
DestroyImageInfo(image_info); | |
DestroyImageInfo(new_frame_info); | |
#if MagickLibVersion > 0x0537 | |
DestroyConstitute(); | |
#endif | |
DEBUGMESSAGE("back from DestroyImage"); | |
} else { /* miff does not exist, do this the new way by ConstituteImage */ | |
field=iargs->image; | |
array=(Array)DXGetComponentValue(field,"colors"); | |
DXGetArrayInfo(array,NULL,&dxcolortype,NULL,NULL,NULL); | |
if (dxcolortype == TYPE_FLOAT) { | |
imcolortype = FloatPixel; | |
pixelsize = 3*sizeof(float); | |
} else { | |
imcolortype = CharPixel; | |
pixelsize = 3; | |
} | |
ctype = UndefinedCompression; | |
if(iargs->compression) { | |
if(strcmp(iargs->compression, "BZip")==0) | |
ctype = BZipCompression; | |
else if(strcmp(iargs->compression, "Fax")==0) | |
ctype = FaxCompression; | |
else if(strcmp(iargs->compression, "Group4")==0) | |
ctype = Group4Compression; | |
else if(strcmp(iargs->compression, "JPEG")==0) | |
ctype = JPEGCompression; | |
else if(strcmp(iargs->compression, "LZW")==0) | |
ctype = LZWCompression; | |
else if(strcmp(iargs->compression, "RLE")==0) | |
ctype = RunlengthEncodedCompression; | |
else if(strcmp(iargs->compression, "Zip")==0) | |
ctype = ZipCompression; | |
} | |
if(iargs->quality > 0) | |
image_info->quality = iargs->quality; | |
colors=(void*)DXGetArrayData(array); | |
array=(Array)DXGetComponentValue(field,"connections"); | |
DXQueryGridConnections(array,&ndim,dim); | |
nx=dim[1]; | |
ny=dim[0]; | |
copycolors = (void*) DXAllocate(nx*ny*pixelsize); | |
if(!copycolors) { | |
DestroyImageInfo(image_info); | |
DXErrorReturn( ERROR_INTERNAL , "out of memory allocating copycolors _im_image.c"); | |
} | |
linesize= nx*pixelsize; | |
p1=(char*)colors; | |
p2=(char*)copycolors; | |
p1+=(ny-1)*linesize; | |
for (i=0; i<ny; ++i) { | |
memcpy(p2,p1,linesize); | |
p1-=linesize; | |
p2+=linesize; | |
} | |
image=ConstituteImage(nx,ny,"RGB",imcolortype,(void*)copycolors,&_dxd_exception_info); | |
if (!image) { | |
DestroyImageInfo(image_info); | |
DXFree(copycolors); | |
DXErrorReturn( ERROR_INTERNAL , "out of memory allocating Image _im_image.c"); | |
} | |
/* | |
Write the image with ImageMagick | |
*/ | |
strcpy(image->filename,iargs->basename); | |
if(iargs->extension) { | |
strcat(image->filename,"."); | |
strcat(image->filename,iargs->extension); | |
} | |
{ | |
char gam[7]; | |
sprintf(gam, "%2.4f", iargs->gamma); | |
GammaImage(image, gam); | |
} | |
/* | |
* Allow the user to use ImageMagick's resize filters to resize the image when | |
* writing. This gives us a cheap way to set up anti-aliasing. | |
*/ | |
if(iargs->reduction > 0) { | |
int width = (int)(iargs->reduction/100.0 * nx); | |
int height = (int)(iargs->reduction/100.0 * ny); | |
resize_image = ResizeImage(image, width, height, LanczosFilter, 1.0, &_dxd_exception_info); | |
if (!image) { | |
DestroyImageInfo(image_info); | |
DXFree(copycolors); | |
DXErrorReturn( ERROR_INTERNAL , "out of memory allocating Image for resize in _im_image.c"); | |
} else { | |
DestroyImage(image); | |
image = resize_image; | |
} | |
} | |
image->compression = ctype; | |
image_info->compression = ctype; | |
DEBUGMESSAGE(image->filename); | |
err = WriteImage(image_info,image); | |
if(err == 0) { | |
DXSetError(ERROR_INTERNAL, "reason = %s, description = %s", | |
image->exception.reason, | |
image->exception.description); | |
} | |
DXFree(copycolors); | |
DestroyImage(image); | |
DestroyImageInfo(image_info); | |
#if MagickLibVersion > 0x0537 | |
DestroyConstitute(); | |
#endif | |
} | |
return (OK); | |
#else /* ndef HAVE_LIBMAGICK */ | |
DXErrorReturn(ERROR_NOT_IMPLEMENTED,"ImageMagick not included in build"); | |
#endif /* def HAVE_LIBMAGICK */ | |
} | |
/* | |
* Search names, in order: | |
* ".<ext>", ".0.<ext>" | |
* | |
* set states saying whether: | |
* contains numeric | |
*/ | |
char * _dxf_BuildIMReadFileName | |
( char *buf, | |
int bufl, | |
char *basename, /* Has path but no extension */ | |
char *fullname, /* As specified */ | |
char *extension, /* File extension */ | |
int framenum, | |
int *numeric ) /* Numbers postfixed onto name or not? */ | |
{ | |
int i; | |
int fd = -1; | |
int appendable_files = 0; | |
char framestr[16]; | |
DXASSERTGOTO ( NULL != buf ); | |
DXASSERTGOTO ( 0 < bufl ); | |
DXASSERTGOTO ( NULL != basename ); | |
DXASSERTGOTO ( NULL != fullname ); | |
DXASSERTGOTO ( NULL != extension ); | |
DXASSERTGOTO ( 0 <= framenum ); | |
DXASSERTGOTO ( NULL != numeric ); | |
for ( i = 0; i < 2; i++ ) { | |
*numeric = i; | |
if ( *numeric && ( framenum == VALUE_UNSPECIFIED ) ) | |
continue; | |
if (*numeric && !appendable_files) | |
sprintf(framestr,".%d",framenum); | |
else | |
framestr[0] = '\0'; | |
/* Make sure buffer is big enough */ | |
if ((strlen(basename) + strlen(framestr) + strlen(extension) + 2) > bufl) | |
DXErrorReturn(ERROR_INTERNAL,"Insufficient storage space for filename"); | |
sprintf( buf, "%s%s.%s", basename, framestr, extension ); | |
if ( 0 <= ( fd = open ( buf, O_RDONLY ) ) ) | |
break; | |
} | |
if ( 0 > fd ) { | |
*numeric = 0; | |
strcpy ( buf, basename ); | |
fd = open ( buf, O_RDONLY ); | |
} | |
DXDebug( "R", | |
"_dxf_BuildIMReadFileName: File = %s, numeric = %d", | |
buf, *numeric ); | |
if (fd > -1) | |
close ( fd ); | |
return buf; | |
} | |
/* | |
* Determine the number of images in an ImageMagick file. | |
*/ | |
#if defined(HAVE_LIBMAGICK) | |
static int _dxf_GetNumImagesInFile( ImageInfo *image_info ) { | |
/* FIXME: Currently, ImageMagick has no way to determine the number of | |
* images in a (potentially multi-image) image file without reading | |
* the data for all of the images into memory at once. This was | |
* confirmed by folks on the ImageMagick mailing list. | |
* | |
* Primary evidence of this is that some readers (e.g. PNG) completely | |
* ignore the ImageInfo subimage and subrange fields, and Magick does | |
* not support reading images (all or a subset) in ping=1 mode. | |
* So subimage specification and multi-image ping is pointless. | |
* | |
* We have a choice here between: | |
* 1) general, typeless image handling, where we take a performance hit | |
* to read all images in a multi-image sequence into VM (possibly | |
* exhausting VM) to access all, one, or some subset in DX | |
* 2) general, typeless image handling, where we limit access to only | |
* one sub-image | |
* 3) special cases based on image type | |
* | |
* Because we support separate-file multi-image read via IM, and | |
* DX's native TIFF and MIFF readers support single-file multi-image, we | |
* choose option #2. This routine should be fixed if/when ImageMagick | |
* adds better support for single-file multi-image reads. | |
*/ | |
return 1; | |
} | |
#endif | |
/* | |
* Set a SizeData struct with values. | |
* set state saying whether: | |
* has multiple images in file | |
* Careful: | |
* if the images are stored internally, | |
* then reset the use_numerics flag. | |
*/ | |
SizeData * _dxf_ReadImageSizesIM | |
( char *name, | |
int startframe, | |
SizeData *data, | |
int *use_numerics, | |
int *multiples ) { | |
#if !defined(HAVE_LIBMAGICK) | |
DXErrorReturn(ERROR_NOT_IMPLEMENTED,"ImageMagick 5 not included in build"); | |
#else | |
Image *image; | |
ImageInfo *image_info = NULL; | |
ExceptionInfo _dxd_exception_info; | |
char user_basename [ MAX_IMAGE_NAMELEN ]; | |
char newname[ MAX_IMAGE_NAMELEN ]; | |
char extension[40]; | |
int fh; | |
DXASSERTGOTO ( ERROR != name ); | |
DXASSERTGOTO ( ERROR != data ); | |
DXASSERTGOTO ( ERROR != use_numerics ); | |
DXASSERTGOTO ( ERROR != multiples ); | |
/* Magick init */ | |
GetExceptionInfo( &_dxd_exception_info ); | |
image_info = CloneImageInfo( NULL ); | |
/* PingImage returns info on the first image (possibly in a sequence) */ | |
image_info->filename[0] = '\0'; | |
strncat( image_info->filename, name, sizeof( image_info->filename ) - 1 ); | |
if ( (image = PingImage( image_info, &_dxd_exception_info )) == NULL ) | |
DXErrorGoto2( ERROR_BAD_PARAMETER, "#13950", | |
/* failed to read image in file '%s' */ name ); | |
data->height = image->rows; | |
data->width = image->columns; | |
data->startframe = ( startframe == VALUE_UNSPECIFIED ) ? 0 : startframe; | |
data->endframe = ( data->startframe + | |
_dxf_GetNumImagesInFile( image_info ) - 1 ); | |
*multiples = data->startframe != data->endframe; | |
if ( *multiples ) | |
*use_numerics = 0; | |
/* | |
* Intent: If use_numerics (implies there aren't multiple images | |
* in this file), see if there are multiple numbered files on disk. | |
*/ | |
if ( !(*use_numerics) ) | |
*multiples = 0; | |
else { | |
/* Magick filenames "always" have a filetype extension */ | |
user_basename[0] = extension[0] = '\0'; | |
_dxf_ExtractImageExtension(name,img_typ_im, | |
extension,sizeof(extension)); | |
strncat( user_basename, name, sizeof(user_basename)-1 ); | |
_dxf_RemoveImageExtension( user_basename, img_typ_im ); | |
_dxf_RemoveExtension( user_basename ); | |
do { | |
sprintf( newname, "%s.%d.%s", | |
user_basename, data->endframe, extension ); | |
if ( (fh = open ( newname, O_RDONLY )) < 0 ) | |
break; | |
close ( fh ); | |
data->endframe++; | |
DXDebug ( "R", "_dxf_ReadImageSizesIM: opened: %s", newname ); | |
} while ( 1 ); | |
data->endframe--; | |
} | |
DXDebug ( "R", | |
"_dxf_ReadImageSizesIM: h,w, s,e = %d,%d, %d,%d; " | |
"numer = %d, multi = %d", | |
data->height, data->width, data->startframe, data->endframe, | |
*use_numerics, *multiples ); | |
if ( image_info ) | |
DestroyImageInfo( image_info ); | |
if ( image ) | |
DestroyImage( image ); | |
return data; | |
error: | |
if ( image_info ) | |
DestroyImageInfo( image_info ); | |
if ( image ) | |
DestroyImage( image ); | |
return NULL; | |
#endif /* HAVE_LIBMAGICK */ | |
} | |
/* | |
* Read an image from a file into a DX image field using ImageMagick. | |
*/ | |
Field _dxf_InputIM( int width, int height, char *name, int relframe, | |
int delayed, char *colortype ) { | |
#if !defined(HAVE_LIBMAGICK) | |
DXErrorReturn(ERROR_NOT_IMPLEMENTED,"ImageMagick 5 not included in build"); | |
#else | |
Field dx_image = NULL; | |
Image *image = NULL, | |
*image_tmp; | |
ImageInfo *image_info = NULL; | |
ImageType image_type; | |
ExceptionInfo _dxd_exception_info; | |
Type type; | |
int rank, shape[32]; | |
Array colorsArray = NULL; | |
Array opacitiesArray = NULL; | |
Pointer pixels; | |
Pointer opacities = NULL; | |
StorageType storage_type; | |
int i; | |
DXDebug ( "R", "_dxf_InputIM: name = %s, relframe = %d", name, relframe ); | |
if ((width * height) == 0) | |
DXErrorGoto2( ERROR_BAD_PARAMETER, "#12275", 0 ); | |
/* Magick init */ | |
GetExceptionInfo( &_dxd_exception_info ); | |
image_info = CloneImageInfo( NULL ); | |
image_info->filename[0] = '\0'; | |
strncat( image_info->filename, name, sizeof( image_info->filename ) - 1 ); | |
image_info->subimage=relframe; | |
image_info->subrange=1; | |
if ( (image = ReadImage( image_info, &_dxd_exception_info )) == NULL ) | |
DXErrorGoto2( ERROR_BAD_PARAMETER, "#13950", | |
/* failed to read image in file '%s' */ name ); | |
if ( width != image->columns || height != image->rows ) | |
DXErrorGoto(ERROR_INTERNAL, | |
"Image dimensions don't match requested dimensions" ); | |
/* If it's CMYK, convert to RGB. */ | |
if ( image->colorspace == CMYKColorspace ) | |
if ( !TransformRGBImage( image, RGBColorspace ) ) | |
DXErrorGoto(ERROR_INTERNAL, "CMYK->RGB transform failed" ); | |
/* | |
* Set the colors (and possibly color map) components | |
*/ | |
#if MagickLibVersion < 0x0540 | |
image_type = GetImageType( image ); | |
#else | |
image_type = GetImageType( image, &_dxd_exception_info ); | |
#endif | |
switch ( image_type ) { | |
default : | |
/* Since we handled CMYK above, we should never get here */ | |
DXErrorGoto2( ERROR_DATA_INVALID, "#13960", image_type ); | |
/**********************************************************************/ | |
/* OPTION #1: Source is RGB direct (dest is float or byte direct) */ | |
case TrueColorType : | |
case TrueColorMatteType : | |
/* Create the image field */ | |
dx_image = DXMakeImageFormat(width, height, colortype); | |
if (! dx_image) | |
goto error; | |
colorsArray = (Array)DXGetComponentValue(dx_image, "colors"); | |
DXGetArrayInfo(colorsArray, NULL, &type, NULL, &rank, shape); | |
/* Colors are 3-vectors (direct) */ | |
if (rank != 1 || shape[0] != 3 || | |
(type != TYPE_UBYTE && type != TYPE_FLOAT)) | |
DXErrorGoto(ERROR_INTERNAL, | |
"Invalid image field direct color format" ); | |
storage_type = ( type == TYPE_UBYTE ) ? CharPixel : FloatPixel; | |
pixels = DXGetArrayData(colorsArray); | |
/* Transfer the pixels to the field */ | |
/* (NOTE: DX stores rows bottom-to-top, so flip first) */ | |
image_tmp = FlipImage( image, &_dxd_exception_info ); | |
if ( !image_tmp ) | |
DXErrorGoto(ERROR_INTERNAL, "Failed to flip image" ); | |
DestroyImage( image ); | |
image = image_tmp; | |
#if MagickLibVersion < 0x0540 | |
DispatchImage( image, 0, 0, width, height, "RGB", storage_type, | |
pixels ); | |
#else | |
DispatchImage( image, 0, 0, width, height, "RGB", storage_type, | |
pixels, &_dxd_exception_info); | |
#endif | |
/* Handle transparency (opacities are floats) */ | |
if ( image->matte ) { | |
float *optr; | |
if ( !(opacitiesArray = DXNewArray( TYPE_FLOAT, | |
CATEGORY_REAL, 0 )) || | |
!DXAddArrayData( opacitiesArray, 0, width*height, NULL) || | |
!DXSetComponentValue( (Field)dx_image, "opacities", | |
(Object)opacitiesArray ) || | |
!(opacities = DXGetArrayData(opacitiesArray)) || | |
!DXEndField( (Field)dx_image ) ) | |
DXErrorGoto(ERROR_INTERNAL, "Failed to create opacities" ); | |
#if MagickLibVersion < 0x0540 | |
DispatchImage( image, 0, 0, width, height, "A", FloatPixel, | |
opacities ); | |
#else | |
DispatchImage( image, 0, 0, width, height, "A", FloatPixel, | |
opacities, &_dxd_exception_info ); | |
#endif | |
for ( i = width * height, optr = (float *)opacities; | |
i > 0; i--, optr++ ) | |
*optr = 1.0 - *optr; | |
} | |
break; | |
/**********************************************************************/ | |
/* OPTION #2: Source is palettized (includes gray scale or B&W) */ | |
/* (dest is float or byte direct, or byte delayed with a */ | |
/* 256-element float colormap) */ | |
case PaletteType : | |
case PaletteMatteType : | |
case GrayscaleType : | |
case GrayscaleMatteType : | |
case BilevelType : | |
/* ReadImage(delayed=<y/n>) only applies to delayed color images */ | |
if (delayed == DELAYED_YES) | |
colortype = COLORTYPE_DELAYED; | |
/* Create the image field */ | |
dx_image = DXMakeImageFormat(width, height, colortype); | |
if (! dx_image) | |
goto error; | |
colorsArray = (Array)DXGetComponentValue(dx_image, "colors"); | |
DXGetArrayInfo(colorsArray, NULL, &type, NULL, &rank, shape); | |
pixels = DXGetArrayData(colorsArray); | |
/* Colors are 3-vectors (direct) */ | |
if (rank == 1 && shape[0] == 3) { | |
if (type != TYPE_UBYTE && type != TYPE_FLOAT) | |
DXErrorGoto(ERROR_INTERNAL, | |
"Invalid image field direct color format" ); | |
storage_type = ( type == TYPE_UBYTE ) ? CharPixel : FloatPixel; | |
/* Transfer the pixels to the field */ | |
/* (NOTE: DX stores rows bottom-to-top, so flip first) */ | |
image_tmp = FlipImage( image, &_dxd_exception_info ); | |
if ( !image_tmp ) | |
DXErrorGoto(ERROR_INTERNAL, | |
"Failed to flip image" ); | |
DestroyImage( image ); | |
image = image_tmp; | |
#if MagickLibVersion < 0x0540 | |
DispatchImage( image, 0, 0, width, height, "RGB", storage_type, | |
pixels ); | |
#else | |
DispatchImage( image, 0, 0, width, height, "RGB", storage_type, | |
pixels, &_dxd_exception_info ); | |
#endif | |
/* Handle transparency (opacities are floats) */ | |
if ( image->matte ) { | |
float *optr; | |
if ( !(opacitiesArray = DXNewArray( TYPE_FLOAT, | |
CATEGORY_REAL, 0 )) || | |
!DXAddArrayData( opacitiesArray, 0, width*height, NULL) || | |
!DXSetComponentValue( (Field)dx_image, "opacities", | |
(Object)opacitiesArray ) || | |
!(opacities = DXGetArrayData(opacitiesArray)) || | |
!DXEndField( (Field)dx_image ) ) | |
DXErrorGoto(ERROR_INTERNAL, "Failed to create opacities" ); | |
#if MagickLibVersion < 0x0540 | |
DispatchImage( image, 0, 0, width, height, "A", FloatPixel, | |
opacities ); | |
#else | |
DispatchImage( image, 0, 0, width, height, "A", FloatPixel, | |
opacities, &_dxd_exception_info ); | |
#endif | |
for ( i = width * height, optr = (float *)opacities; | |
i > 0; i--, optr++ ) | |
*optr = 1.0 - *optr; | |
} | |
} | |
/* Colors are scalars (delayed) */ | |
else if (rank == 0 || (rank == 1 && shape[0] == 1)) { | |
Type mType; | |
int mRank, mShape[32], mLen; | |
int i,x,y; | |
float (*cmap)[3], *omap = NULL; | |
Array colorMap, opacityMap; | |
colorMap = (Array)DXGetComponentValue(dx_image, "color map"); | |
if (! colorMap) | |
DXErrorGoto(ERROR_INTERNAL, | |
"single-valued image requires a color map" ); | |
DXGetArrayInfo(colorMap, &mLen, &mType, NULL, &mRank, mShape); | |
if (mLen != 256 || mType != TYPE_FLOAT || | |
mRank != 1 || mShape[0] != 3) | |
DXErrorGoto(ERROR_INTERNAL, | |
"DXMakeImageFormat returned invalid delayed-color image"); | |
cmap = (float (*)[3]) DXGetArrayData(colorMap); | |
/* If transparency, opacities is byte & opacity map is float */ | |
if ( image->matte ) { | |
if ( !(opacitiesArray = DXNewArray( TYPE_UBYTE, | |
CATEGORY_REAL, 0 )) || | |
!DXAddArrayData( opacitiesArray, 0, width*height, NULL) || | |
!DXSetComponentValue( (Field)dx_image, "opacities", | |
(Object)opacitiesArray ) || | |
!(opacities = DXGetArrayData(opacitiesArray)) ) | |
DXErrorGoto(ERROR_INTERNAL, "Failed to create opacities" ); | |
if ( !(opacityMap = DXNewArray( TYPE_FLOAT, | |
CATEGORY_REAL, 0 )) || | |
!DXAddArrayData( opacityMap, 0, 256, NULL) || | |
!DXSetComponentValue( (Field)dx_image, "opacity map", | |
(Object)opacityMap ) || | |
!(omap = DXGetArrayData(opacityMap)) ) | |
DXErrorGoto(ERROR_INTERNAL, "Failed to create opacity map"); | |
if ( !DXEndField( (Field)dx_image ) ) | |
DXErrorGoto(ERROR_INTERNAL, "Failed to close field"); | |
} | |
/* Read the colormap */ | |
for ( i = 0; i < image->colors; i++ ) { | |
cmap[i][0] = ((float) image->colormap[i].red ) / MaxRGB; | |
cmap[i][1] = ((float) image->colormap[i].green ) / MaxRGB; | |
cmap[i][2] = ((float) image->colormap[i].blue ) / MaxRGB; | |
if ( image->matte ) | |
omap[i] = (1.0 - | |
((float) image->colormap[i].opacity ) / MaxRGB); | |
} | |
for ( ; i < 256; i++ ) { | |
cmap[i][0] = cmap[i][1] = cmap[i][2] = 0.0; | |
if ( image->matte ) | |
omap[i] = 0.0; | |
} | |
/* Now copy the pixels (i.e. color/opacity map indicies) */ | |
for ( y = 0; y < height; y++ ) { | |
ubyte *pptr = ((ubyte *)pixels ) + (height-1-y)*width; | |
ubyte *optr = NULL; | |
PixelPacket *pixies; | |
IndexPacket *indexes, *indexes2; | |
if ( image->matte ) | |
optr = ((ubyte *)opacities) + (height-1-y)*width; | |
pixies = GetImagePixels( image, 0, y, width, 1 ); | |
indexes = indexes2 = GetIndexes( image ); | |
if ( sizeof(indexes[0]) == 1 ) | |
memcpy( pptr, indexes, width ); | |
else | |
for ( x = 0; x < width; x++ ) | |
if( image->matte ) | |
*(pptr++) = *(optr++) = *(indexes++); | |
else | |
*(pptr++) = *(indexes++); | |
/* Opacities in colormap is wrong; use direct color map */ | |
if ( image->matte ) | |
for ( x = 0; x < width; x++ ) | |
{ | |
int omap_index = *(indexes2++); // if Magick has HDRI, Quantum is a float | |
omap[(omap_index < 0 ? 0 : omap_index)] = ( 1.0 - // clamp if negative | |
((float) (pixies++)->opacity) / MaxRGB ); | |
} | |
} | |
} else | |
DXErrorGoto( ERROR_INTERNAL, "unexpected image field format" ); | |
break; | |
} | |
if ( image_info ) | |
DestroyImageInfo( image_info ); | |
if ( image ) | |
DestroyImage( image ); | |
return dx_image; | |
error: | |
if ( image_info ) | |
DestroyImageInfo( image_info ); | |
if ( image ) | |
DestroyImage( image ); | |
return NULL; | |
#endif /* HAVE_LIBMAGICK */ | |
} | |
int /* 0/1 on failure/success */ | |
_dxf_ValidImageExtensionIM(char *ext) { | |
#if !defined(HAVE_LIBMAGICK) | |
DXErrorReturn(ERROR_NOT_IMPLEMENTED,"ImageMagick 5 not included in build"); | |
#else | |
ExceptionInfo _dxd_exception_info; | |
const MagickInfo *minfo; | |
GetExceptionInfo( &_dxd_exception_info ); | |
minfo = GetMagickInfo( ext, &_dxd_exception_info ); | |
return (minfo != NULL); | |
#endif | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
libtool: link: gcc -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -o dxexec main.o ../dxmods/user.o ../libdx/mem.o ../libdx/memory.o -L/sw/lib ../dpexec/.libs/libDPEXEC.a -L/usr/X11R6/lib ../dxmods/.libs/libDXMODS.a ../dxmods/.libs/libDXMODSN.a ../libdx/.libs/libLIBDX.a ../hwrender/.libs/libHW.a ../hwrender/opengl/.libs/libOPENGL.a -lXinerama /sw/lib/libnetcdf.dylib /sw/lib/libdf.a /sw/lib/libjpeg.dylib /sw/lib/libsz.dylib -lXpm /sw/lib/libtiff.dylib -ldl /sw/lib/libXm.dylib -lXp -lGLU -lGL -lm -lXmu -lXext -lXt -lX11 -lSM -lICE -lpthread -lz /sw/lib/libGraphicsMagick.dylib | |
clang: warning: argument unused during compilation: '-std=c89' | |
Undefined symbols for architecture x86_64: | |
"_TemporaryFilename", referenced from: | |
__dxf_write_im in libDXMODS.a(_im_image.o) | |
ld: symbol(s) not found for architecture x86_64 | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
make[3]: *** [dxexec] Error 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Setting runtime build-lock... | |
dpkg-deb -b /sw/src/fink.build/root-fink-buildlock-dx-4.4.4-1706 /sw/src/fink.build | |
dpkg-deb: building package `fink-buildlock-dx-4.4.4-1706' in `/sw/src/fink.build/fink-buildlock-dx-4.4.4-1706_2011.10.31-16.37.51_darwin-x86_64.deb'. | |
Installing build-lock package... | |
/sw/bin/dpkg-lockwait -i /sw/src/fink.build/fink-buildlock-dx-4.4.4-1706_2011.10.31-16.37.51_darwin-x86_64.deb | |
Selecting previously deselected package fink-buildlock-dx-4.4.4-1706. | |
(Reading database ... 261313 files and directories currently installed.) | |
Unpacking fink-buildlock-dx-4.4.4-1706 (from .../fink-buildlock-dx-4.4.4-1706_2011.10.31-16.37.51_darwin-x86_64.deb) ... | |
Setting up fink-buildlock-dx-4.4.4-1706 (2011.10.31-16.37.51) ... | |
gzip -dc /sw/src/dx-4.4.4.tar.gz | /sw/bin/tar -xvf - --no-same-owner --no-same-permissions | |
dx-4.4.4/ | |
dx-4.4.4/._acinclude.m4 | |
dx-4.4.4/acinclude.m4 | |
dx-4.4.4/aclocal.m4 | |
dx-4.4.4/AUTHORS | |
dx-4.4.4/bin/ | |
dx-4.4.4/bin/dx.in | |
dx-4.4.4/bin/Makefile.am | |
dx-4.4.4/bin/Makefile.in | |
dx-4.4.4/bin/mdf2c.in | |
dx-4.4.4/bin/url_handler.sh | |
dx-4.4.4/._ChangeLog | |
dx-4.4.4/ChangeLog | |
dx-4.4.4/compile | |
dx-4.4.4/config.guess | |
dx-4.4.4/config.sub | |
dx-4.4.4/configure | |
dx-4.4.4/configure.ac | |
dx-4.4.4/COPYING | |
dx-4.4.4/doc/ | |
dx-4.4.4/doc/Makefile.am | |
dx-4.4.4/doc/Makefile.in | |
dx-4.4.4/doc/README | |
dx-4.4.4/doc/README_alphax | |
dx-4.4.4/doc/README_aviion | |
dx-4.4.4/doc/README_hp700 | |
dx-4.4.4/doc/README_ibm6000 | |
dx-4.4.4/doc/README_ibmpvs | |
dx-4.4.4/doc/README_indigo | |
dx-4.4.4/doc/README_intelnt | |
dx-4.4.4/doc/README_sgi | |
dx-4.4.4/doc/README_sgi4 | |
dx-4.4.4/doc/README_SMP | |
dx-4.4.4/doc/._README_solaris | |
dx-4.4.4/doc/README_solaris | |
dx-4.4.4/doc/README_sun4 | |
dx-4.4.4/fonts/ | |
dx-4.4.4/fonts/area.dx | |
dx-4.4.4/fonts/cyril_d.dx | |
dx-4.4.4/fonts/fixed.dx | |
dx-4.4.4/fonts/gothiceng_t.dx | |
dx-4.4.4/fonts/gothicger_t.dx | |
dx-4.4.4/fonts/gothicit_t.dx | |
dx-4.4.4/fonts/greek_d.dx | |
dx-4.4.4/fonts/greek_s.dx | |
dx-4.4.4/fonts/italic_d.dx | |
dx-4.4.4/fonts/italic_t.dx | |
dx-4.4.4/fonts/Makefile.am | |
dx-4.4.4/fonts/Makefile.in | |
dx-4.4.4/fonts/pitman.dx | |
dx-4.4.4/fonts/README | |
dx-4.4.4/fonts/roman_d.dx | |
dx-4.4.4/fonts/roman_dser.dx | |
dx-4.4.4/fonts/roman_ext.dx | |
dx-4.4.4/fonts/roman_s.dx | |
dx-4.4.4/fonts/roman_sfix.dx | |
dx-4.4.4/fonts/roman_tser.dx | |
dx-4.4.4/fonts/script_d.dx | |
dx-4.4.4/fonts/script_s.dx | |
dx-4.4.4/fonts/variable.dx | |
dx-4.4.4/help/ | |
dx-4.4.4/help/dxall1 | |
dx-4.4.4/help/dxall10 | |
dx-4.4.4/help/dxall100 | |
dx-4.4.4/help/dxall1000 | |
dx-4.4.4/help/dxall1001 | |
dx-4.4.4/help/dxall1002 | |
dx-4.4.4/help/dxall1003 | |
dx-4.4.4/help/dxall1004 | |
dx-4.4.4/help/dxall1005 | |
dx-4.4.4/help/dxall1006 | |
dx-4.4.4/help/dxall1007 | |
dx-4.4.4/help/dxall1008 | |
dx-4.4.4/help/dxall1009 | |
dx-4.4.4/help/dxall101 | |
dx-4.4.4/help/dxall1010 | |
dx-4.4.4/help/dxall1011 | |
dx-4.4.4/help/dxall1012 | |
dx-4.4.4/help/dxall1013 | |
dx-4.4.4/help/dxall1014 | |
dx-4.4.4/help/dxall1015 | |
dx-4.4.4/help/dxall1016 | |
dx-4.4.4/help/dxall1017 | |
dx-4.4.4/help/dxall1018 | |
dx-4.4.4/help/dxall1019 | |
dx-4.4.4/help/dxall102 | |
dx-4.4.4/help/dxall1020 | |
dx-4.4.4/help/dxall1021 | |
dx-4.4.4/help/dxall1022 | |
dx-4.4.4/help/dxall1023 | |
dx-4.4.4/help/dxall1024 | |
dx-4.4.4/help/dxall1025 | |
dx-4.4.4/help/dxall1026 | |
dx-4.4.4/help/dxall1027 | |
dx-4.4.4/help/dxall1028 | |
dx-4.4.4/help/dxall1029 | |
dx-4.4.4/help/dxall103 | |
dx-4.4.4/help/dxall1030 | |
dx-4.4.4/help/dxall1031 | |
dx-4.4.4/help/dxall1032 | |
dx-4.4.4/help/dxall1033 | |
dx-4.4.4/help/dxall1034 | |
dx-4.4.4/help/dxall1035 | |
dx-4.4.4/help/dxall1036 | |
dx-4.4.4/help/dxall1037 | |
dx-4.4.4/help/dxall1038 | |
dx-4.4.4/help/dxall1039 | |
dx-4.4.4/help/dxall104 | |
dx-4.4.4/help/dxall1040 | |
dx-4.4.4/help/dxall1041 | |
dx-4.4.4/help/dxall1042 | |
dx-4.4.4/help/dxall1043 | |
dx-4.4.4/help/dxall1044 | |
dx-4.4.4/help/dxall1045 | |
dx-4.4.4/help/dxall1046 | |
dx-4.4.4/help/dxall1047 | |
dx-4.4.4/help/dxall1048 | |
dx-4.4.4/help/dxall1049 | |
dx-4.4.4/help/dxall105 | |
dx-4.4.4/help/dxall1050 | |
dx-4.4.4/help/dxall1051 | |
dx-4.4.4/help/dxall1052 | |
dx-4.4.4/help/dxall1053 | |
dx-4.4.4/help/dxall1054 | |
dx-4.4.4/help/dxall1055 | |
dx-4.4.4/help/dxall1056 | |
dx-4.4.4/help/dxall1057 | |
dx-4.4.4/help/dxall1058 | |
dx-4.4.4/help/dxall1059 | |
dx-4.4.4/help/dxall106 | |
dx-4.4.4/help/dxall1060 | |
dx-4.4.4/help/dxall1061 | |
dx-4.4.4/help/dxall1062 | |
dx-4.4.4/help/dxall1063 | |
dx-4.4.4/help/dxall1064 | |
dx-4.4.4/help/dxall1065 | |
dx-4.4.4/help/dxall1066 | |
dx-4.4.4/help/dxall1067 | |
dx-4.4.4/help/dxall1068 | |
dx-4.4.4/help/dxall1069 | |
dx-4.4.4/help/dxall107 | |
dx-4.4.4/help/dxall1070 | |
dx-4.4.4/help/dxall1071 | |
dx-4.4.4/help/dxall1072 | |
dx-4.4.4/help/dxall1073 | |
dx-4.4.4/help/dxall1074 | |
dx-4.4.4/help/dxall1075 | |
dx-4.4.4/help/dxall1076 | |
dx-4.4.4/help/dxall1077 | |
dx-4.4.4/help/dxall1078 | |
dx-4.4.4/help/dxall1079 | |
dx-4.4.4/help/dxall108 | |
dx-4.4.4/help/dxall1080 | |
dx-4.4.4/help/dxall1081 | |
dx-4.4.4/help/dxall1082 | |
dx-4.4.4/help/dxall1083 | |
dx-4.4.4/help/dxall1084 | |
dx-4.4.4/help/dxall1085 | |
dx-4.4.4/help/dxall1086 | |
dx-4.4.4/help/dxall1087 | |
dx-4.4.4/help/dxall1088 | |
dx-4.4.4/help/dxall1089 | |
dx-4.4.4/help/dxall109 | |
dx-4.4.4/help/dxall1090 | |
dx-4.4.4/help/dxall1091 | |
dx-4.4.4/help/dxall1092 | |
dx-4.4.4/help/dxall1093 | |
dx-4.4.4/help/dxall1094 | |
dx-4.4.4/help/dxall1095 | |
dx-4.4.4/help/dxall1096 | |
dx-4.4.4/help/dxall1097 | |
dx-4.4.4/help/dxall1098 | |
dx-4.4.4/help/dxall1099 | |
dx-4.4.4/help/dxall11 | |
dx-4.4.4/help/dxall110 | |
dx-4.4.4/help/dxall1100 | |
dx-4.4.4/help/dxall1101 | |
dx-4.4.4/help/dxall1102 | |
dx-4.4.4/help/dxall1103 | |
dx-4.4.4/help/dxall1104 | |
dx-4.4.4/help/dxall1105 | |
dx-4.4.4/help/dxall1106 | |
dx-4.4.4/help/dxall1107 | |
dx-4.4.4/help/dxall1108 | |
dx-4.4.4/help/dxall1109 | |
dx-4.4.4/help/dxall111 | |
dx-4.4.4/help/dxall1110 | |
dx-4.4.4/help/dxall1111 | |
dx-4.4.4/help/dxall1112 | |
dx-4.4.4/help/dxall1113 | |
dx-4.4.4/help/dxall1114 | |
dx-4.4.4/help/dxall1115 | |
dx-4.4.4/help/dxall1116 | |
dx-4.4.4/help/dxall1117 | |
dx-4.4.4/help/dxall1118 | |
dx-4.4.4/help/dxall1119 | |
dx-4.4.4/help/dxall112 | |
dx-4.4.4/help/dxall1120 | |
dx-4.4.4/help/dxall1121 | |
dx-4.4.4/help/dxall1122 | |
dx-4.4.4/help/dxall1123 | |
dx-4.4.4/help/dxall1124 | |
dx-4.4.4/help/dxall1125 | |
dx-4.4.4/help/dxall1126 | |
dx-4.4.4/help/dxall1127 | |
dx-4.4.4/help/dxall1128 | |
dx-4.4.4/help/dxall1129 | |
dx-4.4.4/help/dxall113 | |
dx-4.4.4/help/dxall1130 | |
dx-4.4.4/help/dxall1131 | |
dx-4.4.4/help/dxall1132 | |
dx-4.4.4/help/dxall1133 | |
dx-4.4.4/help/dxall1134 | |
dx-4.4.4/help/dxall1135 | |
dx-4.4.4/help/dxall1136 | |
dx-4.4.4/help/dxall1137 | |
dx-4.4.4/help/dxall1138 | |
dx-4.4.4/help/dxall1139 | |
dx-4.4.4/help/dxall114 | |
dx-4.4.4/help/dxall1140 | |
dx-4.4.4/help/dxall1141 | |
dx-4.4.4/help/dxall1142 | |
dx-4.4.4/help/dxall1143 | |
dx-4.4.4/help/dxall1144 | |
dx-4.4.4/help/dxall1145 | |
dx-4.4.4/help/dxall1146 | |
dx-4.4.4/help/dxall1147 | |
dx-4.4.4/help/dxall1148 | |
dx-4.4.4/help/dxall1149 | |
dx-4.4.4/help/dxall115 | |
dx-4.4.4/help/dxall1150 | |
dx-4.4.4/help/dxall1151 | |
dx-4.4.4/help/dxall1152 | |
dx-4.4.4/help/dxall1153 | |
dx-4.4.4/help/dxall1154 | |
dx-4.4.4/help/dxall1155 | |
dx-4.4.4/help/dxall1156 | |
dx-4.4.4/help/dxall1157 | |
dx-4.4.4/help/dxall1158 | |
dx-4.4.4/help/dxall1159 | |
dx-4.4.4/help/dxall116 | |
dx-4.4.4/help/dxall1160 | |
dx-4.4.4/help/dxall1161 | |
dx-4.4.4/help/dxall1162 | |
dx-4.4.4/help/dxall1163 | |
dx-4.4.4/help/dxall1164 | |
dx-4.4.4/help/dxall1165 | |
dx-4.4.4/help/dxall1166 | |
dx-4.4.4/help/dxall1167 | |
dx-4.4.4/help/dxall1168 | |
dx-4.4.4/help/dxall1169 | |
dx-4.4.4/help/dxall117 | |
dx-4.4.4/help/dxall1170 | |
dx-4.4.4/help/dxall1171 | |
dx-4.4.4/help/dxall1172 | |
dx-4.4.4/help/dxall1173 | |
dx-4.4.4/help/dxall1174 | |
dx-4.4.4/help/dxall1175 | |
dx-4.4.4/help/dxall1176 | |
dx-4.4.4/help/dxall1177 | |
dx-4.4.4/help/dxall1178 | |
dx-4.4.4/help/dxall1179 | |
dx-4.4.4/help/dxall118 | |
dx-4.4.4/help/dxall1180 | |
dx-4.4.4/help/dxall1181 | |
dx-4.4.4/help/dxall1182 | |
dx-4.4.4/help/dxall1183 | |
dx-4.4.4/help/dxall1184 | |
dx-4.4.4/help/dxall1185 | |
dx-4.4.4/help/dxall1186 | |
dx-4.4.4/help/dxall1187 | |
dx-4.4.4/help/dxall1188 | |
dx-4.4.4/help/dxall1189 | |
dx-4.4.4/help/dxall119 | |
dx-4.4.4/help/dxall1190 | |
dx-4.4.4/help/dxall1191 | |
dx-4.4.4/help/dxall1192 | |
dx-4.4.4/help/dxall1193 | |
dx-4.4.4/help/dxall1194 | |
dx-4.4.4/help/dxall1195 | |
dx-4.4.4/help/dxall1196 | |
dx-4.4.4/help/dxall1197 | |
dx-4.4.4/help/dxall1198 | |
dx-4.4.4/help/dxall1199 | |
dx-4.4.4/help/dxall12 | |
dx-4.4.4/help/dxall120 | |
dx-4.4.4/help/dxall1200 | |
dx-4.4.4/help/dxall1201 | |
dx-4.4.4/help/dxall1202 | |
dx-4.4.4/help/dxall1203 | |
dx-4.4.4/help/dxall1204 | |
dx-4.4.4/help/dxall1205 | |
dx-4.4.4/help/dxall1206 | |
dx-4.4.4/help/dxall1207 | |
dx-4.4.4/help/dxall1208 | |
dx-4.4.4/help/dxall1209 | |
dx-4.4.4/help/dxall121 | |
dx-4.4.4/help/dxall1210 | |
dx-4.4.4/help/dxall1211 | |
dx-4.4.4/help/dxall1212 | |
dx-4.4.4/help/dxall1213 | |
dx-4.4.4/help/dxall1214 | |
dx-4.4.4/help/dxall1215 | |
dx-4.4.4/help/dxall1216 | |
dx-4.4.4/help/dxall1217 | |
dx-4.4.4/help/dxall1218 | |
dx-4.4.4/help/dxall1219 | |
dx-4.4.4/help/dxall122 | |
dx-4.4.4/help/dxall1220 | |
dx-4.4.4/help/dxall1221 | |
dx-4.4.4/help/dxall1222 | |
dx-4.4.4/help/dxall1223 | |
dx-4.4.4/help/dxall1224 | |
dx-4.4.4/help/dxall1225 | |
dx-4.4.4/help/dxall1226 | |
dx-4.4.4/help/dxall1227 | |
dx-4.4.4/help/dxall1228 | |
dx-4.4.4/help/dxall1229 | |
dx-4.4.4/help/dxall123 | |
dx-4.4.4/help/dxall1230 | |
dx-4.4.4/help/dxall1231 | |
dx-4.4.4/help/dxall1232 | |
dx-4.4.4/help/dxall1233 | |
dx-4.4.4/help/dxall1234 | |
dx-4.4.4/help/dxall1235 | |
dx-4.4.4/help/dxall1236 | |
dx-4.4.4/help/dxall1237 | |
dx-4.4.4/help/dxall1238 | |
dx-4.4.4/help/dxall1239 | |
dx-4.4.4/help/dxall124 | |
dx-4.4.4/help/dxall1240 | |
dx-4.4.4/help/dxall1241 | |
dx-4.4.4/help/dxall1242 | |
dx-4.4.4/help/dxall1243 | |
dx-4.4.4/help/dxall1244 | |
dx-4.4.4/help/dxall1245 | |
dx-4.4.4/help/dxall1246 | |
dx-4.4.4/help/dxall1247 | |
dx-4.4.4/help/dxall1248 | |
dx-4.4.4/help/dxall1249 | |
dx-4.4.4/help/dxall125 | |
dx-4.4.4/help/dxall1250 | |
dx-4.4.4/help/dxall1251 | |
dx-4.4.4/help/dxall1252 | |
dx-4.4.4/help/dxall1253 | |
dx-4.4.4/help/dxall1254 | |
dx-4.4.4/help/dxall1255 | |
dx-4.4.4/help/dxall1256 | |
dx-4.4.4/help/dxall1257 | |
dx-4.4.4/help/dxall1258 | |
dx-4.4.4/help/dxall1259 | |
dx-4.4.4/help/dxall126 | |
dx-4.4.4/help/dxall1260 | |
dx-4.4.4/help/dxall1261 | |
dx-4.4.4/help/dxall1262 | |
dx-4.4.4/help/dxall1263 | |
dx-4.4.4/help/dxall1264 | |
dx-4.4.4/help/dxall1265 | |
dx-4.4.4/help/dxall1266 | |
dx-4.4.4/help/dxall1267 | |
dx-4.4.4/help/dxall1268 | |
dx-4.4.4/help/dxall1269 | |
dx-4.4.4/help/dxall127 | |
dx-4.4.4/help/dxall1270 | |
dx-4.4.4/help/dxall1271 | |
dx-4.4.4/help/dxall1272 | |
dx-4.4.4/help/dxall1273 | |
dx-4.4.4/help/dxall1274 | |
dx-4.4.4/help/dxall1275 | |
dx-4.4.4/help/dxall1276 | |
dx-4.4.4/help/dxall1277 | |
dx-4.4.4/help/dxall1278 | |
dx-4.4.4/help/dxall1279 | |
dx-4.4.4/help/dxall128 | |
dx-4.4.4/help/dxall1280 | |
dx-4.4.4/help/dxall1281 | |
dx-4.4.4/help/dxall1282 | |
dx-4.4.4/help/dxall1283 | |
dx-4.4.4/help/dxall1284 | |
dx-4.4.4/help/dxall1285 | |
dx-4.4.4/help/dxall1286 | |
dx-4.4.4/help/dxall1287 | |
dx-4.4.4/help/dxall1288 | |
dx-4.4.4/help/dxall1289 | |
dx-4.4.4/help/dxall129 | |
dx-4.4.4/help/dxall1290 | |
dx-4.4.4/help/dxall1291 | |
dx-4.4.4/help/dxall1292 | |
dx-4.4.4/help/dxall1293 | |
dx-4.4.4/help/dxall1294 | |
dx-4.4.4/help/dxall1295 | |
dx-4.4.4/help/dxall1296 | |
dx-4.4.4/help/dxall1297 | |
dx-4.4.4/help/dxall1298 | |
dx-4.4.4/help/dxall1299 | |
dx-4.4.4/help/dxall13 | |
dx-4.4.4/help/dxall130 | |
dx-4.4.4/help/dxall1300 | |
dx-4.4.4/help/dxall1301 | |
dx-4.4.4/help/dxall1302 | |
dx-4.4.4/help/dxall1303 | |
dx-4.4.4/help/dxall1304 | |
dx-4.4.4/help/dxall1305 | |
dx-4.4.4/help/dxall1306 | |
dx-4.4.4/help/dxall1307 | |
dx-4.4.4/help/dxall1308 | |
dx-4.4.4/help/dxall1309 | |
dx-4.4.4/help/dxall131 | |
dx-4.4.4/help/dxall1310 | |
dx-4.4.4/help/dxall1311 | |
dx-4.4.4/help/dxall1312 | |
dx-4.4.4/help/dxall1313 | |
dx-4.4.4/help/dxall1314 | |
dx-4.4.4/help/dxall1315 | |
dx-4.4.4/help/dxall1316 | |
dx-4.4.4/help/dxall1317 | |
dx-4.4.4/help/dxall1318 | |
dx-4.4.4/help/dxall1319 | |
dx-4.4.4/help/dxall132 | |
dx-4.4.4/help/dxall1320 | |
dx-4.4.4/help/dxall1321 | |
dx-4.4.4/help/dxall1322 | |
dx-4.4.4/help/dxall1323 | |
dx-4.4.4/help/dxall1324 | |
dx-4.4.4/help/dxall1325 | |
dx-4.4.4/help/dxall1326 | |
dx-4.4.4/help/dxall1327 | |
dx-4.4.4/help/dxall1328 | |
dx-4.4.4/help/dxall1329 | |
dx-4.4.4/help/dxall133 | |
dx-4.4.4/help/dxall1330 | |
dx-4.4.4/help/dxall1331 | |
dx-4.4.4/help/dxall1332 | |
dx-4.4.4/help/dxall1333 | |
dx-4.4.4/help/dxall1334 | |
dx-4.4.4/help/dxall1335 | |
dx-4.4.4/help/dxall1336 | |
dx-4.4.4/help/dxall1337 | |
dx-4.4.4/help/dxall1338 | |
dx-4.4.4/help/dxall1339 | |
dx-4.4.4/help/dxall134 | |
dx-4.4.4/help/dxall1340 | |
dx-4.4.4/help/dxall1341 | |
dx-4.4.4/help/dxall1342 | |
dx-4.4.4/help/dxall1343 | |
dx-4.4.4/help/dxall1344 | |
dx-4.4.4/help/dxall1345 | |
dx-4.4.4/help/dxall1346 | |
dx-4.4.4/help/dxall1347 | |
dx-4.4.4/help/dxall1348 | |
dx-4.4.4/help/dxall1349 | |
dx-4.4.4/help/dxall135 | |
dx-4.4.4/help/dxall1350 | |
dx-4.4.4/help/dxall1351 | |
dx-4.4.4/help/dxall1352 | |
dx-4.4.4/help/dxall1353 | |
dx-4.4.4/help/dxall1354 | |
dx-4.4.4/help/dxall1355 | |
dx-4.4.4/help/dxall1356 | |
dx-4.4.4/help/dxall1357 | |
dx-4.4.4/help/dxall1358 | |
dx-4.4.4/help/dxall1359 | |
dx-4.4.4/help/dxall136 | |
dx-4.4.4/help/dxall1360 | |
dx-4.4.4/help/dxall1361 | |
dx-4.4.4/help/dxall1362 | |
dx-4.4.4/help/dxall1363 | |
dx-4.4.4/help/dxall1364 | |
dx-4.4.4/help/dxall1365 | |
dx-4.4.4/help/dxall1366 | |
dx-4.4.4/help/dxall1367 | |
dx-4.4.4/help/dxall1368 | |
dx-4.4.4/help/dxall1369 | |
dx-4.4.4/help/dxall137 | |
dx-4.4.4/help/dxall1370 | |
dx-4.4.4/help/dxall1371 | |
dx-4.4.4/help/dxall1372 | |
dx-4.4.4/help/dxall1373 | |
dx-4.4.4/help/dxall1374 | |
dx-4.4.4/help/dxall1375 | |
dx-4.4.4/help/dxall1376 | |
dx-4.4.4/help/dxall1377 | |
dx-4.4.4/help/dxall1378 | |
dx-4.4.4/help/dxall1379 | |
dx-4.4.4/help/dxall138 | |
dx-4.4.4/help/dxall1380 | |
dx-4.4.4/help/dxall1381 | |
dx-4.4.4/help/dxall1382 | |
dx-4.4.4/help/dxall1383 | |
dx-4.4.4/help/dxall1384 | |
dx-4.4.4/help/dxall1385 | |
dx-4.4.4/help/dxall1386 | |
dx-4.4.4/help/dxall1387 | |
dx-4.4.4/help/dxall1388 | |
dx-4.4.4/help/dxall1389 | |
dx-4.4.4/help/dxall139 | |
dx-4.4.4/help/dxall1390 | |
dx-4.4.4/help/dxall1391 | |
dx-4.4.4/help/dxall1392 | |
dx-4.4.4/help/dxall1393 | |
dx-4.4.4/help/dxall1394 | |
dx-4.4.4/help/dxall1395 | |
dx-4.4.4/help/dxall1396 | |
dx-4.4.4/help/dxall1397 | |
dx-4.4.4/help/dxall1398 | |
dx-4.4.4/help/dxall1399 | |
dx-4.4.4/help/dxall140 | |
dx-4.4.4/help/dxall1400 | |
dx-4.4.4/help/dxall1401 | |
dx-4.4.4/help/dxall1402 | |
dx-4.4.4/help/dxall1403 | |
dx-4.4.4/help/dxall1404 | |
dx-4.4.4/help/dxall1405 | |
dx-4.4.4/help/dxall1406 | |
dx-4.4.4/help/dxall1407 | |
dx-4.4.4/help/dxall141 | |
dx-4.4.4/help/dxall142 | |
dx-4.4.4/help/dxall143 | |
dx-4.4.4/help/dxall144 | |
dx-4.4.4/help/dxall145 | |
dx-4.4.4/help/dxall146 | |
dx-4.4.4/help/dxall147 | |
dx-4.4.4/help/dxall148 | |
dx-4.4.4/help/dxall149 | |
dx-4.4.4/help/dxall15 | |
dx-4.4.4/help/dxall150 | |
dx-4.4.4/help/dxall151 | |
dx-4.4.4/help/dxall152 | |
dx-4.4.4/help/dxall153 | |
dx-4.4.4/help/dxall154 | |
dx-4.4.4/help/dxall155 | |
dx-4.4.4/help/dxall156 | |
dx-4.4.4/help/dxall157 | |
dx-4.4.4/help/dxall158 | |
dx-4.4.4/help/dxall159 | |
dx-4.4.4/help/dxall160 | |
dx-4.4.4/help/dxall161 | |
dx-4.4.4/help/dxall162 | |
dx-4.4.4/help/dxall163 | |
dx-4.4.4/help/dxall164 | |
dx-4.4.4/help/dxall165 | |
dx-4.4.4/help/dxall166 | |
dx-4.4.4/help/dxall167 | |
dx-4.4.4/help/dxall168 | |
dx-4.4.4/help/dxall169 | |
dx-4.4.4/help/dxall17 | |
dx-4.4.4/help/dxall170 | |
dx-4.4.4/help/dxall171 | |
dx-4.4.4/help/dxall172 | |
dx-4.4.4/help/dxall173 | |
dx-4.4.4/help/dxall174 | |
dx-4.4.4/help/dxall175 | |
dx-4.4.4/help/dxall176 | |
dx-4.4.4/help/dxall177 | |
dx-4.4.4/help/dxall178 | |
dx-4.4.4/help/dxall179 | |
dx-4.4.4/help/dxall180 | |
dx-4.4.4/help/dxall181 | |
dx-4.4.4/help/dxall182 | |
dx-4.4.4/help/dxall183 | |
dx-4.4.4/help/dxall184 | |
dx-4.4.4/help/dxall185 | |
dx-4.4.4/help/dxall186 | |
dx-4.4.4/help/dxall187 | |
dx-4.4.4/help/dxall188 | |
dx-4.4.4/help/dxall189 | |
dx-4.4.4/help/dxall19 | |
dx-4.4.4/help/dxall190 | |
dx-4.4.4/help/dxall191 | |
dx-4.4.4/help/dxall192 | |
dx-4.4.4/help/dxall193 | |
dx-4.4.4/help/dxall194 | |
dx-4.4.4/help/dxall195 | |
dx-4.4.4/help/dxall196 | |
dx-4.4.4/help/dxall197 | |
dx-4.4.4/help/dxall198 | |
dx-4.4.4/help/dxall199 | |
dx-4.4.4/help/dxall2 | |
dx-4.4.4/help/dxall20 | |
dx-4.4.4/help/dxall200 | |
dx-4.4.4/help/dxall201 | |
dx-4.4.4/help/dxall203 | |
dx-4.4.4/help/dxall204 | |
dx-4.4.4/help/dxall206 | |
dx-4.4.4/help/dxall207 | |
dx-4.4.4/help/dxall208 | |
dx-4.4.4/help/dxall21 | |
dx-4.4.4/help/dxall210 | |
dx-4.4.4/help/dxall211 | |
dx-4.4.4/help/dxall213 | |
dx-4.4.4/help/dxall215 | |
dx-4.4.4/help/dxall217 | |
dx-4.4.4/help/dxall219 | |
dx-4.4.4/help/dxall22 | |
dx-4.4.4/help/dxall220 | |
dx-4.4.4/help/dxall221 | |
dx-4.4.4/help/dxall222 | |
dx-4.4.4/help/dxall223 | |
dx-4.4.4/help/dxall225 | |
dx-4.4.4/help/dxall227 | |
dx-4.4.4/help/dxall229 | |
dx-4.4.4/help/dxall23 | |
dx-4.4.4/help/dxall231 | |
dx-4.4.4/help/dxall233 | |
dx-4.4.4/help/dxall235 | |
dx-4.4.4/help/dxall237 | |
dx-4.4.4/help/dxall239 | |
dx-4.4.4/help/dxall24 | |
dx-4.4.4/help/dxall241 | |
dx-4.4.4/help/dxall243 | |
dx-4.4.4/help/dxall245 | |
dx-4.4.4/help/dxall247 | |
dx-4.4.4/help/dxall249 | |
dx-4.4.4/help/dxall25 | |
dx-4.4.4/help/dxall251 | |
dx-4.4.4/help/dxall252 | |
dx-4.4.4/help/dxall253 | |
dx-4.4.4/help/dxall254 | |
dx-4.4.4/help/dxall255 | |
dx-4.4.4/help/dxall256 | |
dx-4.4.4/help/dxall257 | |
dx-4.4.4/help/dxall258 | |
dx-4.4.4/help/dxall259 | |
dx-4.4.4/help/dxall26 | |
dx-4.4.4/help/dxall260 | |
dx-4.4.4/help/dxall261 | |
dx-4.4.4/help/dxall262 | |
dx-4.4.4/help/dxall263 | |
dx-4.4.4/help/dxall264 | |
dx-4.4.4/help/dxall265 | |
dx-4.4.4/help/dxall266 | |
dx-4.4.4/help/dxall267 | |
dx-4.4.4/help/dxall268 | |
dx-4.4.4/help/dxall269 | |
dx-4.4.4/help/dxall27 | |
dx-4.4.4/help/dxall270 | |
dx-4.4.4/help/dxall271 | |
dx-4.4.4/help/dxall272 | |
dx-4.4.4/help/dxall273 | |
dx-4.4.4/help/dxall274 | |
dx-4.4.4/help/dxall275 | |
dx-4.4.4/help/dxall276 | |
dx-4.4.4/help/dxall278 | |
dx-4.4.4/help/dxall28 | |
dx-4.4.4/help/dxall280 | |
dx-4.4.4/help/dxall282 | |
dx-4.4.4/help/dxall283 | |
dx-4.4.4/help/dxall284 | |
dx-4.4.4/help/dxall285 | |
dx-4.4.4/help/dxall286 | |
dx-4.4.4/help/dxall287 | |
dx-4.4.4/help/dxall288 | |
dx-4.4.4/help/dxall289 | |
dx-4.4.4/help/dxall29 | |
dx-4.4.4/help/dxall290 | |
dx-4.4.4/help/dxall291 | |
dx-4.4.4/help/dxall292 | |
dx-4.4.4/help/dxall293 | |
dx-4.4.4/help/dxall294 | |
dx-4.4.4/help/dxall295 | |
dx-4.4.4/help/dxall296 | |
dx-4.4.4/help/dxall297 | |
dx-4.4.4/help/dxall298 | |
dx-4.4.4/help/dxall299 | |
dx-4.4.4/help/dxall3 | |
dx-4.4.4/help/dxall30 | |
dx-4.4.4/help/dxall300 | |
dx-4.4.4/help/dxall301 | |
dx-4.4.4/help/dxall302 | |
dx-4.4.4/help/dxall304 | |
dx-4.4.4/help/dxall305 | |
dx-4.4.4/help/dxall306 | |
dx-4.4.4/help/dxall307 | |
dx-4.4.4/help/dxall308 | |
dx-4.4.4/help/dxall309 | |
dx-4.4.4/help/dxall31 | |
dx-4.4.4/help/dxall310 | |
dx-4.4.4/help/dxall312 | |
dx-4.4.4/help/dxall314 | |
dx-4.4.4/help/dxall316 | |
dx-4.4.4/help/dxall317 | |
dx-4.4.4/help/dxall318 | |
dx-4.4.4/help/dxall32 | |
dx-4.4.4/help/dxall320 | |
dx-4.4.4/help/dxall321 | |
dx-4.4.4/help/dxall322 | |
dx-4.4.4/help/dxall323 | |
dx-4.4.4/help/dxall324 | |
dx-4.4.4/help/dxall325 | |
dx-4.4.4/help/dxall326 | |
dx-4.4.4/help/dxall327 | |
dx-4.4.4/help/dxall328 | |
dx-4.4.4/help/dxall329 | |
dx-4.4.4/help/dxall33 | |
dx-4.4.4/help/dxall330 | |
dx-4.4.4/help/dxall331 | |
dx-4.4.4/help/dxall332 | |
dx-4.4.4/help/dxall333 | |
dx-4.4.4/help/dxall334 | |
dx-4.4.4/help/dxall335 | |
dx-4.4.4/help/dxall336 | |
dx-4.4.4/help/dxall337 | |
dx-4.4.4/help/dxall338 | |
dx-4.4.4/help/dxall339 | |
dx-4.4.4/help/dxall34 | |
dx-4.4.4/help/dxall340 | |
dx-4.4.4/help/dxall341 | |
dx-4.4.4/help/dxall342 | |
dx-4.4.4/help/dxall343 | |
dx-4.4.4/help/dxall344 | |
dx-4.4.4/help/dxall345 | |
dx-4.4.4/help/dxall346 | |
dx-4.4.4/help/dxall347 | |
dx-4.4.4/help/dxall348 | |
dx-4.4.4/help/dxall349 | |
dx-4.4.4/help/dxall35 | |
dx-4.4.4/help/dxall350 | |
dx-4.4.4/help/dxall351 | |
dx-4.4.4/help/dxall352 | |
dx-4.4.4/help/dxall353 | |
dx-4.4.4/help/dxall354 | |
dx-4.4.4/help/dxall355 | |
dx-4.4.4/help/dxall356 | |
dx-4.4.4/help/dxall357 | |
dx-4.4.4/help/dxall358 | |
dx-4.4.4/help/dxall359 | |
dx-4.4.4/help/dxall36 | |
dx-4.4.4/help/dxall361 | |
dx-4.4.4/help/dxall363 | |
dx-4.4.4/help/dxall364 | |
dx-4.4.4/help/dxall365 | |
dx-4.4.4/help/dxall366 | |
dx-4.4.4/help/dxall367 | |
dx-4.4.4/help/dxall368 | |
dx-4.4.4/help/dxall37 | |
dx-4.4.4/help/dxall370 | |
dx-4.4.4/help/dxall371 | |
dx-4.4.4/help/dxall372 | |
dx-4.4.4/help/dxall373 | |
dx-4.4.4/help/dxall374 | |
dx-4.4.4/help/dxall375 | |
dx-4.4.4/help/dxall376 | |
dx-4.4.4/help/dxall377 | |
dx-4.4.4/help/dxall378 | |
dx-4.4.4/help/dxall379 | |
dx-4.4.4/help/dxall38 | |
dx-4.4.4/help/dxall380 | |
dx-4.4.4/help/dxall381 | |
dx-4.4.4/help/dxall382 | |
dx-4.4.4/help/dxall383 | |
dx-4.4.4/help/dxall384 | |
dx-4.4.4/help/dxall385 | |
dx-4.4.4/help/dxall386 | |
dx-4.4.4/help/dxall387 | |
dx-4.4.4/help/dxall388 | |
dx-4.4.4/help/dxall389 | |
dx-4.4.4/help/dxall39 | |
dx-4.4.4/help/dxall390 | |
dx-4.4.4/help/dxall391 | |
dx-4.4.4/help/dxall392 | |
dx-4.4.4/help/dxall393 | |
dx-4.4.4/help/dxall394 | |
dx-4.4.4/help/dxall395 | |
dx-4.4.4/help/dxall396 | |
dx-4.4.4/help/dxall397 | |
dx-4.4.4/help/dxall399 | |
dx-4.4.4/help/dxall4 | |
dx-4.4.4/help/dxall40 | |
dx-4.4.4/help/dxall400 | |
dx-4.4.4/help/dxall401 | |
dx-4.4.4/help/dxall402 | |
dx-4.4.4/help/dxall403 | |
dx-4.4.4/help/dxall404 | |
dx-4.4.4/help/dxall405 | |
dx-4.4.4/help/dxall406 | |
dx-4.4.4/help/dxall407 | |
dx-4.4.4/help/dxall408 | |
dx-4.4.4/help/dxall409 | |
dx-4.4.4/help/dxall41 | |
dx-4.4.4/help/dxall410 | |
dx-4.4.4/help/dxall411 | |
dx-4.4.4/help/dxall413 | |
dx-4.4.4/help/dxall415 | |
dx-4.4.4/help/dxall417 | |
dx-4.4.4/help/dxall418 | |
dx-4.4.4/help/dxall419 | |
dx-4.4.4/help/dxall42 | |
dx-4.4.4/help/dxall420 | |
dx-4.4.4/help/dxall421 | |
dx-4.4.4/help/dxall423 | |
dx-4.4.4/help/dxall425 | |
dx-4.4.4/help/dxall427 | |
dx-4.4.4/help/dxall429 | |
dx-4.4.4/help/dxall43 | |
dx-4.4.4/help/dxall430 | |
dx-4.4.4/help/dxall431 | |
dx-4.4.4/help/dxall432 | |
dx-4.4.4/help/dxall433 | |
dx-4.4.4/help/dxall434 | |
dx-4.4.4/help/dxall435 | |
dx-4.4.4/help/dxall436 | |
dx-4.4.4/help/dxall437 | |
dx-4.4.4/help/dxall438 | |
dx-4.4.4/help/dxall439 | |
dx-4.4.4/help/dxall44 | |
dx-4.4.4/help/dxall440 | |
dx-4.4.4/help/dxall441 | |
dx-4.4.4/help/dxall442 | |
dx-4.4.4/help/dxall443 | |
dx-4.4.4/help/dxall444 | |
dx-4.4.4/help/dxall445 | |
dx-4.4.4/help/dxall446 | |
dx-4.4.4/help/dxall447 | |
dx-4.4.4/help/dxall448 | |
dx-4.4.4/help/dxall449 | |
dx-4.4.4/help/dxall45 | |
dx-4.4.4/help/dxall450 | |
dx-4.4.4/help/dxall451 | |
dx-4.4.4/help/dxall452 | |
dx-4.4.4/help/dxall453 | |
dx-4.4.4/help/dxall454 | |
dx-4.4.4/help/dxall455 | |
dx-4.4.4/help/dxall456 | |
dx-4.4.4/help/dxall457 | |
dx-4.4.4/help/dxall458 | |
dx-4.4.4/help/dxall459 | |
dx-4.4.4/help/dxall46 | |
dx-4.4.4/help/dxall460 | |
dx-4.4.4/help/dxall461 | |
dx-4.4.4/help/dxall462 | |
dx-4.4.4/help/dxall463 | |
dx-4.4.4/help/dxall464 | |
dx-4.4.4/help/dxall465 | |
dx-4.4.4/help/dxall466 | |
dx-4.4.4/help/dxall467 | |
dx-4.4.4/help/dxall468 | |
dx-4.4.4/help/dxall469 | |
dx-4.4.4/help/dxall47 | |
dx-4.4.4/help/dxall470 | |
dx-4.4.4/help/dxall471 | |
dx-4.4.4/help/dxall472 | |
dx-4.4.4/help/dxall473 | |
dx-4.4.4/help/dxall474 | |
dx-4.4.4/help/dxall475 | |
dx-4.4.4/help/dxall476 | |
dx-4.4.4/help/dxall477 | |
dx-4.4.4/help/dxall478 | |
dx-4.4.4/help/dxall479 | |
dx-4.4.4/help/dxall48 | |
dx-4.4.4/help/dxall480 | |
dx-4.4.4/help/dxall481 | |
dx-4.4.4/help/dxall482 | |
dx-4.4.4/help/dxall483 | |
dx-4.4.4/help/dxall484 | |
dx-4.4.4/help/dxall485 | |
dx-4.4.4/help/dxall486 | |
dx-4.4.4/help/dxall487 | |
dx-4.4.4/help/dxall488 | |
dx-4.4.4/help/dxall489 | |
dx-4.4.4/help/dxall49 | |
dx-4.4.4/help/dxall490 | |
dx-4.4.4/help/dxall491 | |
dx-4.4.4/help/dxall492 | |
dx-4.4.4/help/dxall493 | |
dx-4.4.4/help/dxall494 | |
dx-4.4.4/help/dxall495 | |
dx-4.4.4/help/dxall496 | |
dx-4.4.4/help/dxall497 | |
dx-4.4.4/help/dxall499 | |
dx-4.4.4/help/dxall5 | |
dx-4.4.4/help/dxall50 | |
dx-4.4.4/help/dxall501 | |
dx-4.4.4/help/dxall503 | |
dx-4.4.4/help/dxall505 | |
dx-4.4.4/help/dxall506 | |
dx-4.4.4/help/dxall507 | |
dx-4.4.4/help/dxall508 | |
dx-4.4.4/help/dxall509 | |
dx-4.4.4/help/dxall51 | |
dx-4.4.4/help/dxall510 | |
dx-4.4.4/help/dxall511 | |
dx-4.4.4/help/dxall512 | |
dx-4.4.4/help/dxall513 | |
dx-4.4.4/help/dxall514 | |
dx-4.4.4/help/dxall515 | |
dx-4.4.4/help/dxall516 | |
dx-4.4.4/help/dxall517 | |
dx-4.4.4/help/dxall518 | |
dx-4.4.4/help/dxall52 | |
dx-4.4.4/help/dxall520 | |
dx-4.4.4/help/dxall522 | |
dx-4.4.4/help/dxall523 | |
dx-4.4.4/help/dxall525 | |
dx-4.4.4/help/dxall527 | |
dx-4.4.4/help/dxall529 | |
dx-4.4.4/help/dxall53 | |
dx-4.4.4/help/dxall530 | |
dx-4.4.4/help/dxall531 | |
dx-4.4.4/help/dxall532 | |
dx-4.4.4/help/dxall533 | |
dx-4.4.4/help/dxall534 | |
dx-4.4.4/help/dxall535 | |
dx-4.4.4/help/dxall536 | |
dx-4.4.4/help/dxall537 | |
dx-4.4.4/help/dxall538 | |
dx-4.4.4/help/dxall539 | |
dx-4.4.4/help/dxall54 | |
dx-4.4.4/help/dxall540 | |
dx-4.4.4/help/dxall541 | |
dx-4.4.4/help/dxall542 | |
dx-4.4.4/help/dxall543 | |
dx-4.4.4/help/dxall544 | |
dx-4.4.4/help/dxall545 | |
dx-4.4.4/help/dxall546 | |
dx-4.4.4/help/dxall547 | |
dx-4.4.4/help/dxall548 | |
dx-4.4.4/help/dxall549 | |
dx-4.4.4/help/dxall55 | |
dx-4.4.4/help/dxall550 | |
dx-4.4.4/help/dxall551 | |
dx-4.4.4/help/dxall552 | |
dx-4.4.4/help/dxall553 | |
dx-4.4.4/help/dxall554 | |
dx-4.4.4/help/dxall555 | |
dx-4.4.4/help/dxall556 | |
dx-4.4.4/help/dxall557 | |
dx-4.4.4/help/dxall558 | |
dx-4.4.4/help/dxall559 | |
dx-4.4.4/help/dxall56 | |
dx-4.4.4/help/dxall560 | |
dx-4.4.4/help/dxall561 | |
dx-4.4.4/help/dxall562 | |
dx-4.4.4/help/dxall563 | |
dx-4.4.4/help/dxall564 | |
dx-4.4.4/help/dxall565 | |
dx-4.4.4/help/dxall566 | |
dx-4.4.4/help/dxall567 | |
dx-4.4.4/help/dxall568 | |
dx-4.4.4/help/dxall569 | |
dx-4.4.4/help/dxall57 | |
dx-4.4.4/help/dxall570 | |
dx-4.4.4/help/dxall571 | |
dx-4.4.4/help/dxall572 | |
dx-4.4.4/help/dxall573 | |
dx-4.4.4/help/dxall575 | |
dx-4.4.4/help/dxall576 | |
dx-4.4.4/help/dxall578 | |
dx-4.4.4/help/dxall58 | |
dx-4.4.4/help/dxall580 | |
dx-4.4.4/help/dxall582 | |
dx-4.4.4/help/dxall584 | |
dx-4.4.4/help/dxall586 | |
dx-4.4.4/help/dxall587 | |
dx-4.4.4/help/dxall589 | |
dx-4.4.4/help/dxall59 | |
dx-4.4.4/help/dxall590 | |
dx-4.4.4/help/dxall592 | |
dx-4.4.4/help/dxall594 | |
dx-4.4.4/help/dxall596 | |
dx-4.4.4/help/dxall597 | |
dx-4.4.4/help/dxall598 | |
dx-4.4.4/help/dxall599 | |
dx-4.4.4/help/dxall6 | |
dx-4.4.4/help/dxall60 | |
dx-4.4.4/help/dxall600 | |
dx-4.4.4/help/dxall601 | |
dx-4.4.4/help/dxall602 | |
dx-4.4.4/help/dxall603 | |
dx-4.4.4/help/dxall604 | |
dx-4.4.4/help/dxall605 | |
dx-4.4.4/help/dxall606 | |
dx-4.4.4/help/dxall607 | |
dx-4.4.4/help/dxall608 | |
dx-4.4.4/help/dxall609 | |
dx-4.4.4/help/dxall61 | |
dx-4.4.4/help/dxall610 | |
dx-4.4.4/help/dxall611 | |
dx-4.4.4/help/dxall612 | |
dx-4.4.4/help/dxall613 | |
dx-4.4.4/help/dxall614 | |
dx-4.4.4/help/dxall615 | |
dx-4.4.4/help/dxall616 | |
dx-4.4.4/help/dxall617 | |
dx-4.4.4/help/dxall618 | |
dx-4.4.4/help/dxall619 | |
dx-4.4.4/help/dxall62 | |
dx-4.4.4/help/dxall620 | |
dx-4.4.4/help/dxall621 | |
dx-4.4.4/help/dxall622 | |
dx-4.4.4/help/dxall623 | |
dx-4.4.4/help/dxall624 | |
dx-4.4.4/help/dxall625 | |
dx-4.4.4/help/dxall626 | |
dx-4.4.4/help/dxall627 | |
dx-4.4.4/help/dxall628 | |
dx-4.4.4/help/dxall629 | |
dx-4.4.4/help/dxall63 | |
dx-4.4.4/help/dxall630 | |
dx-4.4.4/help/dxall631 | |
dx-4.4.4/help/dxall632 | |
dx-4.4.4/help/dxall633 | |
dx-4.4.4/help/dxall634 | |
dx-4.4.4/help/dxall635 | |
dx-4.4.4/help/dxall636 | |
dx-4.4.4/help/dxall637 | |
dx-4.4.4/help/dxall638 | |
dx-4.4.4/help/dxall639 | |
dx-4.4.4/help/dxall64 | |
dx-4.4.4/help/dxall640 | |
dx-4.4.4/help/dxall641 | |
dx-4.4.4/help/dxall642 | |
dx-4.4.4/help/dxall643 | |
dx-4.4.4/help/dxall644 | |
dx-4.4.4/help/dxall645 | |
dx-4.4.4/help/dxall646 | |
dx-4.4.4/help/dxall647 | |
dx-4.4.4/help/dxall648 | |
dx-4.4.4/help/dxall649 | |
dx-4.4.4/help/dxall65 | |
dx-4.4.4/help/dxall650 | |
dx-4.4.4/help/dxall651 | |
dx-4.4.4/help/dxall652 | |
dx-4.4.4/help/dxall653 | |
dx-4.4.4/help/dxall654 | |
dx-4.4.4/help/dxall655 | |
dx-4.4.4/help/dxall656 | |
dx-4.4.4/help/dxall657 | |
dx-4.4.4/help/dxall658 | |
dx-4.4.4/help/dxall659 | |
dx-4.4.4/help/dxall66 | |
dx-4.4.4/help/dxall660 | |
dx-4.4.4/help/dxall661 | |
dx-4.4.4/help/dxall662 | |
dx-4.4.4/help/dxall663 | |
dx-4.4.4/help/dxall664 | |
dx-4.4.4/help/dxall665 | |
dx-4.4.4/help/dxall666 | |
dx-4.4.4/help/dxall667 | |
dx-4.4.4/help/dxall668 | |
dx-4.4.4/help/dxall669 | |
dx-4.4.4/help/dxall67 | |
dx-4.4.4/help/dxall670 | |
dx-4.4.4/help/dxall671 | |
dx-4.4.4/help/dxall672 | |
dx-4.4.4/help/dxall673 | |
dx-4.4.4/help/dxall674 | |
dx-4.4.4/help/dxall675 | |
dx-4.4.4/help/dxall676 | |
dx-4.4.4/help/dxall677 | |
dx-4.4.4/help/dxall678 | |
dx-4.4.4/help/dxall679 | |
dx-4.4.4/help/dxall68 | |
dx-4.4.4/help/dxall680 | |
dx-4.4.4/help/dxall681 | |
dx-4.4.4/help/dxall682 | |
dx-4.4.4/help/dxall683 | |
dx-4.4.4/help/dxall684 | |
dx-4.4.4/help/dxall685 | |
dx-4.4.4/help/dxall687 | |
dx-4.4.4/help/dxall689 | |
dx-4.4.4/help/dxall69 | |
dx-4.4.4/help/dxall691 | |
dx-4.4.4/help/dxall693 | |
dx-4.4.4/help/dxall694 | |
dx-4.4.4/help/dxall695 | |
dx-4.4.4/help/dxall697 | |
dx-4.4.4/help/dxall699 | |
dx-4.4.4/help/dxall7 | |
dx-4.4.4/help/dxall70 | |
dx-4.4.4/help/dxall701 | |
dx-4.4.4/help/dxall703 | |
dx-4.4.4/help/dxall705 | |
dx-4.4.4/help/dxall707 | |
dx-4.4.4/help/dxall709 | |
dx-4.4.4/help/dxall71 | |
dx-4.4.4/help/dxall711 | |
dx-4.4.4/help/dxall713 | |
dx-4.4.4/help/dxall715 | |
dx-4.4.4/help/dxall717 | |
dx-4.4.4/help/dxall719 | |
dx-4.4.4/help/dxall72 | |
dx-4.4.4/help/dxall721 | |
dx-4.4.4/help/dxall723 | |
dx-4.4.4/help/dxall725 | |
dx-4.4.4/help/dxall727 | |
dx-4.4.4/help/dxall729 | |
dx-4.4.4/help/dxall73 | |
dx-4.4.4/help/dxall731 | |
dx-4.4.4/help/dxall733 | |
dx-4.4.4/help/dxall735 | |
dx-4.4.4/help/dxall737 | |
dx-4.4.4/help/dxall739 | |
dx-4.4.4/help/dxall74 | |
dx-4.4.4/help/dxall741 | |
dx-4.4.4/help/dxall743 | |
dx-4.4.4/help/dxall744 | |
dx-4.4.4/help/dxall745 | |
dx-4.4.4/help/dxall746 | |
dx-4.4.4/help/dxall747 | |
dx-4.4.4/help/dxall748 | |
dx-4.4.4/help/dxall749 | |
dx-4.4.4/help/dxall75 | |
dx-4.4.4/help/dxall750 | |
dx-4.4.4/help/dxall751 | |
dx-4.4.4/help/dxall752 | |
dx-4.4.4/help/dxall753 | |
dx-4.4.4/help/dxall754 | |
dx-4.4.4/help/dxall755 | |
dx-4.4.4/help/dxall756 | |
dx-4.4.4/help/dxall757 | |
dx-4.4.4/help/dxall758 | |
dx-4.4.4/help/dxall759 | |
dx-4.4.4/help/dxall76 | |
dx-4.4.4/help/dxall760 | |
dx-4.4.4/help/dxall761 | |
dx-4.4.4/help/dxall762 | |
dx-4.4.4/help/dxall763 | |
dx-4.4.4/help/dxall764 | |
dx-4.4.4/help/dxall765 | |
dx-4.4.4/help/dxall766 | |
dx-4.4.4/help/dxall767 | |
dx-4.4.4/help/dxall768 | |
dx-4.4.4/help/dxall769 | |
dx-4.4.4/help/dxall77 | |
dx-4.4.4/help/dxall770 | |
dx-4.4.4/help/dxall771 | |
dx-4.4.4/help/dxall772 | |
dx-4.4.4/help/dxall773 | |
dx-4.4.4/help/dxall774 | |
dx-4.4.4/help/dxall775 | |
dx-4.4.4/help/dxall776 | |
dx-4.4.4/help/dxall777 | |
dx-4.4.4/help/dxall778 | |
dx-4.4.4/help/dxall779 | |
dx-4.4.4/help/dxall78 | |
dx-4.4.4/help/dxall780 | |
dx-4.4.4/help/dxall781 | |
dx-4.4.4/help/dxall782 | |
dx-4.4.4/help/dxall783 | |
dx-4.4.4/help/dxall784 | |
dx-4.4.4/help/dxall785 | |
dx-4.4.4/help/dxall786 | |
dx-4.4.4/help/dxall787 | |
dx-4.4.4/help/dxall788 | |
dx-4.4.4/help/dxall789 | |
dx-4.4.4/help/dxall79 | |
dx-4.4.4/help/dxall790 | |
dx-4.4.4/help/dxall791 | |
dx-4.4.4/help/dxall792 | |
dx-4.4.4/help/dxall793 | |
dx-4.4.4/help/dxall794 | |
dx-4.4.4/help/dxall795 | |
dx-4.4.4/help/dxall796 | |
dx-4.4.4/help/dxall797 | |
dx-4.4.4/help/dxall798 | |
dx-4.4.4/help/dxall799 | |
dx-4.4.4/help/dxall8 | |
dx-4.4.4/help/dxall80 | |
dx-4.4.4/help/dxall800 | |
dx-4.4.4/help/dxall801 | |
dx-4.4.4/help/dxall802 | |
dx-4.4.4/help/dxall803 | |
dx-4.4.4/help/dxall804 | |
dx-4.4.4/help/dxall805 | |
dx-4.4.4/help/dxall806 | |
dx-4.4.4/help/dxall807 | |
dx-4.4.4/help/dxall809 | |
dx-4.4.4/help/dxall81 | |
dx-4.4.4/help/dxall811 | |
dx-4.4.4/help/dxall812 | |
dx-4.4.4/help/dxall813 | |
dx-4.4.4/help/dxall814 | |
dx-4.4.4/help/dxall815 | |
dx-4.4.4/help/dxall817 | |
dx-4.4.4/help/dxall818 | |
dx-4.4.4/help/dxall819 | |
dx-4.4.4/help/dxall82 | |
dx-4.4.4/help/dxall820 | |
dx-4.4.4/help/dxall821 | |
dx-4.4.4/help/dxall822 | |
dx-4.4.4/help/dxall823 | |
dx-4.4.4/help/dxall824 | |
dx-4.4.4/help/dxall825 | |
dx-4.4.4/help/dxall826 | |
dx-4.4.4/help/dxall827 | |
dx-4.4.4/help/dxall828 | |
dx-4.4.4/help/dxall829 | |
dx-4.4.4/help/dxall83 | |
dx-4.4.4/help/dxall830 | |
dx-4.4.4/help/dxall831 | |
dx-4.4.4/help/dxall832 | |
dx-4.4.4/help/dxall833 | |
dx-4.4.4/help/dxall835 | |
dx-4.4.4/help/dxall837 | |
dx-4.4.4/help/dxall839 | |
dx-4.4.4/help/dxall84 | |
dx-4.4.4/help/dxall841 | |
dx-4.4.4/help/dxall843 | |
dx-4.4.4/help/dxall844 | |
dx-4.4.4/help/dxall845 | |
dx-4.4.4/help/dxall846 | |
dx-4.4.4/help/dxall847 | |
dx-4.4.4/help/dxall848 | |
dx-4.4.4/help/dxall849 | |
dx-4.4.4/help/dxall85 | |
dx-4.4.4/help/dxall850 | |
dx-4.4.4/help/dxall851 | |
dx-4.4.4/help/dxall852 | |
dx-4.4.4/help/dxall853 | |
dx-4.4.4/help/dxall854 | |
dx-4.4.4/help/dxall855 | |
dx-4.4.4/help/dxall856 | |
dx-4.4.4/help/dxall857 | |
dx-4.4.4/help/dxall858 | |
dx-4.4.4/help/dxall859 | |
dx-4.4.4/help/dxall86 | |
dx-4.4.4/help/dxall860 | |
dx-4.4.4/help/dxall862 | |
dx-4.4.4/help/dxall864 | |
dx-4.4.4/help/dxall866 | |
dx-4.4.4/help/dxall868 | |
dx-4.4.4/help/dxall87 | |
dx-4.4.4/help/dxall870 | |
dx-4.4.4/help/dxall871 | |
dx-4.4.4/help/dxall872 | |
dx-4.4.4/help/dxall873 | |
dx-4.4.4/help/dxall875 | |
dx-4.4.4/help/dxall876 | |
dx-4.4.4/help/dxall877 | |
dx-4.4.4/help/dxall878 | |
dx-4.4.4/help/dxall879 | |
dx-4.4.4/help/dxall88 | |
dx-4.4.4/help/dxall880 | |
dx-4.4.4/help/dxall881 | |
dx-4.4.4/help/dxall882 | |
dx-4.4.4/help/dxall883 | |
dx-4.4.4/help/dxall884 | |
dx-4.4.4/help/dxall885 | |
dx-4.4.4/help/dxall886 | |
dx-4.4.4/help/dxall887 | |
dx-4.4.4/help/dxall888 | |
dx-4.4.4/help/dxall889 | |
dx-4.4.4/help/dxall89 | |
dx-4.4.4/help/dxall890 | |
dx-4.4.4/help/dxall891 | |
dx-4.4.4/help/dxall892 | |
dx-4.4.4/help/dxall893 | |
dx-4.4.4/help/dxall894 | |
dx-4.4.4/help/dxall895 | |
dx-4.4.4/help/dxall896 | |
dx-4.4.4/help/dxall897 | |
dx-4.4.4/help/dxall898 | |
dx-4.4.4/help/dxall899 | |
dx-4.4.4/help/dxall9 | |
dx-4.4.4/help/dxall90 | |
dx-4.4.4/help/dxall900 | |
dx-4.4.4/help/dxall901 | |
dx-4.4.4/help/dxall902 | |
dx-4.4.4/help/dxall903 | |
dx-4.4.4/help/dxall904 | |
dx-4.4.4/help/dxall905 | |
dx-4.4.4/help/dxall906 | |
dx-4.4.4/help/dxall908 | |
dx-4.4.4/help/dxall909 | |
dx-4.4.4/help/dxall91 | |
dx-4.4.4/help/dxall910 | |
dx-4.4.4/help/dxall911 | |
dx-4.4.4/help/dxall912 | |
dx-4.4.4/help/dxall913 | |
dx-4.4.4/help/dxall914 | |
dx-4.4.4/help/dxall915 | |
dx-4.4.4/help/dxall916 | |
dx-4.4.4/help/dxall917 | |
dx-4.4.4/help/dxall918 | |
dx-4.4.4/help/dxall919 | |
dx-4.4.4/help/dxall92 | |
dx-4.4.4/help/dxall920 | |
dx-4.4.4/help/dxall921 | |
dx-4.4.4/help/dxall922 | |
dx-4.4.4/help/dxall923 | |
dx-4.4.4/help/dxall924 | |
dx-4.4.4/help/dxall925 | |
dx-4.4.4/help/dxall926 | |
dx-4.4.4/help/dxall927 | |
dx-4.4.4/help/dxall928 | |
dx-4.4.4/help/dxall929 | |
dx-4.4.4/help/dxall93 | |
dx-4.4.4/help/dxall930 | |
dx-4.4.4/help/dxall931 | |
dx-4.4.4/help/dxall932 | |
dx-4.4.4/help/dxall933 | |
dx-4.4.4/help/dxall934 | |
dx-4.4.4/help/dxall935 | |
dx-4.4.4/help/dxall936 | |
dx-4.4.4/help/dxall937 | |
dx-4.4.4/help/dxall938 | |
dx-4.4.4/help/dxall939 | |
dx-4.4.4/help/dxall94 | |
dx-4.4.4/help/dxall940 | |
dx-4.4.4/help/dxall941 | |
dx-4.4.4/help/dxall942 | |
dx-4.4.4/help/dxall943 | |
dx-4.4.4/help/dxall944 | |
dx-4.4.4/help/dxall945 | |
dx-4.4.4/help/dxall946 | |
dx-4.4.4/help/dxall947 | |
dx-4.4.4/help/dxall948 | |
dx-4.4.4/help/dxall949 | |
dx-4.4.4/help/dxall95 | |
dx-4.4.4/help/dxall950 | |
dx-4.4.4/help/dxall951 | |
dx-4.4.4/help/dxall952 | |
dx-4.4.4/help/dxall953 | |
dx-4.4.4/help/dxall954 | |
dx-4.4.4/help/dxall955 | |
dx-4.4.4/help/dxall956 | |
dx-4.4.4/help/dxall957 | |
dx-4.4.4/help/dxall958 | |
dx-4.4.4/help/dxall959 | |
dx-4.4.4/help/dxall96 | |
dx-4.4.4/help/dxall960 | |
dx-4.4.4/help/dxall961 | |
dx-4.4.4/help/dxall962 | |
dx-4.4.4/help/dxall963 | |
dx-4.4.4/help/dxall964 | |
dx-4.4.4/help/dxall965 | |
dx-4.4.4/help/dxall966 | |
dx-4.4.4/help/dxall967 | |
dx-4.4.4/help/dxall968 | |
dx-4.4.4/help/dxall969 | |
dx-4.4.4/help/dxall97 | |
dx-4.4.4/help/dxall970 | |
dx-4.4.4/help/dxall971 | |
dx-4.4.4/help/dxall972 | |
dx-4.4.4/help/dxall973 | |
dx-4.4.4/help/dxall974 | |
dx-4.4.4/help/dxall975 | |
dx-4.4.4/help/dxall976 | |
dx-4.4.4/help/dxall977 | |
dx-4.4.4/help/dxall978 | |
dx-4.4.4/help/dxall979 | |
dx-4.4.4/help/dxall98 | |
dx-4.4.4/help/dxall980 | |
dx-4.4.4/help/dxall981 | |
dx-4.4.4/help/dxall982 | |
dx-4.4.4/help/dxall983 | |
dx-4.4.4/help/dxall984 | |
dx-4.4.4/help/dxall985 | |
dx-4.4.4/help/dxall986 | |
dx-4.4.4/help/dxall987 | |
dx-4.4.4/help/dxall988 | |
dx-4.4.4/help/dxall989 | |
dx-4.4.4/help/dxall99 | |
dx-4.4.4/help/dxall990 | |
dx-4.4.4/help/dxall991 | |
dx-4.4.4/help/dxall992 | |
dx-4.4.4/help/dxall993 | |
dx-4.4.4/help/dxall994 | |
dx-4.4.4/help/dxall995 | |
dx-4.4.4/help/dxall997 | |
dx-4.4.4/help/dxall998 | |
dx-4.4.4/help/dxall999 | |
dx-4.4.4/help/HelpDir | |
dx-4.4.4/help/HelpNotAvailable | |
dx-4.4.4/help/hlpalhtl | |
dx-4.4.4/help/hlpall | |
dx-4.4.4/help/Makefile.am | |
dx-4.4.4/help/Makefile.in | |
dx-4.4.4/help/spots | |
dx-4.4.4/html/ | |
dx-4.4.4/html/._allguide.htm | |
dx-4.4.4/html/allguide.htm | |
dx-4.4.4/html/Help.idx | |
dx-4.4.4/html/images/ | |
dx-4.4.4/html/images/3dcurs.gif | |
dx-4.4.4/html/images/adctlpt.gif | |
dx-4.4.4/html/images/arch.gif | |
dx-4.4.4/html/images/autoax.gif | |
dx-4.4.4/html/images/autoexp.gif | |
dx-4.4.4/html/images/brwswin.gif | |
dx-4.4.4/html/images/camera.gif | |
dx-4.4.4/html/images/cmaped.gif | |
dx-4.4.4/html/images/cmputcfg.gif | |
dx-4.4.4/html/images/colomap1.gif | |
dx-4.4.4/html/images/colormap.gif | |
dx-4.4.4/html/images/confgdb.gif | |
dx-4.4.4/html/images/ctpanacc.gif | |
dx-4.4.4/html/images/ctpangrp.gif | |
dx-4.4.4/html/images/ctrlpan.gif | |
dx-4.4.4/html/images/dataorg.gif | |
dx-4.4.4/html/images/datapr1.gif | |
dx-4.4.4/html/images/datdpnd.gif | |
dx-4.4.4/html/images/dialint.gif | |
dx-4.4.4/html/images/dinhd.gif | |
dx-4.4.4/html/images/dxdawn.gif | |
dx-4.4.4/html/images/dxicon8.gif | |
dx-4.4.4/html/images/example1.gif | |
dx-4.4.4/html/images/excutgrp.gif | |
dx-4.4.4/html/images/exticon.gif | |
dx-4.4.4/html/images/filesel.gif | |
dx-4.4.4/html/images/findtool.gif | |
dx-4.4.4/html/images/flcgh_01.gif | |
dx-4.4.4/html/images/flcgh_02.gif | |
dx-4.4.4/html/images/flcgh_02d.gif | |
dx-4.4.4/html/images/flcgh_03.gif | |
dx-4.4.4/html/images/flcgh_03d.gif | |
dx-4.4.4/html/images/flcgh_04.gif | |
dx-4.4.4/html/images/flcgh_04d.gif | |
dx-4.4.4/html/images/flcgh_05.gif | |
dx-4.4.4/html/images/flcgh_05d.gif | |
dx-4.4.4/html/images/flcgh_06.gif | |
dx-4.4.4/html/images/flcgh_07.gif | |
dx-4.4.4/html/images/flcgh_08.gif | |
dx-4.4.4/html/images/flcgh_09.gif | |
dx-4.4.4/html/images/flcgh_10.gif | |
dx-4.4.4/html/images/flcgh_11.gif | |
dx-4.4.4/html/images/fldobj.gif | |
dx-4.4.4/html/images/flehole.gif | |
dx-4.4.4/html/images/flesurf.gif | |
dx-4.4.4/html/images/flexmp.gif | |
dx-4.4.4/html/images/flseldb.gif | |
dx-4.4.4/html/images/flselint.gif | |
dx-4.4.4/html/images/foot-fc.gif | |
dx-4.4.4/html/images/foot-qs.gif | |
dx-4.4.4/html/images/foot-ug.gif | |
dx-4.4.4/html/images/foot-ur.gif | |
dx-4.4.4/html/images/fragment.gif | |
dx-4.4.4/html/images/framctrl.gif | |
dx-4.4.4/html/images/fulldp.gif | |
dx-4.4.4/html/images/genwave.gif | |
dx-4.4.4/html/images/griddb.gif | |
dx-4.4.4/html/images/gridtype.gif | |
dx-4.4.4/html/images/grparts.gif | |
dx-4.4.4/html/images/hand.gif | |
dx-4.4.4/html/images/hdrdat.gif | |
dx-4.4.4/html/images/hello1.gif | |
dx-4.4.4/html/images/hello2.gif | |
dx-4.4.4/html/images/helpwin.gif | |
dx-4.4.4/html/images/htswork.gif | |
dx-4.4.4/html/images/imagwin.gif | |
dx-4.4.4/html/images/impconf.gif | |
dx-4.4.4/html/images/inputcfg.gif | |
dx-4.4.4/html/images/intlabl.gif | |
dx-4.4.4/html/images/irggrid.gif | |
dx-4.4.4/html/images/javatls.gif | |
dx-4.4.4/html/images/macrname.gif | |
dx-4.4.4/html/images/majcomp.gif | |
dx-4.4.4/html/images/Makefile.am | |
dx-4.4.4/html/images/Makefile.in | |
dx-4.4.4/html/images/map.gif | |
dx-4.4.4/html/images/map2plan.gif | |
dx-4.4.4/html/images/mapdform.gif | |
dx-4.4.4/html/images/matpa1.gif | |
dx-4.4.4/html/images/matpa2.gif | |
dx-4.4.4/html/images/matpa3.gif | |
dx-4.4.4/html/images/matpa4.gif | |
dx-4.4.4/html/images/modbuild.gif | |
dx-4.4.4/html/images/navigate.gif | |
dx-4.4.4/html/images/opacintg.gif | |
dx-4.4.4/html/images/opendb.gif | |
dx-4.4.4/html/images/optbox.gif | |
dx-4.4.4/html/images/patrx1.gif | |
dx-4.4.4/html/images/patrx2.gif | |
dx-4.4.4/html/images/patry1.gif | |
dx-4.4.4/html/images/patry2.gif | |
dx-4.4.4/html/images/prodarxy.gif | |
dx-4.4.4/html/images/prodarz.gif | |
dx-4.4.4/html/images/prtimg.gif | |
dx-4.4.4/html/images/quikovx.gif | |
dx-4.4.4/html/images/reggrid.gif | |
dx-4.4.4/html/images/rendopts.gif | |
dx-4.4.4/html/images/reorient.gif | |
dx-4.4.4/html/images/saveas.gif | |
dx-4.4.4/html/images/savimg.gif | |
dx-4.4.4/html/images/sealevel.gif | |
dx-4.4.4/html/images/selattr.gif | |
dx-4.4.4/html/images/selctint.gif | |
dx-4.4.4/html/images/seqctrl.gif | |
dx-4.4.4/html/images/setattr.gif | |
dx-4.4.4/html/images/sgroup.gif | |
dx-4.4.4/html/images/shcomps.gif | |
dx-4.4.4/html/images/simfdp.gif | |
dx-4.4.4/html/images/skwdgrid.gif | |
dx-4.4.4/html/images/slidint.gif | |
dx-4.4.4/html/images/spacer.gif | |
dx-4.4.4/html/images/startup.gif | |
dx-4.4.4/html/images/stepint.gif | |
dx-4.4.4/html/images/strngint.gif | |
dx-4.4.4/html/images/strtsrv.gif | |
dx-4.4.4/html/images/strtsrvo.gif | |
dx-4.4.4/html/images/textint.gif | |
dx-4.4.4/html/images/throtdb.gif | |
dx-4.4.4/html/images/transfrm.gif | |
dx-4.4.4/html/images/txtmesh.gif | |
dx-4.4.4/html/images/usefle.gif | |
dx-4.4.4/html/images/veclist.gif | |
dx-4.4.4/html/images/vertord.gif | |
dx-4.4.4/html/images/vrtordu1.gif | |
dx-4.4.4/html/images/vrtordu2.gif | |
dx-4.4.4/html/images/vuctrl.gif | |
dx-4.4.4/html/images/wrpdgrid.gif | |
dx-4.4.4/html/images/xgroup.gif | |
dx-4.4.4/html/images/xgrpasgn.gif | |
dx-4.4.4/html/images/xirega.gif | |
dx-4.4.4/html/images/xmesha.gif | |
dx-4.4.4/html/images/xmodf1.gif | |
dx-4.4.4/html/images/xmodf10.gif | |
dx-4.4.4/html/images/xmodf11.gif | |
dx-4.4.4/html/images/xmodf12.gif | |
dx-4.4.4/html/images/xmodf13.gif | |
dx-4.4.4/html/images/xmodf2.gif | |
dx-4.4.4/html/images/xmodf3.gif | |
dx-4.4.4/html/images/xmodf4.gif | |
dx-4.4.4/html/images/xmodf6.gif | |
dx-4.4.4/html/images/xmodf7.gif | |
dx-4.4.4/html/images/xmodf8.gif | |
dx-4.4.4/html/images/xmodf9.gif | |
dx-4.4.4/html/images/xmpmacro.gif | |
dx-4.4.4/html/images/xproda.gif | |
dx-4.4.4/html/insguide.htm | |
dx-4.4.4/html/Makefile.am | |
dx-4.4.4/html/Makefile.in | |
dx-4.4.4/html/notfound.htm | |
dx-4.4.4/html/pages/ | |
dx-4.4.4/html/pages/insgu002.htm | |
dx-4.4.4/html/pages/insgu003.htm | |
dx-4.4.4/html/pages/insgu004.htm | |
dx-4.4.4/html/pages/insgu005.htm | |
dx-4.4.4/html/pages/insgu006.htm | |
dx-4.4.4/html/pages/insgu007.htm | |
dx-4.4.4/html/pages/insgu008.htm | |
dx-4.4.4/html/pages/insgu009.htm | |
dx-4.4.4/html/pages/insgu010.htm | |
dx-4.4.4/html/pages/insgu011.htm | |
dx-4.4.4/html/pages/insgu012.htm | |
dx-4.4.4/html/pages/insgu013.htm | |
dx-4.4.4/html/pages/insgu014.htm | |
dx-4.4.4/html/pages/insgu015.htm | |
dx-4.4.4/html/pages/insgu016.htm | |
dx-4.4.4/html/pages/insgu017.htm | |
dx-4.4.4/html/pages/insgu018.htm | |
dx-4.4.4/html/pages/insgu019.htm | |
dx-4.4.4/html/pages/insgu020.htm | |
dx-4.4.4/html/pages/insgu021.htm | |
dx-4.4.4/html/pages/insgu022.htm | |
dx-4.4.4/html/pages/insgu023.htm | |
dx-4.4.4/html/pages/insgu024.htm | |
dx-4.4.4/html/pages/insgu025.htm | |
dx-4.4.4/html/pages/insgu026.htm | |
dx-4.4.4/html/pages/insgu027.htm | |
dx-4.4.4/html/pages/insgu028.htm | |
dx-4.4.4/html/pages/insgu029.htm | |
dx-4.4.4/html/pages/insgu030.htm | |
dx-4.4.4/html/pages/insgu031.htm | |
dx-4.4.4/html/pages/insgu032.htm | |
dx-4.4.4/html/pages/insgu033.htm | |
dx-4.4.4/html/pages/insgu034.htm | |
dx-4.4.4/html/pages/insgu035.htm | |
dx-4.4.4/html/pages/insgu036.htm | |
dx-4.4.4/html/pages/insgu037.htm | |
dx-4.4.4/html/pages/insgu038.htm | |
dx-4.4.4/html/pages/insgu039.htm | |
dx-4.4.4/html/pages/Makefile.am | |
dx-4.4.4/html/pages/Makefile.in | |
dx-4.4.4/html/pages/progu002.htm | |
dx-4.4.4/html/pages/progu003.htm | |
dx-4.4.4/html/pages/progu004.htm | |
dx-4.4.4/html/pages/progu005.htm | |
dx-4.4.4/html/pages/progu006.htm | |
dx-4.4.4/html/pages/progu007.htm | |
dx-4.4.4/html/pages/progu008.htm | |
dx-4.4.4/html/pages/progu009.htm | |
dx-4.4.4/html/pages/progu010.htm | |
dx-4.4.4/html/pages/progu011.htm | |
dx-4.4.4/html/pages/progu012.htm | |
dx-4.4.4/html/pages/progu013.htm | |
dx-4.4.4/html/pages/progu014.htm | |
dx-4.4.4/html/pages/progu015.htm | |
dx-4.4.4/html/pages/progu016.htm | |
dx-4.4.4/html/pages/progu017.htm | |
dx-4.4.4/html/pages/progu018.htm | |
dx-4.4.4/html/pages/progu019.htm | |
dx-4.4.4/html/pages/progu020.htm | |
dx-4.4.4/html/pages/progu021.htm | |
dx-4.4.4/html/pages/progu022.htm | |
dx-4.4.4/html/pages/progu023.htm | |
dx-4.4.4/html/pages/progu024.htm | |
dx-4.4.4/html/pages/progu025.htm | |
dx-4.4.4/html/pages/progu026.htm | |
dx-4.4.4/html/pages/progu027.htm | |
dx-4.4.4/html/pages/progu028.htm | |
dx-4.4.4/html/pages/progu029.htm | |
dx-4.4.4/html/pages/progu030.htm | |
dx-4.4.4/html/pages/progu031.htm | |
dx-4.4.4/html/pages/progu032.htm | |
dx-4.4.4/html/pages/progu033.htm | |
dx-4.4.4/html/pages/progu034.htm | |
dx-4.4.4/html/pages/progu035.htm | |
dx-4.4.4/html/pages/progu036.htm | |
dx-4.4.4/html/pages/progu037.htm | |
dx-4.4.4/html/pages/progu038.htm | |
dx-4.4.4/html/pages/progu039.htm | |
dx-4.4.4/html/pages/progu040.htm | |
dx-4.4.4/html/pages/progu041.htm | |
dx-4.4.4/html/pages/progu042.htm | |
dx-4.4.4/html/pages/progu043.htm | |
dx-4.4.4/html/pages/progu044.htm | |
dx-4.4.4/html/pages/progu045.htm | |
dx-4.4.4/html/pages/progu046.htm | |
dx-4.4.4/html/pages/progu047.htm | |
dx-4.4.4/html/pages/progu048.htm | |
dx-4.4.4/html/pages/progu049.htm | |
dx-4.4.4/html/pages/progu050.htm | |
dx-4.4.4/html/pages/progu051.htm | |
dx-4.4.4/html/pages/progu052.htm | |
dx-4.4.4/html/pages/progu053.htm | |
dx-4.4.4/html/pages/progu054.htm | |
dx-4.4.4/html/pages/progu055.htm | |
dx-4.4.4/html/pages/progu056.htm | |
dx-4.4.4/html/pages/progu057.htm | |
dx-4.4.4/html/pages/progu058.htm | |
dx-4.4.4/html/pages/progu059.htm | |
dx-4.4.4/html/pages/progu060.htm | |
dx-4.4.4/html/pages/progu061.htm | |
dx-4.4.4/html/pages/progu062.htm | |
dx-4.4.4/html/pages/progu063.htm | |
dx-4.4.4/html/pages/progu064.htm | |
dx-4.4.4/html/pages/progu065.htm | |
dx-4.4.4/html/pages/progu066.htm | |
dx-4.4.4/html/pages/progu067.htm | |
dx-4.4.4/html/pages/progu068.htm | |
dx-4.4.4/html/pages/progu069.htm | |
dx-4.4.4/html/pages/progu070.htm | |
dx-4.4.4/html/pages/progu071.htm | |
dx-4.4.4/html/pages/progu072.htm | |
dx-4.4.4/html/pages/progu073.htm | |
dx-4.4.4/html/pages/progu074.htm | |
dx-4.4.4/html/pages/progu075.htm | |
dx-4.4.4/html/pages/progu076.htm | |
dx-4.4.4/html/pages/progu077.htm | |
dx-4.4.4/html/pages/progu078.htm | |
dx-4.4.4/html/pages/progu079.htm | |
dx-4.4.4/html/pages/progu080.htm | |
dx-4.4.4/html/pages/progu081.htm | |
dx-4.4.4/html/pages/progu082.htm | |
dx-4.4.4/html/pages/progu083.htm | |
dx-4.4.4/html/pages/progu084.htm | |
dx-4.4.4/html/pages/progu085.htm | |
dx-4.4.4/html/pages/progu086.htm | |
dx-4.4.4/html/pages/progu087.htm | |
dx-4.4.4/html/pages/progu088.htm | |
dx-4.4.4/html/pages/progu089.htm | |
dx-4.4.4/html/pages/progu090.htm | |
dx-4.4.4/html/pages/progu091.htm | |
dx-4.4.4/html/pages/progu092.htm | |
dx-4.4.4/html/pages/progu093.htm | |
dx-4.4.4/html/pages/progu094.htm | |
dx-4.4.4/html/pages/progu095.htm | |
dx-4.4.4/html/pages/progu096.htm | |
dx-4.4.4/html/pages/progu097.htm | |
dx-4.4.4/html/pages/progu098.htm | |
dx-4.4.4/html/pages/progu099.htm | |
dx-4.4.4/html/pages/progu100.htm | |
dx-4.4.4/html/pages/progu101.htm | |
dx-4.4.4/html/pages/progu102.htm | |
dx-4.4.4/html/pages/progu103.htm | |
dx-4.4.4/html/pages/progu104.htm | |
dx-4.4.4/html/pages/progu105.htm | |
dx-4.4.4/html/pages/progu106.htm | |
dx-4.4.4/html/pages/progu107.htm | |
dx-4.4.4/html/pages/progu108.htm | |
dx-4.4.4/html/pages/progu109.htm | |
dx-4.4.4/html/pages/progu110.htm | |
dx-4.4.4/html/pages/progu111.htm | |
dx-4.4.4/html/pages/progu112.htm | |
dx-4.4.4/html/pages/progu113.htm | |
dx-4.4.4/html/pages/progu114.htm | |
dx-4.4.4/html/pages/progu115.htm | |
dx-4.4.4/html/pages/progu116.htm | |
dx-4.4.4/html/pages/progu117.htm | |
dx-4.4.4/html/pages/progu118.htm | |
dx-4.4.4/html/pages/progu119.htm | |
dx-4.4.4/html/pages/progu120.htm | |
dx-4.4.4/html/pages/progu121.htm | |
dx-4.4.4/html/pages/progu122.htm | |
dx-4.4.4/html/pages/progu123.htm | |
dx-4.4.4/html/pages/progu124.htm | |
dx-4.4.4/html/pages/progu125.htm | |
dx-4.4.4/html/pages/progu126.htm | |
dx-4.4.4/html/pages/progu127.htm | |
dx-4.4.4/html/pages/progu128.htm | |
dx-4.4.4/html/pages/progu129.htm | |
dx-4.4.4/html/pages/progu130.htm | |
dx-4.4.4/html/pages/progu131.htm | |
dx-4.4.4/html/pages/progu132.htm | |
dx-4.4.4/html/pages/progu133.htm | |
dx-4.4.4/html/pages/progu134.htm | |
dx-4.4.4/html/pages/progu135.htm | |
dx-4.4.4/html/pages/progu136.htm | |
dx-4.4.4/html/pages/progu137.htm | |
dx-4.4.4/html/pages/progu138.htm | |
dx-4.4.4/html/pages/progu139.htm | |
dx-4.4.4/html/pages/progu140.htm | |
dx-4.4.4/html/pages/progu141.htm | |
dx-4.4.4/html/pages/progu142.htm | |
dx-4.4.4/html/pages/progu143.htm | |
dx-4.4.4/html/pages/progu144.htm | |
dx-4.4.4/html/pages/progu145.htm | |
dx-4.4.4/html/pages/progu146.htm | |
dx-4.4.4/html/pages/progu147.htm | |
dx-4.4.4/html/pages/progu148.htm | |
dx-4.4.4/html/pages/progu149.htm | |
dx-4.4.4/html/pages/progu150.htm | |
dx-4.4.4/html/pages/progu151.htm | |
dx-4.4.4/html/pages/progu152.htm | |
dx-4.4.4/html/pages/progu153.htm | |
dx-4.4.4/html/pages/progu154.htm | |
dx-4.4.4/html/pages/progu155.htm | |
dx-4.4.4/html/pages/progu156.htm | |
dx-4.4.4/html/pages/progu157.htm | |
dx-4.4.4/html/pages/progu158.htm | |
dx-4.4.4/html/pages/progu159.htm | |
dx-4.4.4/html/pages/progu160.htm | |
dx-4.4.4/html/pages/progu161.htm | |
dx-4.4.4/html/pages/progu162.htm | |
dx-4.4.4/html/pages/progu163.htm | |
dx-4.4.4/html/pages/progu164.htm | |
dx-4.4.4/html/pages/progu165.htm | |
dx-4.4.4/html/pages/progu166.htm | |
dx-4.4.4/html/pages/progu167.htm | |
dx-4.4.4/html/pages/progu168.htm | |
dx-4.4.4/html/pages/progu169.htm | |
dx-4.4.4/html/pages/progu170.htm | |
dx-4.4.4/html/pages/progu171.htm | |
dx-4.4.4/html/pages/progu172.htm | |
dx-4.4.4/html/pages/progu173.htm | |
dx-4.4.4/html/pages/progu174.htm | |
dx-4.4.4/html/pages/progu175.htm | |
dx-4.4.4/html/pages/progu176.htm | |
dx-4.4.4/html/pages/progu177.htm | |
dx-4.4.4/html/pages/progu178.htm | |
dx-4.4.4/html/pages/progu179.htm | |
dx-4.4.4/html/pages/progu180.htm | |
dx-4.4.4/html/pages/progu181.htm | |
dx-4.4.4/html/pages/progu182.htm | |
dx-4.4.4/html/pages/progu183.htm | |
dx-4.4.4/html/pages/progu184.htm | |
dx-4.4.4/html/pages/progu185.htm | |
dx-4.4.4/html/pages/progu186.htm | |
dx-4.4.4/html/pages/progu187.htm | |
dx-4.4.4/html/pages/progu188.htm | |
dx-4.4.4/html/pages/progu189.htm | |
dx-4.4.4/html/pages/progu190.htm | |
dx-4.4.4/html/pages/progu191.htm | |
dx-4.4.4/html/pages/progu192.htm | |
dx-4.4.4/html/pages/progu193.htm | |
dx-4.4.4/html/pages/progu194.htm | |
dx-4.4.4/html/pages/progu195.htm | |
dx-4.4.4/html/pages/progu196.htm | |
dx-4.4.4/html/pages/progu197.htm | |
dx-4.4.4/html/pages/progu198.htm | |
dx-4.4.4/html/pages/progu199.htm | |
dx-4.4.4/html/pages/progu200.htm | |
dx-4.4.4/html/pages/progu201.htm | |
dx-4.4.4/html/pages/progu202.htm | |
dx-4.4.4/html/pages/progu203.htm | |
dx-4.4.4/html/pages/progu204.htm | |
dx-4.4.4/html/pages/progu205.htm | |
dx-4.4.4/html/pages/progu206.htm | |
dx-4.4.4/html/pages/progu207.htm | |
dx-4.4.4/html/pages/progu208.htm | |
dx-4.4.4/html/pages/progu209.htm | |
dx-4.4.4/html/pages/progu210.htm | |
dx-4.4.4/html/pages/progu211.htm | |
dx-4.4.4/html/pages/progu212.htm | |
dx-4.4.4/html/pages/progu213.htm | |
dx-4.4.4/html/pages/progu214.htm | |
dx-4.4.4/html/pages/progu215.htm | |
dx-4.4.4/html/pages/progu216.htm | |
dx-4.4.4/html/pages/progu217.htm | |
dx-4.4.4/html/pages/progu218.htm | |
dx-4.4.4/html/pages/progu219.htm | |
dx-4.4.4/html/pages/progu220.htm | |
dx-4.4.4/html/pages/progu221.htm | |
dx-4.4.4/html/pages/progu222.htm | |
dx-4.4.4/html/pages/progu223.htm | |
dx-4.4.4/html/pages/progu224.htm | |
dx-4.4.4/html/pages/progu225.htm | |
dx-4.4.4/html/pages/progu226.htm | |
dx-4.4.4/html/pages/progu227.htm | |
dx-4.4.4/html/pages/progu228.htm | |
dx-4.4.4/html/pages/progu229.htm | |
dx-4.4.4/html/pages/progu230.htm | |
dx-4.4.4/html/pages/progu231.htm | |
dx-4.4.4/html/pages/progu232.htm | |
dx-4.4.4/html/pages/progu233.htm | |
dx-4.4.4/html/pages/progu234.htm | |
dx-4.4.4/html/pages/progu235.htm | |
dx-4.4.4/html/pages/progu236.htm | |
dx-4.4.4/html/pages/progu237.htm | |
dx-4.4.4/html/pages/progu238.htm | |
dx-4.4.4/html/pages/progu239.htm | |
dx-4.4.4/html/pages/progu240.htm | |
dx-4.4.4/html/pages/progu241.htm | |
dx-4.4.4/html/pages/progu242.htm | |
dx-4.4.4/html/pages/progu243.htm | |
dx-4.4.4/html/pages/progu244.htm | |
dx-4.4.4/html/pages/progu245.htm | |
dx-4.4.4/html/pages/progu246.htm | |
dx-4.4.4/html/pages/progu247.htm | |
dx-4.4.4/html/pages/progu248.htm | |
dx-4.4.4/html/pages/progu249.htm | |
dx-4.4.4/html/pages/progu250.htm | |
dx-4.4.4/html/pages/progu251.htm | |
dx-4.4.4/html/pages/progu252.htm | |
dx-4.4.4/html/pages/progu253.htm | |
dx-4.4.4/html/pages/progu254.htm | |
dx-4.4.4/html/pages/progu255.htm | |
dx-4.4.4/html/pages/progu256.htm | |
dx-4.4.4/html/pages/progu257.htm | |
dx-4.4.4/html/pages/progu258.htm | |
dx-4.4.4/html/pages/progu259.htm | |
dx-4.4.4/html/pages/progu260.htm | |
dx-4.4.4/html/pages/progu261.htm | |
dx-4.4.4/html/pages/progu262.htm | |
dx-4.4.4/html/pages/progu263.htm | |
dx-4.4.4/html/pages/progu264.htm | |
dx-4.4.4/html/pages/progu265.htm | |
dx-4.4.4/html/pages/progu266.htm | |
dx-4.4.4/html/pages/progu267.htm | |
dx-4.4.4/html/pages/progu268.htm | |
dx-4.4.4/html/pages/progu269.htm | |
dx-4.4.4/html/pages/progu270.htm | |
dx-4.4.4/html/pages/progu271.htm | |
dx-4.4.4/html/pages/progu272.htm | |
dx-4.4.4/html/pages/progu273.htm | |
dx-4.4.4/html/pages/progu274.htm | |
dx-4.4.4/html/pages/progu275.htm | |
dx-4.4.4/html/pages/progu276.htm | |
dx-4.4.4/html/pages/progu277.htm | |
dx-4.4.4/html/pages/progu278.htm | |
dx-4.4.4/html/pages/progu279.htm | |
dx-4.4.4/html/pages/progu280.htm | |
dx-4.4.4/html/pages/progu281.htm | |
dx-4.4.4/html/pages/progu282.htm | |
dx-4.4.4/html/pages/progu283.htm | |
dx-4.4.4/html/pages/progu284.htm | |
dx-4.4.4/html/pages/progu285.htm | |
dx-4.4.4/html/pages/progu286.htm | |
dx-4.4.4/html/pages/progu287.htm | |
dx-4.4.4/html/pages/progu288.htm | |
dx-4.4.4/html/pages/progu289.htm | |
dx-4.4.4/html/pages/progu290.htm | |
dx-4.4.4/html/pages/progu291.htm | |
dx-4.4.4/html/pages/progu292.htm | |
dx-4.4.4/html/pages/progu293.htm | |
dx-4.4.4/html/pages/progu294.htm | |
dx-4.4.4/html/pages/progu295.htm | |
dx-4.4.4/html/pages/progu296.htm | |
dx-4.4.4/html/pages/progu297.htm | |
dx-4.4.4/html/pages/progu298.htm | |
dx-4.4.4/html/pages/progu299.htm | |
dx-4.4.4/html/pages/progu300.htm | |
dx-4.4.4/html/pages/progu301.htm | |
dx-4.4.4/html/pages/progu302.htm | |
dx-4.4.4/html/pages/progu303.htm | |
dx-4.4.4/html/pages/progu304.htm | |
dx-4.4.4/html/pages/progu305.htm | |
dx-4.4.4/html/pages/progu306.htm | |
dx-4.4.4/html/pages/progu307.htm | |
dx-4.4.4/html/pages/progu308.htm | |
dx-4.4.4/html/pages/progu309.htm | |
dx-4.4.4/html/pages/progu310.htm | |
dx-4.4.4/html/pages/progu311.htm | |
dx-4.4.4/html/pages/progu312.htm | |
dx-4.4.4/html/pages/progu313.htm | |
dx-4.4.4/html/pages/progu314.htm | |
dx-4.4.4/html/pages/progu315.htm | |
dx-4.4.4/html/pages/progu316.htm | |
dx-4.4.4/html/pages/progu317.htm | |
dx-4.4.4/html/pages/progu318.htm | |
dx-4.4.4/html/pages/progu319.htm | |
dx-4.4.4/html/pages/progu320.htm | |
dx-4.4.4/html/pages/progu321.htm | |
dx-4.4.4/html/pages/progu322.htm | |
dx-4.4.4/html/pages/progu323.htm | |
dx-4.4.4/html/pages/progu324.htm | |
dx-4.4.4/html/pages/progu325.htm | |
dx-4.4.4/html/pages/progu326.htm | |
dx-4.4.4/html/pages/progu327.htm | |
dx-4.4.4/html/pages/progu328.htm | |
dx-4.4.4/html/pages/progu329.htm | |
dx-4.4.4/html/pages/progu330.htm | |
dx-4.4.4/html/pages/progu331.htm | |
dx-4.4.4/html/pages/progu332.htm | |
dx-4.4.4/html/pages/progu333.htm | |
dx-4.4.4/html/pages/progu334.htm | |
dx-4.4.4/html/pages/._progu335.htm | |
dx-4.4.4/html/pages/progu335.htm | |
dx-4.4.4/html/pages/progu336.htm | |
dx-4.4.4/html/pages/progu337.htm | |
dx-4.4.4/html/pages/progu338.htm | |
dx-4.4.4/html/pages/progu339.htm | |
dx-4.4.4/html/pages/progu340.htm | |
dx-4.4.4/html/pages/progu341.htm | |
dx-4.4.4/html/pages/progu342.htm | |
dx-4.4.4/html/pages/progu343.htm | |
dx-4.4.4/html/pages/progu344.htm | |
dx-4.4.4/html/pages/qikgu002.htm | |
dx-4.4.4/html/pages/qikgu003.htm | |
dx-4.4.4/html/pages/qikgu004.htm | |
dx-4.4.4/html/pages/qikgu005.htm | |
dx-4.4.4/html/pages/qikgu006.htm | |
dx-4.4.4/html/pages/qikgu007.htm | |
dx-4.4.4/html/pages/qikgu008.htm | |
dx-4.4.4/html/pages/qikgu009.htm | |
dx-4.4.4/html/pages/qikgu010.htm | |
dx-4.4.4/html/pages/qikgu011.htm | |
dx-4.4.4/html/pages/qikgu012.htm | |
dx-4.4.4/html/pages/qikgu013.htm | |
dx-4.4.4/html/pages/qikgu014.htm | |
dx-4.4.4/html/pages/qikgu015.htm | |
dx-4.4.4/html/pages/qikgu016.htm | |
dx-4.4.4/html/pages/qikgu017.htm | |
dx-4.4.4/html/pages/qikgu018.htm | |
dx-4.4.4/html/pages/qikgu019.htm | |
dx-4.4.4/html/pages/qikgu020.htm | |
dx-4.4.4/html/pages/qikgu021.htm | |
dx-4.4.4/html/pages/qikgu022.htm | |
dx-4.4.4/html/pages/qikgu023.htm | |
dx-4.4.4/html/pages/qikgu024.htm | |
dx-4.4.4/html/pages/qikgu025.htm | |
dx-4.4.4/html/pages/qikgu026.htm | |
dx-4.4.4/html/pages/qikgu027.htm | |
dx-4.4.4/html/pages/qikgu028.htm | |
dx-4.4.4/html/pages/qikgu029.htm | |
dx-4.4.4/html/pages/qikgu030.htm | |
dx-4.4.4/html/pages/qikgu031.htm | |
dx-4.4.4/html/pages/qikgu032.htm | |
dx-4.4.4/html/pages/qikgu033.htm | |
dx-4.4.4/html/pages/qikgu034.htm | |
dx-4.4.4/html/pages/qikgu035.htm | |
dx-4.4.4/html/pages/refgu002.htm | |
dx-4.4.4/html/pages/refgu003.htm | |
dx-4.4.4/html/pages/refgu004.htm | |
dx-4.4.4/html/pages/refgu005.htm | |
dx-4.4.4/html/pages/refgu006.htm | |
dx-4.4.4/html/pages/refgu007.htm | |
dx-4.4.4/html/pages/refgu008.htm | |
dx-4.4.4/html/pages/refgu009.htm | |
dx-4.4.4/html/pages/refgu010.htm | |
dx-4.4.4/html/pages/refgu011.htm | |
dx-4.4.4/html/pages/refgu012.htm | |
dx-4.4.4/html/pages/refgu013.htm | |
dx-4.4.4/html/pages/refgu014.htm | |
dx-4.4.4/html/pages/refgu015.htm | |
dx-4.4.4/html/pages/refgu016.htm | |
dx-4.4.4/html/pages/refgu017.htm | |
dx-4.4.4/html/pages/refgu018.htm | |
dx-4.4.4/html/pages/refgu019.htm | |
dx-4.4.4/html/pages/refgu020.htm | |
dx-4.4.4/html/pages/refgu021.htm | |
dx-4.4.4/html/pages/refgu022.htm | |
dx-4.4.4/html/pages/refgu023.htm | |
dx-4.4.4/html/pages/refgu024.htm | |
dx-4.4.4/html/pages/refgu025.htm | |
dx-4.4.4/html/pages/refgu026.htm | |
dx-4.4.4/html/pages/refgu027.htm | |
dx-4.4.4/html/pages/refgu028.htm | |
dx-4.4.4/html/pages/refgu029.htm | |
dx-4.4.4/html/pages/refgu030.htm | |
dx-4.4.4/html/pages/refgu031.htm | |
dx-4.4.4/html/pages/refgu032.htm | |
dx-4.4.4/html/pages/refgu033.htm | |
dx-4.4.4/html/pages/refgu034.htm | |
dx-4.4.4/html/pages/refgu035.htm | |
dx-4.4.4/html/pages/refgu036.htm | |
dx-4.4.4/html/pages/refgu037.htm | |
dx-4.4.4/html/pages/refgu038.htm | |
dx-4.4.4/html/pages/refgu039.htm | |
dx-4.4.4/html/pages/refgu040.htm | |
dx-4.4.4/html/pages/refgu041.htm | |
dx-4.4.4/html/pages/refgu042.htm | |
dx-4.4.4/html/pages/refgu043.htm | |
dx-4.4.4/html/pages/refgu044.htm | |
dx-4.4.4/html/pages/refgu045.htm | |
dx-4.4.4/html/pages/refgu046.htm | |
dx-4.4.4/html/pages/refgu047.htm | |
dx-4.4.4/html/pages/refgu048.htm | |
dx-4.4.4/html/pages/refgu049.htm | |
dx-4.4.4/html/pages/refgu050.htm | |
dx-4.4.4/html/pages/refgu051.htm | |
dx-4.4.4/html/pages/refgu052.htm | |
dx-4.4.4/html/pages/refgu053.htm | |
dx-4.4.4/html/pages/refgu054.htm | |
dx-4.4.4/html/pages/refgu055.htm | |
dx-4.4.4/html/pages/refgu056.htm | |
dx-4.4.4/html/pages/refgu057.htm | |
dx-4.4.4/html/pages/refgu058.htm | |
dx-4.4.4/html/pages/refgu059.htm | |
dx-4.4.4/html/pages/refgu060.htm | |
dx-4.4.4/html/pages/refgu061.htm | |
dx-4.4.4/html/pages/refgu062.htm | |
dx-4.4.4/html/pages/refgu063.htm | |
dx-4.4.4/html/pages/refgu064.htm | |
dx-4.4.4/html/pages/refgu065.htm | |
dx-4.4.4/html/pages/refgu066.htm | |
dx-4.4.4/html/pages/refgu067.htm | |
dx-4.4.4/html/pages/refgu068.htm | |
dx-4.4.4/html/pages/refgu069.htm | |
dx-4.4.4/html/pages/refgu070.htm | |
dx-4.4.4/html/pages/refgu071.htm | |
dx-4.4.4/html/pages/refgu072.htm | |
dx-4.4.4/html/pages/refgu073.htm | |
dx-4.4.4/html/pages/refgu074.htm | |
dx-4.4.4/html/pages/refgu075.htm | |
dx-4.4.4/html/pages/refgu076.htm | |
dx-4.4.4/html/pages/refgu077.htm | |
dx-4.4.4/html/pages/refgu078.htm | |
dx-4.4.4/html/pages/refgu079.htm | |
dx-4.4.4/html/pages/refgu080.htm | |
dx-4.4.4/html/pages/refgu081.htm | |
dx-4.4.4/html/pages/refgu082.htm | |
dx-4.4.4/html/pages/refgu083.htm | |
dx-4.4.4/html/pages/refgu084.htm | |
dx-4.4.4/html/pages/refgu085.htm | |
dx-4.4.4/html/pages/._refgu086.htm | |
dx-4.4.4/html/pages/refgu086.htm | |
dx-4.4.4/html/pages/refgu087.htm | |
dx-4.4.4/html/pages/refgu088.htm | |
dx-4.4.4/html/pages/refgu089.htm | |
dx-4.4.4/html/pages/refgu090.htm | |
dx-4.4.4/html/pages/refgu091.htm | |
dx-4.4.4/html/pages/refgu092.htm | |
dx-4.4.4/html/pages/refgu093.htm | |
dx-4.4.4/html/pages/refgu094.htm | |
dx-4.4.4/html/pages/refgu095.htm | |
dx-4.4.4/html/pages/refgu096.htm | |
dx-4.4.4/html/pages/refgu097.htm | |
dx-4.4.4/html/pages/refgu098.htm | |
dx-4.4.4/html/pages/refgu099.htm | |
dx-4.4.4/html/pages/refgu100.htm | |
dx-4.4.4/html/pages/refgu101.htm | |
dx-4.4.4/html/pages/refgu102.htm | |
dx-4.4.4/html/pages/refgu103.htm | |
dx-4.4.4/html/pages/refgu104.htm | |
dx-4.4.4/html/pages/refgu105.htm | |
dx-4.4.4/html/pages/refgu106.htm | |
dx-4.4.4/html/pages/refgu107.htm | |
dx-4.4.4/html/pages/refgu108.htm | |
dx-4.4.4/html/pages/refgu109.htm | |
dx-4.4.4/html/pages/refgu110.htm | |
dx-4.4.4/html/pages/refgu111.htm | |
dx-4.4.4/html/pages/refgu112.htm | |
dx-4.4.4/html/pages/refgu113.htm | |
dx-4.4.4/html/pages/refgu114.htm | |
dx-4.4.4/html/pages/refgu115.htm | |
dx-4.4.4/html/pages/refgu116.htm | |
dx-4.4.4/html/pages/refgu117.htm | |
dx-4.4.4/html/pages/refgu118.htm | |
dx-4.4.4/html/pages/refgu119.htm | |
dx-4.4.4/html/pages/refgu120.htm | |
dx-4.4.4/html/pages/refgu121.htm | |
dx-4.4.4/html/pages/refgu122.htm | |
dx-4.4.4/html/pages/refgu123.htm | |
dx-4.4.4/html/pages/refgu124.htm | |
dx-4.4.4/html/pages/refgu125.htm | |
dx-4.4.4/html/pages/refgu126.htm | |
dx-4.4.4/html/pages/refgu127.htm | |
dx-4.4.4/html/pages/refgu128.htm | |
dx-4.4.4/html/pages/refgu129.htm | |
dx-4.4.4/html/pages/refgu130.htm | |
dx-4.4.4/html/pages/refgu131.htm | |
dx-4.4.4/html/pages/refgu132.htm | |
dx-4.4.4/html/pages/refgu133.htm | |
dx-4.4.4/html/pages/refgu134.htm | |
dx-4.4.4/html/pages/refgu135.htm | |
dx-4.4.4/html/pages/refgu136.htm | |
dx-4.4.4/html/pages/refgu137.htm | |
dx-4.4.4/html/pages/refgu138.htm | |
dx-4.4.4/html/pages/refgu139.htm | |
dx-4.4.4/html/pages/refgu140.htm | |
dx-4.4.4/html/pages/refgu141.htm | |
dx-4.4.4/html/pages/refgu142.htm | |
dx-4.4.4/html/pages/refgu143.htm | |
dx-4.4.4/html/pages/refgu144.htm | |
dx-4.4.4/html/pages/refgu145.htm | |
dx-4.4.4/html/pages/refgu146.htm | |
dx-4.4.4/html/pages/refgu147.htm | |
dx-4.4.4/html/pages/refgu148.htm | |
dx-4.4.4/html/pages/refgu149.htm | |
dx-4.4.4/html/pages/refgu150.htm | |
dx-4.4.4/html/pages/refgu151.htm | |
dx-4.4.4/html/pages/refgu152.htm | |
dx-4.4.4/html/pages/refgu153.htm | |
dx-4.4.4/html/pages/refgu154.htm | |
dx-4.4.4/html/pages/refgu155.htm | |
dx-4.4.4/html/pages/refgu156.htm | |
dx-4.4.4/html/pages/refgu157.htm | |
dx-4.4.4/html/pages/refgu158.htm | |
dx-4.4.4/html/pages/refgu159.htm | |
dx-4.4.4/html/pages/refgu160.htm | |
dx-4.4.4/html/pages/refgu161.htm | |
dx-4.4.4/html/pages/refgu162.htm | |
dx-4.4.4/html/pages/refgu163.htm | |
dx-4.4.4/html/pages/refgu164.htm | |
dx-4.4.4/html/pages/refgu165.htm | |
dx-4.4.4/html/pages/refgu166.htm | |
dx-4.4.4/html/pages/refgu167.htm | |
dx-4.4.4/html/pages/refgu168.htm | |
dx-4.4.4/html/pages/refgu169.htm | |
dx-4.4.4/html/pages/refgu170.htm | |
dx-4.4.4/html/pages/refgu171.htm | |
dx-4.4.4/html/pages/refgu172.htm | |
dx-4.4.4/html/pages/refgu173.htm | |
dx-4.4.4/html/pages/refgu174.htm | |
dx-4.4.4/html/pages/refgu175.htm | |
dx-4.4.4/html/pages/refgu176.htm | |
dx-4.4.4/html/pages/usrgu002.htm | |
dx-4.4.4/html/pages/usrgu003.htm | |
dx-4.4.4/html/pages/usrgu004.htm | |
dx-4.4.4/html/pages/usrgu005.htm | |
dx-4.4.4/html/pages/usrgu006.htm | |
dx-4.4.4/html/pages/usrgu007.htm | |
dx-4.4.4/html/pages/usrgu008.htm | |
dx-4.4.4/html/pages/usrgu009.htm | |
dx-4.4.4/html/pages/usrgu010.htm | |
dx-4.4.4/html/pages/usrgu011.htm | |
dx-4.4.4/html/pages/usrgu012.htm | |
dx-4.4.4/html/pages/usrgu013.htm | |
dx-4.4.4/html/pages/usrgu014.htm | |
dx-4.4.4/html/pages/usrgu015.htm | |
dx-4.4.4/html/pages/usrgu016.htm | |
dx-4.4.4/html/pages/usrgu017.htm | |
dx-4.4.4/html/pages/usrgu018.htm | |
dx-4.4.4/html/pages/usrgu019.htm | |
dx-4.4.4/html/pages/usrgu020.htm | |
dx-4.4.4/html/pages/usrgu021.htm | |
dx-4.4.4/html/pages/usrgu022.htm | |
dx-4.4.4/html/pages/usrgu023.htm | |
dx-4.4.4/html/pages/usrgu024.htm | |
dx-4.4.4/html/pages/usrgu025.htm | |
dx-4.4.4/html/pages/usrgu026.htm | |
dx-4.4.4/html/pages/usrgu027.htm | |
dx-4.4.4/html/pages/usrgu028.htm | |
dx-4.4.4/html/pages/usrgu029.htm | |
dx-4.4.4/html/pages/usrgu030.htm | |
dx-4.4.4/html/pages/usrgu031.htm | |
dx-4.4.4/html/pages/usrgu032.htm | |
dx-4.4.4/html/pages/usrgu033.htm | |
dx-4.4.4/html/pages/usrgu034.htm | |
dx-4.4.4/html/pages/usrgu035.htm | |
dx-4.4.4/html/pages/usrgu036.htm | |
dx-4.4.4/html/pages/usrgu037.htm | |
dx-4.4.4/html/pages/usrgu038.htm | |
dx-4.4.4/html/pages/usrgu039.htm | |
dx-4.4.4/html/pages/usrgu040.htm | |
dx-4.4.4/html/pages/usrgu041.htm | |
dx-4.4.4/html/pages/usrgu042.htm | |
dx-4.4.4/html/pages/usrgu043.htm | |
dx-4.4.4/html/pages/usrgu044.htm | |
dx-4.4.4/html/pages/usrgu045.htm | |
dx-4.4.4/html/pages/usrgu046.htm | |
dx-4.4.4/html/pages/usrgu047.htm | |
dx-4.4.4/html/pages/usrgu048.htm | |
dx-4.4.4/html/pages/usrgu049.htm | |
dx-4.4.4/html/pages/usrgu050.htm | |
dx-4.4.4/html/pages/usrgu051.htm | |
dx-4.4.4/html/pages/usrgu052.htm | |
dx-4.4.4/html/pages/usrgu053.htm | |
dx-4.4.4/html/pages/usrgu054.htm | |
dx-4.4.4/html/pages/usrgu055.htm | |
dx-4.4.4/html/pages/usrgu056.htm | |
dx-4.4.4/html/pages/usrgu057.htm | |
dx-4.4.4/html/pages/usrgu058.htm | |
dx-4.4.4/html/pages/._usrgu059.htm | |
dx-4.4.4/html/pages/usrgu059.htm | |
dx-4.4.4/html/pages/usrgu060.htm | |
dx-4.4.4/html/pages/usrgu061.htm | |
dx-4.4.4/html/pages/usrgu062.htm | |
dx-4.4.4/html/pages/usrgu063.htm | |
dx-4.4.4/html/pages/usrgu064.htm | |
dx-4.4.4/html/pages/usrgu065.htm | |
dx-4.4.4/html/pages/usrgu066.htm | |
dx-4.4.4/html/pages/usrgu067.htm | |
dx-4.4.4/html/pages/usrgu068.htm | |
dx-4.4.4/html/pages/usrgu069.htm | |
dx-4.4.4/html/pages/usrgu070.htm | |
dx-4.4.4/html/pages/usrgu071.htm | |
dx-4.4.4/html/pages/usrgu072.htm | |
dx-4.4.4/html/pages/usrgu073.htm | |
dx-4.4.4/html/pages/usrgu074.htm | |
dx-4.4.4/html/pages/usrgu075.htm | |
dx-4.4.4/html/pages/usrgu076.htm | |
dx-4.4.4/html/pages/usrgu077.htm | |
dx-4.4.4/html/pages/usrgu078.htm | |
dx-4.4.4/html/pages/usrgu079.htm | |
dx-4.4.4/html/pages/usrgu080.htm | |
dx-4.4.4/html/proguide.htm | |
dx-4.4.4/html/qikguide.htm | |
dx-4.4.4/html/README.htm | |
dx-4.4.4/html/README_alphax.htm | |
dx-4.4.4/html/README_hp700.htm | |
dx-4.4.4/html/README_ibm6000.htm | |
dx-4.4.4/html/README_intelnt.htm | |
dx-4.4.4/html/README_sgi.htm | |
dx-4.4.4/html/README_SMP.htm | |
dx-4.4.4/html/._README_solaris.htm | |
dx-4.4.4/html/README_solaris.htm | |
dx-4.4.4/html/refguide.htm | |
dx-4.4.4/html/search.js | |
dx-4.4.4/html/srchhelp.htm | |
dx-4.4.4/html/srchidx.js | |
dx-4.4.4/html/srchindx.htm | |
dx-4.4.4/html/srchnav.htm | |
dx-4.4.4/html/usrguide.htm | |
dx-4.4.4/include/ | |
dx-4.4.4/include/dx/ | |
dx-4.4.4/include/dx/advanced.h | |
dx-4.4.4/include/dx/._arch.h | |
dx-4.4.4/include/dx/arch.h | |
dx-4.4.4/include/dx/._array.h | |
dx-4.4.4/include/dx/array.h | |
dx-4.4.4/include/dx/arrayhandles.h | |
dx-4.4.4/include/dx/basic.h | |
dx-4.4.4/include/dx/cache.h | |
dx-4.4.4/include/dx/camera.h | |
dx-4.4.4/include/dx/clipped.h | |
dx-4.4.4/include/dx/component.h | |
dx-4.4.4/include/dx/dx.h | |
dx-4.4.4/include/dx/error.h | |
dx-4.4.4/include/dx/extract.h | |
dx-4.4.4/include/dx/field.h | |
dx-4.4.4/include/dx/geometry.h | |
dx-4.4.4/include/dx/group.h | |
dx-4.4.4/include/dx/grow.h | |
dx-4.4.4/include/dx/hash.h | |
dx-4.4.4/include/dx/helper.h | |
dx-4.4.4/include/dx/image.h | |
dx-4.4.4/include/dx/import.h | |
dx-4.4.4/include/dx/invalid.h | |
dx-4.4.4/include/dx/lexical.h | |
dx-4.4.4/include/dx/light.h | |
dx-4.4.4/include/dx/Makefile.am | |
dx-4.4.4/include/dx/Makefile.in | |
dx-4.4.4/include/dx/memory.h | |
dx-4.4.4/include/dx/modflags.h | |
dx-4.4.4/include/dx/object.h | |
dx-4.4.4/include/dx/partition.h | |
dx-4.4.4/include/dx/pending.h | |
dx-4.4.4/include/dx/pick.h | |
dx-4.4.4/include/dx/private.h | |
dx-4.4.4/include/dx/rel_1_bc.h | |
dx-4.4.4/include/dx/render.h | |
dx-4.4.4/include/dx/resampling.h | |
dx-4.4.4/include/dx/screen.h | |
dx-4.4.4/include/dx/seglist.h | |
dx-4.4.4/include/dx/string.h | |
dx-4.4.4/include/dx/task.h | |
dx-4.4.4/include/dx/timing.h | |
dx-4.4.4/include/dx/UserInteractors.h | |
dx-4.4.4/include/dx/version.h | |
dx-4.4.4/include/dx/xform.h | |
dx-4.4.4/include/dxconfig.h.in | |
dx-4.4.4/include/dxl.h | |
dx-4.4.4/include/dxstereo.h | |
dx-4.4.4/include/Makefile.am | |
dx-4.4.4/include/Makefile.in | |
dx-4.4.4/INSTALL | |
dx-4.4.4/install-sh | |
dx-4.4.4/lib/ | |
dx-4.4.4/lib/colors.txt | |
dx-4.4.4/lib/dxexec.def | |
dx-4.4.4/lib/dxexec.exp | |
dx-4.4.4/lib/dxexec.ifs | |
dx-4.4.4/lib/dxexec.imp | |
dx-4.4.4/lib/dxfSaveCurrentImage.net | |
dx-4.4.4/lib/dxrc | |
dx-4.4.4/lib/Makefile.am | |
dx-4.4.4/lib/Makefile.in | |
dx-4.4.4/lib/mdf2c.awk | |
dx-4.4.4/lib/messages | |
dx-4.4.4/lib/outboard.c | |
dx-4.4.4/LICENSE | |
dx-4.4.4/ltmain.sh | |
dx-4.4.4/Makefile.am | |
dx-4.4.4/Makefile.in | |
dx-4.4.4/man/ | |
dx-4.4.4/man/catl/ | |
dx-4.4.4/man/catl/dx.l | |
dx-4.4.4/man/catl/Makefile.am | |
dx-4.4.4/man/catl/Makefile.in | |
dx-4.4.4/man/Makefile.am | |
dx-4.4.4/man/Makefile.in | |
dx-4.4.4/man/manl/ | |
dx-4.4.4/man/manl/dx.l | |
dx-4.4.4/man/manl/Makefile.am | |
dx-4.4.4/man/manl/Makefile.in | |
dx-4.4.4/missing | |
dx-4.4.4/mkinstalldirs | |
dx-4.4.4/NEWS | |
dx-4.4.4/README | |
dx-4.4.4/src/ | |
dx-4.4.4/src/exec/ | |
dx-4.4.4/src/exec/dpexec/ | |
dx-4.4.4/src/exec/dpexec/_eval.h | |
dx-4.4.4/src/exec/dpexec/_macro.h | |
dx-4.4.4/src/exec/dpexec/_variable.h | |
dx-4.4.4/src/exec/dpexec/attribute.h | |
dx-4.4.4/src/exec/dpexec/background.c | |
dx-4.4.4/src/exec/dpexec/background.h | |
dx-4.4.4/src/exec/dpexec/cache.c | |
dx-4.4.4/src/exec/dpexec/cache.h | |
dx-4.4.4/src/exec/dpexec/cachegraph.c | |
dx-4.4.4/src/exec/dpexec/cachegraph.h | |
dx-4.4.4/src/exec/dpexec/._ccm.c | |
dx-4.4.4/src/exec/dpexec/ccm.c | |
dx-4.4.4/src/exec/dpexec/ccm.h | |
dx-4.4.4/src/exec/dpexec/command.c | |
dx-4.4.4/src/exec/dpexec/command.h | |
dx-4.4.4/src/exec/dpexec/compile.h | |
dx-4.4.4/src/exec/dpexec/config.h | |
dx-4.4.4/src/exec/dpexec/context.c | |
dx-4.4.4/src/exec/dpexec/context.h | |
dx-4.4.4/src/exec/dpexec/crc.c | |
dx-4.4.4/src/exec/dpexec/crc.h | |
dx-4.4.4/src/exec/dpexec/d.c | |
dx-4.4.4/src/exec/dpexec/d.h | |
dx-4.4.4/src/exec/dpexec/ddx.c | |
dx-4.4.4/src/exec/dpexec/distconnect.c | |
dx-4.4.4/src/exec/dpexec/distp.h | |
dx-4.4.4/src/exec/dpexec/._distpacket.c | |
dx-4.4.4/src/exec/dpexec/distpacket.c | |
dx-4.4.4/src/exec/dpexec/distqueue.c | |
dx-4.4.4/src/exec/dpexec/dpattribute.c | |
dx-4.4.4/src/exec/dpexec/dpparse.c | |
dx-4.4.4/src/exec/dpexec/dxmain.c | |
dx-4.4.4/src/exec/dpexec/dxmain.h | |
dx-4.4.4/src/exec/dpexec/dxpfsmgr.c | |
dx-4.4.4/src/exec/dpexec/dxpfsmgr.h | |
dx-4.4.4/src/exec/dpexec/dxThreadMain.cpp | |
dx-4.4.4/src/exec/dpexec/dxThreadMain.h | |
dx-4.4.4/src/exec/dpexec/evalgraph.c | |
dx-4.4.4/src/exec/dpexec/evalgraph.h | |
dx-4.4.4/src/exec/dpexec/exobject.c | |
dx-4.4.4/src/exec/dpexec/exobject.h | |
dx-4.4.4/src/exec/dpexec/function.c | |
dx-4.4.4/src/exec/dpexec/function.h | |
dx-4.4.4/src/exec/dpexec/graph.c | |
dx-4.4.4/src/exec/dpexec/graph.h | |
dx-4.4.4/src/exec/dpexec/graph2.c | |
dx-4.4.4/src/exec/dpexec/graphIntr.h | |
dx-4.4.4/src/exec/dpexec/graphqueue.c | |
dx-4.4.4/src/exec/dpexec/graphqueue.h | |
dx-4.4.4/src/exec/dpexec/help.c | |
dx-4.4.4/src/exec/dpexec/help.h | |
dx-4.4.4/src/exec/dpexec/instrument.c | |
dx-4.4.4/src/exec/dpexec/instrument.h | |
dx-4.4.4/src/exec/dpexec/lex.c | |
dx-4.4.4/src/exec/dpexec/lex.h | |
dx-4.4.4/src/exec/dpexec/license.c | |
dx-4.4.4/src/exec/dpexec/license.h | |
dx-4.4.4/src/exec/dpexec/loader.c | |
dx-4.4.4/src/exec/dpexec/loader.h | |
dx-4.4.4/src/exec/dpexec/local.mk | |
dx-4.4.4/src/exec/dpexec/local.mk.in | |
dx-4.4.4/src/exec/dpexec/._log.c | |
dx-4.4.4/src/exec/dpexec/log.c | |
dx-4.4.4/src/exec/dpexec/log.h | |
dx-4.4.4/src/exec/dpexec/macro.c | |
dx-4.4.4/src/exec/dpexec/Makefile.am | |
dx-4.4.4/src/exec/dpexec/Makefile.in | |
dx-4.4.4/src/exec/dpexec/nodeb.h | |
dx-4.4.4/src/exec/dpexec/nodereadb.c | |
dx-4.4.4/src/exec/dpexec/nodewriteb.c | |
dx-4.4.4/src/exec/dpexec/obmodule.h | |
dx-4.4.4/src/exec/dpexec/optarg.c | |
dx-4.4.4/src/exec/dpexec/._packet.c | |
dx-4.4.4/src/exec/dpexec/packet.c | |
dx-4.4.4/src/exec/dpexec/packet.h | |
dx-4.4.4/src/exec/dpexec/parse.h | |
dx-4.4.4/src/exec/dpexec/parsemdf.c | |
dx-4.4.4/src/exec/dpexec/parsemdf.h | |
dx-4.4.4/src/exec/dpexec/path.c | |
dx-4.4.4/src/exec/dpexec/path.h | |
dx-4.4.4/src/exec/dpexec/._pendingcmds.c | |
dx-4.4.4/src/exec/dpexec/pendingcmds.c | |
dx-4.4.4/src/exec/dpexec/pendingcmds.h | |
dx-4.4.4/src/exec/dpexec/pmodflags.h | |
dx-4.4.4/src/exec/dpexec/queue.c | |
dx-4.4.4/src/exec/dpexec/queue.h | |
dx-4.4.4/src/exec/dpexec/._remote.c | |
dx-4.4.4/src/exec/dpexec/remote.c | |
dx-4.4.4/src/exec/dpexec/remote.h | |
dx-4.4.4/src/exec/dpexec/rih.c | |
dx-4.4.4/src/exec/dpexec/rih.h | |
dx-4.4.4/src/exec/dpexec/rq.c | |
dx-4.4.4/src/exec/dpexec/rq.h | |
dx-4.4.4/src/exec/dpexec/._sfile.c | |
dx-4.4.4/src/exec/dpexec/sfile.c | |
dx-4.4.4/src/exec/dpexec/sfile.h | |
dx-4.4.4/src/exec/dpexec/socket.c | |
dx-4.4.4/src/exec/dpexec/socket.h | |
dx-4.4.4/src/exec/dpexec/status.c | |
dx-4.4.4/src/exec/dpexec/status.h | |
dx-4.4.4/src/exec/dpexec/swap.c | |
dx-4.4.4/src/exec/dpexec/swap.h | |
dx-4.4.4/src/exec/dpexec/sysvars.h | |
dx-4.4.4/src/exec/dpexec/task.c | |
dx-4.4.4/src/exec/dpexec/task.h | |
dx-4.4.4/src/exec/dpexec/tmainUtil.cpp | |
dx-4.4.4/src/exec/dpexec/tmainUtil.h | |
dx-4.4.4/src/exec/dpexec/userinter.c | |
dx-4.4.4/src/exec/dpexec/userinter.h | |
dx-4.4.4/src/exec/dpexec/utils.c | |
dx-4.4.4/src/exec/dpexec/utils.h | |
dx-4.4.4/src/exec/dpexec/variable.c | |
dx-4.4.4/src/exec/dpexec/vcr.c | |
dx-4.4.4/src/exec/dpexec/vcr.h | |
dx-4.4.4/src/exec/dpexec/version.h | |
dx-4.4.4/src/exec/dpexec/yuiif.c | |
dx-4.4.4/src/exec/dpexec/yuiif.h | |
dx-4.4.4/src/exec/dxexec/ | |
dx-4.4.4/src/exec/dxexec/._main.c | |
dx-4.4.4/src/exec/dxexec/main.c | |
dx-4.4.4/src/exec/dxexec/Makefile.am | |
dx-4.4.4/src/exec/dxexec/Makefile.in | |
dx-4.4.4/src/exec/dxexec/tmain.cpp | |
dx-4.4.4/src/exec/dxmods/ | |
dx-4.4.4/src/exec/dxmods/_autocolor.c | |
dx-4.4.4/src/exec/dxmods/_autocolor.h | |
dx-4.4.4/src/exec/dxmods/_autogray.c | |
dx-4.4.4/src/exec/dxmods/_autogray.h | |
dx-4.4.4/src/exec/dxmods/.__cat_util.c | |
dx-4.4.4/src/exec/dxmods/_cat_util.c | |
dx-4.4.4/src/exec/dxmods/_color.c | |
dx-4.4.4/src/exec/dxmods/_colormap.c | |
dx-4.4.4/src/exec/dxmods/_colormap.h | |
dx-4.4.4/src/exec/dxmods/_compcmplx.c | |
dx-4.4.4/src/exec/dxmods/_compexec.c | |
dx-4.4.4/src/exec/dxmods/_compinput.c | |
dx-4.4.4/src/exec/dxmods/_complex.c | |
dx-4.4.4/src/exec/dxmods/.__compoper.c | |
dx-4.4.4/src/exec/dxmods/_compoper.c | |
dx-4.4.4/src/exec/dxmods/_compoper.h | |
dx-4.4.4/src/exec/dxmods/_compoper1.c | |
dx-4.4.4/src/exec/dxmods/.__compoper2.c | |
dx-4.4.4/src/exec/dxmods/_compoper2.c | |
dx-4.4.4/src/exec/dxmods/_compparse.c | |
dx-4.4.4/src/exec/dxmods/_compparse.h | |
dx-4.4.4/src/exec/dxmods/_compputils.c | |
dx-4.4.4/src/exec/dxmods/_compputils.h | |
dx-4.4.4/src/exec/dxmods/_compute.h | |
dx-4.4.4/src/exec/dxmods/_connectgrids.c | |
dx-4.4.4/src/exec/dxmods/_connectgrids.h | |
dx-4.4.4/src/exec/dxmods/_connectvor.c | |
dx-4.4.4/src/exec/dxmods/_connectvor.h | |
dx-4.4.4/src/exec/dxmods/_construct.c | |
dx-4.4.4/src/exec/dxmods/_construct.h | |
dx-4.4.4/src/exec/dxmods/_divcurl.c | |
dx-4.4.4/src/exec/dxmods/_divcurl.h | |
dx-4.4.4/src/exec/dxmods/.__getfield.c | |
dx-4.4.4/src/exec/dxmods/_getfield.c | |
dx-4.4.4/src/exec/dxmods/_getfield.h | |
dx-4.4.4/src/exec/dxmods/_gif.c | |
dx-4.4.4/src/exec/dxmods/_glyph.c | |
dx-4.4.4/src/exec/dxmods/_glyph.h | |
dx-4.4.4/src/exec/dxmods/_gradient.c | |
dx-4.4.4/src/exec/dxmods/_gradient.h | |
dx-4.4.4/src/exec/dxmods/_grid.c | |
dx-4.4.4/src/exec/dxmods/_grid.h | |
dx-4.4.4/src/exec/dxmods/_helper_jea.c | |
dx-4.4.4/src/exec/dxmods/_helper_jea.h | |
dx-4.4.4/src/exec/dxmods/_im_image.c | |
dx-4.4.4/src/exec/dxmods/_irregstream.c | |
dx-4.4.4/src/exec/dxmods/.__isosurface.c | |
dx-4.4.4/src/exec/dxmods/_isosurface.c | |
dx-4.4.4/src/exec/dxmods/_isosurface.h | |
dx-4.4.4/src/exec/dxmods/_maptoplane.c | |
dx-4.4.4/src/exec/dxmods/_maptoplane.h | |
dx-4.4.4/src/exec/dxmods/_newtri.c | |
dx-4.4.4/src/exec/dxmods/_newtri.h | |
dx-4.4.4/src/exec/dxmods/_normals.c | |
dx-4.4.4/src/exec/dxmods/_normals.h | |
dx-4.4.4/src/exec/dxmods/_partnbrs.c | |
dx-4.4.4/src/exec/dxmods/_partnbrs.h | |
dx-4.4.4/src/exec/dxmods/.__plot.c | |
dx-4.4.4/src/exec/dxmods/_plot.c | |
dx-4.4.4/src/exec/dxmods/_plot.h | |
dx-4.4.4/src/exec/dxmods/_post.c | |
dx-4.4.4/src/exec/dxmods/_post.h | |
dx-4.4.4/src/exec/dxmods/_postscript.c | |
dx-4.4.4/src/exec/dxmods/_refine.c | |
dx-4.4.4/src/exec/dxmods/_refine.h | |
dx-4.4.4/src/exec/dxmods/_refineirr.c | |
dx-4.4.4/src/exec/dxmods/_refinereg.c | |
dx-4.4.4/src/exec/dxmods/_refinetopo.c | |
dx-4.4.4/src/exec/dxmods/.__regstream.c | |
dx-4.4.4/src/exec/dxmods/_regstream.c | |
dx-4.4.4/src/exec/dxmods/_rgb_image.c | |
dx-4.4.4/src/exec/dxmods/_rubbersheet.c | |
dx-4.4.4/src/exec/dxmods/_rubbersheet.h | |
dx-4.4.4/src/exec/dxmods/_rw_image.c | |
dx-4.4.4/src/exec/dxmods/_rw_image.h | |
dx-4.4.4/src/exec/dxmods/_sample.c | |
dx-4.4.4/src/exec/dxmods/_sample.h | |
dx-4.4.4/src/exec/dxmods/.__simplesurf.c | |
dx-4.4.4/src/exec/dxmods/_simplesurf.c | |
dx-4.4.4/src/exec/dxmods/_tiff.c | |
dx-4.4.4/src/exec/dxmods/_tube.c | |
dx-4.4.4/src/exec/dxmods/_unpart.c | |
dx-4.4.4/src/exec/dxmods/ambientlight.c | |
dx-4.4.4/src/exec/dxmods/append.c | |
dx-4.4.4/src/exec/dxmods/arrange.c | |
dx-4.4.4/src/exec/dxmods/attribute.c | |
dx-4.4.4/src/exec/dxmods/._autoaxes.c | |
dx-4.4.4/src/exec/dxmods/autoaxes.c | |
dx-4.4.4/src/exec/dxmods/autoaxes.h | |
dx-4.4.4/src/exec/dxmods/autocolor.c | |
dx-4.4.4/src/exec/dxmods/autoglyph.c | |
dx-4.4.4/src/exec/dxmods/autogray.c | |
dx-4.4.4/src/exec/dxmods/._autoregrid.c | |
dx-4.4.4/src/exec/dxmods/autoregrid.c | |
dx-4.4.4/src/exec/dxmods/band.c | |
dx-4.4.4/src/exec/dxmods/bounds.c | |
dx-4.4.4/src/exec/dxmods/bounds.h | |
dx-4.4.4/src/exec/dxmods/bspline.c | |
dx-4.4.4/src/exec/dxmods/cachescene.c | |
dx-4.4.4/src/exec/dxmods/camera.c | |
dx-4.4.4/src/exec/dxmods/caption.c | |
dx-4.4.4/src/exec/dxmods/cases.h | |
dx-4.4.4/src/exec/dxmods/._cat.h | |
dx-4.4.4/src/exec/dxmods/cat.h | |
dx-4.4.4/src/exec/dxmods/._categorize.c | |
dx-4.4.4/src/exec/dxmods/categorize.c | |
dx-4.4.4/src/exec/dxmods/._catstats.c | |
dx-4.4.4/src/exec/dxmods/catstats.c | |
dx-4.4.4/src/exec/dxmods/._changemember.c | |
dx-4.4.4/src/exec/dxmods/changemember.c | |
dx-4.4.4/src/exec/dxmods/changemember.h | |
dx-4.4.4/src/exec/dxmods/._changetype.c | |
dx-4.4.4/src/exec/dxmods/changetype.c | |
dx-4.4.4/src/exec/dxmods/clipbox.c | |
dx-4.4.4/src/exec/dxmods/clipplane.c | |
dx-4.4.4/src/exec/dxmods/collect.c | |
dx-4.4.4/src/exec/dxmods/collectmulti.c | |
dx-4.4.4/src/exec/dxmods/collectnamed.c | |
dx-4.4.4/src/exec/dxmods/collectser.c | |
dx-4.4.4/src/exec/dxmods/color.c | |
dx-4.4.4/src/exec/dxmods/color.h | |
dx-4.4.4/src/exec/dxmods/._colorbar.c | |
dx-4.4.4/src/exec/dxmods/colorbar.c | |
dx-4.4.4/src/exec/dxmods/colormap.c | |
dx-4.4.4/src/exec/dxmods/compute.c | |
dx-4.4.4/src/exec/dxmods/compute2.c | |
dx-4.4.4/src/exec/dxmods/connect.c | |
dx-4.4.4/src/exec/dxmods/construct.c | |
dx-4.4.4/src/exec/dxmods/convert.c | |
dx-4.4.4/src/exec/dxmods/copy.c | |
dx-4.4.4/src/exec/dxmods/definter.c | |
dx-4.4.4/src/exec/dxmods/._describe.c | |
dx-4.4.4/src/exec/dxmods/describe.c | |
dx-4.4.4/src/exec/dxmods/direction.c | |
dx-4.4.4/src/exec/dxmods/display.c | |
dx-4.4.4/src/exec/dxmods/divcurl.c | |
dx-4.4.4/src/exec/dxmods/dxlinnamed.c | |
dx-4.4.4/src/exec/dxmods/._dxlmessage.c | |
dx-4.4.4/src/exec/dxmods/dxlmessage.c | |
dx-4.4.4/src/exec/dxmods/._dxloutvalue.c | |
dx-4.4.4/src/exec/dxmods/dxloutvalue.c | |
dx-4.4.4/src/exec/dxmods/._dxmdf.src | |
dx-4.4.4/src/exec/dxmods/dxmdf.src | |
dx-4.4.4/src/exec/dxmods/echo.c | |
dx-4.4.4/src/exec/dxmods/echo.h | |
dx-4.4.4/src/exec/dxmods/eigen.c | |
dx-4.4.4/src/exec/dxmods/eigen.h | |
dx-4.4.4/src/exec/dxmods/enumerate.c | |
dx-4.4.4/src/exec/dxmods/equalize.c | |
dx-4.4.4/src/exec/dxmods/executive.c | |
dx-4.4.4/src/exec/dxmods/exp_gai.c | |
dx-4.4.4/src/exec/dxmods/exp_gai.h | |
dx-4.4.4/src/exec/dxmods/export.c | |
dx-4.4.4/src/exec/dxmods/extract.c | |
dx-4.4.4/src/exec/dxmods/facenormals.c | |
dx-4.4.4/src/exec/dxmods/filter.c | |
dx-4.4.4/src/exec/dxmods/format.c | |
dx-4.4.4/src/exec/dxmods/fourier.c | |
dx-4.4.4/src/exec/dxmods/genimp.c | |
dx-4.4.4/src/exec/dxmods/genimp.h | |
dx-4.4.4/src/exec/dxmods/genimp_io.c | |
dx-4.4.4/src/exec/dxmods/genimp_parse.c | |
dx-4.4.4/src/exec/dxmods/._getscene.c | |
dx-4.4.4/src/exec/dxmods/getscene.c | |
dx-4.4.4/src/exec/dxmods/getset.c | |
dx-4.4.4/src/exec/dxmods/glyph.c | |
dx-4.4.4/src/exec/dxmods/._glyph_ARRW.h | |
dx-4.4.4/src/exec/dxmods/glyph_ARRW.h | |
dx-4.4.4/src/exec/dxmods/._glyph_ARRW2D.h | |
dx-4.4.4/src/exec/dxmods/glyph_ARRW2D.h | |
dx-4.4.4/src/exec/dxmods/._glyph_BOX.h | |
dx-4.4.4/src/exec/dxmods/glyph_BOX.h | |
dx-4.4.4/src/exec/dxmods/._glyph_CIRCLE10.h | |
dx-4.4.4/src/exec/dxmods/glyph_CIRCLE10.h | |
dx-4.4.4/src/exec/dxmods/._glyph_CIRCLE20.h | |
dx-4.4.4/src/exec/dxmods/glyph_CIRCLE20.h | |
dx-4.4.4/src/exec/dxmods/._glyph_CIRCLE4.h | |
dx-4.4.4/src/exec/dxmods/glyph_CIRCLE4.h | |
dx-4.4.4/src/exec/dxmods/._glyph_CIRCLE40.h | |
dx-4.4.4/src/exec/dxmods/glyph_CIRCLE40.h | |
dx-4.4.4/src/exec/dxmods/._glyph_CIRCLE6.h | |
dx-4.4.4/src/exec/dxmods/glyph_CIRCLE6.h | |
dx-4.4.4/src/exec/dxmods/._glyph_CIRCLE8.h | |
dx-4.4.4/src/exec/dxmods/glyph_CIRCLE8.h | |
dx-4.4.4/src/exec/dxmods/._glyph_DMND.h | |
dx-4.4.4/src/exec/dxmods/glyph_DMND.h | |
dx-4.4.4/src/exec/dxmods/._glyph_NDDL.h | |
dx-4.4.4/src/exec/dxmods/glyph_NDDL.h | |
dx-4.4.4/src/exec/dxmods/._glyph_NDDL2D.h | |
dx-4.4.4/src/exec/dxmods/glyph_NDDL2D.h | |
dx-4.4.4/src/exec/dxmods/._glyph_PNT.h | |
dx-4.4.4/src/exec/dxmods/glyph_PNT.h | |
dx-4.4.4/src/exec/dxmods/._glyph_RCKT12.h | |
dx-4.4.4/src/exec/dxmods/glyph_RCKT12.h | |
dx-4.4.4/src/exec/dxmods/._glyph_RCKT20.h | |
dx-4.4.4/src/exec/dxmods/glyph_RCKT20.h | |
dx-4.4.4/src/exec/dxmods/._glyph_RCKT2D.h | |
dx-4.4.4/src/exec/dxmods/glyph_RCKT2D.h | |
dx-4.4.4/src/exec/dxmods/._glyph_RCKT3.h | |
dx-4.4.4/src/exec/dxmods/glyph_RCKT3.h | |
dx-4.4.4/src/exec/dxmods/._glyph_RCKT4.h | |
dx-4.4.4/src/exec/dxmods/glyph_RCKT4.h | |
dx-4.4.4/src/exec/dxmods/._glyph_RCKT6.h | |
dx-4.4.4/src/exec/dxmods/glyph_RCKT6.h | |
dx-4.4.4/src/exec/dxmods/._glyph_RCKT8.h | |
dx-4.4.4/src/exec/dxmods/glyph_RCKT8.h | |
dx-4.4.4/src/exec/dxmods/._glyph_SPHR114.h | |
dx-4.4.4/src/exec/dxmods/glyph_SPHR114.h | |
dx-4.4.4/src/exec/dxmods/._glyph_SPHR12.h | |
dx-4.4.4/src/exec/dxmods/glyph_SPHR12.h | |
dx-4.4.4/src/exec/dxmods/._glyph_SPHR14.h | |
dx-4.4.4/src/exec/dxmods/glyph_SPHR14.h | |
dx-4.4.4/src/exec/dxmods/._glyph_SPHR146.h | |
dx-4.4.4/src/exec/dxmods/glyph_SPHR146.h | |
dx-4.4.4/src/exec/dxmods/._glyph_SPHR26.h | |
dx-4.4.4/src/exec/dxmods/glyph_SPHR26.h | |
dx-4.4.4/src/exec/dxmods/._glyph_SPHR266.h | |
dx-4.4.4/src/exec/dxmods/glyph_SPHR266.h | |
dx-4.4.4/src/exec/dxmods/._glyph_SPHR42.h | |
dx-4.4.4/src/exec/dxmods/glyph_SPHR42.h | |
dx-4.4.4/src/exec/dxmods/._glyph_SPHR62.h | |
dx-4.4.4/src/exec/dxmods/glyph_SPHR62.h | |
dx-4.4.4/src/exec/dxmods/._glyph_SQUARE.h | |
dx-4.4.4/src/exec/dxmods/glyph_SQUARE.h | |
dx-4.4.4/src/exec/dxmods/gradient.c | |
dx-4.4.4/src/exec/dxmods/._grid.c | |
dx-4.4.4/src/exec/dxmods/grid.c | |
dx-4.4.4/src/exec/dxmods/._histogram.c | |
dx-4.4.4/src/exec/dxmods/histogram.c | |
dx-4.4.4/src/exec/dxmods/histogram.h | |
dx-4.4.4/src/exec/dxmods/imagemessage.c | |
dx-4.4.4/src/exec/dxmods/impCDF.h | |
dx-4.4.4/src/exec/dxmods/import.c | |
dx-4.4.4/src/exec/dxmods/import.h | |
dx-4.4.4/src/exec/dxmods/import_cdf.c | |
dx-4.4.4/src/exec/dxmods/._import_cm.c | |
dx-4.4.4/src/exec/dxmods/import_cm.c | |
dx-4.4.4/src/exec/dxmods/import_hdf.c | |
dx-4.4.4/src/exec/dxmods/import_ncdf.c | |
dx-4.4.4/src/exec/dxmods/import_ss.c | |
dx-4.4.4/src/exec/dxmods/importtable.c | |
dx-4.4.4/src/exec/dxmods/._include.c | |
dx-4.4.4/src/exec/dxmods/include.c | |
dx-4.4.4/src/exec/dxmods/._inquire.c | |
dx-4.4.4/src/exec/dxmods/inquire.c | |
dx-4.4.4/src/exec/dxmods/._integer.c | |
dx-4.4.4/src/exec/dxmods/integer.c | |
dx-4.4.4/src/exec/dxmods/integer.h | |
dx-4.4.4/src/exec/dxmods/integerlist.c | |
dx-4.4.4/src/exec/dxmods/interact.h | |
dx-4.4.4/src/exec/dxmods/._isolate.c | |
dx-4.4.4/src/exec/dxmods/isolate.c | |
dx-4.4.4/src/exec/dxmods/isosurface.c | |
dx-4.4.4/src/exec/dxmods/keyin.c | |
dx-4.4.4/src/exec/dxmods/light.c | |
dx-4.4.4/src/exec/dxmods/list.c | |
dx-4.4.4/src/exec/dxmods/list.h | |
dx-4.4.4/src/exec/dxmods/local.mk | |
dx-4.4.4/src/exec/dxmods/local.mk.in | |
dx-4.4.4/src/exec/dxmods/._lookup.c | |
dx-4.4.4/src/exec/dxmods/lookup.c | |
dx-4.4.4/src/exec/dxmods/loop.c | |
dx-4.4.4/src/exec/dxmods/macroutil.c | |
dx-4.4.4/src/exec/dxmods/macroutil.h | |
dx-4.4.4/src/exec/dxmods/Makefile.am | |
dx-4.4.4/src/exec/dxmods/Makefile.in | |
dx-4.4.4/src/exec/dxmods/map.c | |
dx-4.4.4/src/exec/dxmods/maptoplane.c | |
dx-4.4.4/src/exec/dxmods/._mark.c | |
dx-4.4.4/src/exec/dxmods/mark.c | |
dx-4.4.4/src/exec/dxmods/mark.h | |
dx-4.4.4/src/exec/dxmods/._measure.c | |
dx-4.4.4/src/exec/dxmods/measure.c | |
dx-4.4.4/src/exec/dxmods/measure.h | |
dx-4.4.4/src/exec/dxmods/message.c | |
dx-4.4.4/src/exec/dxmods/normals.c | |
dx-4.4.4/src/exec/dxmods/options.c | |
dx-4.4.4/src/exec/dxmods/overlay.c | |
dx-4.4.4/src/exec/dxmods/._parse.c | |
dx-4.4.4/src/exec/dxmods/parse.c | |
dx-4.4.4/src/exec/dxmods/._partition.c | |
dx-4.4.4/src/exec/dxmods/partition.c | |
dx-4.4.4/src/exec/dxmods/._pick.c | |
dx-4.4.4/src/exec/dxmods/pick.c | |
dx-4.4.4/src/exec/dxmods/pickinv.c | |
dx-4.4.4/src/exec/dxmods/._pie.c | |
dx-4.4.4/src/exec/dxmods/pie.c | |
dx-4.4.4/src/exec/dxmods/plot.c | |
dx-4.4.4/src/exec/dxmods/plot.h | |
dx-4.4.4/src/exec/dxmods/post.c | |
dx-4.4.4/src/exec/dxmods/print.c | |
dx-4.4.4/src/exec/dxmods/private.c | |
dx-4.4.4/src/exec/dxmods/._programctl.c | |
dx-4.4.4/src/exec/dxmods/programctl.c | |
dx-4.4.4/src/exec/dxmods/quant.h | |
dx-4.4.4/src/exec/dxmods/quantize.c | |
dx-4.4.4/src/exec/dxmods/rdimagewin.c | |
dx-4.4.4/src/exec/dxmods/readimage.c | |
dx-4.4.4/src/exec/dxmods/reduce.c | |
dx-4.4.4/src/exec/dxmods/refine.c | |
dx-4.4.4/src/exec/dxmods/._regrid.c | |
dx-4.4.4/src/exec/dxmods/regrid.c | |
dx-4.4.4/src/exec/dxmods/remove.c | |
dx-4.4.4/src/exec/dxmods/._rename.c | |
dx-4.4.4/src/exec/dxmods/rename.c | |
dx-4.4.4/src/exec/dxmods/render.c | |
dx-4.4.4/src/exec/dxmods/._reorient.c | |
dx-4.4.4/src/exec/dxmods/reorient.c | |
dx-4.4.4/src/exec/dxmods/._replace.c | |
dx-4.4.4/src/exec/dxmods/replace.c | |
dx-4.4.4/src/exec/dxmods/ribbon.c | |
dx-4.4.4/src/exec/dxmods/rotate.c | |
dx-4.4.4/src/exec/dxmods/route.c | |
dx-4.4.4/src/exec/dxmods/rubbersheet.c | |
dx-4.4.4/src/exec/dxmods/sample.c | |
dx-4.4.4/src/exec/dxmods/._scalar.c | |
dx-4.4.4/src/exec/dxmods/scalar.c | |
dx-4.4.4/src/exec/dxmods/scalar.h | |
dx-4.4.4/src/exec/dxmods/scalarlist.c | |
dx-4.4.4/src/exec/dxmods/scale.c | |
dx-4.4.4/src/exec/dxmods/scalescreen.c | |
dx-4.4.4/src/exec/dxmods/screen.c | |
dx-4.4.4/src/exec/dxmods/._select.c | |
dx-4.4.4/src/exec/dxmods/select.c | |
dx-4.4.4/src/exec/dxmods/._selector.c | |
dx-4.4.4/src/exec/dxmods/selector.c | |
dx-4.4.4/src/exec/dxmods/._separate.c | |
dx-4.4.4/src/exec/dxmods/separate.c | |
dx-4.4.4/src/exec/dxmods/separate.h | |
dx-4.4.4/src/exec/dxmods/sequencer.c | |
dx-4.4.4/src/exec/dxmods/shade.c | |
dx-4.4.4/src/exec/dxmods/showboundary.c | |
dx-4.4.4/src/exec/dxmods/showboundary.h | |
dx-4.4.4/src/exec/dxmods/showbox.c | |
dx-4.4.4/src/exec/dxmods/showconnect.c | |
dx-4.4.4/src/exec/dxmods/showposition.c | |
dx-4.4.4/src/exec/dxmods/._simplesurf.c | |
dx-4.4.4/src/exec/dxmods/simplesurf.c | |
dx-4.4.4/src/exec/dxmods/simplesurf.h | |
dx-4.4.4/src/exec/dxmods/slab.c | |
dx-4.4.4/src/exec/dxmods/._slice.c | |
dx-4.4.4/src/exec/dxmods/slice.c | |
dx-4.4.4/src/exec/dxmods/._socketconnect.c | |
dx-4.4.4/src/exec/dxmods/socketconnect.c | |
dx-4.4.4/src/exec/dxmods/._sort.c | |
dx-4.4.4/src/exec/dxmods/sort.c | |
dx-4.4.4/src/exec/dxmods/._stack.c | |
dx-4.4.4/src/exec/dxmods/stack.c | |
dx-4.4.4/src/exec/dxmods/statistics.c | |
dx-4.4.4/src/exec/dxmods/streakline.c | |
dx-4.4.4/src/exec/dxmods/stream.h | |
dx-4.4.4/src/exec/dxmods/streamline.c | |
dx-4.4.4/src/exec/dxmods/._stringlegend.c | |
dx-4.4.4/src/exec/dxmods/stringlegend.c | |
dx-4.4.4/src/exec/dxmods/superstate.c | |
dx-4.4.4/src/exec/dxmods/superwin.c | |
dx-4.4.4/src/exec/dxmods/superwin.h | |
dx-4.4.4/src/exec/dxmods/._superwinW.c | |
dx-4.4.4/src/exec/dxmods/superwinW.c | |
dx-4.4.4/src/exec/dxmods/superwinX.c | |
dx-4.4.4/src/exec/dxmods/switch.c | |
dx-4.4.4/src/exec/dxmods/system.c | |
dx-4.4.4/src/exec/dxmods/text.c | |
dx-4.4.4/src/exec/dxmods/._toggle.c | |
dx-4.4.4/src/exec/dxmods/toggle.c | |
dx-4.4.4/src/exec/dxmods/._trace.c | |
dx-4.4.4/src/exec/dxmods/trace.c | |
dx-4.4.4/src/exec/dxmods/trace.h | |
dx-4.4.4/src/exec/dxmods/tracevisual.c | |
dx-4.4.4/src/exec/dxmods/transform.c | |
dx-4.4.4/src/exec/dxmods/translate.c | |
dx-4.4.4/src/exec/dxmods/transpose.c | |
dx-4.4.4/src/exec/dxmods/tube.c | |
dx-4.4.4/src/exec/dxmods/._unmark.c | |
dx-4.4.4/src/exec/dxmods/unmark.c | |
dx-4.4.4/src/exec/dxmods/unpart.h | |
dx-4.4.4/src/exec/dxmods/._usage.c | |
dx-4.4.4/src/exec/dxmods/usage.c | |
dx-4.4.4/src/exec/dxmods/user.c | |
dx-4.4.4/src/exec/dxmods/usercm.c | |
dx-4.4.4/src/exec/dxmods/userInteractors.h | |
dx-4.4.4/src/exec/dxmods/._vector.c | |
dx-4.4.4/src/exec/dxmods/vector.c | |
dx-4.4.4/src/exec/dxmods/vectorlist.c | |
dx-4.4.4/src/exec/dxmods/vectors.c | |
dx-4.4.4/src/exec/dxmods/vectors.h | |
dx-4.4.4/src/exec/dxmods/verify.c | |
dx-4.4.4/src/exec/dxmods/verify.h | |
dx-4.4.4/src/exec/dxmods/._visualobject.c | |
dx-4.4.4/src/exec/dxmods/visualobject.c | |
dx-4.4.4/src/exec/dxmods/vrml.c | |
dx-4.4.4/src/exec/dxmods/vrml.h | |
dx-4.4.4/src/exec/dxmods/vsincos.c | |
dx-4.4.4/src/exec/dxmods/vsincos.h | |
dx-4.4.4/src/exec/dxmods/writeimage.c | |
dx-4.4.4/src/exec/hwrender/ | |
dx-4.4.4/src/exec/hwrender/gl/ | |
dx-4.4.4/src/exec/hwrender/gl/helper.include | |
dx-4.4.4/src/exec/hwrender/gl/hwBackStore.c | |
dx-4.4.4/src/exec/hwrender/gl/hwInteractorEchoGL.c | |
dx-4.4.4/src/exec/hwrender/gl/hwLoad.c | |
dx-4.4.4/src/exec/hwrender/gl/hwPortGL.h | |
dx-4.4.4/src/exec/hwrender/gl/hwPortUtil.c | |
dx-4.4.4/src/exec/hwrender/gl/Makefile.am | |
dx-4.4.4/src/exec/hwrender/gl/Makefile.in | |
dx-4.4.4/src/exec/hwrender/._hwClientMessage.c | |
dx-4.4.4/src/exec/hwrender/hwClientMessage.c | |
dx-4.4.4/src/exec/hwrender/hwClientMessage.h | |
dx-4.4.4/src/exec/hwrender/hwClipped.c | |
dx-4.4.4/src/exec/hwrender/hwClipped.h | |
dx-4.4.4/src/exec/hwrender/._hwCursorInteractor.c | |
dx-4.4.4/src/exec/hwrender/hwCursorInteractor.c | |
dx-4.4.4/src/exec/hwrender/hwCursorInteractor.h | |
dx-4.4.4/src/exec/hwrender/._hwDebug.h | |
dx-4.4.4/src/exec/hwrender/hwDebug.h | |
dx-4.4.4/src/exec/hwrender/hwDeclarations.h | |
dx-4.4.4/src/exec/hwrender/hwDraw.c | |
dx-4.4.4/src/exec/hwrender/hwFlags.h | |
dx-4.4.4/src/exec/hwrender/._hwGather.c | |
dx-4.4.4/src/exec/hwrender/hwGather.c | |
dx-4.4.4/src/exec/hwrender/hwGather.h | |
dx-4.4.4/src/exec/hwrender/._hwGlobeEchoDef.h | |
dx-4.4.4/src/exec/hwrender/hwGlobeEchoDef.h | |
dx-4.4.4/src/exec/hwrender/hwGroupInteractor.c | |
dx-4.4.4/src/exec/hwrender/hwInitScreen.c | |
dx-4.4.4/src/exec/hwrender/hwInteractor.c | |
dx-4.4.4/src/exec/hwrender/hwInteractor.h | |
dx-4.4.4/src/exec/hwrender/hwInteractorEcho.h | |
dx-4.4.4/src/exec/hwrender/hwList.c | |
dx-4.4.4/src/exec/hwrender/hwList.h | |
dx-4.4.4/src/exec/hwrender/hwMaterials.c | |
dx-4.4.4/src/exec/hwrender/hwMaterials.h | |
dx-4.4.4/src/exec/hwrender/._hwMatrix.c | |
dx-4.4.4/src/exec/hwrender/hwMatrix.c | |
dx-4.4.4/src/exec/hwrender/hwMatrix.h | |
dx-4.4.4/src/exec/hwrender/hwMemory.c | |
dx-4.4.4/src/exec/hwrender/hwMemory.h | |
dx-4.4.4/src/exec/hwrender/._hwNavigateInteractor.c | |
dx-4.4.4/src/exec/hwrender/hwNavigateInteractor.c | |
dx-4.4.4/src/exec/hwrender/hwObject.c | |
dx-4.4.4/src/exec/hwrender/hwObject.h | |
dx-4.4.4/src/exec/hwrender/hwObjectHash.c | |
dx-4.4.4/src/exec/hwrender/hwObjectHash.h | |
dx-4.4.4/src/exec/hwrender/._hwPaint.c | |
dx-4.4.4/src/exec/hwrender/hwPaint.c | |
dx-4.4.4/src/exec/hwrender/._hwPolyline.c | |
dx-4.4.4/src/exec/hwrender/hwPolyline.c | |
dx-4.4.4/src/exec/hwrender/hwPortHandle.c | |
dx-4.4.4/src/exec/hwrender/._hwPortLayer.h | |
dx-4.4.4/src/exec/hwrender/hwPortLayer.h | |
dx-4.4.4/src/exec/hwrender/._hwQmesh.c | |
dx-4.4.4/src/exec/hwrender/hwQmesh.c | |
dx-4.4.4/src/exec/hwrender/hwQmesh.h | |
dx-4.4.4/src/exec/hwrender/hwRender.c | |
dx-4.4.4/src/exec/hwrender/._hwRotateInteractor.c | |
dx-4.4.4/src/exec/hwrender/hwRotateInteractor.c | |
dx-4.4.4/src/exec/hwrender/hwRotateInteractor.h | |
dx-4.4.4/src/exec/hwrender/hwScreen.c | |
dx-4.4.4/src/exec/hwrender/hwScreen.h | |
dx-4.4.4/src/exec/hwrender/hwSort.c | |
dx-4.4.4/src/exec/hwrender/hwSort.h | |
dx-4.4.4/src/exec/hwrender/._hwStereo.c | |
dx-4.4.4/src/exec/hwrender/hwStereo.c | |
dx-4.4.4/src/exec/hwrender/hwStereo.h | |
dx-4.4.4/src/exec/hwrender/hwStereoCams.c | |
dx-4.4.4/src/exec/hwrender/._hwStereoSys.c | |
dx-4.4.4/src/exec/hwrender/hwStereoSys.c | |
dx-4.4.4/src/exec/hwrender/hwTexture.c | |
dx-4.4.4/src/exec/hwrender/hwTmesh.c | |
dx-4.4.4/src/exec/hwrender/hwTmesh.h | |
dx-4.4.4/src/exec/hwrender/._hwUpdateview.c | |
dx-4.4.4/src/exec/hwrender/hwUpdateview.c | |
dx-4.4.4/src/exec/hwrender/._hwUserInteractor.c | |
dx-4.4.4/src/exec/hwrender/hwUserInteractor.c | |
dx-4.4.4/src/exec/hwrender/hwUserInteractor.h | |
dx-4.4.4/src/exec/hwrender/._hwView.c | |
dx-4.4.4/src/exec/hwrender/hwView.c | |
dx-4.4.4/src/exec/hwrender/hwView.h | |
dx-4.4.4/src/exec/hwrender/hwWindow.c | |
dx-4.4.4/src/exec/hwrender/hwWindow.h | |
dx-4.4.4/src/exec/hwrender/hwXfield.c | |
dx-4.4.4/src/exec/hwrender/hwXfield.h | |
dx-4.4.4/src/exec/hwrender/hwZoomInteractor.c | |
dx-4.4.4/src/exec/hwrender/hwZoomInteractor.h | |
dx-4.4.4/src/exec/hwrender/Makefile.am | |
dx-4.4.4/src/exec/hwrender/Makefile.in | |
dx-4.4.4/src/exec/hwrender/opengl/ | |
dx-4.4.4/src/exec/hwrender/opengl/hwDisplayListsOGL.c | |
dx-4.4.4/src/exec/hwrender/opengl/._hwInteractorEchoOGL.c | |
dx-4.4.4/src/exec/hwrender/opengl/hwInteractorEchoOGL.c | |
dx-4.4.4/src/exec/hwrender/opengl/hwLoadOGL.c | |
dx-4.4.4/src/exec/hwrender/opengl/hwPortOGL.c | |
dx-4.4.4/src/exec/hwrender/opengl/hwPortOGL.h | |
dx-4.4.4/src/exec/hwrender/opengl/hwPortUtilOGL.c | |
dx-4.4.4/src/exec/hwrender/opengl/hwPortUtilOGL.help | |
dx-4.4.4/src/exec/hwrender/opengl/Makefile.am | |
dx-4.4.4/src/exec/hwrender/opengl/Makefile.in | |
dx-4.4.4/src/exec/hwrender/starbase/ | |
dx-4.4.4/src/exec/hwrender/starbase/hwBoundingBoxDrawSB.c | |
dx-4.4.4/src/exec/hwrender/starbase/hwCacheUtilSB.c | |
dx-4.4.4/src/exec/hwrender/starbase/hwCacheUtilSB.h | |
dx-4.4.4/src/exec/hwrender/starbase/hwCubeDrawSB.c | |
dx-4.4.4/src/exec/hwrender/starbase/hwInteractorEchoSB.c | |
dx-4.4.4/src/exec/hwrender/starbase/hwLineDrawSB.c | |
dx-4.4.4/src/exec/hwrender/starbase/hwLoad.c | |
dx-4.4.4/src/exec/hwrender/starbase/hwMeshDrawSB.c.h | |
dx-4.4.4/src/exec/hwrender/starbase/hwPlineDrawSB.c | |
dx-4.4.4/src/exec/hwrender/starbase/hwPolygonDrawSB.c.h | |
dx-4.4.4/src/exec/hwrender/starbase/hwPolyhedraDrawSB.c.h | |
dx-4.4.4/src/exec/hwrender/starbase/hwPolylineDrawSB.c | |
dx-4.4.4/src/exec/hwrender/starbase/._hwPortSB.c | |
dx-4.4.4/src/exec/hwrender/starbase/hwPortSB.c | |
dx-4.4.4/src/exec/hwrender/starbase/hwPortSB.h | |
dx-4.4.4/src/exec/hwrender/starbase/hwQmeshDrawSB.c | |
dx-4.4.4/src/exec/hwrender/starbase/hwQuadDrawSB.c | |
dx-4.4.4/src/exec/hwrender/starbase/hwStub.c | |
dx-4.4.4/src/exec/hwrender/starbase/hwTetraDrawSB.c | |
dx-4.4.4/src/exec/hwrender/starbase/hwTmeshDrawSB.c | |
dx-4.4.4/src/exec/hwrender/starbase/hwTriDrawSB.c | |
dx-4.4.4/src/exec/hwrender/starbase/hwUnconPointDrawSB.c | |
dx-4.4.4/src/exec/hwrender/starbase/hwWinSB.c | |
dx-4.4.4/src/exec/hwrender/starbase/Makefile.am | |
dx-4.4.4/src/exec/hwrender/starbase/Makefile.in | |
dx-4.4.4/src/exec/hwrender/starbase/sbutils.c.h | |
dx-4.4.4/src/exec/hwrender/starbase/wsutils.c | |
dx-4.4.4/src/exec/hwrender/starbase/wsutils.h | |
dx-4.4.4/src/exec/hwrender/xgl/ | |
dx-4.4.4/src/exec/hwrender/xgl/hwBoundingBoxDraw.c | |
dx-4.4.4/src/exec/hwrender/xgl/hwCacheUtilXGL.c | |
dx-4.4.4/src/exec/hwrender/xgl/hwCacheUtilXGL.h | |
dx-4.4.4/src/exec/hwrender/xgl/hwCubeDraw.c | |
dx-4.4.4/src/exec/hwrender/xgl/hwInteractorEchoXGL.c | |
dx-4.4.4/src/exec/hwrender/xgl/hwLineDraw.c | |
dx-4.4.4/src/exec/hwrender/xgl/hwLoad.c | |
dx-4.4.4/src/exec/hwrender/xgl/hwMeshDraw.c.h | |
dx-4.4.4/src/exec/hwrender/xgl/hwPlineDraw.c | |
dx-4.4.4/src/exec/hwrender/xgl/hwPolygonDraw.c | |
dx-4.4.4/src/exec/hwrender/xgl/hwPolyhedraDrawXGL.c.h | |
dx-4.4.4/src/exec/hwrender/xgl/hwPolylineDraw.c | |
dx-4.4.4/src/exec/hwrender/xgl/hwPortXGL.c | |
dx-4.4.4/src/exec/hwrender/xgl/hwPortXGL.h | |
dx-4.4.4/src/exec/hwrender/xgl/hwQmeshDraw.c | |
dx-4.4.4/src/exec/hwrender/xgl/hwStub.c | |
dx-4.4.4/src/exec/hwrender/xgl/hwTetraDraw.c | |
dx-4.4.4/src/exec/hwrender/xgl/hwTmeshDraw.c | |
dx-4.4.4/src/exec/hwrender/xgl/hwUnconPointDraw.c | |
dx-4.4.4/src/exec/hwrender/xgl/Makefile.am | |
dx-4.4.4/src/exec/hwrender/xgl/Makefile.in | |
dx-4.4.4/src/exec/libdx/ | |
dx-4.4.4/src/exec/libdx/array.c | |
dx-4.4.4/src/exec/libdx/arrayClass.c | |
dx-4.4.4/src/exec/libdx/arrayClass.X | |
dx-4.4.4/src/exec/libdx/axes.c | |
dx-4.4.4/src/exec/libdx/basic.c | |
dx-4.4.4/src/exec/libdx/binSort.c | |
dx-4.4.4/src/exec/libdx/binSort.h | |
dx-4.4.4/src/exec/libdx/box.c | |
dx-4.4.4/src/exec/libdx/buffer.c | |
dx-4.4.4/src/exec/libdx/buffer.Z | |
dx-4.4.4/src/exec/libdx/._callm_init.c | |
dx-4.4.4/src/exec/libdx/callm_init.c | |
dx-4.4.4/src/exec/libdx/callm_winit.c | |
dx-4.4.4/src/exec/libdx/callm_xinit.c | |
dx-4.4.4/src/exec/libdx/cameraClass.c | |
dx-4.4.4/src/exec/libdx/cameraClass.X | |
dx-4.4.4/src/exec/libdx/class | |
dx-4.4.4/src/exec/libdx/class.awk | |
dx-4.4.4/src/exec/libdx/._client.c | |
dx-4.4.4/src/exec/libdx/client.c | |
dx-4.4.4/src/exec/libdx/clipped.c | |
dx-4.4.4/src/exec/libdx/clippedClass.c | |
dx-4.4.4/src/exec/libdx/clippedClass.X | |
dx-4.4.4/src/exec/libdx/component.c | |
dx-4.4.4/src/exec/libdx/composite.c | |
dx-4.4.4/src/exec/libdx/cstarray.c | |
dx-4.4.4/src/exec/libdx/cubesII.c | |
dx-4.4.4/src/exec/libdx/cubesIIClass.c | |
dx-4.4.4/src/exec/libdx/cubesIIClass.X | |
dx-4.4.4/src/exec/libdx/cubesRR.c | |
dx-4.4.4/src/exec/libdx/cubesRRClass.c | |
dx-4.4.4/src/exec/libdx/cubesRRClass.X | |
dx-4.4.4/src/exec/libdx/diskio.h | |
dx-4.4.4/src/exec/libdx/displayfb.c | |
dx-4.4.4/src/exec/libdx/displayutil.c | |
dx-4.4.4/src/exec/libdx/._displayutil.h | |
dx-4.4.4/src/exec/libdx/displayutil.h | |
dx-4.4.4/src/exec/libdx/displayw.c | |
dx-4.4.4/src/exec/libdx/displayw.h | |
dx-4.4.4/src/exec/libdx/displayx.c | |
dx-4.4.4/src/exec/libdx/displayx.h | |
dx-4.4.4/src/exec/libdx/._edf.h | |
dx-4.4.4/src/exec/libdx/edf.h | |
dx-4.4.4/src/exec/libdx/edfdata.c | |
dx-4.4.4/src/exec/libdx/edfdict.c | |
dx-4.4.4/src/exec/libdx/._edfio.c | |
dx-4.4.4/src/exec/libdx/edfio.c | |
dx-4.4.4/src/exec/libdx/edflex.c | |
dx-4.4.4/src/exec/libdx/edfobj.c | |
dx-4.4.4/src/exec/libdx/edfparse.c | |
dx-4.4.4/src/exec/libdx/._edfprint.c | |
dx-4.4.4/src/exec/libdx/edfprint.c | |
dx-4.4.4/src/exec/libdx/field.c | |
dx-4.4.4/src/exec/libdx/fieldClass.c | |
dx-4.4.4/src/exec/libdx/fieldClass.X | |
dx-4.4.4/src/exec/libdx/fieldinterp.c | |
dx-4.4.4/src/exec/libdx/fieldinterpClass.c | |
dx-4.4.4/src/exec/libdx/fieldinterpClass.X | |
dx-4.4.4/src/exec/libdx/fileio.c | |
dx-4.4.4/src/exec/libdx/fle2D.c | |
dx-4.4.4/src/exec/libdx/fle2DClass.c | |
dx-4.4.4/src/exec/libdx/fle2DClass.X | |
dx-4.4.4/src/exec/libdx/gather.c | |
dx-4.4.4/src/exec/libdx/group.c | |
dx-4.4.4/src/exec/libdx/groupClass.c | |
dx-4.4.4/src/exec/libdx/groupClass.X | |
dx-4.4.4/src/exec/libdx/groupinterp.c | |
dx-4.4.4/src/exec/libdx/groupinterpClass.c | |
dx-4.4.4/src/exec/libdx/groupinterpClass.X | |
dx-4.4.4/src/exec/libdx/grow.c | |
dx-4.4.4/src/exec/libdx/._hash.c | |
dx-4.4.4/src/exec/libdx/hash.c | |
dx-4.4.4/src/exec/libdx/helper.c | |
dx-4.4.4/src/exec/libdx/image.c | |
dx-4.4.4/src/exec/libdx/init.c | |
dx-4.4.4/src/exec/libdx/internals.h | |
dx-4.4.4/src/exec/libdx/interp.c | |
dx-4.4.4/src/exec/libdx/interpClass.c | |
dx-4.4.4/src/exec/libdx/interpClass.X | |
dx-4.4.4/src/exec/libdx/invalid.c | |
dx-4.4.4/src/exec/libdx/irreggrow.c | |
dx-4.4.4/src/exec/libdx/lbcache.c | |
dx-4.4.4/src/exec/libdx/._lbcamera.c | |
dx-4.4.4/src/exec/libdx/lbcamera.c | |
dx-4.4.4/src/exec/libdx/lbcolor.c | |
dx-4.4.4/src/exec/libdx/lbextract.c | |
dx-4.4.4/src/exec/libdx/lbgrid.c | |
dx-4.4.4/src/exec/libdx/lblight.c | |
dx-4.4.4/src/exec/libdx/lbmap.c | |
dx-4.4.4/src/exec/libdx/lbmessage.c | |
dx-4.4.4/src/exec/libdx/lbmsgs.c | |
dx-4.4.4/src/exec/libdx/lbmsgs.h | |
dx-4.4.4/src/exec/libdx/lbpartition.c | |
dx-4.4.4/src/exec/libdx/lbpick.c | |
dx-4.4.4/src/exec/libdx/._lbprint.c | |
dx-4.4.4/src/exec/libdx/lbprint.c | |
dx-4.4.4/src/exec/libdx/lbprivate.c | |
dx-4.4.4/src/exec/libdx/lbscreen.c | |
dx-4.4.4/src/exec/libdx/lbshade.c | |
dx-4.4.4/src/exec/libdx/lbshade.Z | |
dx-4.4.4/src/exec/libdx/lbtask.c | |
dx-4.4.4/src/exec/libdx/lbtext.c | |
dx-4.4.4/src/exec/libdx/lbtransform.c | |
dx-4.4.4/src/exec/libdx/lbvector.c | |
dx-4.4.4/src/exec/libdx/lightClass.c | |
dx-4.4.4/src/exec/libdx/lightClass.X | |
dx-4.4.4/src/exec/libdx/line.c | |
dx-4.4.4/src/exec/libdx/linesII1D.c | |
dx-4.4.4/src/exec/libdx/linesII1DClass.c | |
dx-4.4.4/src/exec/libdx/linesII1DClass.X | |
dx-4.4.4/src/exec/libdx/linesRI1D.c | |
dx-4.4.4/src/exec/libdx/linesRI1DClass.c | |
dx-4.4.4/src/exec/libdx/linesRI1DClass.X | |
dx-4.4.4/src/exec/libdx/linesRR1D.c | |
dx-4.4.4/src/exec/libdx/linesRR1DClass.c | |
dx-4.4.4/src/exec/libdx/linesRR1DClass.X | |
dx-4.4.4/src/exec/libdx/local.mk.in | |
dx-4.4.4/src/exec/libdx/lock.c | |
dx-4.4.4/src/exec/libdx/._Makefile.am | |
dx-4.4.4/src/exec/libdx/Makefile.am | |
dx-4.4.4/src/exec/libdx/Makefile.in | |
dx-4.4.4/src/exec/libdx/matrix.c | |
dx-4.4.4/src/exec/libdx/mem.c | |
dx-4.4.4/src/exec/libdx/memory.c | |
dx-4.4.4/src/exec/libdx/memorystubs.c | |
dx-4.4.4/src/exec/libdx/mesharray.c | |
dx-4.4.4/src/exec/libdx/multigrid.c | |
dx-4.4.4/src/exec/libdx/._neighbors.c | |
dx-4.4.4/src/exec/libdx/neighbors.c | |
dx-4.4.4/src/exec/libdx/._notify.c | |
dx-4.4.4/src/exec/libdx/notify.c | |
dx-4.4.4/src/exec/libdx/object.c | |
dx-4.4.4/src/exec/libdx/objectClass.c | |
dx-4.4.4/src/exec/libdx/objectClass.X | |
dx-4.4.4/src/exec/libdx/outglue.c | |
dx-4.4.4/src/exec/libdx/paint.c | |
dx-4.4.4/src/exec/libdx/partreg.c | |
dx-4.4.4/src/exec/libdx/parts.c | |
dx-4.4.4/src/exec/libdx/patharray.c | |
dx-4.4.4/src/exec/libdx/permute.c | |
dx-4.4.4/src/exec/libdx/plane.c | |
dx-4.4.4/src/exec/libdx/plane.Z | |
dx-4.4.4/src/exec/libdx/plock.c | |
dx-4.4.4/src/exec/libdx/plock.h | |
dx-4.4.4/src/exec/libdx/point.c | |
dx-4.4.4/src/exec/libdx/privateClass.c | |
dx-4.4.4/src/exec/libdx/privateClass.X | |
dx-4.4.4/src/exec/libdx/productarray.c | |
dx-4.4.4/src/exec/libdx/qmessage.c | |
dx-4.4.4/src/exec/libdx/qsort.c | |
dx-4.4.4/src/exec/libdx/quad.c | |
dx-4.4.4/src/exec/libdx/quad.Z | |
dx-4.4.4/src/exec/libdx/quadsII2D.c | |
dx-4.4.4/src/exec/libdx/quadsII2DClass.c | |
dx-4.4.4/src/exec/libdx/quadsII2DClass.X | |
dx-4.4.4/src/exec/libdx/quadsRR2D.c | |
dx-4.4.4/src/exec/libdx/quadsRR2DClass.c | |
dx-4.4.4/src/exec/libdx/quadsRR2DClass.X | |
dx-4.4.4/src/exec/libdx/._reggrow.c | |
dx-4.4.4/src/exec/libdx/reggrow.c | |
dx-4.4.4/src/exec/libdx/regulararray.c | |
dx-4.4.4/src/exec/libdx/._render.h | |
dx-4.4.4/src/exec/libdx/render.h | |
dx-4.4.4/src/exec/libdx/renderstubs.c | |
dx-4.4.4/src/exec/libdx/rwobject.c | |
dx-4.4.4/src/exec/libdx/screenClass.c | |
dx-4.4.4/src/exec/libdx/screenClass.X | |
dx-4.4.4/src/exec/libdx/seglist.c | |
dx-4.4.4/src/exec/libdx/series.c | |
dx-4.4.4/src/exec/libdx/sharedarray.c | |
dx-4.4.4/src/exec/libdx/stats.c | |
dx-4.4.4/src/exec/libdx/string.c | |
dx-4.4.4/src/exec/libdx/stringClass.c | |
dx-4.4.4/src/exec/libdx/stringClass.X | |
dx-4.4.4/src/exec/libdx/stringtable.c | |
dx-4.4.4/src/exec/libdx/tetras.c | |
dx-4.4.4/src/exec/libdx/tetrasClass.c | |
dx-4.4.4/src/exec/libdx/tetrasClass.X | |
dx-4.4.4/src/exec/libdx/tile.c | |
dx-4.4.4/src/exec/libdx/timing.c | |
dx-4.4.4/src/exec/libdx/triangle.c | |
dx-4.4.4/src/exec/libdx/triangle.Z | |
dx-4.4.4/src/exec/libdx/._triangles.h | |
dx-4.4.4/src/exec/libdx/triangles.h | |
dx-4.4.4/src/exec/libdx/trisRI2D.c | |
dx-4.4.4/src/exec/libdx/trisRI2DClass.c | |
dx-4.4.4/src/exec/libdx/trisRI2DClass.X | |
dx-4.4.4/src/exec/libdx/userinit.c | |
dx-4.4.4/src/exec/libdx/v3.c | |
dx-4.4.4/src/exec/libdx/version.c | |
dx-4.4.4/src/exec/libdx/volume.c | |
dx-4.4.4/src/exec/libdx/windows.c | |
dx-4.4.4/src/exec/libdx/xfield.c | |
dx-4.4.4/src/exec/libdx/xform.c | |
dx-4.4.4/src/exec/libdx/xformClass.c | |
dx-4.4.4/src/exec/libdx/xformClass.X | |
dx-4.4.4/src/exec/libdx/xwindow.c | |
dx-4.4.4/src/exec/libdx/zclip.h | |
dx-4.4.4/src/exec/libdx/zclipQ.c | |
dx-4.4.4/src/exec/libdx/zclipT.c | |
dx-4.4.4/src/exec/Makefile.am | |
dx-4.4.4/src/exec/Makefile.in | |
dx-4.4.4/src/Makefile.am | |
dx-4.4.4/src/Makefile.in | |
dx-4.4.4/src/misc/ | |
dx-4.4.4/src/misc/arch.mak.in | |
dx-4.4.4/src/misc/dx.c | |
dx-4.4.4/src/misc/dx.h | |
dx-4.4.4/src/misc/Makefile.am | |
dx-4.4.4/src/misc/Makefile.in | |
dx-4.4.4/src/misc/utils.c | |
dx-4.4.4/src/misc/utils.h | |
dx-4.4.4/src/uipp/ | |
dx-4.4.4/src/uipp/base/ | |
dx-4.4.4/src/uipp/base/ActiveItemDictionary.h | |
dx-4.4.4/src/uipp/base/AllocatorDictionary.h | |
dx-4.4.4/src/uipp/base/._Application.C | |
dx-4.4.4/src/uipp/base/Application.C | |
dx-4.4.4/src/uipp/base/._Application.h | |
dx-4.4.4/src/uipp/base/Application.h | |
dx-4.4.4/src/uipp/base/ApplyFileDialog.C | |
dx-4.4.4/src/uipp/base/ApplyFileDialog.h | |
dx-4.4.4/src/uipp/base/Base.h | |
dx-4.4.4/src/uipp/base/ButtonInterface.C | |
dx-4.4.4/src/uipp/base/ButtonInterface.h | |
dx-4.4.4/src/uipp/base/CascadeMenu.C | |
dx-4.4.4/src/uipp/base/CascadeMenu.h | |
dx-4.4.4/src/uipp/base/Client.h | |
dx-4.4.4/src/uipp/base/CloseWindowCommand.C | |
dx-4.4.4/src/uipp/base/CloseWindowCommand.h | |
dx-4.4.4/src/uipp/base/CmdEntry.C | |
dx-4.4.4/src/uipp/base/CmdEntry.h | |
dx-4.4.4/src/uipp/base/Command.C | |
dx-4.4.4/src/uipp/base/Command.h | |
dx-4.4.4/src/uipp/base/CommandInterface.C | |
dx-4.4.4/src/uipp/base/CommandInterface.h | |
dx-4.4.4/src/uipp/base/CommandScope.h | |
dx-4.4.4/src/uipp/base/ConfirmedCommand.C | |
dx-4.4.4/src/uipp/base/ConfirmedCommand.h | |
dx-4.4.4/src/uipp/base/DefaultingDictionary.h | |
dx-4.4.4/src/uipp/base/DeferrableAction.C | |
dx-4.4.4/src/uipp/base/DeferrableAction.h | |
dx-4.4.4/src/uipp/base/defines.h | |
dx-4.4.4/src/uipp/base/Definition.h | |
dx-4.4.4/src/uipp/base/Dialog.C | |
dx-4.4.4/src/uipp/base/Dialog.h | |
dx-4.4.4/src/uipp/base/DialogData.h | |
dx-4.4.4/src/uipp/base/DialogManager.C | |
dx-4.4.4/src/uipp/base/DialogManager.h | |
dx-4.4.4/src/uipp/base/Dictionary.C | |
dx-4.4.4/src/uipp/base/Dictionary.h | |
dx-4.4.4/src/uipp/base/DictionaryIterator.h | |
dx-4.4.4/src/uipp/base/DragSource.C | |
dx-4.4.4/src/uipp/base/DragSource.h | |
dx-4.4.4/src/uipp/base/DropSite.C | |
dx-4.4.4/src/uipp/base/DropSite.h | |
dx-4.4.4/src/uipp/base/DXStrings.h | |
dx-4.4.4/src/uipp/base/DXTensor.C | |
dx-4.4.4/src/uipp/base/DXTensor.h | |
dx-4.4.4/src/uipp/base/DXType.C | |
dx-4.4.4/src/uipp/base/DXType.h | |
dx-4.4.4/src/uipp/base/DXValue.C | |
dx-4.4.4/src/uipp/base/DXValue.h | |
dx-4.4.4/src/uipp/base/DynamicResource.C | |
dx-4.4.4/src/uipp/base/DynamicResource.h | |
dx-4.4.4/src/uipp/base/ErrorDialogManager.C | |
dx-4.4.4/src/uipp/base/ErrorDialogManager.h | |
dx-4.4.4/src/uipp/base/FileDialog.C | |
dx-4.4.4/src/uipp/base/FileDialog.h | |
dx-4.4.4/src/uipp/base/help.c | |
dx-4.4.4/src/uipp/base/help.h | |
dx-4.4.4/src/uipp/base/helpcallbacks.c | |
dx-4.4.4/src/uipp/base/helplist.c | |
dx-4.4.4/src/uipp/base/helplist.h | |
dx-4.4.4/src/uipp/base/HelpMenuCommand.C | |
dx-4.4.4/src/uipp/base/HelpMenuCommand.h | |
dx-4.4.4/src/uipp/base/HelpOnContextCommand.C | |
dx-4.4.4/src/uipp/base/HelpOnContextCommand.h | |
dx-4.4.4/src/uipp/base/helpstack.c | |
dx-4.4.4/src/uipp/base/helpstack.h | |
dx-4.4.4/src/uipp/base/._HelpWin.C | |
dx-4.4.4/src/uipp/base/HelpWin.C | |
dx-4.4.4/src/uipp/base/HelpWin.h | |
dx-4.4.4/src/uipp/base/history.c | |
dx-4.4.4/src/uipp/base/history.h | |
dx-4.4.4/src/uipp/base/IBMApplication.C | |
dx-4.4.4/src/uipp/base/IBMApplication.h | |
dx-4.4.4/src/uipp/base/IBMMainWindow.C | |
dx-4.4.4/src/uipp/base/IBMMainWindow.h | |
dx-4.4.4/src/uipp/base/IBMVersion.h | |
dx-4.4.4/src/uipp/base/icon50.h | |
dx-4.4.4/src/uipp/base/InfoDialogManager.C | |
dx-4.4.4/src/uipp/base/InfoDialogManager.h | |
dx-4.4.4/src/uipp/base/lex.C | |
dx-4.4.4/src/uipp/base/lex.h | |
dx-4.4.4/src/uipp/base/License.C | |
dx-4.4.4/src/uipp/base/License.h | |
dx-4.4.4/src/uipp/base/Link.C | |
dx-4.4.4/src/uipp/base/Link.h | |
dx-4.4.4/src/uipp/base/List.C | |
dx-4.4.4/src/uipp/base/List.h | |
dx-4.4.4/src/uipp/base/ListEditor.C | |
dx-4.4.4/src/uipp/base/ListEditor.h | |
dx-4.4.4/src/uipp/base/ListIterator.C | |
dx-4.4.4/src/uipp/base/ListIterator.h | |
dx-4.4.4/src/uipp/base/logo.h | |
dx-4.4.4/src/uipp/base/MainWindow.C | |
dx-4.4.4/src/uipp/base/._MainWindow.h | |
dx-4.4.4/src/uipp/base/MainWindow.h | |
dx-4.4.4/src/uipp/base/Makefile.am | |
dx-4.4.4/src/uipp/base/Makefile.in | |
dx-4.4.4/src/uipp/base/minus.bm | |
dx-4.4.4/src/uipp/base/NoOpCommand.C | |
dx-4.4.4/src/uipp/base/NoOpCommand.h | |
dx-4.4.4/src/uipp/base/Notebook.C | |
dx-4.4.4/src/uipp/base/Notebook.h | |
dx-4.4.4/src/uipp/base/NotebookTab.C | |
dx-4.4.4/src/uipp/base/NotebookTab.h | |
dx-4.4.4/src/uipp/base/NoUndoCommand.C | |
dx-4.4.4/src/uipp/base/NoUndoCommand.h | |
dx-4.4.4/src/uipp/base/NoUndoHelpCmd.C | |
dx-4.4.4/src/uipp/base/NoUndoHelpCmd.h | |
dx-4.4.4/src/uipp/base/OptionalPreActionCommand.C | |
dx-4.4.4/src/uipp/base/OptionalPreActionCommand.h | |
dx-4.4.4/src/uipp/base/parse.c | |
dx-4.4.4/src/uipp/base/plus.bm | |
dx-4.4.4/src/uipp/base/PreActionCommand.C | |
dx-4.4.4/src/uipp/base/PreActionCommand.h | |
dx-4.4.4/src/uipp/base/QuestionDialogManager.C | |
dx-4.4.4/src/uipp/base/QuestionDialogManager.h | |
dx-4.4.4/src/uipp/base/QuitCommand.C | |
dx-4.4.4/src/uipp/base/QuitCommand.h | |
dx-4.4.4/src/uipp/base/RepeatingToggle.C | |
dx-4.4.4/src/uipp/base/RepeatingToggle.h | |
dx-4.4.4/src/uipp/base/SaveFileDialog.C | |
dx-4.4.4/src/uipp/base/SaveFileDialog.h | |
dx-4.4.4/src/uipp/base/._Server.C | |
dx-4.4.4/src/uipp/base/Server.C | |
dx-4.4.4/src/uipp/base/Server.h | |
dx-4.4.4/src/uipp/base/SetNameDialog.C | |
dx-4.4.4/src/uipp/base/SetNameDialog.h | |
dx-4.4.4/src/uipp/base/Stack.C | |
dx-4.4.4/src/uipp/base/Stack.h | |
dx-4.4.4/src/uipp/base/._StartWebBrowser.C | |
dx-4.4.4/src/uipp/base/StartWebBrowser.C | |
dx-4.4.4/src/uipp/base/StartWebBrowser.h | |
dx-4.4.4/src/uipp/base/Strings.C | |
dx-4.4.4/src/uipp/base/._StringTable.C | |
dx-4.4.4/src/uipp/base/StringTable.C | |
dx-4.4.4/src/uipp/base/._StringTable.h | |
dx-4.4.4/src/uipp/base/StringTable.h | |
dx-4.4.4/src/uipp/base/SymbolManager.C | |
dx-4.4.4/src/uipp/base/._SymbolManager.h | |
dx-4.4.4/src/uipp/base/SymbolManager.h | |
dx-4.4.4/src/uipp/base/TemporaryLicense.C | |
dx-4.4.4/src/uipp/base/TemporaryLicense.h | |
dx-4.4.4/src/uipp/base/TextEditDialog.C | |
dx-4.4.4/src/uipp/base/TextEditDialog.h | |
dx-4.4.4/src/uipp/base/TextFile.C | |
dx-4.4.4/src/uipp/base/TextFile.h | |
dx-4.4.4/src/uipp/base/TextFileFileDialog.C | |
dx-4.4.4/src/uipp/base/TextFileFileDialog.h | |
dx-4.4.4/src/uipp/base/TextPopup.C | |
dx-4.4.4/src/uipp/base/TextPopup.h | |
dx-4.4.4/src/uipp/base/TextSelector.C | |
dx-4.4.4/src/uipp/base/TextSelector.h | |
dx-4.4.4/src/uipp/base/TimedDialog.C | |
dx-4.4.4/src/uipp/base/TimedDialog.h | |
dx-4.4.4/src/uipp/base/._TimedMessage.C | |
dx-4.4.4/src/uipp/base/TimedMessage.C | |
dx-4.4.4/src/uipp/base/TimedMessage.h | |
dx-4.4.4/src/uipp/base/ToggleButtonInterface.C | |
dx-4.4.4/src/uipp/base/ToggleButtonInterface.h | |
dx-4.4.4/src/uipp/base/TransferStyle.C | |
dx-4.4.4/src/uipp/base/TransferStyle.h | |
dx-4.4.4/src/uipp/base/._TreeNode.h | |
dx-4.4.4/src/uipp/base/TreeNode.h | |
dx-4.4.4/src/uipp/base/TreeView.C | |
dx-4.4.4/src/uipp/base/TreeView.h | |
dx-4.4.4/src/uipp/base/._UIComponent.C | |
dx-4.4.4/src/uipp/base/UIComponent.C | |
dx-4.4.4/src/uipp/base/._UIComponent.h | |
dx-4.4.4/src/uipp/base/UIComponent.h | |
dx-4.4.4/src/uipp/base/UIComponentHelpCommand.C | |
dx-4.4.4/src/uipp/base/UIComponentHelpCommand.h | |
dx-4.4.4/src/uipp/base/UIConfig.h | |
dx-4.4.4/src/uipp/base/UndoCommand.C | |
dx-4.4.4/src/uipp/base/UndoCommand.h | |
dx-4.4.4/src/uipp/base/util.C | |
dx-4.4.4/src/uipp/base/WarningDialogManager.C | |
dx-4.4.4/src/uipp/base/WarningDialogManager.h | |
dx-4.4.4/src/uipp/base/WizardDialog.C | |
dx-4.4.4/src/uipp/base/WizardDialog.h | |
dx-4.4.4/src/uipp/base/WorkSpace.C | |
dx-4.4.4/src/uipp/base/WorkSpace.h | |
dx-4.4.4/src/uipp/base/WorkSpaceGrid.C | |
dx-4.4.4/src/uipp/base/WorkSpaceGrid.h | |
dx-4.4.4/src/uipp/base/WorkSpaceInfo.C | |
dx-4.4.4/src/uipp/base/WorkSpaceInfo.h | |
dx-4.4.4/src/uipp/base/WorkSpacePage.h | |
dx-4.4.4/src/uipp/base/WorkSpaceRoot.C | |
dx-4.4.4/src/uipp/base/WorkSpaceRoot.h | |
dx-4.4.4/src/uipp/base/XHandler.C | |
dx-4.4.4/src/uipp/base/XHandler.h | |
dx-4.4.4/src/uipp/base/XmUtility.C | |
dx-4.4.4/src/uipp/base/XmUtility.h | |
dx-4.4.4/src/uipp/dxl/ | |
dx-4.4.4/src/uipp/dxl/close.c | |
dx-4.4.4/src/uipp/dxl/conn.c | |
dx-4.4.4/src/uipp/dxl/connect.c | |
dx-4.4.4/src/uipp/dxl/dict.c | |
dx-4.4.4/src/uipp/dxl/dict.h | |
dx-4.4.4/src/uipp/dxl/dxlP.h | |
dx-4.4.4/src/uipp/dxl/execute.c | |
dx-4.4.4/src/uipp/dxl/exit.c | |
dx-4.4.4/src/uipp/dxl/handlers.c | |
dx-4.4.4/src/uipp/dxl/load.c | |
dx-4.4.4/src/uipp/dxl/Makefile.am | |
dx-4.4.4/src/uipp/dxl/Makefile.in | |
dx-4.4.4/src/uipp/dxl/object.c | |
dx-4.4.4/src/uipp/dxl/._open.c | |
dx-4.4.4/src/uipp/dxl/open.c | |
dx-4.4.4/src/uipp/dxl/os2.c | |
dx-4.4.4/src/uipp/dxl/query.c | |
dx-4.4.4/src/uipp/dxl/save.c | |
dx-4.4.4/src/uipp/dxl/._send.c | |
dx-4.4.4/src/uipp/dxl/send.c | |
dx-4.4.4/src/uipp/dxl/sequencer.c | |
dx-4.4.4/src/uipp/dxl/socket.c | |
dx-4.4.4/src/uipp/dxl/value.c | |
dx-4.4.4/src/uipp/dxl/windows.c | |
dx-4.4.4/src/uipp/dxl/x11.c | |
dx-4.4.4/src/uipp/dxui/ | |
dx-4.4.4/src/uipp/dxui/AccessNetworkPanelsCommand.C | |
dx-4.4.4/src/uipp/dxui/AccessNetworkPanelsCommand.h | |
dx-4.4.4/src/uipp/dxui/ColormapDefinition.C | |
dx-4.4.4/src/uipp/dxui/ColormapDefinition.h | |
dx-4.4.4/src/uipp/dxui/ColormapEditCommand.C | |
dx-4.4.4/src/uipp/dxui/ColormapEditCommand.h | |
dx-4.4.4/src/uipp/dxui/ColormapFileCommand.C | |
dx-4.4.4/src/uipp/dxui/ColormapFileCommand.h | |
dx-4.4.4/src/uipp/dxui/ColormapNode.C | |
dx-4.4.4/src/uipp/dxui/ColormapNode.h | |
dx-4.4.4/src/uipp/dxui/ComputeDefinition.C | |
dx-4.4.4/src/uipp/dxui/ComputeDefinition.h | |
dx-4.4.4/src/uipp/dxui/ComputeNode.C | |
dx-4.4.4/src/uipp/dxui/ComputeNode.h | |
dx-4.4.4/src/uipp/dxui/ConfirmedExitCommand.C | |
dx-4.4.4/src/uipp/dxui/ConfirmedExitCommand.h | |
dx-4.4.4/src/uipp/dxui/ConfirmedQuitCommand.C | |
dx-4.4.4/src/uipp/dxui/ConfirmedQuitCommand.h | |
dx-4.4.4/src/uipp/dxui/DeleteNodeCommand.C | |
dx-4.4.4/src/uipp/dxui/DeleteNodeCommand.h | |
dx-4.4.4/src/uipp/dxui/._DialInteractor.C | |
dx-4.4.4/src/uipp/dxui/DialInteractor.C | |
dx-4.4.4/src/uipp/dxui/DialInteractor.h | |
dx-4.4.4/src/uipp/dxui/DisconnectFromServerCommand.C | |
dx-4.4.4/src/uipp/dxui/DisconnectFromServerCommand.h | |
dx-4.4.4/src/uipp/dxui/DisplayDefinition.C | |
dx-4.4.4/src/uipp/dxui/DisplayDefinition.h | |
dx-4.4.4/src/uipp/dxui/DisplayNode.C | |
dx-4.4.4/src/uipp/dxui/DisplayNode.h | |
dx-4.4.4/src/uipp/dxui/DrivenDefinition.C | |
dx-4.4.4/src/uipp/dxui/DrivenDefinition.h | |
dx-4.4.4/src/uipp/dxui/DrivenNode.C | |
dx-4.4.4/src/uipp/dxui/DrivenNode.h | |
dx-4.4.4/src/uipp/dxui/DXLInputDefinition.C | |
dx-4.4.4/src/uipp/dxui/DXLInputDefinition.h | |
dx-4.4.4/src/uipp/dxui/DXLInputNode.C | |
dx-4.4.4/src/uipp/dxui/DXLInputNode.h | |
dx-4.4.4/src/uipp/dxui/DXLOutputDefinition.C | |
dx-4.4.4/src/uipp/dxui/DXLOutputDefinition.h | |
dx-4.4.4/src/uipp/dxui/DXLOutputNode.C | |
dx-4.4.4/src/uipp/dxui/DXLOutputNode.h | |
dx-4.4.4/src/uipp/dxui/EchoDefinition.C | |
dx-4.4.4/src/uipp/dxui/EchoDefinition.h | |
dx-4.4.4/src/uipp/dxui/EchoNode.C | |
dx-4.4.4/src/uipp/dxui/EchoNode.h | |
dx-4.4.4/src/uipp/dxui/ExecCommandDialog.C | |
dx-4.4.4/src/uipp/dxui/ExecCommandDialog.h | |
dx-4.4.4/src/uipp/dxui/FileSelectorDefinition.C | |
dx-4.4.4/src/uipp/dxui/FileSelectorDefinition.h | |
dx-4.4.4/src/uipp/dxui/FileSelectorInteractor.C | |
dx-4.4.4/src/uipp/dxui/FileSelectorInteractor.h | |
dx-4.4.4/src/uipp/dxui/FileSelectorNode.C | |
dx-4.4.4/src/uipp/dxui/FileSelectorNode.h | |
dx-4.4.4/src/uipp/dxui/GlobalLocalDefinition.C | |
dx-4.4.4/src/uipp/dxui/GlobalLocalDefinition.h | |
dx-4.4.4/src/uipp/dxui/GlobalLocalNode.C | |
dx-4.4.4/src/uipp/dxui/GlobalLocalNode.h | |
dx-4.4.4/src/uipp/dxui/ImageApproxCommand.C | |
dx-4.4.4/src/uipp/dxui/ImageApproxCommand.h | |
dx-4.4.4/src/uipp/dxui/ImageConstraintCommand.C | |
dx-4.4.4/src/uipp/dxui/ImageConstraintCommand.h | |
dx-4.4.4/src/uipp/dxui/ImageDefinition.C | |
dx-4.4.4/src/uipp/dxui/ImageDefinition.h | |
dx-4.4.4/src/uipp/dxui/ImageFormatCommand.C | |
dx-4.4.4/src/uipp/dxui/ImageFormatCommand.h | |
dx-4.4.4/src/uipp/dxui/ImageHardwareCommand.C | |
dx-4.4.4/src/uipp/dxui/ImageHardwareCommand.h | |
dx-4.4.4/src/uipp/dxui/ImageLookCommand.C | |
dx-4.4.4/src/uipp/dxui/ImageLookCommand.h | |
dx-4.4.4/src/uipp/dxui/ImageNode.C | |
dx-4.4.4/src/uipp/dxui/ImageNode.h | |
dx-4.4.4/src/uipp/dxui/ImagePerspectiveCommand.C | |
dx-4.4.4/src/uipp/dxui/ImagePerspectiveCommand.h | |
dx-4.4.4/src/uipp/dxui/ImageRedoCommand.C | |
dx-4.4.4/src/uipp/dxui/ImageRedoCommand.h | |
dx-4.4.4/src/uipp/dxui/ImageResetCommand.C | |
dx-4.4.4/src/uipp/dxui/ImageResetCommand.h | |
dx-4.4.4/src/uipp/dxui/ImageSetModeCommand.C | |
dx-4.4.4/src/uipp/dxui/ImageSetModeCommand.h | |
dx-4.4.4/src/uipp/dxui/ImageSetViewCommand.C | |
dx-4.4.4/src/uipp/dxui/ImageSetViewCommand.h | |
dx-4.4.4/src/uipp/dxui/ImageSoftwareCommand.C | |
dx-4.4.4/src/uipp/dxui/ImageSoftwareCommand.h | |
dx-4.4.4/src/uipp/dxui/ImageUndoCommand.C | |
dx-4.4.4/src/uipp/dxui/ImageUndoCommand.h | |
dx-4.4.4/src/uipp/dxui/Interactor.C | |
dx-4.4.4/src/uipp/dxui/Interactor.h | |
dx-4.4.4/src/uipp/dxui/InteractorDefinition.C | |
dx-4.4.4/src/uipp/dxui/InteractorDefinition.h | |
dx-4.4.4/src/uipp/dxui/InteractorNode.C | |
dx-4.4.4/src/uipp/dxui/InteractorNode.h | |
dx-4.4.4/src/uipp/dxui/MacroDefinition.C | |
dx-4.4.4/src/uipp/dxui/MacroDefinition.h | |
dx-4.4.4/src/uipp/dxui/MacroNode.C | |
dx-4.4.4/src/uipp/dxui/MacroNode.h | |
dx-4.4.4/src/uipp/dxui/MacroParameterDefinition.C | |
dx-4.4.4/src/uipp/dxui/MacroParameterDefinition.h | |
dx-4.4.4/src/uipp/dxui/MacroParameterNode.C | |
dx-4.4.4/src/uipp/dxui/MacroParameterNode.h | |
dx-4.4.4/src/uipp/dxui/Main.C | |
dx-4.4.4/src/uipp/dxui/Makefile.am | |
dx-4.4.4/src/uipp/dxui/Makefile.in | |
dx-4.4.4/src/uipp/dxui/ModuleMessagingNode.C | |
dx-4.4.4/src/uipp/dxui/ModuleMessagingNode.h | |
dx-4.4.4/src/uipp/dxui/NewCommand.C | |
dx-4.4.4/src/uipp/dxui/NewCommand.h | |
dx-4.4.4/src/uipp/dxui/Node.C | |
dx-4.4.4/src/uipp/dxui/Node.h | |
dx-4.4.4/src/uipp/dxui/NodeDefinition.C | |
dx-4.4.4/src/uipp/dxui/NodeDefinition.h | |
dx-4.4.4/src/uipp/dxui/NodeList.C | |
dx-4.4.4/src/uipp/dxui/NodeList.h | |
dx-4.4.4/src/uipp/dxui/NondrivenInteractorNode.C | |
dx-4.4.4/src/uipp/dxui/NondrivenInteractorNode.h | |
dx-4.4.4/src/uipp/dxui/NoUndoAnchorCommand.C | |
dx-4.4.4/src/uipp/dxui/NoUndoAnchorCommand.h | |
dx-4.4.4/src/uipp/dxui/NoUndoDXAppCommand.C | |
dx-4.4.4/src/uipp/dxui/NoUndoDXAppCommand.h | |
dx-4.4.4/src/uipp/dxui/NoUndoDXWindowCommand.C | |
dx-4.4.4/src/uipp/dxui/NoUndoDXWindowCommand.h | |
dx-4.4.4/src/uipp/dxui/NoUndoEditorCommand.C | |
dx-4.4.4/src/uipp/dxui/NoUndoEditorCommand.h | |
dx-4.4.4/src/uipp/dxui/NoUndoImageCommand.C | |
dx-4.4.4/src/uipp/dxui/NoUndoImageCommand.h | |
dx-4.4.4/src/uipp/dxui/NoUndoJavaNetCommand.C | |
dx-4.4.4/src/uipp/dxui/NoUndoJavaNetCommand.h | |
dx-4.4.4/src/uipp/dxui/NoUndoNetworkCommand.C | |
dx-4.4.4/src/uipp/dxui/NoUndoNetworkCommand.h | |
dx-4.4.4/src/uipp/dxui/NoUndoPanelCommand.C | |
dx-4.4.4/src/uipp/dxui/NoUndoPanelCommand.h | |
dx-4.4.4/src/uipp/dxui/OpenCommand.C | |
dx-4.4.4/src/uipp/dxui/OpenCommand.h | |
dx-4.4.4/src/uipp/dxui/OpenFileCommand.h | |
dx-4.4.4/src/uipp/dxui/ParameterDefinition.C | |
dx-4.4.4/src/uipp/dxui/ParameterDefinition.h | |
dx-4.4.4/src/uipp/dxui/PickDefinition.C | |
dx-4.4.4/src/uipp/dxui/PickDefinition.h | |
dx-4.4.4/src/uipp/dxui/PickNode.C | |
dx-4.4.4/src/uipp/dxui/PickNode.h | |
dx-4.4.4/src/uipp/dxui/PrintDefinition.C | |
dx-4.4.4/src/uipp/dxui/PrintDefinition.h | |
dx-4.4.4/src/uipp/dxui/PrintNode.C | |
dx-4.4.4/src/uipp/dxui/PrintNode.h | |
dx-4.4.4/src/uipp/dxui/ProbeDefinition.C | |
dx-4.4.4/src/uipp/dxui/ProbeDefinition.h | |
dx-4.4.4/src/uipp/dxui/ProbeNode.C | |
dx-4.4.4/src/uipp/dxui/ProbeNode.h | |
dx-4.4.4/src/uipp/dxui/ReceiverDefinition.C | |
dx-4.4.4/src/uipp/dxui/ReceiverDefinition.h | |
dx-4.4.4/src/uipp/dxui/ReceiverNode.C | |
dx-4.4.4/src/uipp/dxui/ReceiverNode.h | |
dx-4.4.4/src/uipp/dxui/ResetDefinition.C | |
dx-4.4.4/src/uipp/dxui/ResetDefinition.h | |
dx-4.4.4/src/uipp/dxui/ResetNode.C | |
dx-4.4.4/src/uipp/dxui/ResetNode.h | |
dx-4.4.4/src/uipp/dxui/SaveMacroCommand.C | |
dx-4.4.4/src/uipp/dxui/SaveMacroCommand.h | |
dx-4.4.4/src/uipp/dxui/ScalarDefinition.C | |
dx-4.4.4/src/uipp/dxui/ScalarDefinition.h | |
dx-4.4.4/src/uipp/dxui/ScalarInteractor.C | |
dx-4.4.4/src/uipp/dxui/ScalarInteractor.h | |
dx-4.4.4/src/uipp/dxui/ScalarListDefinition.C | |
dx-4.4.4/src/uipp/dxui/ScalarListDefinition.h | |
dx-4.4.4/src/uipp/dxui/ScalarListInteractor.C | |
dx-4.4.4/src/uipp/dxui/ScalarListInteractor.h | |
dx-4.4.4/src/uipp/dxui/ScalarListNode.C | |
dx-4.4.4/src/uipp/dxui/ScalarListNode.h | |
dx-4.4.4/src/uipp/dxui/ScalarNode.C | |
dx-4.4.4/src/uipp/dxui/ScalarNode.h | |
dx-4.4.4/src/uipp/dxui/SelectionDefinition.h | |
dx-4.4.4/src/uipp/dxui/SelectionNode.C | |
dx-4.4.4/src/uipp/dxui/SelectionNode.h | |
dx-4.4.4/src/uipp/dxui/SelectorDefinition.C | |
dx-4.4.4/src/uipp/dxui/SelectorDefinition.h | |
dx-4.4.4/src/uipp/dxui/SelectorInteractor.C | |
dx-4.4.4/src/uipp/dxui/SelectorInteractor.h | |
dx-4.4.4/src/uipp/dxui/SelectorListDefinition.C | |
dx-4.4.4/src/uipp/dxui/SelectorListDefinition.h | |
dx-4.4.4/src/uipp/dxui/SelectorListInteractor.C | |
dx-4.4.4/src/uipp/dxui/SelectorListInteractor.h | |
dx-4.4.4/src/uipp/dxui/SelectorListNode.C | |
dx-4.4.4/src/uipp/dxui/SelectorListNode.h | |
dx-4.4.4/src/uipp/dxui/SelectorListToggleInteractor.C | |
dx-4.4.4/src/uipp/dxui/SelectorListToggleInteractor.h | |
dx-4.4.4/src/uipp/dxui/SelectorNode.C | |
dx-4.4.4/src/uipp/dxui/SelectorNode.h | |
dx-4.4.4/src/uipp/dxui/SelectorPulldownInteractor.h | |
dx-4.4.4/src/uipp/dxui/SelectorRadioInteractor.C | |
dx-4.4.4/src/uipp/dxui/SelectorRadioInteractor.h | |
dx-4.4.4/src/uipp/dxui/SequencerDefinition.C | |
dx-4.4.4/src/uipp/dxui/SequencerDefinition.h | |
dx-4.4.4/src/uipp/dxui/SequencerNode.C | |
dx-4.4.4/src/uipp/dxui/SequencerNode.h | |
dx-4.4.4/src/uipp/dxui/ShadowedOutputDefinition.h | |
dx-4.4.4/src/uipp/dxui/ShadowedOutputNode.C | |
dx-4.4.4/src/uipp/dxui/ShadowedOutputNode.h | |
dx-4.4.4/src/uipp/dxui/SliderInteractor.C | |
dx-4.4.4/src/uipp/dxui/SliderInteractor.h | |
dx-4.4.4/src/uipp/dxui/StepperInteractor.C | |
dx-4.4.4/src/uipp/dxui/StepperInteractor.h | |
dx-4.4.4/src/uipp/dxui/StreaklineDefinition.C | |
dx-4.4.4/src/uipp/dxui/StreaklineDefinition.h | |
dx-4.4.4/src/uipp/dxui/StreaklineNode.C | |
dx-4.4.4/src/uipp/dxui/StreaklineNode.h | |
dx-4.4.4/src/uipp/dxui/ToggleDefinition.C | |
dx-4.4.4/src/uipp/dxui/ToggleDefinition.h | |
dx-4.4.4/src/uipp/dxui/ToggleInteractor.C | |
dx-4.4.4/src/uipp/dxui/ToggleInteractor.h | |
dx-4.4.4/src/uipp/dxui/ToggleNode.C | |
dx-4.4.4/src/uipp/dxui/ToggleNode.h | |
dx-4.4.4/src/uipp/dxui/ToggleToggleInteractor.C | |
dx-4.4.4/src/uipp/dxui/ToggleToggleInteractor.h | |
dx-4.4.4/src/uipp/dxui/ToolPanelCommand.C | |
dx-4.4.4/src/uipp/dxui/ToolPanelCommand.h | |
dx-4.4.4/src/uipp/dxui/TransmitterDefinition.C | |
dx-4.4.4/src/uipp/dxui/TransmitterDefinition.h | |
dx-4.4.4/src/uipp/dxui/TransmitterNode.C | |
dx-4.4.4/src/uipp/dxui/TransmitterNode.h | |
dx-4.4.4/src/uipp/dxui/UniqueNameNode.C | |
dx-4.4.4/src/uipp/dxui/UniqueNameNode.h | |
dx-4.4.4/src/uipp/dxui/ValueDefinition.C | |
dx-4.4.4/src/uipp/dxui/ValueDefinition.h | |
dx-4.4.4/src/uipp/dxui/ValueInteractor.C | |
dx-4.4.4/src/uipp/dxui/ValueInteractor.h | |
dx-4.4.4/src/uipp/dxui/ValueListDefinition.C | |
dx-4.4.4/src/uipp/dxui/ValueListDefinition.h | |
dx-4.4.4/src/uipp/dxui/ValueListInteractor.C | |
dx-4.4.4/src/uipp/dxui/ValueListInteractor.h | |
dx-4.4.4/src/uipp/dxui/ValueListNode.C | |
dx-4.4.4/src/uipp/dxui/ValueListNode.h | |
dx-4.4.4/src/uipp/dxui/ValueNode.C | |
dx-4.4.4/src/uipp/dxui/ValueNode.h | |
dx-4.4.4/src/uipp/dxui/VectorDefinition.C | |
dx-4.4.4/src/uipp/dxui/VectorDefinition.h | |
dx-4.4.4/src/uipp/dxui/VectorListDefinition.C | |
dx-4.4.4/src/uipp/dxui/VectorListDefinition.h | |
dx-4.4.4/src/uipp/dxui/ViewControlWhichCameraCommand.C | |
dx-4.4.4/src/uipp/dxui/ViewControlWhichCameraCommand.h | |
dx-4.4.4/src/uipp/dxuilib/ | |
dx-4.4.4/src/uipp/dxuilib/anchor.bm | |
dx-4.4.4/src/uipp/dxuilib/anim_mask.bm | |
dx-4.4.4/src/uipp/dxuilib/animation.bm | |
dx-4.4.4/src/uipp/dxuilib/AnnotationGroupManager.C | |
dx-4.4.4/src/uipp/dxuilib/AnnotationGroupManager.h | |
dx-4.4.4/src/uipp/dxuilib/ApplicIF.C | |
dx-4.4.4/src/uipp/dxuilib/ApplicIF.h | |
dx-4.4.4/src/uipp/dxuilib/Ark.C | |
dx-4.4.4/src/uipp/dxuilib/Ark.h | |
dx-4.4.4/src/uipp/dxuilib/ArkStandIn.C | |
dx-4.4.4/src/uipp/dxuilib/ArkStandIn.h | |
dx-4.4.4/src/uipp/dxuilib/AttributeParameter.C | |
dx-4.4.4/src/uipp/dxuilib/AttributeParameter.h | |
dx-4.4.4/src/uipp/dxuilib/._AutoAxesDialog.C | |
dx-4.4.4/src/uipp/dxuilib/AutoAxesDialog.C | |
dx-4.4.4/src/uipp/dxuilib/AutoAxesDialog.h | |
dx-4.4.4/src/uipp/dxuilib/BinaryParameter.h | |
dx-4.4.4/src/uipp/dxuilib/BuildIFDict.C | |
dx-4.4.4/src/uipp/dxuilib/Cacheability.h | |
dx-4.4.4/src/uipp/dxuilib/CDBAllocatorDictionary.C | |
dx-4.4.4/src/uipp/dxuilib/CDBAllocatorDictionary.h | |
dx-4.4.4/src/uipp/dxuilib/CDBInput.h | |
dx-4.4.4/src/uipp/dxuilib/CDBOutput.h | |
dx-4.4.4/src/uipp/dxuilib/CDBParameter.h | |
dx-4.4.4/src/uipp/dxuilib/CMDefaultResources.h | |
dx-4.4.4/src/uipp/dxuilib/._ColormapAddCtlDialog.C | |
dx-4.4.4/src/uipp/dxuilib/ColormapAddCtlDialog.C | |
dx-4.4.4/src/uipp/dxuilib/ColormapAddCtlDialog.h | |
dx-4.4.4/src/uipp/dxuilib/ColormapEditor.C | |
dx-4.4.4/src/uipp/dxuilib/ColormapEditor.h | |
dx-4.4.4/src/uipp/dxuilib/ColormapNBinsDialog.C | |
dx-4.4.4/src/uipp/dxuilib/ColormapNBinsDialog.h | |
dx-4.4.4/src/uipp/dxuilib/ColormapWaveDialog.C | |
dx-4.4.4/src/uipp/dxuilib/ColormapWaveDialog.h | |
dx-4.4.4/src/uipp/dxuilib/CommentStyle.C | |
dx-4.4.4/src/uipp/dxuilib/CommentStyle.h | |
dx-4.4.4/src/uipp/dxuilib/CommentStyleUser.C | |
dx-4.4.4/src/uipp/dxuilib/CommentStyleUser.h | |
dx-4.4.4/src/uipp/dxuilib/ComponentAttributes.h | |
dx-4.4.4/src/uipp/dxuilib/ComputeCDB.C | |
dx-4.4.4/src/uipp/dxuilib/ComputeCDB.h | |
dx-4.4.4/src/uipp/dxuilib/ConfigurationDialog.C | |
dx-4.4.4/src/uipp/dxuilib/ConfigurationDialog.h | |
dx-4.4.4/src/uipp/dxuilib/._ControlPanel.C | |
dx-4.4.4/src/uipp/dxuilib/ControlPanel.C | |
dx-4.4.4/src/uipp/dxuilib/ControlPanel.h | |
dx-4.4.4/src/uipp/dxuilib/ControlPanelAccessDialog.C | |
dx-4.4.4/src/uipp/dxuilib/ControlPanelAccessDialog.h | |
dx-4.4.4/src/uipp/dxuilib/ControlPanelGroupDialog.C | |
dx-4.4.4/src/uipp/dxuilib/ControlPanelGroupDialog.h | |
dx-4.4.4/src/uipp/dxuilib/ControlPanelWorkSpace.C | |
dx-4.4.4/src/uipp/dxuilib/ControlPanelWorkSpace.h | |
dx-4.4.4/src/uipp/dxuilib/CPDefaultResources.h | |
dx-4.4.4/src/uipp/dxuilib/CreateMacroDialog.C | |
dx-4.4.4/src/uipp/dxuilib/CreateMacroDialog.h | |
dx-4.4.4/src/uipp/dxuilib/Decorator.C | |
dx-4.4.4/src/uipp/dxuilib/Decorator.h | |
dx-4.4.4/src/uipp/dxuilib/DecoratorInfo.h | |
dx-4.4.4/src/uipp/dxuilib/DecoratorStyle.C | |
dx-4.4.4/src/uipp/dxuilib/DecoratorStyle.h | |
dx-4.4.4/src/uipp/dxuilib/delete.C | |
dx-4.4.4/src/uipp/dxuilib/DescrDialog.C | |
dx-4.4.4/src/uipp/dxuilib/DescrDialog.h | |
dx-4.4.4/src/uipp/dxuilib/DXAnchorWindow.C | |
dx-4.4.4/src/uipp/dxuilib/DXAnchorWindow.h | |
dx-4.4.4/src/uipp/dxuilib/DXApplication.C | |
dx-4.4.4/src/uipp/dxuilib/DXApplication.h | |
dx-4.4.4/src/uipp/dxuilib/DXChild.C | |
dx-4.4.4/src/uipp/dxuilib/DXChild.h | |
dx-4.4.4/src/uipp/dxuilib/DXDragSource.C | |
dx-4.4.4/src/uipp/dxuilib/DXDragSource.h | |
dx-4.4.4/src/uipp/dxuilib/DXDropSite.C | |
dx-4.4.4/src/uipp/dxuilib/DXDropSite.h | |
dx-4.4.4/src/uipp/dxuilib/DXExecCtl.C | |
dx-4.4.4/src/uipp/dxuilib/DXExecCtl.h | |
dx-4.4.4/src/uipp/dxuilib/DXLinkHandler.C | |
dx-4.4.4/src/uipp/dxuilib/DXLinkHandler.h | |
dx-4.4.4/src/uipp/dxuilib/dxmac.h | |
dx-4.4.4/src/uipp/dxuilib/DXPacketIF.C | |
dx-4.4.4/src/uipp/dxuilib/DXPacketIF.h | |
dx-4.4.4/src/uipp/dxuilib/DXVersion.h | |
dx-4.4.4/src/uipp/dxuilib/DXWDefaultResources.h | |
dx-4.4.4/src/uipp/dxuilib/._DXWindow.C | |
dx-4.4.4/src/uipp/dxuilib/DXWindow.C | |
dx-4.4.4/src/uipp/dxuilib/DXWindow.h | |
dx-4.4.4/src/uipp/dxuilib/EditorToolSelector.C | |
dx-4.4.4/src/uipp/dxuilib/EditorToolSelector.h | |
dx-4.4.4/src/uipp/dxuilib/._EditorWindow.C | |
dx-4.4.4/src/uipp/dxuilib/EditorWindow.C | |
dx-4.4.4/src/uipp/dxuilib/EditorWindow.h | |
dx-4.4.4/src/uipp/dxuilib/._EditorWorkSpace.C | |
dx-4.4.4/src/uipp/dxuilib/EditorWorkSpace.C | |
dx-4.4.4/src/uipp/dxuilib/EditorWorkSpace.h | |
dx-4.4.4/src/uipp/dxuilib/enums.h | |
dx-4.4.4/src/uipp/dxuilib/EWDefaultResources.h | |
dx-4.4.4/src/uipp/dxuilib/FileSelectorDialog.C | |
dx-4.4.4/src/uipp/dxuilib/FileSelectorDialog.h | |
dx-4.4.4/src/uipp/dxuilib/._FileSelectorInstance.C | |
dx-4.4.4/src/uipp/dxuilib/FileSelectorInstance.C | |
dx-4.4.4/src/uipp/dxuilib/._FileSelectorInstance.h | |
dx-4.4.4/src/uipp/dxuilib/FileSelectorInstance.h | |
dx-4.4.4/src/uipp/dxuilib/FindStack.C | |
dx-4.4.4/src/uipp/dxuilib/FindStack.h | |
dx-4.4.4/src/uipp/dxuilib/FindToolDialog.C | |
dx-4.4.4/src/uipp/dxuilib/FindToolDialog.h | |
dx-4.4.4/src/uipp/dxuilib/GetSetConversionDialog.C | |
dx-4.4.4/src/uipp/dxuilib/GetSetConversionDialog.h | |
dx-4.4.4/src/uipp/dxuilib/gifmac.h | |
dx-4.4.4/src/uipp/dxuilib/._GraphLayout.C | |
dx-4.4.4/src/uipp/dxuilib/GraphLayout.C | |
dx-4.4.4/src/uipp/dxuilib/GraphLayout.h | |
dx-4.4.4/src/uipp/dxuilib/GridDialog.C | |
dx-4.4.4/src/uipp/dxuilib/GridDialog.h | |
dx-4.4.4/src/uipp/dxuilib/GroupedObject.C | |
dx-4.4.4/src/uipp/dxuilib/GroupedObject.h | |
dx-4.4.4/src/uipp/dxuilib/GroupManager.C | |
dx-4.4.4/src/uipp/dxuilib/GroupManager.h | |
dx-4.4.4/src/uipp/dxuilib/GroupStyle.C | |
dx-4.4.4/src/uipp/dxuilib/GroupStyle.h | |
dx-4.4.4/src/uipp/dxuilib/HelpOnNetworkDialog.C | |
dx-4.4.4/src/uipp/dxuilib/HelpOnNetworkDialog.h | |
dx-4.4.4/src/uipp/dxuilib/HelpOnPanelDialog.C | |
dx-4.4.4/src/uipp/dxuilib/HelpOnPanelDialog.h | |
dx-4.4.4/src/uipp/dxuilib/ImageCDB.C | |
dx-4.4.4/src/uipp/dxuilib/ImageCDB.h | |
dx-4.4.4/src/uipp/dxuilib/ImageFileDialog.C | |
dx-4.4.4/src/uipp/dxuilib/ImageFileDialog.h | |
dx-4.4.4/src/uipp/dxuilib/ImageFormat.C | |
dx-4.4.4/src/uipp/dxuilib/ImageFormat.h | |
dx-4.4.4/src/uipp/dxuilib/._ImageFormatDialog.C | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatDialog.C | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatDialog.h | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatGIF.C | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatGIF.h | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatIM.C | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatIM.h | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatMIF.C | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatMIF.h | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatPSColor.C | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatPSColor.h | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatPSColorEnc.C | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatPSColorEnc.h | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatPSGrey.C | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatPSGrey.h | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatPSGreyEnc.C | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatPSGreyEnc.h | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatREX.C | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatREX.h | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatRGB.C | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatRGB.h | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatTIF.C | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatTIF.h | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatYUV.C | |
dx-4.4.4/src/uipp/dxuilib/ImageFormatYUV.h | |
dx-4.4.4/src/uipp/dxuilib/imagemac.h | |
dx-4.4.4/src/uipp/dxuilib/imagemac.net | |
dx-4.4.4/src/uipp/dxuilib/ImageNodeUtils.C | |
dx-4.4.4/src/uipp/dxuilib/ImageWindow.C | |
dx-4.4.4/src/uipp/dxuilib/ImageWindow.h | |
dx-4.4.4/src/uipp/dxuilib/InsertNetworkDialog.C | |
dx-4.4.4/src/uipp/dxuilib/InsertNetworkDialog.h | |
dx-4.4.4/src/uipp/dxuilib/._InteractorInstance.C | |
dx-4.4.4/src/uipp/dxuilib/InteractorInstance.C | |
dx-4.4.4/src/uipp/dxuilib/InteractorInstance.h | |
dx-4.4.4/src/uipp/dxuilib/InteractorStandIn.C | |
dx-4.4.4/src/uipp/dxuilib/InteractorStandIn.h | |
dx-4.4.4/src/uipp/dxuilib/InteractorStyle.C | |
dx-4.4.4/src/uipp/dxuilib/InteractorStyle.h | |
dx-4.4.4/src/uipp/dxuilib/ItalicLabeledStandIn.C | |
dx-4.4.4/src/uipp/dxuilib/ItalicLabeledStandIn.h | |
dx-4.4.4/src/uipp/dxuilib/IWDefaultResources.h | |
dx-4.4.4/src/uipp/dxuilib/._JavaNet.C | |
dx-4.4.4/src/uipp/dxuilib/JavaNet.C | |
dx-4.4.4/src/uipp/dxuilib/JavaNet.h | |
dx-4.4.4/src/uipp/dxuilib/._LabelDecorator.C | |
dx-4.4.4/src/uipp/dxuilib/LabelDecorator.C | |
dx-4.4.4/src/uipp/dxuilib/LabelDecorator.h | |
dx-4.4.4/src/uipp/dxuilib/LabeledStandIn.C | |
dx-4.4.4/src/uipp/dxuilib/LabeledStandIn.h | |
dx-4.4.4/src/uipp/dxuilib/LinkHandler.C | |
dx-4.4.4/src/uipp/dxuilib/LinkHandler.h | |
dx-4.4.4/src/uipp/dxuilib/LoadMacroDialog.C | |
dx-4.4.4/src/uipp/dxuilib/LoadMacroDialog.h | |
dx-4.4.4/src/uipp/dxuilib/LoadMDFDialog.C | |
dx-4.4.4/src/uipp/dxuilib/LoadMDFDialog.h | |
dx-4.4.4/src/uipp/dxuilib/local.mk | |
dx-4.4.4/src/uipp/dxuilib/local.mk.in | |
dx-4.4.4/src/uipp/dxuilib/LocalAttributes.h | |
dx-4.4.4/src/uipp/dxuilib/make.image.sh | |
dx-4.4.4/src/uipp/dxuilib/make.sequence.sh | |
dx-4.4.4/src/uipp/dxuilib/Makefile.am | |
dx-4.4.4/src/uipp/dxuilib/Makefile.in | |
dx-4.4.4/src/uipp/dxuilib/moduledrag.bm | |
dx-4.4.4/src/uipp/dxuilib/moduledragmask.bm | |
dx-4.4.4/src/uipp/dxuilib/MoveNodesDialog.C | |
dx-4.4.4/src/uipp/dxuilib/MoveNodesDialog.h | |
dx-4.4.4/src/uipp/dxuilib/MsgWin.C | |
dx-4.4.4/src/uipp/dxuilib/MsgWin.h | |
dx-4.4.4/src/uipp/dxuilib/MWClearCmd.C | |
dx-4.4.4/src/uipp/dxuilib/MWClearCmd.h | |
dx-4.4.4/src/uipp/dxuilib/MWDefaultResources.h | |
dx-4.4.4/src/uipp/dxuilib/MWFileDialog.C | |
dx-4.4.4/src/uipp/dxuilib/MWFileDialog.h | |
dx-4.4.4/src/uipp/dxuilib/NDAllocatorDictionary.C | |
dx-4.4.4/src/uipp/dxuilib/NDAllocatorDictionary.h | |
dx-4.4.4/src/uipp/dxuilib/net.lex | |
dx-4.4.4/src/uipp/dxuilib/net.y | |
dx-4.4.4/src/uipp/dxuilib/net2c | |
dx-4.4.4/src/uipp/dxuilib/Network.C | |
dx-4.4.4/src/uipp/dxuilib/Network.h | |
dx-4.4.4/src/uipp/dxuilib/netyacc.awk | |
dx-4.4.4/src/uipp/dxuilib/netyacc.c | |
dx-4.4.4/src/uipp/dxuilib/new.C | |
dx-4.4.4/src/uipp/dxuilib/NoUndoMWCmd.C | |
dx-4.4.4/src/uipp/dxuilib/NoUndoMWCmd.h | |
dx-4.4.4/src/uipp/dxuilib/ntractor.bm | |
dx-4.4.4/src/uipp/dxuilib/ntractormask.bm | |
dx-4.4.4/src/uipp/dxuilib/oem.C | |
dx-4.4.4/src/uipp/dxuilib/oem.h | |
dx-4.4.4/src/uipp/dxuilib/OpenCFGDialog.C | |
dx-4.4.4/src/uipp/dxuilib/OpenCFGDialog.h | |
dx-4.4.4/src/uipp/dxuilib/OpenColormapDialog.C | |
dx-4.4.4/src/uipp/dxuilib/OpenColormapDialog.h | |
dx-4.4.4/src/uipp/dxuilib/OpenNetCommentDialog.C | |
dx-4.4.4/src/uipp/dxuilib/OpenNetCommentDialog.h | |
dx-4.4.4/src/uipp/dxuilib/OpenNetworkDialog.C | |
dx-4.4.4/src/uipp/dxuilib/OpenNetworkDialog.h | |
dx-4.4.4/src/uipp/dxuilib/PacketHandler.C | |
dx-4.4.4/src/uipp/dxuilib/PacketHandler.h | |
dx-4.4.4/src/uipp/dxuilib/._PacketIF.C | |
dx-4.4.4/src/uipp/dxuilib/PacketIF.C | |
dx-4.4.4/src/uipp/dxuilib/PacketIF.h | |
dx-4.4.4/src/uipp/dxuilib/pagedrag.bm | |
dx-4.4.4/src/uipp/dxuilib/pagedragmask.bm | |
dx-4.4.4/src/uipp/dxuilib/PageGroupManager.C | |
dx-4.4.4/src/uipp/dxuilib/PageGroupManager.h | |
dx-4.4.4/src/uipp/dxuilib/PageSelector.C | |
dx-4.4.4/src/uipp/dxuilib/PageSelector.h | |
dx-4.4.4/src/uipp/dxuilib/PageTab.C | |
dx-4.4.4/src/uipp/dxuilib/PageTab.h | |
dx-4.4.4/src/uipp/dxuilib/PanelAccessManager.C | |
dx-4.4.4/src/uipp/dxuilib/PanelAccessManager.h | |
dx-4.4.4/src/uipp/dxuilib/PanelGroupManager.C | |
dx-4.4.4/src/uipp/dxuilib/PanelGroupManager.h | |
dx-4.4.4/src/uipp/dxuilib/Parameter.C | |
dx-4.4.4/src/uipp/dxuilib/Parameter.h | |
dx-4.4.4/src/uipp/dxuilib/ParameterCDB.C | |
dx-4.4.4/src/uipp/dxuilib/ParameterCDB.h | |
dx-4.4.4/src/uipp/dxuilib/Parse.h | |
dx-4.4.4/src/uipp/dxuilib/ParseMDF.C | |
dx-4.4.4/src/uipp/dxuilib/ParseMDF.h | |
dx-4.4.4/src/uipp/dxuilib/PixelImageFormat.C | |
dx-4.4.4/src/uipp/dxuilib/PixelImageFormat.h | |
dx-4.4.4/src/uipp/dxuilib/postit.bm | |
dx-4.4.4/src/uipp/dxuilib/._PostScriptImageFormat.C | |
dx-4.4.4/src/uipp/dxuilib/PostScriptImageFormat.C | |
dx-4.4.4/src/uipp/dxuilib/PostScriptImageFormat.h | |
dx-4.4.4/src/uipp/dxuilib/PrintImageDialog.C | |
dx-4.4.4/src/uipp/dxuilib/PrintImageDialog.h | |
dx-4.4.4/src/uipp/dxuilib/PrintProgramDialog.C | |
dx-4.4.4/src/uipp/dxuilib/PrintProgramDialog.h | |
dx-4.4.4/src/uipp/dxuilib/PrintProgramFileDialog.C | |
dx-4.4.4/src/uipp/dxuilib/PrintProgramFileDialog.h | |
dx-4.4.4/src/uipp/dxuilib/ProcessGroupAssignDialog.C | |
dx-4.4.4/src/uipp/dxuilib/ProcessGroupAssignDialog.h | |
dx-4.4.4/src/uipp/dxuilib/ProcessGroupCreateDialog.C | |
dx-4.4.4/src/uipp/dxuilib/ProcessGroupCreateDialog.h | |
dx-4.4.4/src/uipp/dxuilib/ProcessGroupManager.C | |
dx-4.4.4/src/uipp/dxuilib/ProcessGroupManager.h | |
dx-4.4.4/src/uipp/dxuilib/ProcessGroupOptionsDialog.C | |
dx-4.4.4/src/uipp/dxuilib/ProcessGroupOptionsDialog.h | |
dx-4.4.4/src/uipp/dxuilib/QueuedPackets.C | |
dx-4.4.4/src/uipp/dxuilib/QueuedPackets.h | |
dx-4.4.4/src/uipp/dxuilib/RenderingOptionsDialog.C | |
dx-4.4.4/src/uipp/dxuilib/RenderingOptionsDialog.h | |
dx-4.4.4/src/uipp/dxuilib/._ResourceManager.C | |
dx-4.4.4/src/uipp/dxuilib/ResourceManager.C | |
dx-4.4.4/src/uipp/dxuilib/ResourceManager.h | |
dx-4.4.4/src/uipp/dxuilib/SaveAsCCodeDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SaveAsCCodeDialog.h | |
dx-4.4.4/src/uipp/dxuilib/SaveAsDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SaveAsDialog.h | |
dx-4.4.4/src/uipp/dxuilib/SaveCFGDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SaveCFGDialog.h | |
dx-4.4.4/src/uipp/dxuilib/SaveImageDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SaveImageDialog.h | |
dx-4.4.4/src/uipp/dxuilib/saw_sol.bm | |
dx-4.4.4/src/uipp/dxuilib/saw_sor.bm | |
dx-4.4.4/src/uipp/dxuilib/._ScalarInstance.C | |
dx-4.4.4/src/uipp/dxuilib/ScalarInstance.C | |
dx-4.4.4/src/uipp/dxuilib/ScalarInstance.h | |
dx-4.4.4/src/uipp/dxuilib/ScalarListInstance.C | |
dx-4.4.4/src/uipp/dxuilib/ScalarListInstance.h | |
dx-4.4.4/src/uipp/dxuilib/SelectionAttrDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SelectionAttrDialog.h | |
dx-4.4.4/src/uipp/dxuilib/SelectionInstance.C | |
dx-4.4.4/src/uipp/dxuilib/SelectionInstance.h | |
dx-4.4.4/src/uipp/dxuilib/._SelectorInstance.C | |
dx-4.4.4/src/uipp/dxuilib/SelectorInstance.C | |
dx-4.4.4/src/uipp/dxuilib/SelectorInstance.h | |
dx-4.4.4/src/uipp/dxuilib/._SelectorListInstance.C | |
dx-4.4.4/src/uipp/dxuilib/SelectorListInstance.C | |
dx-4.4.4/src/uipp/dxuilib/SelectorListInstance.h | |
dx-4.4.4/src/uipp/dxuilib/._SeparatorDecorator.C | |
dx-4.4.4/src/uipp/dxuilib/SeparatorDecorator.C | |
dx-4.4.4/src/uipp/dxuilib/SeparatorDecorator.h | |
dx-4.4.4/src/uipp/dxuilib/seq2c | |
dx-4.4.4/src/uipp/dxuilib/sequence.h | |
dx-4.4.4/src/uipp/dxuilib/sequence.net | |
dx-4.4.4/src/uipp/dxuilib/SequencerWindow.C | |
dx-4.4.4/src/uipp/dxuilib/SequencerWindow.h | |
dx-4.4.4/src/uipp/dxuilib/SetAnnotatorTextDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SetAnnotatorTextDialog.h | |
dx-4.4.4/src/uipp/dxuilib/SetAttrDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SetAttrDialog.h | |
dx-4.4.4/src/uipp/dxuilib/SetBGColorDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SetBGColorDialog.h | |
dx-4.4.4/src/uipp/dxuilib/SetColormapNameDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SetColormapNameDialog.h | |
dx-4.4.4/src/uipp/dxuilib/SetDecoratorTextDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SetDecoratorTextDialog.h | |
dx-4.4.4/src/uipp/dxuilib/SetImageNameDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SetImageNameDialog.h | |
dx-4.4.4/src/uipp/dxuilib/SetInteractorNameDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SetInteractorNameDialog.h | |
dx-4.4.4/src/uipp/dxuilib/SetMacroNameDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SetMacroNameDialog.h | |
dx-4.4.4/src/uipp/dxuilib/SetNetworkCommentDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SetNetworkCommentDialog.h | |
dx-4.4.4/src/uipp/dxuilib/SetPageNameDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SetPageNameDialog.h | |
dx-4.4.4/src/uipp/dxuilib/SetPanelCommentDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SetPanelCommentDialog.h | |
dx-4.4.4/src/uipp/dxuilib/SetPanelNameDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SetPanelNameDialog.h | |
dx-4.4.4/src/uipp/dxuilib/._SetScalarAttrDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SetScalarAttrDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SetScalarAttrDialog.h | |
dx-4.4.4/src/uipp/dxuilib/SetSeparatorAttrDlg.C | |
dx-4.4.4/src/uipp/dxuilib/SetSeparatorAttrDlg.h | |
dx-4.4.4/src/uipp/dxuilib/SetVectorAttrDialog.C | |
dx-4.4.4/src/uipp/dxuilib/SetVectorAttrDialog.h | |
dx-4.4.4/src/uipp/dxuilib/SIAllocatorDictionary.C | |
dx-4.4.4/src/uipp/dxuilib/SIAllocatorDictionary.h | |
dx-4.4.4/src/uipp/dxuilib/square_sol.bm | |
dx-4.4.4/src/uipp/dxuilib/square_sor.bm | |
dx-4.4.4/src/uipp/dxuilib/StandIn.C | |
dx-4.4.4/src/uipp/dxuilib/StandIn.h | |
dx-4.4.4/src/uipp/dxuilib/StartOptionsDialog.C | |
dx-4.4.4/src/uipp/dxuilib/StartOptionsDialog.h | |
dx-4.4.4/src/uipp/dxuilib/StartServerDialog.C | |
dx-4.4.4/src/uipp/dxuilib/StartServerDialog.h | |
dx-4.4.4/src/uipp/dxuilib/step.bm | |
dx-4.4.4/src/uipp/dxuilib/Tab.C | |
dx-4.4.4/src/uipp/dxuilib/Tab.h | |
dx-4.4.4/src/uipp/dxuilib/._ThrottleDialog.C | |
dx-4.4.4/src/uipp/dxuilib/ThrottleDialog.C | |
dx-4.4.4/src/uipp/dxuilib/ThrottleDialog.h | |
dx-4.4.4/src/uipp/dxuilib/._TickLabel.C | |
dx-4.4.4/src/uipp/dxuilib/TickLabel.C | |
dx-4.4.4/src/uipp/dxuilib/TickLabel.h | |
dx-4.4.4/src/uipp/dxuilib/TickLabelList.C | |
dx-4.4.4/src/uipp/dxuilib/TickLabelList.h | |
dx-4.4.4/src/uipp/dxuilib/ticks_in.bm | |
dx-4.4.4/src/uipp/dxuilib/ticks_in_ins.bm | |
dx-4.4.4/src/uipp/dxuilib/ticks_out.bm | |
dx-4.4.4/src/uipp/dxuilib/ticks_out_ins.bm | |
dx-4.4.4/src/uipp/dxuilib/ToggleAttrDialog.C | |
dx-4.4.4/src/uipp/dxuilib/ToggleAttrDialog.h | |
dx-4.4.4/src/uipp/dxuilib/._ToggleInstance.C | |
dx-4.4.4/src/uipp/dxuilib/ToggleInstance.C | |
dx-4.4.4/src/uipp/dxuilib/ToggleInstance.h | |
dx-4.4.4/src/uipp/dxuilib/tooldrag.bm | |
dx-4.4.4/src/uipp/dxuilib/tooldragmask.bm | |
dx-4.4.4/src/uipp/dxuilib/._ToolSelector.C | |
dx-4.4.4/src/uipp/dxuilib/ToolSelector.C | |
dx-4.4.4/src/uipp/dxuilib/ToolSelector.h | |
dx-4.4.4/src/uipp/dxuilib/TransferAccelerator.c | |
dx-4.4.4/src/uipp/dxuilib/TransferAccelerator.h | |
dx-4.4.4/src/uipp/dxuilib/UndoableAction.h | |
dx-4.4.4/src/uipp/dxuilib/UndoAddArk.C | |
dx-4.4.4/src/uipp/dxuilib/UndoAddArk.h | |
dx-4.4.4/src/uipp/dxuilib/UndoDeletion.C | |
dx-4.4.4/src/uipp/dxuilib/UndoDeletion.h | |
dx-4.4.4/src/uipp/dxuilib/UndoGrid.C | |
dx-4.4.4/src/uipp/dxuilib/UndoGrid.h | |
dx-4.4.4/src/uipp/dxuilib/UndoMove.C | |
dx-4.4.4/src/uipp/dxuilib/UndoMove.h | |
dx-4.4.4/src/uipp/dxuilib/UndoNode.C | |
dx-4.4.4/src/uipp/dxuilib/UndoNode.h | |
dx-4.4.4/src/uipp/dxuilib/UndoRepeatableTab.C | |
dx-4.4.4/src/uipp/dxuilib/UndoRepeatableTab.h | |
dx-4.4.4/src/uipp/dxuilib/ValueInstance.C | |
dx-4.4.4/src/uipp/dxuilib/ValueInstance.h | |
dx-4.4.4/src/uipp/dxuilib/ValueListInstance.C | |
dx-4.4.4/src/uipp/dxuilib/ValueListInstance.h | |
dx-4.4.4/src/uipp/dxuilib/VCDefaultResources.h | |
dx-4.4.4/src/uipp/dxuilib/._ViewControlDialog.C | |
dx-4.4.4/src/uipp/dxuilib/ViewControlDialog.C | |
dx-4.4.4/src/uipp/dxuilib/ViewControlDialog.h | |
dx-4.4.4/src/uipp/dxuilib/VPEAnnotator.C | |
dx-4.4.4/src/uipp/dxuilib/VPEAnnotator.h | |
dx-4.4.4/src/uipp/dxuilib/VPEPage.C | |
dx-4.4.4/src/uipp/dxuilib/VPEPage.h | |
dx-4.4.4/src/uipp/dxuilib/VPEPostIt.C | |
dx-4.4.4/src/uipp/dxuilib/VPEPostIt.h | |
dx-4.4.4/src/uipp/dxuilib/VPERoot.C | |
dx-4.4.4/src/uipp/dxuilib/VPERoot.h | |
dx-4.4.4/src/uipp/dxuilib/vrmlmac.h | |
dx-4.4.4/src/uipp/dxuilib/._WorkSpaceComponent.C | |
dx-4.4.4/src/uipp/dxuilib/WorkSpaceComponent.C | |
dx-4.4.4/src/uipp/dxuilib/WorkSpaceComponent.h | |
dx-4.4.4/src/uipp/java/ | |
dx-4.4.4/src/uipp/java/CaptionLabels.java | |
dx-4.4.4/src/uipp/java/dx/ | |
dx-4.4.4/src/uipp/java/dx/client/ | |
dx-4.4.4/src/uipp/java/dx/client/AppletClient.java | |
dx-4.4.4/src/uipp/java/dx/client/AppletLoadThread.java | |
dx-4.4.4/src/uipp/java/dx/client/DXClient.java | |
dx-4.4.4/src/uipp/java/dx/client/DXClientThread.java | |
dx-4.4.4/src/uipp/java/dx/client/DXClientThreadCommand.java | |
dx-4.4.4/src/uipp/java/dx/client/Makefile.am | |
dx-4.4.4/src/uipp/java/dx/client/Makefile.in | |
dx-4.4.4/src/uipp/java/dx/client/StopThread.java | |
dx-4.4.4/src/uipp/java/dx/Makefile.am | |
dx-4.4.4/src/uipp/java/dx/Makefile.in | |
dx-4.4.4/src/uipp/java/dx/net/ | |
dx-4.4.4/src/uipp/java/dx/net/Arc.java | |
dx-4.4.4/src/uipp/java/dx/net/BinaryNode.java | |
dx-4.4.4/src/uipp/java/dx/net/CfgValues.java | |
dx-4.4.4/src/uipp/java/dx/net/ControlPanel.java | |
dx-4.4.4/src/uipp/java/dx/net/DrivenNode.java | |
dx-4.4.4/src/uipp/java/dx/net/DXApplication.java | |
dx-4.4.4/src/uipp/java/dx/net/DXLAppThread.java | |
dx-4.4.4/src/uipp/java/dx/net/DXLAppThreadCommand.java | |
dx-4.4.4/src/uipp/java/dx/net/DXLinkApplication.java | |
dx-4.4.4/src/uipp/java/dx/net/DXLinkHandler.java | |
dx-4.4.4/src/uipp/java/dx/net/DXLOutputNode.java | |
dx-4.4.4/src/uipp/java/dx/net/DXViewIF.java | |
dx-4.4.4/src/uipp/java/dx/net/Gnomon.java | |
dx-4.4.4/src/uipp/java/dx/net/ImageNode.java | |
dx-4.4.4/src/uipp/java/dx/net/ImageWindow.java | |
dx-4.4.4/src/uipp/java/dx/net/InteractorNode.java | |
dx-4.4.4/src/uipp/java/dx/net/Makefile.am | |
dx-4.4.4/src/uipp/java/dx/net/Makefile.in | |
dx-4.4.4/src/uipp/java/dx/net/Network.java | |
dx-4.4.4/src/uipp/java/dx/net/Node.java | |
dx-4.4.4/src/uipp/java/dx/net/NumericValues.java | |
dx-4.4.4/src/uipp/java/dx/net/._PacketIF.java | |
dx-4.4.4/src/uipp/java/dx/net/PacketIF.java | |
dx-4.4.4/src/uipp/java/dx/net/PickNode.java | |
dx-4.4.4/src/uipp/java/dx/net/ResetNode.java | |
dx-4.4.4/src/uipp/java/dx/net/ScalarNode.java | |
dx-4.4.4/src/uipp/java/dx/net/SelectionNode.java | |
dx-4.4.4/src/uipp/java/dx/net/SequencerNode.java | |
dx-4.4.4/src/uipp/java/dx/net/._TabbedPanel.java | |
dx-4.4.4/src/uipp/java/dx/net/TabbedPanel.java | |
dx-4.4.4/src/uipp/java/dx/net/ToggleNode.java | |
dx-4.4.4/src/uipp/java/dx/net/ValueNode.java | |
dx-4.4.4/src/uipp/java/dx/net/WebOptionsNode.java | |
dx-4.4.4/src/uipp/java/dx/net/WRLApplication.java | |
dx-4.4.4/src/uipp/java/dx/protocol/ | |
dx-4.4.4/src/uipp/java/dx/protocol/._clientMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/clientMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/doneMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/endExecMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/execOnceMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/loadMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/Makefile.am | |
dx-4.4.4/src/uipp/java/dx/protocol/Makefile.in | |
dx-4.4.4/src/uipp/java/dx/protocol/._message.java | |
dx-4.4.4/src/uipp/java/dx/protocol/message.java | |
dx-4.4.4/src/uipp/java/dx/protocol/messageMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/noopMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/sendValueMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/sequenceMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/server/ | |
dx-4.4.4/src/uipp/java/dx/protocol/server/Makefile.am | |
dx-4.4.4/src/uipp/java/dx/protocol/server/Makefile.in | |
dx-4.4.4/src/uipp/java/dx/protocol/server/serverMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/server/serverVersionMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/server/shutdownMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/server/startMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/server/statusMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/setidMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/setmacroMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/stepSeqMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/stopMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/threadMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/uptimeMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/usersMsg.java | |
dx-4.4.4/src/uipp/java/dx/protocol/visitsMsg.java | |
dx-4.4.4/src/uipp/java/dx/runtime/ | |
dx-4.4.4/src/uipp/java/dx/runtime/ArrowButton.java | |
dx-4.4.4/src/uipp/java/dx/runtime/BinaryInstance.java | |
dx-4.4.4/src/uipp/java/dx/runtime/Interactor.java | |
dx-4.4.4/src/uipp/java/dx/runtime/LabelGroup.java | |
dx-4.4.4/src/uipp/java/dx/runtime/ListSelector.java | |
dx-4.4.4/src/uipp/java/dx/runtime/Makefile.am | |
dx-4.4.4/src/uipp/java/dx/runtime/Makefile.in | |
dx-4.4.4/src/uipp/java/dx/runtime/Notifier.java | |
dx-4.4.4/src/uipp/java/dx/runtime/RadioGroup.java | |
dx-4.4.4/src/uipp/java/dx/runtime/ScalarInteractor.java | |
dx-4.4.4/src/uipp/java/dx/runtime/Selector.java | |
dx-4.4.4/src/uipp/java/dx/runtime/Separator.java | |
dx-4.4.4/src/uipp/java/dx/runtime/Stepper.java | |
dx-4.4.4/src/uipp/java/dx/runtime/StepperGroup.java | |
dx-4.4.4/src/uipp/java/dx/runtime/StepperInteractor.java | |
dx-4.4.4/src/uipp/java/dx/runtime/StringInteractor.java | |
dx-4.4.4/src/uipp/java/dx/runtime/Toggle.java | |
dx-4.4.4/src/uipp/java/dx/runtime/ToggleGroup.java | |
dx-4.4.4/src/uipp/java/DXServer.java | |
dx-4.4.4/src/uipp/java/exports.awk | |
dx-4.4.4/src/uipp/java/HTMLDisplay.java | |
dx-4.4.4/src/uipp/java/imageWindow.java | |
dx-4.4.4/src/uipp/java/layout/ | |
dx-4.4.4/src/uipp/java/layout/Makefile.am | |
dx-4.4.4/src/uipp/java/layout/Makefile.in | |
dx-4.4.4/src/uipp/java/layout/._SingleFiledLayout.java | |
dx-4.4.4/src/uipp/java/layout/SingleFiledLayout.java | |
dx-4.4.4/src/uipp/java/layout/._TableLayout.java | |
dx-4.4.4/src/uipp/java/layout/TableLayout.java | |
dx-4.4.4/src/uipp/java/layout/._TableLayoutConstants.java | |
dx-4.4.4/src/uipp/java/layout/TableLayoutConstants.java | |
dx-4.4.4/src/uipp/java/layout/._TableLayoutConstraints.java | |
dx-4.4.4/src/uipp/java/layout/TableLayoutConstraints.java | |
dx-4.4.4/src/uipp/java/._makeall.java | |
dx-4.4.4/src/uipp/java/makeall.java | |
dx-4.4.4/src/uipp/java/Makefile.am | |
dx-4.4.4/src/uipp/java/Makefile.in | |
dx-4.4.4/src/uipp/java/makewrl.java | |
dx-4.4.4/src/uipp/java/README | |
dx-4.4.4/src/uipp/java/server/ | |
dx-4.4.4/src/uipp/java/server/CleanUpDaemon.java | |
dx-4.4.4/src/uipp/java/server/ConnectionEntry.java | |
dx-4.4.4/src/uipp/java/server/._ConnectThread.java | |
dx-4.4.4/src/uipp/java/server/ConnectThread.java | |
dx-4.4.4/src/uipp/java/server/DXLink.c | |
dx-4.4.4/src/uipp/java/server/._DXServer.java | |
dx-4.4.4/src/uipp/java/server/DXServer.java | |
dx-4.4.4/src/uipp/java/server/dxserver.paths | |
dx-4.4.4/src/uipp/java/server/dxserver.paths.in | |
dx-4.4.4/src/uipp/java/server/DXServerThread.java | |
dx-4.4.4/src/uipp/java/server/._DXThread.java | |
dx-4.4.4/src/uipp/java/server/DXThread.java | |
dx-4.4.4/src/uipp/java/server/DXThreadCommand.java | |
dx-4.4.4/src/uipp/java/server/FileStyle.java | |
dx-4.4.4/src/uipp/java/server/FileStyleANY.java | |
dx-4.4.4/src/uipp/java/server/FileStyleHTM.java | |
dx-4.4.4/src/uipp/java/server/FileStyleHTML.java | |
dx-4.4.4/src/uipp/java/server/FileStyleWRAP.java | |
dx-4.4.4/src/uipp/java/server/macros/ | |
dx-4.4.4/src/uipp/java/server/macros/dxmac.net | |
dx-4.4.4/src/uipp/java/server/macros/gifmac.net | |
dx-4.4.4/src/uipp/java/server/macros/Makefile.am | |
dx-4.4.4/src/uipp/java/server/macros/Makefile.in | |
dx-4.4.4/src/uipp/java/server/macros/vrmlmac.net | |
dx-4.4.4/src/uipp/java/server/macros/weboptionsmac.net | |
dx-4.4.4/src/uipp/java/server/Makefile.am | |
dx-4.4.4/src/uipp/java/server/Makefile.in | |
dx-4.4.4/src/uipp/java/server/ServerCommand.java | |
dx-4.4.4/src/uipp/java/server/ServerThreadCommand.java | |
dx-4.4.4/src/uipp/java/server/startserver | |
dx-4.4.4/src/uipp/java/server/startserver.bat | |
dx-4.4.4/src/uipp/java/server/startserver.in | |
dx-4.4.4/src/uipp/java/server/StatusThread.java | |
dx-4.4.4/src/uipp/java/server/StatusThreadCommand.java | |
dx-4.4.4/src/uipp/java/server/stopserver | |
dx-4.4.4/src/uipp/java/Status.java | |
dx-4.4.4/src/uipp/Makefile.am | |
dx-4.4.4/src/uipp/Makefile.in | |
dx-4.4.4/src/uipp/mb/ | |
dx-4.4.4/src/uipp/mb/CommentDialog.C | |
dx-4.4.4/src/uipp/mb/CommentDialog.h | |
dx-4.4.4/src/uipp/mb/ConfirmedQCommand.C | |
dx-4.4.4/src/uipp/mb/ConfirmedQCommand.h | |
dx-4.4.4/src/uipp/mb/Main.C | |
dx-4.4.4/src/uipp/mb/Makefile.am | |
dx-4.4.4/src/uipp/mb/Makefile.in | |
dx-4.4.4/src/uipp/mb/MBApplication.C | |
dx-4.4.4/src/uipp/mb/MBApplication.h | |
dx-4.4.4/src/uipp/mb/MBCommand.C | |
dx-4.4.4/src/uipp/mb/MBCommand.h | |
dx-4.4.4/src/uipp/mb/MBGenerate.C | |
dx-4.4.4/src/uipp/mb/MBGenerate.h | |
dx-4.4.4/src/uipp/mb/MBMainWindow.C | |
dx-4.4.4/src/uipp/mb/MBMainWindow.h | |
dx-4.4.4/src/uipp/mb/MBNewCommand.C | |
dx-4.4.4/src/uipp/mb/MBNewCommand.h | |
dx-4.4.4/src/uipp/mb/MBParameter.C | |
dx-4.4.4/src/uipp/mb/MBParameter.h | |
dx-4.4.4/src/uipp/mb/OpenFileDialog.C | |
dx-4.4.4/src/uipp/mb/OpenFileDialog.h | |
dx-4.4.4/src/uipp/mb/OptionsDialog.C | |
dx-4.4.4/src/uipp/mb/OptionsDialog.h | |
dx-4.4.4/src/uipp/mb/QuitCommand.C | |
dx-4.4.4/src/uipp/mb/QuitCommand.h | |
dx-4.4.4/src/uipp/mb/SADialog.C | |
dx-4.4.4/src/uipp/mb/SADialog.h | |
dx-4.4.4/src/uipp/prompter/ | |
dx-4.4.4/src/uipp/prompter/Browser.C | |
dx-4.4.4/src/uipp/prompter/Browser.h | |
dx-4.4.4/src/uipp/prompter/BrowserCommand.C | |
dx-4.4.4/src/uipp/prompter/BrowserCommand.h | |
dx-4.4.4/src/uipp/prompter/BuildTCDict.C | |
dx-4.4.4/src/uipp/prompter/CDFChoice.C | |
dx-4.4.4/src/uipp/prompter/CDFChoice.h | |
dx-4.4.4/src/uipp/prompter/col_insens.bm | |
dx-4.4.4/src/uipp/prompter/col_sens.bm | |
dx-4.4.4/src/uipp/prompter/CommandTextPopup.C | |
dx-4.4.4/src/uipp/prompter/CommandTextPopup.h | |
dx-4.4.4/src/uipp/prompter/CommentDialog.C | |
dx-4.4.4/src/uipp/prompter/CommentDialog.h | |
dx-4.4.4/src/uipp/prompter/ConfirmedOpenCommand.C | |
dx-4.4.4/src/uipp/prompter/ConfirmedOpenCommand.h | |
dx-4.4.4/src/uipp/prompter/ConfirmedQCommand.C | |
dx-4.4.4/src/uipp/prompter/ConfirmedQCommand.h | |
dx-4.4.4/src/uipp/prompter/DataFileDialog.C | |
dx-4.4.4/src/uipp/prompter/DataFileDialog.h | |
dx-4.4.4/src/uipp/prompter/DXChoice.C | |
dx-4.4.4/src/uipp/prompter/DXChoice.h | |
dx-4.4.4/src/uipp/prompter/Field.C | |
dx-4.4.4/src/uipp/prompter/Field.h | |
dx-4.4.4/src/uipp/prompter/FileContents.C | |
dx-4.4.4/src/uipp/prompter/FileContents.h | |
dx-4.4.4/src/uipp/prompter/FilenameSelectDialog.C | |
dx-4.4.4/src/uipp/prompter/FilenameSelectDialog.h | |
dx-4.4.4/src/uipp/prompter/GARApplication.C | |
dx-4.4.4/src/uipp/prompter/._GARApplication.h | |
dx-4.4.4/src/uipp/prompter/GARApplication.h | |
dx-4.4.4/src/uipp/prompter/._GARChooserWindow.C | |
dx-4.4.4/src/uipp/prompter/GARChooserWindow.C | |
dx-4.4.4/src/uipp/prompter/GARChooserWindow.h | |
dx-4.4.4/src/uipp/prompter/GARCommand.C | |
dx-4.4.4/src/uipp/prompter/GARCommand.h | |
dx-4.4.4/src/uipp/prompter/._GARMainWindow.C | |
dx-4.4.4/src/uipp/prompter/GARMainWindow.C | |
dx-4.4.4/src/uipp/prompter/._GARMainWindow.h | |
dx-4.4.4/src/uipp/prompter/GARMainWindow.h | |
dx-4.4.4/src/uipp/prompter/GARNewCommand.C | |
dx-4.4.4/src/uipp/prompter/GARNewCommand.h | |
dx-4.4.4/src/uipp/prompter/grid1.bm | |
dx-4.4.4/src/uipp/prompter/grid2.bm | |
dx-4.4.4/src/uipp/prompter/grid3.bm | |
dx-4.4.4/src/uipp/prompter/grid4.bm | |
dx-4.4.4/src/uipp/prompter/GridChoice.C | |
dx-4.4.4/src/uipp/prompter/GridChoice.h | |
dx-4.4.4/src/uipp/prompter/HDFChoice.C | |
dx-4.4.4/src/uipp/prompter/HDFChoice.h | |
dx-4.4.4/src/uipp/prompter/ImageChoice.C | |
dx-4.4.4/src/uipp/prompter/ImageChoice.h | |
dx-4.4.4/src/uipp/prompter/ImportableChoice.C | |
dx-4.4.4/src/uipp/prompter/ImportableChoice.h | |
dx-4.4.4/src/uipp/prompter/Main.C | |
dx-4.4.4/src/uipp/prompter/Makefile.am | |
dx-4.4.4/src/uipp/prompter/Makefile.in | |
dx-4.4.4/src/uipp/prompter/MsgDialog.C | |
dx-4.4.4/src/uipp/prompter/MsgDialog.h | |
dx-4.4.4/src/uipp/prompter/NetCDFChoice.C | |
dx-4.4.4/src/uipp/prompter/NetCDFChoice.h | |
dx-4.4.4/src/uipp/prompter/NonimportableChoice.C | |
dx-4.4.4/src/uipp/prompter/NonimportableChoice.h | |
dx-4.4.4/src/uipp/prompter/NoUndoChoiceCommand.C | |
dx-4.4.4/src/uipp/prompter/NoUndoChoiceCommand.h | |
dx-4.4.4/src/uipp/prompter/NoUndoChooserCommand.C | |
dx-4.4.4/src/uipp/prompter/NoUndoChooserCommand.h | |
dx-4.4.4/src/uipp/prompter/NoUndoGARAppCommand.C | |
dx-4.4.4/src/uipp/prompter/NoUndoGARAppCommand.h | |
dx-4.4.4/src/uipp/prompter/OpenFileDialog.C | |
dx-4.4.4/src/uipp/prompter/OpenFileDialog.h | |
dx-4.4.4/src/uipp/prompter/QuitCommand.C | |
dx-4.4.4/src/uipp/prompter/QuitCommand.h | |
dx-4.4.4/src/uipp/prompter/RecordSeparator.C | |
dx-4.4.4/src/uipp/prompter/RecordSeparator.h | |
dx-4.4.4/src/uipp/prompter/row_insens.bm | |
dx-4.4.4/src/uipp/prompter/row_sens.bm | |
dx-4.4.4/src/uipp/prompter/SADialog.C | |
dx-4.4.4/src/uipp/prompter/SADialog.h | |
dx-4.4.4/src/uipp/prompter/SearchDialog.C | |
dx-4.4.4/src/uipp/prompter/SearchDialog.h | |
dx-4.4.4/src/uipp/prompter/series1.bm | |
dx-4.4.4/src/uipp/prompter/series1_insens.bm | |
dx-4.4.4/src/uipp/prompter/series2.bm | |
dx-4.4.4/src/uipp/prompter/series2_insens.bm | |
dx-4.4.4/src/uipp/prompter/SpreadSheetChoice.C | |
dx-4.4.4/src/uipp/prompter/SpreadSheetChoice.h | |
dx-4.4.4/src/uipp/prompter/TypeChoice.C | |
dx-4.4.4/src/uipp/prompter/TypeChoice.h | |
dx-4.4.4/src/uipp/prompter/vector1.bm | |
dx-4.4.4/src/uipp/prompter/vector1_insens.bm | |
dx-4.4.4/src/uipp/prompter/vector2.bm | |
dx-4.4.4/src/uipp/prompter/vector2_insens.bm | |
dx-4.4.4/src/uipp/startup/ | |
dx-4.4.4/src/uipp/startup/Main.C | |
dx-4.4.4/src/uipp/startup/Makefile.am | |
dx-4.4.4/src/uipp/startup/Makefile.in | |
dx-4.4.4/src/uipp/startup/NetFileDialog.C | |
dx-4.4.4/src/uipp/startup/NetFileDialog.h | |
dx-4.4.4/src/uipp/startup/._StartupApplication.C | |
dx-4.4.4/src/uipp/startup/StartupApplication.C | |
dx-4.4.4/src/uipp/startup/._StartupApplication.h | |
dx-4.4.4/src/uipp/startup/StartupApplication.h | |
dx-4.4.4/src/uipp/startup/StartupCommand.C | |
dx-4.4.4/src/uipp/startup/StartupCommand.h | |
dx-4.4.4/src/uipp/startup/StartupWindow.C | |
dx-4.4.4/src/uipp/startup/StartupWindow.h | |
dx-4.4.4/src/uipp/startup/TimedInfoDialog.C | |
dx-4.4.4/src/uipp/startup/TimedInfoDialog.h | |
dx-4.4.4/src/uipp/tutor/ | |
dx-4.4.4/src/uipp/tutor/Main.C | |
dx-4.4.4/src/uipp/tutor/Makefile.am | |
dx-4.4.4/src/uipp/tutor/Makefile.in | |
dx-4.4.4/src/uipp/tutor/NoUndoTutorAppCommand.C | |
dx-4.4.4/src/uipp/tutor/NoUndoTutorAppCommand.h | |
dx-4.4.4/src/uipp/tutor/TutorApplication.C | |
dx-4.4.4/src/uipp/tutor/TutorApplication.h | |
dx-4.4.4/src/uipp/tutor/TutorWindow.C | |
dx-4.4.4/src/uipp/tutor/TutorWindow.h | |
dx-4.4.4/src/uipp/ui/ | |
dx-4.4.4/src/uipp/ui/Basic2D.cfg | |
dx-4.4.4/src/uipp/ui/Basic2D.net | |
dx-4.4.4/src/uipp/ui/Basic3D.cfg | |
dx-4.4.4/src/uipp/ui/Basic3D.net | |
dx-4.4.4/src/uipp/ui/date.fmt | |
dx-4.4.4/src/uipp/ui/decision.cfg | |
dx-4.4.4/src/uipp/ui/decision.net | |
dx-4.4.4/src/uipp/ui/editorWindow | |
dx-4.4.4/src/uipp/ui/FacesLoopsEdges.cfg | |
dx-4.4.4/src/uipp/ui/FacesLoopsEdges.net | |
dx-4.4.4/src/uipp/ui/GARMWName | |
dx-4.4.4/src/uipp/ui/Gridded_2D_1var_notseries.cfg | |
dx-4.4.4/src/uipp/ui/Gridded_2D_1var_notseries.net | |
dx-4.4.4/src/uipp/ui/Gridded_2D_2ormorevar_notseries.cfg | |
dx-4.4.4/src/uipp/ui/Gridded_2D_2ormorevar_notseries.net | |
dx-4.4.4/src/uipp/ui/Gridded_3D_1var_notseries.cfg | |
dx-4.4.4/src/uipp/ui/Gridded_3D_1var_notseries.net | |
dx-4.4.4/src/uipp/ui/Gridded_3D_2ormorevar_notseries.cfg | |
dx-4.4.4/src/uipp/ui/Gridded_3D_2ormorevar_notseries.net | |
dx-4.4.4/src/uipp/ui/help.txt | |
dx-4.4.4/src/uipp/ui/icon50.dat | |
dx-4.4.4/src/uipp/ui/icon50.xpm | |
dx-4.4.4/src/uipp/ui/imageWindow | |
dx-4.4.4/src/uipp/ui/ImportSpreadsheetMatrix.cfg | |
dx-4.4.4/src/uipp/ui/ImportSpreadsheetMatrix.net | |
dx-4.4.4/src/uipp/ui/ImportSpreadsheetTable.cfg | |
dx-4.4.4/src/uipp/ui/ImportSpreadsheetTable.net | |
dx-4.4.4/src/uipp/ui/logo.dat | |
dx-4.4.4/src/uipp/ui/logo.xpm | |
dx-4.4.4/src/uipp/ui/Makefile.am | |
dx-4.4.4/src/uipp/ui/Makefile.in | |
dx-4.4.4/src/uipp/ui/ReadImage.cfg | |
dx-4.4.4/src/uipp/ui/ReadImage.net | |
dx-4.4.4/src/uipp/ui/support.txt | |
dx-4.4.4/src/uipp/ui/syntax.txt | |
dx-4.4.4/src/uipp/ui/testimp.net | |
dx-4.4.4/src/uipp/ui/testssheet.net | |
dx-4.4.4/src/uipp/ui/ui.mdf | |
dx-4.4.4/src/uipp/ui/UnGridded_2D_1var_notseries.cfg | |
dx-4.4.4/src/uipp/ui/UnGridded_2D_1var_notseries.net | |
dx-4.4.4/src/uipp/ui/UnGridded_2D_2ormorevar_notseries.cfg | |
dx-4.4.4/src/uipp/ui/UnGridded_2D_2ormorevar_notseries.net | |
dx-4.4.4/src/uipp/ui/UnGridded_3D_1var_notseries.cfg | |
dx-4.4.4/src/uipp/ui/UnGridded_3D_1var_notseries.net | |
dx-4.4.4/src/uipp/ui/UnGridded_3D_2ormorevar_notseries.cfg | |
dx-4.4.4/src/uipp/ui/UnGridded_3D_2ormorevar_notseries.net | |
dx-4.4.4/src/uipp/ui/viewer.net | |
dx-4.4.4/src/uipp/widgets/ | |
dx-4.4.4/src/uipp/widgets/backward.bm | |
dx-4.4.4/src/uipp/widgets/clipnotify.h | |
dx-4.4.4/src/uipp/widgets/Color.h | |
dx-4.4.4/src/uipp/widgets/ColorBar.c | |
dx-4.4.4/src/uipp/widgets/._ColorMapEditor.c | |
dx-4.4.4/src/uipp/widgets/ColorMapEditor.c | |
dx-4.4.4/src/uipp/widgets/ColorMapEditor.h | |
dx-4.4.4/src/uipp/widgets/ColorMapEditorP.h | |
dx-4.4.4/src/uipp/widgets/ColorRGB.c | |
dx-4.4.4/src/uipp/widgets/ControlColor.c | |
dx-4.4.4/src/uipp/widgets/ControlField.c | |
dx-4.4.4/src/uipp/widgets/ControlField.h | |
dx-4.4.4/src/uipp/widgets/ControlLine.c | |
dx-4.4.4/src/uipp/widgets/._ControlPoint.c | |
dx-4.4.4/src/uipp/widgets/ControlPoint.c | |
dx-4.4.4/src/uipp/widgets/ControlValue.c | |
dx-4.4.4/src/uipp/widgets/._Dial.c | |
dx-4.4.4/src/uipp/widgets/Dial.c | |
dx-4.4.4/src/uipp/widgets/Dial.h | |
dx-4.4.4/src/uipp/widgets/DialP.h | |
dx-4.4.4/src/uipp/widgets/Dither.c | |
dx-4.4.4/src/uipp/widgets/FFloat.c | |
dx-4.4.4/src/uipp/widgets/FFloat.h | |
dx-4.4.4/src/uipp/widgets/FieldCursor.h | |
dx-4.4.4/src/uipp/widgets/findcolor.c | |
dx-4.4.4/src/uipp/widgets/findcolor.h | |
dx-4.4.4/src/uipp/widgets/Findroute.c | |
dx-4.4.4/src/uipp/widgets/forward.bm | |
dx-4.4.4/src/uipp/widgets/frame.bm | |
dx-4.4.4/src/uipp/widgets/._FrameControl.c | |
dx-4.4.4/src/uipp/widgets/FrameControl.c | |
dx-4.4.4/src/uipp/widgets/FrameControl.h | |
dx-4.4.4/src/uipp/widgets/FrameControlP.h | |
dx-4.4.4/src/uipp/widgets/gamma.c | |
dx-4.4.4/src/uipp/widgets/gamma.h | |
dx-4.4.4/src/uipp/widgets/Grid.c | |
dx-4.4.4/src/uipp/widgets/Grid.h | |
dx-4.4.4/src/uipp/widgets/._Image.c | |
dx-4.4.4/src/uipp/widgets/Image.c | |
dx-4.4.4/src/uipp/widgets/Image.h | |
dx-4.4.4/src/uipp/widgets/ImageP.h | |
dx-4.4.4/src/uipp/widgets/loop.bm | |
dx-4.4.4/src/uipp/widgets/Makefile.am | |
dx-4.4.4/src/uipp/widgets/Makefile.in | |
dx-4.4.4/src/uipp/widgets/MultiText.c | |
dx-4.4.4/src/uipp/widgets/._MultiText.h | |
dx-4.4.4/src/uipp/widgets/MultiText.h | |
dx-4.4.4/src/uipp/widgets/MultiTextP.h | |
dx-4.4.4/src/uipp/widgets/Number.c | |
dx-4.4.4/src/uipp/widgets/Number.h | |
dx-4.4.4/src/uipp/widgets/NumberInput.h | |
dx-4.4.4/src/uipp/widgets/NumberOutput.c | |
dx-4.4.4/src/uipp/widgets/NumberP.h | |
dx-4.4.4/src/uipp/widgets/NumericList.c | |
dx-4.4.4/src/uipp/widgets/NumericList.h | |
dx-4.4.4/src/uipp/widgets/NumericListP.h | |
dx-4.4.4/src/uipp/widgets/palim.bm | |
dx-4.4.4/src/uipp/widgets/pause.bm | |
dx-4.4.4/src/uipp/widgets/Picture.c | |
dx-4.4.4/src/uipp/widgets/Picture.h | |
dx-4.4.4/src/uipp/widgets/PictureP.h | |
dx-4.4.4/src/uipp/widgets/._SlideBar.c | |
dx-4.4.4/src/uipp/widgets/SlideBar.c | |
dx-4.4.4/src/uipp/widgets/SlideBar.h | |
dx-4.4.4/src/uipp/widgets/SlideBarP.h | |
dx-4.4.4/src/uipp/widgets/Slider.c | |
dx-4.4.4/src/uipp/widgets/Slider.h | |
dx-4.4.4/src/uipp/widgets/SliderP.h | |
dx-4.4.4/src/uipp/widgets/step.bm | |
dx-4.4.4/src/uipp/widgets/stepb.bm | |
dx-4.4.4/src/uipp/widgets/stepf.bm | |
dx-4.4.4/src/uipp/widgets/Stepper.c | |
dx-4.4.4/src/uipp/widgets/Stepper.h | |
dx-4.4.4/src/uipp/widgets/StepperP.h | |
dx-4.4.4/src/uipp/widgets/stop.bm | |
dx-4.4.4/src/uipp/widgets/._VCRControl.c | |
dx-4.4.4/src/uipp/widgets/VCRControl.c | |
dx-4.4.4/src/uipp/widgets/VCRControl.h | |
dx-4.4.4/src/uipp/widgets/VCRControlP.h | |
dx-4.4.4/src/uipp/widgets/WorkspaceCallback.c | |
dx-4.4.4/src/uipp/widgets/WorkspaceCallback.h | |
dx-4.4.4/src/uipp/widgets/WorkspaceP.h | |
dx-4.4.4/src/uipp/widgets/WorkspaceW.c | |
dx-4.4.4/src/uipp/widgets/WorkspaceW.h | |
dx-4.4.4/src/uipp/widgets/XmDX.h | |
dx-4.4.4/windows/ | |
dx-4.4.4/windows/ar | |
dx-4.4.4/windows/cc | |
dx-4.4.4/windows/cpp | |
dx-4.4.4/windows/cxx | |
dx-4.4.4/windows/lib | |
dx-4.4.4/windows/Makefile.am | |
dx-4.4.4/windows/Makefile.in | |
dx-4.4.4/windows/mkdep | |
dx-4.4.4/windows/msenv | |
dx-4.4.4/windows/ranlib | |
dx-4.4.4/windows/README | |
[ -r /sw/fink/dists/local/main/finkinfo/dx.patch ] | |
patch -p1 < /sw/fink/dists/local/main/finkinfo/dx.patch | |
patching file bin/Makefile.am | |
patching file bin/dx.in | |
patching file configure.ac | |
patching file include/Makefile.am | |
patching file include/dx/Makefile.am | |
patching file man/catl/Makefile.am | |
patching file man/manl/Makefile.am | |
patching file src/exec/dxmods/_im_image.c | |
patching file src/uipp/base/StartWebBrowser.C | |
/sw/bin/autoreconf -f -i | |
configure.ac:307: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
configure.ac:307: the top level | |
configure.ac:307: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
configure.ac:307: the top level | |
configure.ac:899: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
configure.ac:899: the top level | |
configure.ac:990: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2662: _AC_LINK_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2679: AC_LINK_IFELSE is expanded from... | |
acinclude.m4:283: DX_LEX_YYLINENO is expanded from... | |
configure.ac:990: the top level | |
configure.ac:307: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
configure.ac:307: the top level | |
configure.ac:307: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
configure.ac:307: the top level | |
configure.ac:899: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
configure.ac:899: the top level | |
configure.ac:990: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2662: _AC_LINK_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2679: AC_LINK_IFELSE is expanded from... | |
acinclude.m4:283: DX_LEX_YYLINENO is expanded from... | |
configure.ac:990: the top level | |
libtoolize: putting auxiliary files in `.'. | |
libtoolize: copying file `./ltmain.sh' | |
libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and | |
libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. | |
libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. | |
configure.ac:307: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
configure.ac:307: the top level | |
configure.ac:307: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
configure.ac:307: the top level | |
configure.ac:899: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
configure.ac:899: the top level | |
configure.ac:990: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2662: _AC_LINK_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2679: AC_LINK_IFELSE is expanded from... | |
acinclude.m4:283: DX_LEX_YYLINENO is expanded from... | |
configure.ac:990: the top level | |
configure.ac:307: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
configure.ac:307: the top level | |
configure.ac:307: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
configure.ac:307: the top level | |
configure.ac:899: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
configure.ac:899: the top level | |
configure.ac:990: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2662: _AC_LINK_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2679: AC_LINK_IFELSE is expanded from... | |
acinclude.m4:283: DX_LEX_YYLINENO is expanded from... | |
configure.ac:990: the top level | |
configure.ac:307: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
configure.ac:307: the top level | |
configure.ac:307: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
configure.ac:307: the top level | |
configure.ac:899: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
configure.ac:899: the top level | |
configure.ac:990: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2662: _AC_LINK_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2679: AC_LINK_IFELSE is expanded from... | |
acinclude.m4:283: DX_LEX_YYLINENO is expanded from... | |
configure.ac:990: the top level | |
configure.ac:307: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
configure.ac:307: the top level | |
configure.ac:307: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
configure.ac:307: the top level | |
configure.ac:899: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... | |
configure.ac:899: the top level | |
configure.ac:990: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... | |
../../lib/autoconf/general.m4:2662: _AC_LINK_IFELSE is expanded from... | |
../../lib/autoconf/general.m4:2679: AC_LINK_IFELSE is expanded from... | |
acinclude.m4:283: DX_LEX_YYLINENO is expanded from... | |
configure.ac:990: the top level | |
src/exec/dpexec/Makefile.am: installing `./depcomp' | |
./configure ac_cv_exeext='' ac_cv_lib_xm_XmStringFree='no' ac_cv_lib_xt_XtVaGetValues='no' --prefix=/sw --prefix=/sw/share --exec_prefix=/sw --with-motif-libs=/sw/lib --with-motif-includes=/sw/include --without-javadx --with-large-arenas --enable-dependency-tracking --x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib | |
checking for a BSD-compatible install... /sw/bin/ginstall -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... /sw/bin/mkdir -p | |
checking for gawk... no | |
checking for mawk... no | |
checking for nawk... no | |
checking for awk... awk | |
checking whether make sets $(MAKE)... yes | |
checking build system type... x86_64-apple-darwin11.2.0 | |
checking host system type... x86_64-apple-darwin11.2.0 | |
checking how to print strings... printf | |
checking for style of include used by make... GNU | |
checking for gcc... gcc | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... no | |
checking for suffix of object files... o | |
checking whether we are using the GNU C compiler... yes | |
checking whether gcc accepts -g... yes | |
checking for gcc option to accept ISO C89... none needed | |
checking dependency style of gcc... gcc3 | |
checking for a sed that does not truncate output... /sw/bin/sed | |
checking for grep that handles long lines and -e... /usr/bin/grep | |
checking for egrep... /usr/bin/grep -E | |
checking for fgrep... /usr/bin/grep -F | |
checking for ld used by gcc... /usr/bin/ld | |
checking if the linker (/usr/bin/ld) is GNU ld... no | |
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm | |
checking the name lister (/usr/bin/nm) interface... BSD nm | |
checking whether ln -s works... yes | |
checking the maximum length of command line arguments... rm: cannot remove `conftest.dSYM': Is a directory | |
196608 | |
checking whether the shell understands some XSI constructs... yes | |
checking whether the shell understands "+="... yes | |
checking how to convert x86_64-apple-darwin11.2.0 file names to x86_64-apple-darwin11.2.0 format... func_convert_file_noop | |
checking how to convert x86_64-apple-darwin11.2.0 file names to toolchain format... func_convert_file_noop | |
checking for /usr/bin/ld option to reload object files... -r | |
checking for objdump... no | |
checking how to recognize dependent libraries... pass_all | |
checking for dlltool... no | |
checking how to associate runtime and link libraries... printf %s\n | |
checking for ar... ar | |
checking for archiver @FILE support... rm: cannot remove `conftest.dSYM': Is a directory | |
no | |
checking for strip... strip | |
checking for ranlib... ranlib | |
checking command to parse /usr/bin/nm output from gcc object... rm: cannot remove `conftest.dSYM': Is a directory | |
ok | |
checking for sysroot... no | |
checking for mt... no | |
checking if : is a manifest tool... no | |
checking for dsymutil... dsymutil | |
checking for nmedit... nmedit | |
checking for lipo... lipo | |
checking for otool... otool | |
checking for otool64... no | |
checking for -single_module linker flag... yes | |
checking for -exported_symbols_list linker flag... yes | |
checking for -force_load linker flag... yes | |
checking how to run the C preprocessor... gcc -E | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking for dlfcn.h... yes | |
checking for objdir... .libs | |
checking if gcc supports -fno-rtti -fno-exceptions... yes | |
checking for gcc option to produce PIC... -fno-common -DPIC | |
checking if gcc PIC flag -fno-common -DPIC works... yes | |
checking if gcc static flag -static works... no | |
checking if gcc supports -c -o file.o... yes | |
checking if gcc supports -c -o file.o... (cached) yes | |
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes | |
checking dynamic linker characteristics... darwin11.2.0 dyld | |
checking how to hardcode library paths into programs... immediate | |
checking whether stripping libraries is possible... yes | |
checking if libtool supports shared libraries... yes | |
checking whether to build shared libraries... no | |
checking whether to build static libraries... yes | |
checking for rsh... /usr/bin/rsh | |
checking for sh... /bin/sh | |
checking for g++... g++ | |
checking whether we are using the GNU C++ compiler... yes | |
checking whether g++ accepts -g... yes | |
checking dependency style of g++... gcc3 | |
checking how to run the C++ preprocessor... g++ -E | |
checking for ld used by g++... /usr/bin/ld | |
checking if the linker (/usr/bin/ld) is GNU ld... no | |
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes | |
checking for g++ option to produce PIC... -fno-common -DPIC | |
checking if g++ PIC flag -fno-common -DPIC works... yes | |
checking if g++ static flag -static works... no | |
checking if g++ supports -c -o file.o... yes | |
checking if g++ supports -c -o file.o... (cached) yes | |
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes | |
checking dynamic linker characteristics... darwin11.2.0 dyld | |
checking how to hardcode library paths into programs... immediate | |
checking for stdlib.h... (cached) yes | |
checking whether large file support needs explicit enabling... no | |
checking architecture type... macos | |
checking architecture specific stuff... done | |
checking whether we are using the GNU C++ compiler... (cached) yes | |
checking whether g++ accepts -g... (cached) yes | |
checking dependency style of g++... (cached) gcc3 | |
checking how to run the C++ preprocessor... g++ -E | |
checking for gcc... (cached) gcc | |
checking whether we are using the GNU C compiler... (cached) yes | |
checking whether gcc accepts -g... (cached) yes | |
checking for gcc option to accept ISO C89... (cached) none needed | |
checking dependency style of gcc... (cached) gcc3 | |
checking how to run the C preprocessor... gcc -E | |
checking for Cygwin environment... no | |
checking for executable suffix... (cached) | |
checking for object file suffix... (cached) o | |
checking whether to enable large arenas ...... "no" | |
checking for dirent.h that defines DIR... yes | |
checking for library containing opendir... none required | |
checking for ANSI C header files... (cached) yes | |
checking for sys/wait.h that is POSIX.1 compatible... yes | |
checking for mode_t... yes | |
checking for pid_t... yes | |
checking for size_t... yes | |
checking whether time.h and sys/time.h may both be included... yes | |
checking whether struct tm is in sys/time.h or time.h... time.h | |
checking for pthread_getspecific in -lpthread... yes | |
checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include | |
checking for IceConnectionNumber in -lICE... yes | |
checking for SmcSetProperties in -lSM... yes | |
checking for printf in -lxlibcon... no | |
checking for XCreateWindow in -lxlib... no | |
checking for XtVaGetValues in -lxt... (cached) no | |
checking for XtVaGetValues in -lxmstatxt... no | |
checking for XmStringFree in -lxmstatic... no | |
checking for XmStringFree in -lxm... (cached) no | |
checking for glXGetConfig in -lhclglx... no | |
checking for gluBuild2DMipmaps in -lhclglu... no | |
checking for glAccum in -lglwstati... no | |
checking for XCreateGC in -lX11... yes | |
checking for XtMalloc in -lXt... yes | |
checking for XextAddDisplay in -lXext... yes | |
checking for XmuAddInitializer in -lXmu... yes | |
checking for sqrt in -lm... yes | |
checking for glXGetConfig in -lGL... yes | |
checking for gluBuild2DMipmaps in -lGLU... yes | |
checking for XpSetImageResolution in -lXp... yes | |
checking for XmGetDestination in -lXm... yes | |
checking for regcomp in -lREXP... no | |
checking whether we are using GNU glibc math... -D_GNU_SOURCE | |
checking for main in -lg++... no | |
checking for main in -ldl... yes | |
configure: checking for TIFF support ...... | |
checking tiff.h usability... yes | |
checking tiff.h presence... yes | |
checking for tiff.h... yes | |
checking tiffio.h usability... yes | |
checking tiffio.h presence... yes | |
checking for tiffio.h... yes | |
checking for TIFFOpen in -ltiff... yes | |
checking if TIFF package is complete... yes | |
configure: checking for XPM support ...... | |
checking xpm.h usability... no | |
checking xpm.h presence... no | |
checking for xpm.h... no | |
checking X11/xpm.h usability... yes | |
checking X11/xpm.h presence... yes | |
checking for X11/xpm.h... yes | |
checking for XpmReadFileToPixmap in -lXpm... yes | |
checking if XPM package is complete... yes | |
configure: checking for HDF components ...... | |
checking dfsd.h usability... yes | |
checking dfsd.h presence... yes | |
checking for dfsd.h... yes | |
checking hdf/dfsd.h usability... no | |
checking hdf/dfsd.h presence... no | |
checking for hdf/dfsd.h... no | |
checking for Hopen in -ldf... yes | |
checking if HDF package is complete... yes | |
configure: checking for CDF support ...... | |
checking cdf.h usability... no | |
checking cdf.h presence... no | |
checking for cdf.h... no | |
checking for CDFlib in -lcdf... no | |
checking if CDF package is complete... no | |
configure: checking for NETCDF support ...... | |
checking netcdf.h usability... yes | |
checking netcdf.h presence... yes | |
checking for netcdf.h... yes | |
checking for nc_copy_att in -lnetcdf... yes | |
checking if NETCDF package is complete... yes | |
configure: checking for GraphicsMagick support ...... | |
checking for GraphicsMagick-config... yes | |
checking magick/api.h usability... yes | |
checking magick/api.h presence... yes | |
checking for magick/api.h... yes | |
checking for GetImageInfo in -lGraphicsMagick... yes | |
checking if GraphicsMagick package is complete... yes | |
checking for getdtablesize... yes | |
checking for getcwd... yes | |
checking for gethostname... yes | |
checking for gettimeofday... yes | |
checking for mkdir... yes | |
checking for mkfifo... yes | |
checking for mktime... yes | |
checking for putenv... yes | |
checking for re_comp... no | |
checking for regcmp... no | |
checking for select... yes | |
checking for socket... yes | |
checking for strcspn... yes | |
checking for strdup... yes | |
checking for strerror... yes | |
checking for strspn... yes | |
checking for strstr... yes | |
checking for strtod... yes | |
checking for strtol... yes | |
checking for strtoul... yes | |
checking for uname... yes | |
checking for trunc... yes | |
checking for _Errno... no | |
checking for spawnvp... no | |
checking for _spawnvp... no | |
checking for regcomp... yes | |
checking for sysmp... no | |
checking for sysconf... yes | |
checking for pipe... yes | |
checking for _pipe... no | |
checking for _popen... no | |
checking for popen... yes | |
checking for _pclose... no | |
checking for pclose... yes | |
checking for random... yes | |
checking for rand... yes | |
checking for srandom... yes | |
checking for shmat... yes | |
checking for getopt... yes | |
checking for srand... yes | |
checking for opendir... yes | |
checking for _findfirst... no | |
checking for strrstr... no | |
checking for strcasecmp... yes | |
checking for stricmp... no | |
checking for getpid... yes | |
checking for _getpid... no | |
checking for unlink... yes | |
checking for _unlink... no | |
checking for getlogin... yes | |
checking for isatty... yes | |
checking for _isatty... no | |
checking for setsockopt... yes | |
checking for isnan... yes | |
checking for finite... yes | |
checking if RAND_MAX defined... yes | |
checking if signal.h defines SIGBUS... yes | |
checking if signal.h defines SIGKILL... yes | |
checking if signal.h defines SIGDANGER... no | |
checking if signal.h defines SIGPIPE... yes | |
checking if signal.h defines SIGQUIT... yes | |
checking for flex... flex | |
checking lex output file root... lex.yy | |
checking lex library... -lfl | |
checking whether yytext is a pointer... yes | |
checking lex output file root... (cached) lex.yy | |
checking whether yylineno is defined... yes | |
checking for bison... bison | |
checking for DPS/XDPSlib.h... no | |
checking for DPS/dpsXclient.h... no | |
checking for DPS/psops.h... no | |
checking for GL/gl.h... yes | |
checking for GL/glx.h... yes | |
checking for Mrm/MrmPublic.h... yes | |
checking for X11/Composite.h... yes | |
checking for X11/CompositeP.h... yes | |
checking for X11/Constraint.h... yes | |
checking for X11/CoreP.h... yes | |
checking for X11/Intrinsic.h... yes | |
checking for X11/IntrinsicI.h... yes | |
checking for X11/IntrinsicP.h... yes | |
checking for X11/Protocols.h... no | |
checking for X11/Shell.h... yes | |
checking for X11/StringDefs.h... yes | |
checking for X11/X.h... yes | |
checking for X11/XHPlib.h... no | |
checking for X11/Xatom.h... yes | |
checking for X11/Xlib.h... yes | |
checking for X11/XlibXtra.h... no | |
checking for X11/Xos.h... yes | |
checking for X11/Xutil.h... yes | |
checking for X11/cursorfont.h... yes | |
checking for X11/keysym.h... yes | |
checking for X11/keysymdef.h... yes | |
checking for Xm/ArrowB.h... yes | |
checking for Xm/ArrowBG.h... yes | |
checking for Xm/AtomMgr.h... yes | |
checking for Xm/BulletinB.h... yes | |
checking for Xm/BulletinBP.h... yes | |
checking for Xm/CascadeB.h... yes | |
checking for Xm/CascadeBG.h... yes | |
checking for Xm/Command.h... yes | |
checking for Xm/CutPaste.h... yes | |
checking for Xm/DialogS.h... yes | |
checking for Xm/DragC.h... yes | |
checking for Xm/DragDrop.h... yes | |
checking for Xm/DrawingA.h... yes | |
checking for Xm/DrawingAP.h... yes | |
checking for Xm/DrawnB.h... yes | |
checking for Xm/FileSB.h... yes | |
checking for Xm/Form.h... yes | |
checking for Xm/FormP.h... yes | |
checking for Xm/Frame.h... yes | |
checking for Xm/FrameP.h... yes | |
checking for Xm/GadgetP.h... yes | |
checking for Xm/Label.h... yes | |
checking for Xm/LabelG.h... yes | |
checking for Xm/LabelGP.h... yes | |
checking for Xm/LabelP.h... yes | |
checking for Xm/List.h... yes | |
checking for Xm/MainW.h... yes | |
checking for Xm/ManagerP.h... yes | |
checking for Xm/MenuShell.h... yes | |
checking for Xm/MessageB.h... yes | |
checking for Xm/MwmUtil.h... yes | |
checking for Xm/PanedW.h... yes | |
checking for Xm/PrimitiveP.h... yes | |
checking for Xm/Protocols.h... yes | |
checking for Xm/PushB.h... yes | |
checking for Xm/PushBG.h... yes | |
checking for Xm/PushBP.h... yes | |
checking for Xm/RepType.h... yes | |
checking for Xm/RowColumn.h... yes | |
checking for Xm/Scale.h... yes | |
checking for Xm/ScrollBar.h... yes | |
checking for Xm/ScrolledW.h... yes | |
checking for Xm/ScrolledWP.h... yes | |
checking for Xm/SelectioB.h... yes | |
checking for Xm/SeparatoG.h... yes | |
checking for Xm/SeparatoGP.h... yes | |
checking for Xm/Separator.h... yes | |
checking for Xm/Text.h... yes | |
checking for Xm/TextF.h... yes | |
checking for Xm/ToggleB.h... yes | |
checking for Xm/ToggleBG.h... yes | |
checking for Xm/Xm.h... yes | |
checking for Xm/XmP.h... yes | |
checking for Xm/XmStrDefs.h... yes | |
checking for gl.h... no | |
checking for gl/device.h... no | |
checking for gl/gl.h... no | |
checking for invent.h... no | |
checking for iop/afb.h... no | |
checking for iop/mov.h... no | |
checking for iop/pfs.h... no | |
checking for license.h... no | |
checking for linux/kernel.h... no | |
checking for linux/sys.h... no | |
checking for math.h... yes | |
checking for mingw32/dir.h... no | |
checking for mon.h... no | |
checking for net/if_arp.h... yes | |
checking for net/route.h... yes | |
checking for os2.h... no | |
checking for setjmp.h... yes | |
checking for starbase.c.h... no | |
checking for stddef.h... yes | |
checking for stdio.h... yes | |
checking for synch.h... no | |
checking for sys/access.h... no | |
checking for sys/ipc.h... yes | |
checking for sys/m88kbcs.h... no | |
checking for sys/mman.h... yes | |
checking for sys/mode.h... no | |
checking for sys/pstat.h... no | |
checking for sys/resource.h... yes | |
checking for sys/svs.h... no | |
checking for sys/sysconfig.h... no | |
checking for sys/syslimits.h... yes | |
checking for sys/sysmacros.h... no | |
checking for ulocks.h... no | |
checking for x11/xlibxtra.h... no | |
checking for xgl/xgl.h... no | |
checking arpa/inet.h usability... yes | |
checking arpa/inet.h presence... yes | |
checking for arpa/inet.h... yes | |
checking CC/osfcn.h usability... no | |
checking CC/osfcn.h presence... no | |
checking for CC/osfcn.h... no | |
checking conio.h usability... no | |
checking conio.h presence... no | |
checking for conio.h... no | |
checking crypt.h usability... no | |
checking crypt.h presence... no | |
checking for crypt.h... no | |
checking ctype.h usability... yes | |
checking ctype.h presence... yes | |
checking for ctype.h... yes | |
checking cygwin/socket.h usability... no | |
checking cygwin/socket.h presence... no | |
checking for cygwin/socket.h... no | |
checking sys/socket.h usability... yes | |
checking sys/socket.h presence... yes | |
checking for sys/socket.h... yes | |
checking for dlfcn.h... (cached) yes | |
checking errno.h usability... yes | |
checking errno.h presence... yes | |
checking for errno.h... yes | |
checking fcntl.h usability... yes | |
checking fcntl.h presence... yes | |
checking for fcntl.h... yes | |
checking get.h usability... no | |
checking get.h presence... no | |
checking for get.h... no | |
checking io.h usability... no | |
checking io.h presence... no | |
checking for io.h... no | |
checking limits.h usability... yes | |
checking limits.h presence... yes | |
checking for limits.h... yes | |
checking malloc.h usability... no | |
checking malloc.h presence... no | |
checking for malloc.h... no | |
checking netdb.h usability... yes | |
checking netdb.h presence... yes | |
checking for netdb.h... yes | |
checking netinet/in.h usability... yes | |
checking netinet/in.h presence... yes | |
checking for netinet/in.h... yes | |
checking process.h usability... no | |
checking process.h presence... no | |
checking for process.h... no | |
checking pwd.h usability... yes | |
checking pwd.h presence... yes | |
checking for pwd.h... yes | |
checking signal.h usability... yes | |
checking signal.h presence... yes | |
checking for signal.h... yes | |
checking for string.h... (cached) yes | |
checking for strings.h... (cached) yes | |
checking sys/bsd_types.h usability... no | |
checking sys/bsd_types.h presence... no | |
checking for sys/bsd_types.h... no | |
checking sys/errno.h usability... yes | |
checking sys/errno.h presence... yes | |
checking for sys/errno.h... yes | |
checking sys/file.h usability... yes | |
checking sys/file.h presence... yes | |
checking for sys/file.h... yes | |
checking sys/filio.h usability... yes | |
checking sys/filio.h presence... yes | |
checking for sys/filio.h... yes | |
checking sys/ioctl.h usability... yes | |
checking sys/ioctl.h presence... yes | |
checking for sys/ioctl.h... yes | |
checking sys/ldr.h usability... no | |
checking sys/ldr.h presence... no | |
checking for sys/ldr.h... no | |
checking sys/m_wait.h usability... no | |
checking sys/m_wait.h presence... no | |
checking for sys/m_wait.h... no | |
checking sys/param.h usability... yes | |
checking sys/param.h presence... yes | |
checking for sys/param.h... yes | |
checking sys/select.h usability... yes | |
checking sys/select.h presence... yes | |
checking for sys/select.h... yes | |
checking sys/shm.h usability... yes | |
checking sys/shm.h presence... yes | |
checking for sys/shm.h... yes | |
checking sys/signal.h usability... yes | |
checking sys/signal.h presence... yes | |
checking for sys/signal.h... yes | |
checking for sys/stat.h... (cached) yes | |
checking sys/sysmp.h usability... no | |
checking sys/sysmp.h presence... no | |
checking for sys/sysmp.h... no | |
checking sys/systemcfg.h usability... no | |
checking sys/systemcfg.h presence... no | |
checking for sys/systemcfg.h... no | |
checking sys/systeminfo.h usability... no | |
checking sys/systeminfo.h presence... no | |
checking for sys/systeminfo.h... no | |
checking sys/timeb.h usability... yes | |
checking sys/timeb.h presence... yes | |
checking for sys/timeb.h... yes | |
checking sys/times.h usability... yes | |
checking sys/times.h presence... yes | |
checking for sys/times.h... yes | |
checking sys/time.h usability... yes | |
checking sys/time.h presence... yes | |
checking for sys/time.h... yes | |
checking for sys/types.h... (cached) yes | |
checking sys/un.h usability... yes | |
checking sys/un.h presence... yes | |
checking for sys/un.h... yes | |
checking sys/utsname.h usability... yes | |
checking sys/utsname.h presence... yes | |
checking for sys/utsname.h... yes | |
checking time.h usability... yes | |
checking time.h presence... yes | |
checking for time.h... yes | |
checking types.h usability... no | |
checking types.h presence... no | |
checking for types.h... no | |
checking for unistd.h... (cached) yes | |
checking values.h usability... no | |
checking values.h presence... no | |
checking for values.h... no | |
checking wait.h usability... no | |
checking wait.h presence... no | |
checking for wait.h... no | |
checking for X11/Xmu/Editres.h... yes | |
configure: checking for XINERAMA support ...... | |
checking for X11/extensions/Xinerama.h... yes | |
checking for XineramaQueryExtension in -lXinerama... yes | |
checking if Xinerama package is complete... yes | |
checking for net/if.h... yes | |
checking for O_RDONLY... yes | |
checking for windows.h... (cached) no | |
checking for unistd.h... (cached) yes | |
checking for sys/types.h... (cached) yes | |
checking for sys/stat.h... (cached) yes | |
stat function is: stat | |
stat structure is: stat | |
checking CC/libc.h usability... no | |
checking CC/libc.h presence... no | |
checking for CC/libc.h... no | |
checking direct.h usability... no | |
checking direct.h presence... no | |
checking for direct.h... no | |
checking dirent.h usability... yes | |
checking dirent.h presence... yes | |
checking for dirent.h... yes | |
checking iostream usability... yes | |
checking iostream presence... yes | |
checking for iostream... yes | |
checking iostream.h usability... yes | |
checking iostream.h presence... yes | |
checking for iostream.h... yes | |
checking regex.h usability... yes | |
checking regex.h presence... yes | |
checking for regex.h... yes | |
checking stream usability... no | |
checking stream presence... no | |
checking for stream... no | |
checking stream.h usability... yes | |
checking stream.h presence... yes | |
checking for stream.h... yes | |
checking sstream usability... yes | |
checking sstream presence... yes | |
checking for sstream... yes | |
checking strstream.h usability... no | |
checking strstream.h presence... no | |
checking for strstream.h... no | |
checking strstrea.h usability... no | |
checking strstrea.h presence... no | |
checking for strstrea.h... no | |
checking sysent.h usability... no | |
checking sysent.h presence... no | |
checking for sysent.h... no | |
checking fstream usability... yes | |
checking fstream presence... yes | |
checking for fstream... yes | |
checking fstream.h usability... yes | |
checking fstream.h presence... yes | |
checking for fstream.h... yes | |
checking for regexp.h... no | |
checking for socket in -lsocket... no | |
checking for inet_addr in -lnsl... no | |
checking for regex in -lgen... no | |
checking for regcomp in -lregex... no | |
checking for regcomp in -lREXP... (cached) no | |
checking whether -O2 interferes with fstream in C++... no | |
checking whether header file math.h contains symbol M_PI... "yes" | |
checking whether header file math.h contains symbol M_SQRT2... "yes" | |
checking whether header file sys/stat.h contains symbol S_ISDIR... "yes" | |
checking whether header file sys/mode.h contains symbol S_ISDIR... "no" | |
checking whether header file sys/sysmp.h contains symbol sysmp... "no" | |
checking for working memcmp... yes | |
checking return type of signal handlers... void | |
checking vfork.h usability... no | |
checking vfork.h presence... no | |
checking for vfork.h... no | |
checking for fork... yes | |
checking for vfork... yes | |
checking for working fork... yes | |
checking for working vfork... (cached) yes | |
checking for vprintf... yes | |
checking for _doprnt... no | |
checking for uint... yes | |
checking for byte... no | |
checking for ubyte... no | |
checking for short... yes | |
checking for ushort... yes | |
checking for ulong... no | |
checking for int8... no | |
checking for uint8... no | |
checking for int16... no | |
checking for uint16... no | |
checking for int32... no | |
checking for uint32... no | |
checking for int64... no | |
checking for float64... no | |
checking for uint64... no | |
checking for __int64... no | |
checking for float32... no | |
checking whether byte ordering is bigendian... no | |
checking for signal argument list in C++... standard | |
checking for windows.h... (cached) no | |
checking for unistd.h... (cached) yes | |
checking for sys/types.h... (cached) yes | |
checking select.h usability... no | |
checking select.h presence... no | |
checking for select.h... no | |
checking for sys/select.h... (cached) yes | |
the second third and fourth args to select are pointers to fd_set | |
checking for unistd.h... (cached) yes | |
checking for sys/types.h... (cached) yes | |
checking for sys/socket.h... (cached) yes | |
the third arg to getsockname is pointer to socklen_t | |
checking whether -lstdc++ is needed... no | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating bin/Makefile | |
config.status: creating bin/dx | |
config.status: creating bin/mdf2c | |
config.status: creating doc/Makefile | |
config.status: creating fonts/Makefile | |
config.status: creating help/Makefile | |
config.status: creating html/Makefile | |
config.status: creating html/images/Makefile | |
config.status: creating html/pages/Makefile | |
config.status: creating include/Makefile | |
config.status: creating include/dx/Makefile | |
config.status: creating lib/Makefile | |
config.status: creating man/Makefile | |
config.status: creating man/catl/Makefile | |
config.status: creating man/manl/Makefile | |
config.status: creating src/Makefile | |
config.status: creating src/exec/Makefile | |
config.status: creating src/exec/dpexec/Makefile | |
config.status: creating src/exec/dpexec/local.mk | |
config.status: creating src/exec/dxexec/Makefile | |
config.status: creating src/exec/dxmods/Makefile | |
config.status: creating src/exec/dxmods/local.mk | |
config.status: creating src/exec/hwrender/Makefile | |
config.status: creating src/exec/hwrender/gl/Makefile | |
config.status: creating src/exec/hwrender/opengl/Makefile | |
config.status: creating src/exec/hwrender/starbase/Makefile | |
config.status: creating src/exec/hwrender/xgl/Makefile | |
config.status: creating src/exec/libdx/Makefile | |
config.status: creating src/exec/libdx/local.mk | |
config.status: creating src/misc/Makefile | |
config.status: creating src/misc/arch.mak | |
config.status: creating src/uipp/Makefile | |
config.status: creating src/uipp/base/Makefile | |
config.status: creating src/uipp/dxl/Makefile | |
config.status: creating src/uipp/dxui/Makefile | |
config.status: creating src/uipp/dxuilib/Makefile | |
config.status: creating src/uipp/dxuilib/local.mk | |
config.status: creating src/uipp/java/Makefile | |
config.status: creating src/uipp/java/dx/Makefile | |
config.status: creating src/uipp/java/dx/protocol/Makefile | |
config.status: creating src/uipp/java/dx/protocol/server/Makefile | |
config.status: creating src/uipp/java/dx/runtime/Makefile | |
config.status: creating src/uipp/java/layout/Makefile | |
config.status: creating src/uipp/java/server/Makefile | |
config.status: creating src/uipp/java/server/macros/Makefile | |
config.status: creating src/uipp/java/server/dxserver.paths | |
config.status: creating src/uipp/java/server/startserver | |
config.status: creating src/uipp/java/dx/client/Makefile | |
config.status: creating src/uipp/java/dx/net/Makefile | |
config.status: creating src/uipp/mb/Makefile | |
config.status: creating src/uipp/prompter/Makefile | |
config.status: creating src/uipp/startup/Makefile | |
config.status: creating src/uipp/tutor/Makefile | |
config.status: creating src/uipp/ui/Makefile | |
config.status: creating src/uipp/widgets/Makefile | |
config.status: creating windows/Makefile | |
config.status: creating include/dxconfig.h | |
config.status: executing depfiles commands | |
config.status: executing libtool commands | |
make | |
Making all in src | |
Making all in exec | |
Making all in libdx | |
rm -f arrayClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./arrayClass.X >arrayClass.h | |
rm -f cameraClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./cameraClass.X >cameraClass.h | |
rm -f clippedClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./clippedClass.X >clippedClass.h | |
rm -f fieldClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./fieldClass.X >fieldClass.h | |
rm -f groupClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./groupClass.X >groupClass.h | |
rm -f lightClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./lightClass.X >lightClass.h | |
rm -f objectClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./objectClass.X >objectClass.h | |
rm -f privateClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./privateClass.X >privateClass.h | |
rm -f screenClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./screenClass.X >screenClass.h | |
rm -f stringClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./stringClass.X >stringClass.h | |
rm -f xformClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./xformClass.X >xformClass.h | |
rm -f interpClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./interpClass.X >interpClass.h | |
rm -f fieldinterpClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./fieldinterpClass.X >fieldinterpClass.h | |
rm -f groupinterpClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./groupinterpClass.X >groupinterpClass.h | |
rm -f fle2DClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./fle2DClass.X >fle2DClass.h | |
rm -f linesII1DClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./linesII1DClass.X >linesII1DClass.h | |
rm -f linesRR1DClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./linesRR1DClass.X >linesRR1DClass.h | |
rm -f linesRI1DClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./linesRI1DClass.X >linesRI1DClass.h | |
rm -f trisRI2DClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./trisRI2DClass.X >trisRI2DClass.h | |
rm -f quadsRR2DClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./quadsRR2DClass.X >quadsRR2DClass.h | |
rm -f cubesIIClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./cubesIIClass.X >cubesIIClass.h | |
rm -f cubesRRClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./cubesRRClass.X >cubesRRClass.h | |
rm -f tetrasClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./tetrasClass.X >tetrasClass.h | |
rm -f quadsII2DClass.h | |
class_srcdir=. srcdir=. sh ./class -h ./quadsII2DClass.X >quadsII2DClass.h | |
sed -e 's/[ ][ ]*\$/ $/' ./buffer.Z > __buffer.c | |
gcc -E __buffer.c | tr -s "\044" "\012" | sed -e '/^#/d' -e 's/INCLUDE2/#include/' -e 's/^pragma/#pragma/' > buffer.c | |
rm -f __buffer.c | |
sed -e 's/[ ][ ]*\$/ $/' ./lbshade.Z > __lbshade_.c | |
gcc -E __lbshade_.c | tr -s "\044" "\012" | sed -e '/^#/d' -e 's/DEFINE2/#define/' -e 's/INCLUDE2/#include/' -e 's/[^#]pragma/#pragma/' > lbshade.c | |
rm -f __lbshade_.c | |
sed -e 's/[ ][ ]*\$/ $/' ./triangle.Z > __triangle.c | |
gcc -E -I. -DPASS1 __triangle.c | sed -e '/^#/d' -e 's/INCLUDE1/#include/' | tr -s "\044" "\012" > triangle1.c | |
gcc -E -I. -DPASS2 triangle1.c | sed -e '/^#/d' -e 's/INCLUDE2/#include/' | tr -s "\044" "\012" > triangle2.c | |
gcc -E -I. -DPASS3 triangle2.c | tr -s "\044" "\012" | sed -e '/^#/d' -e 's/DEFINE3/#define/' -e 's/INCLUDE3/#include/' -e 's/[^#]pragma/#pragma/' > triangle.c | |
rm triangle1.c triangle2.c __triangle.c | |
sed -e 's/[ ][ ]*\$/ $/' ./quad.Z > __quad.c | |
gcc -E -I. -DPASS1 __quad.c | sed -e '/^#/d' -e 's/INCLUDE1/#include/' | tr -s "\044" "\012" > quad1.c | |
gcc -E -I. -DPASS2 quad1.c | sed -e '/^#/d' -e 's/INCLUDE2/#include/' | tr -s "\044" "\012" > quad2.c | |
gcc -E -I. -DPASS3 quad2.c | tr -s "\044" "\012" | sed -e '/^#/d' -e 's/DEFINE3/#define/' -e 's/INCLUDE3/#include/' -e 's/[^#]pragma/#pragma/' > quad.c | |
rm -f quad1.c quad2.c __quad.c | |
cp ./plane.Z _plane.c | |
gcc -E _plane.c | tr -s "\044" "\012" | sed -e '/^#/d' -e 's/INCLUDE2/#include/' -e 's/[^#]pragma/#pragma/' > plane.c | |
rm -f _plane.c | |
rm -f arrayClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./arrayClass.X > arrayClass.c | |
rm -f cameraClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./cameraClass.X > cameraClass.c | |
rm -f clippedClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./clippedClass.X > clippedClass.c | |
rm -f fieldClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./fieldClass.X > fieldClass.c | |
rm -f groupClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./groupClass.X > groupClass.c | |
rm -f lightClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./lightClass.X > lightClass.c | |
rm -f objectClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./objectClass.X > objectClass.c | |
rm -f privateClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./privateClass.X > privateClass.c | |
rm -f screenClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./screenClass.X > screenClass.c | |
rm -f stringClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./stringClass.X > stringClass.c | |
rm -f xformClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./xformClass.X > xformClass.c | |
rm -f interpClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./interpClass.X > interpClass.c | |
rm -f fieldinterpClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./fieldinterpClass.X > fieldinterpClass.c | |
rm -f groupinterpClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./groupinterpClass.X > groupinterpClass.c | |
rm -f fle2DClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./fle2DClass.X > fle2DClass.c | |
rm -f linesII1DClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./linesII1DClass.X > linesII1DClass.c | |
rm -f linesRR1DClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./linesRR1DClass.X > linesRR1DClass.c | |
rm -f linesRI1DClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./linesRI1DClass.X > linesRI1DClass.c | |
rm -f trisRI2DClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./trisRI2DClass.X > trisRI2DClass.c | |
rm -f quadsRR2DClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./quadsRR2DClass.X > quadsRR2DClass.c | |
rm -f cubesIIClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./cubesIIClass.X > cubesIIClass.c | |
rm -f cubesRRClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./cubesRRClass.X > cubesRRClass.c | |
rm -f tetrasClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./tetrasClass.X > tetrasClass.c | |
rm -f quadsII2DClass.c | |
class_srcdir=. srcdir=. sh ./class -c ./quadsII2DClass.X > quadsII2DClass.c | |
make all-am | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT object.lo -MD -MP -MF .deps/object.Tpo -c -o object.lo object.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT object.lo -MD -MP -MF .deps/object.Tpo -c object.c -o object.o | |
mv -f .deps/object.Tpo .deps/object.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT string.lo -MD -MP -MF .deps/string.Tpo -c -o string.lo string.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT string.lo -MD -MP -MF .deps/string.Tpo -c string.c -o string.o | |
mv -f .deps/string.Tpo .deps/string.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbcamera.lo -MD -MP -MF .deps/lbcamera.Tpo -c -o lbcamera.lo lbcamera.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbcamera.lo -MD -MP -MF .deps/lbcamera.Tpo -c lbcamera.c -o lbcamera.o | |
lbcamera.c:31:43: warning: array index of '3' indexes past the end of an array (that contains 3 elements) [-Warray-bounds] | |
t.A[0][0] = p[ 0]; t.A[0][1] = p[ 1]; t.A[0][3] = p[ 2]; | |
^ ~ | |
lbcamera.c:32:43: warning: array index of '3' indexes past the end of an array (that contains 3 elements) [-Warray-bounds] | |
t.A[1][0] = p[ 4]; t.A[1][1] = p[ 5]; t.A[1][3] = p[ 6]; | |
^ ~ | |
lbcamera.c:33:43: warning: array index of '3' indexes past the end of an array (that contains 3 elements) [-Warray-bounds] | |
t.A[2][0] = p[ 8]; t.A[2][1] = p[ 9]; t.A[2][3] = p[10]; | |
^ ~ | |
3 warnings generated. | |
mv -f .deps/lbcamera.Tpo .deps/lbcamera.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT clipped.lo -MD -MP -MF .deps/clipped.Tpo -c -o clipped.lo clipped.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT clipped.lo -MD -MP -MF .deps/clipped.Tpo -c clipped.c -o clipped.o | |
mv -f .deps/clipped.Tpo .deps/clipped.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT field.lo -MD -MP -MF .deps/field.Tpo -c -o field.lo field.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT field.lo -MD -MP -MF .deps/field.Tpo -c field.c -o field.o | |
mv -f .deps/field.Tpo .deps/field.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT group.lo -MD -MP -MF .deps/group.Tpo -c -o group.lo group.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT group.lo -MD -MP -MF .deps/group.Tpo -c group.c -o group.o | |
mv -f .deps/group.Tpo .deps/group.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT series.lo -MD -MP -MF .deps/series.Tpo -c -o series.lo series.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT series.lo -MD -MP -MF .deps/series.Tpo -c series.c -o series.o | |
mv -f .deps/series.Tpo .deps/series.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT composite.lo -MD -MP -MF .deps/composite.Tpo -c -o composite.lo composite.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT composite.lo -MD -MP -MF .deps/composite.Tpo -c composite.c -o composite.o | |
mv -f .deps/composite.Tpo .deps/composite.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT multigrid.lo -MD -MP -MF .deps/multigrid.Tpo -c -o multigrid.lo multigrid.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT multigrid.lo -MD -MP -MF .deps/multigrid.Tpo -c multigrid.c -o multigrid.o | |
mv -f .deps/multigrid.Tpo .deps/multigrid.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lblight.lo -MD -MP -MF .deps/lblight.Tpo -c -o lblight.lo lblight.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lblight.lo -MD -MP -MF .deps/lblight.Tpo -c lblight.c -o lblight.o | |
mv -f .deps/lblight.Tpo .deps/lblight.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT array.lo -MD -MP -MF .deps/array.Tpo -c -o array.lo array.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT array.lo -MD -MP -MF .deps/array.Tpo -c array.c -o array.o | |
mv -f .deps/array.Tpo .deps/array.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT sharedarray.lo -MD -MP -MF .deps/sharedarray.Tpo -c -o sharedarray.lo sharedarray.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT sharedarray.lo -MD -MP -MF .deps/sharedarray.Tpo -c sharedarray.c -o sharedarray.o | |
mv -f .deps/sharedarray.Tpo .deps/sharedarray.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT regulararray.lo -MD -MP -MF .deps/regulararray.Tpo -c -o regulararray.lo regulararray.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT regulararray.lo -MD -MP -MF .deps/regulararray.Tpo -c regulararray.c -o regulararray.o | |
mv -f .deps/regulararray.Tpo .deps/regulararray.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT cstarray.lo -MD -MP -MF .deps/cstarray.Tpo -c -o cstarray.lo cstarray.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT cstarray.lo -MD -MP -MF .deps/cstarray.Tpo -c cstarray.c -o cstarray.o | |
mv -f .deps/cstarray.Tpo .deps/cstarray.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT patharray.lo -MD -MP -MF .deps/patharray.Tpo -c -o patharray.lo patharray.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT patharray.lo -MD -MP -MF .deps/patharray.Tpo -c patharray.c -o patharray.o | |
mv -f .deps/patharray.Tpo .deps/patharray.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT productarray.lo -MD -MP -MF .deps/productarray.Tpo -c -o productarray.lo productarray.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT productarray.lo -MD -MP -MF .deps/productarray.Tpo -c productarray.c -o productarray.o | |
mv -f .deps/productarray.Tpo .deps/productarray.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT mesharray.lo -MD -MP -MF .deps/mesharray.Tpo -c -o mesharray.lo mesharray.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT mesharray.lo -MD -MP -MF .deps/mesharray.Tpo -c mesharray.c -o mesharray.o | |
mv -f .deps/mesharray.Tpo .deps/mesharray.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT xform.lo -MD -MP -MF .deps/xform.Tpo -c -o xform.lo xform.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT xform.lo -MD -MP -MF .deps/xform.Tpo -c xform.c -o xform.o | |
mv -f .deps/xform.Tpo .deps/xform.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbscreen.lo -MD -MP -MF .deps/lbscreen.Tpo -c -o lbscreen.lo lbscreen.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbscreen.lo -MD -MP -MF .deps/lbscreen.Tpo -c lbscreen.c -o lbscreen.o | |
mv -f .deps/lbscreen.Tpo .deps/lbscreen.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbprivate.lo -MD -MP -MF .deps/lbprivate.Tpo -c -o lbprivate.lo lbprivate.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbprivate.lo -MD -MP -MF .deps/lbprivate.Tpo -c lbprivate.c -o lbprivate.o | |
mv -f .deps/lbprivate.Tpo .deps/lbprivate.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbmessage.lo -MD -MP -MF .deps/lbmessage.Tpo -c -o lbmessage.lo lbmessage.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbmessage.lo -MD -MP -MF .deps/lbmessage.Tpo -c lbmessage.c -o lbmessage.o | |
mv -f .deps/lbmessage.Tpo .deps/lbmessage.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT timing.lo -MD -MP -MF .deps/timing.Tpo -c -o timing.lo timing.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT timing.lo -MD -MP -MF .deps/timing.Tpo -c timing.c -o timing.o | |
mv -f .deps/timing.Tpo .deps/timing.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lock.lo -MD -MP -MF .deps/lock.Tpo -c -o lock.lo lock.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lock.lo -MD -MP -MF .deps/lock.Tpo -c lock.c -o lock.o | |
mv -f .deps/lock.Tpo .deps/lock.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT plock.lo -MD -MP -MF .deps/plock.Tpo -c -o plock.lo plock.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT plock.lo -MD -MP -MF .deps/plock.Tpo -c plock.c -o plock.o | |
mv -f .deps/plock.Tpo .deps/plock.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT stringtable.lo -MD -MP -MF .deps/stringtable.Tpo -c -o stringtable.lo stringtable.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT stringtable.lo -MD -MP -MF .deps/stringtable.Tpo -c stringtable.c -o stringtable.o | |
mv -f .deps/stringtable.Tpo .deps/stringtable.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT client.lo -MD -MP -MF .deps/client.Tpo -c -o client.lo client.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT client.lo -MD -MP -MF .deps/client.Tpo -c client.c -o client.o | |
mv -f .deps/client.Tpo .deps/client.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT basic.lo -MD -MP -MF .deps/basic.Tpo -c -o basic.lo basic.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT basic.lo -MD -MP -MF .deps/basic.Tpo -c basic.c -o basic.o | |
mv -f .deps/basic.Tpo .deps/basic.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbvector.lo -MD -MP -MF .deps/lbvector.Tpo -c -o lbvector.lo lbvector.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbvector.lo -MD -MP -MF .deps/lbvector.Tpo -c lbvector.c -o lbvector.o | |
mv -f .deps/lbvector.Tpo .deps/lbvector.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT matrix.lo -MD -MP -MF .deps/matrix.Tpo -c -o matrix.lo matrix.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT matrix.lo -MD -MP -MF .deps/matrix.Tpo -c matrix.c -o matrix.o | |
mv -f .deps/matrix.Tpo .deps/matrix.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT init.lo -MD -MP -MF .deps/init.Tpo -c -o init.lo init.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT init.lo -MD -MP -MF .deps/init.Tpo -c init.c -o init.o | |
mv -f .deps/init.Tpo .deps/init.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbgrid.lo -MD -MP -MF .deps/lbgrid.Tpo -c -o lbgrid.lo lbgrid.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbgrid.lo -MD -MP -MF .deps/lbgrid.Tpo -c lbgrid.c -o lbgrid.o | |
mv -f .deps/lbgrid.Tpo .deps/lbgrid.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT box.lo -MD -MP -MF .deps/box.Tpo -c -o box.lo box.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT box.lo -MD -MP -MF .deps/box.Tpo -c box.c -o box.o | |
mv -f .deps/box.Tpo .deps/box.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT helper.lo -MD -MP -MF .deps/helper.Tpo -c -o helper.lo helper.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT helper.lo -MD -MP -MF .deps/helper.Tpo -c helper.c -o helper.o | |
mv -f .deps/helper.Tpo .deps/helper.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT neighbors.lo -MD -MP -MF .deps/neighbors.Tpo -c -o neighbors.lo neighbors.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT neighbors.lo -MD -MP -MF .deps/neighbors.Tpo -c neighbors.c -o neighbors.o | |
mv -f .deps/neighbors.Tpo .deps/neighbors.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbprint.lo -MD -MP -MF .deps/lbprint.Tpo -c -o lbprint.lo lbprint.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbprint.lo -MD -MP -MF .deps/lbprint.Tpo -c lbprint.c -o lbprint.o | |
mv -f .deps/lbprint.Tpo .deps/lbprint.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c -o hash.lo hash.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c hash.c -o hash.o | |
mv -f .deps/hash.Tpo .deps/hash.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbcolor.lo -MD -MP -MF .deps/lbcolor.Tpo -c -o lbcolor.lo lbcolor.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbcolor.lo -MD -MP -MF .deps/lbcolor.Tpo -c lbcolor.c -o lbcolor.o | |
mv -f .deps/lbcolor.Tpo .deps/lbcolor.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbextract.lo -MD -MP -MF .deps/lbextract.Tpo -c -o lbextract.lo lbextract.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbextract.lo -MD -MP -MF .deps/lbextract.Tpo -c lbextract.c -o lbextract.o | |
mv -f .deps/lbextract.Tpo .deps/lbextract.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT component.lo -MD -MP -MF .deps/component.Tpo -c -o component.lo component.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT component.lo -MD -MP -MF .deps/component.Tpo -c component.c -o component.o | |
mv -f .deps/component.Tpo .deps/component.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT edflex.lo -MD -MP -MF .deps/edflex.Tpo -c -o edflex.lo edflex.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT edflex.lo -MD -MP -MF .deps/edflex.Tpo -c edflex.c -o edflex.o | |
mv -f .deps/edflex.Tpo .deps/edflex.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT edfparse.lo -MD -MP -MF .deps/edfparse.Tpo -c -o edfparse.lo edfparse.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT edfparse.lo -MD -MP -MF .deps/edfparse.Tpo -c edfparse.c -o edfparse.o | |
edfparse.c:3529:2: warning: if statement has empty body [-Wempty-body] | |
; | |
^ | |
1 warning generated. | |
mv -f .deps/edfparse.Tpo .deps/edfparse.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT edfobj.lo -MD -MP -MF .deps/edfobj.Tpo -c -o edfobj.lo edfobj.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT edfobj.lo -MD -MP -MF .deps/edfobj.Tpo -c edfobj.c -o edfobj.o | |
mv -f .deps/edfobj.Tpo .deps/edfobj.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT edfdata.lo -MD -MP -MF .deps/edfdata.Tpo -c -o edfdata.lo edfdata.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT edfdata.lo -MD -MP -MF .deps/edfdata.Tpo -c edfdata.c -o edfdata.o | |
mv -f .deps/edfdata.Tpo .deps/edfdata.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT edfdict.lo -MD -MP -MF .deps/edfdict.Tpo -c -o edfdict.lo edfdict.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT edfdict.lo -MD -MP -MF .deps/edfdict.Tpo -c edfdict.c -o edfdict.o | |
mv -f .deps/edfdict.Tpo .deps/edfdict.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT edfio.lo -MD -MP -MF .deps/edfio.Tpo -c -o edfio.lo edfio.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT edfio.lo -MD -MP -MF .deps/edfio.Tpo -c edfio.c -o edfio.o | |
mv -f .deps/edfio.Tpo .deps/edfio.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT edfprint.lo -MD -MP -MF .deps/edfprint.Tpo -c -o edfprint.lo edfprint.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT edfprint.lo -MD -MP -MF .deps/edfprint.Tpo -c edfprint.c -o edfprint.o | |
mv -f .deps/edfprint.Tpo .deps/edfprint.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT fileio.lo -MD -MP -MF .deps/fileio.Tpo -c -o fileio.lo fileio.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT fileio.lo -MD -MP -MF .deps/fileio.Tpo -c fileio.c -o fileio.o | |
mv -f .deps/fileio.Tpo .deps/fileio.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT rwobject.lo -MD -MP -MF .deps/rwobject.Tpo -c -o rwobject.lo rwobject.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT rwobject.lo -MD -MP -MF .deps/rwobject.Tpo -c rwobject.c -o rwobject.o | |
mv -f .deps/rwobject.Tpo .deps/rwobject.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT renderstubs.lo -MD -MP -MF .deps/renderstubs.Tpo -c -o renderstubs.lo renderstubs.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT renderstubs.lo -MD -MP -MF .deps/renderstubs.Tpo -c renderstubs.c -o renderstubs.o | |
mv -f .deps/renderstubs.Tpo .deps/renderstubs.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT memorystubs.lo -MD -MP -MF .deps/memorystubs.Tpo -c -o memorystubs.lo memorystubs.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT memorystubs.lo -MD -MP -MF .deps/memorystubs.Tpo -c memorystubs.c -o memorystubs.o | |
mv -f .deps/memorystubs.Tpo .deps/memorystubs.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT qmessage.lo -MD -MP -MF .deps/qmessage.Tpo -c -o qmessage.lo qmessage.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT qmessage.lo -MD -MP -MF .deps/qmessage.Tpo -c qmessage.c -o qmessage.o | |
mv -f .deps/qmessage.Tpo .deps/qmessage.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbtask.lo -MD -MP -MF .deps/lbtask.Tpo -c -o lbtask.lo lbtask.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbtask.lo -MD -MP -MF .deps/lbtask.Tpo -c lbtask.c -o lbtask.o | |
mv -f .deps/lbtask.Tpo .deps/lbtask.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbcache.lo -MD -MP -MF .deps/lbcache.Tpo -c -o lbcache.lo lbcache.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbcache.lo -MD -MP -MF .deps/lbcache.Tpo -c lbcache.c -o lbcache.o | |
mv -f .deps/lbcache.Tpo .deps/lbcache.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT version.lo -MD -MP -MF .deps/version.Tpo -c -o version.lo version.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT version.lo -MD -MP -MF .deps/version.Tpo -c version.c -o version.o | |
mv -f .deps/version.Tpo .deps/version.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT outglue.lo -MD -MP -MF .deps/outglue.Tpo -c -o outglue.lo outglue.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT outglue.lo -MD -MP -MF .deps/outglue.Tpo -c outglue.c -o outglue.o | |
mv -f .deps/outglue.Tpo .deps/outglue.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT invalid.lo -MD -MP -MF .deps/invalid.Tpo -c -o invalid.lo invalid.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT invalid.lo -MD -MP -MF .deps/invalid.Tpo -c invalid.c -o invalid.o | |
mv -f .deps/invalid.Tpo .deps/invalid.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT seglist.lo -MD -MP -MF .deps/seglist.Tpo -c -o seglist.lo seglist.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT seglist.lo -MD -MP -MF .deps/seglist.Tpo -c seglist.c -o seglist.o | |
mv -f .deps/seglist.Tpo .deps/seglist.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT notify.lo -MD -MP -MF .deps/notify.Tpo -c -o notify.lo notify.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT notify.lo -MD -MP -MF .deps/notify.Tpo -c notify.c -o notify.o | |
mv -f .deps/notify.Tpo .deps/notify.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT userinit.lo -MD -MP -MF .deps/userinit.Tpo -c -o userinit.lo userinit.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT userinit.lo -MD -MP -MF .deps/userinit.Tpo -c userinit.c -o userinit.o | |
mv -f .deps/userinit.Tpo .deps/userinit.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT parts.lo -MD -MP -MF .deps/parts.Tpo -c -o parts.lo parts.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT parts.lo -MD -MP -MF .deps/parts.Tpo -c parts.c -o parts.o | |
mv -f .deps/parts.Tpo .deps/parts.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT arrayClass.lo -MD -MP -MF .deps/arrayClass.Tpo -c -o arrayClass.lo arrayClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT arrayClass.lo -MD -MP -MF .deps/arrayClass.Tpo -c arrayClass.c -o arrayClass.o | |
mv -f .deps/arrayClass.Tpo .deps/arrayClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT cameraClass.lo -MD -MP -MF .deps/cameraClass.Tpo -c -o cameraClass.lo cameraClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT cameraClass.lo -MD -MP -MF .deps/cameraClass.Tpo -c cameraClass.c -o cameraClass.o | |
mv -f .deps/cameraClass.Tpo .deps/cameraClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT clippedClass.lo -MD -MP -MF .deps/clippedClass.Tpo -c -o clippedClass.lo clippedClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT clippedClass.lo -MD -MP -MF .deps/clippedClass.Tpo -c clippedClass.c -o clippedClass.o | |
mv -f .deps/clippedClass.Tpo .deps/clippedClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT fieldClass.lo -MD -MP -MF .deps/fieldClass.Tpo -c -o fieldClass.lo fieldClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT fieldClass.lo -MD -MP -MF .deps/fieldClass.Tpo -c fieldClass.c -o fieldClass.o | |
mv -f .deps/fieldClass.Tpo .deps/fieldClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT groupClass.lo -MD -MP -MF .deps/groupClass.Tpo -c -o groupClass.lo groupClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT groupClass.lo -MD -MP -MF .deps/groupClass.Tpo -c groupClass.c -o groupClass.o | |
mv -f .deps/groupClass.Tpo .deps/groupClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lightClass.lo -MD -MP -MF .deps/lightClass.Tpo -c -o lightClass.lo lightClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lightClass.lo -MD -MP -MF .deps/lightClass.Tpo -c lightClass.c -o lightClass.o | |
mv -f .deps/lightClass.Tpo .deps/lightClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT objectClass.lo -MD -MP -MF .deps/objectClass.Tpo -c -o objectClass.lo objectClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT objectClass.lo -MD -MP -MF .deps/objectClass.Tpo -c objectClass.c -o objectClass.o | |
mv -f .deps/objectClass.Tpo .deps/objectClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT stringClass.lo -MD -MP -MF .deps/stringClass.Tpo -c -o stringClass.lo stringClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT stringClass.lo -MD -MP -MF .deps/stringClass.Tpo -c stringClass.c -o stringClass.o | |
mv -f .deps/stringClass.Tpo .deps/stringClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT xformClass.lo -MD -MP -MF .deps/xformClass.Tpo -c -o xformClass.lo xformClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT xformClass.lo -MD -MP -MF .deps/xformClass.Tpo -c xformClass.c -o xformClass.o | |
mv -f .deps/xformClass.Tpo .deps/xformClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT screenClass.lo -MD -MP -MF .deps/screenClass.Tpo -c -o screenClass.lo screenClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT screenClass.lo -MD -MP -MF .deps/screenClass.Tpo -c screenClass.c -o screenClass.o | |
mv -f .deps/screenClass.Tpo .deps/screenClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT privateClass.lo -MD -MP -MF .deps/privateClass.Tpo -c -o privateClass.lo privateClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT privateClass.lo -MD -MP -MF .deps/privateClass.Tpo -c privateClass.c -o privateClass.o | |
mv -f .deps/privateClass.Tpo .deps/privateClass.Plo | |
sh ../../../libtool --tag=CC --mode=link gcc -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -version-info 4:44:0 -L/sw/lib -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -o libDXlite.la -rpath /sw/share/dx/lib_macos object.lo string.lo lbcamera.lo clipped.lo field.lo group.lo series.lo composite.lo multigrid.lo lblight.lo array.lo sharedarray.lo regulararray.lo cstarray.lo patharray.lo productarray.lo mesharray.lo xform.lo lbscreen.lo lbprivate.lo lbmessage.lo timing.lo lock.lo plock.lo stringtable.lo client.lo basic.lo lbvector.lo matrix.lo init.lo lbgrid.lo box.lo helper.lo neighbors.lo lbprint.lo hash.lo lbcolor.lo lbextract.lo component.lo edflex.lo edfparse.lo edfobj.lo edfdata.lo edfdict.lo edfio.lo edfprint.lo fileio.lo rwobject.lo renderstubs.lo memorystubs.lo qmessage.lo lbtask.lo lbcache.lo version.lo outglue.lo invalid.lo seglist.lo notify.lo userinit.lo parts.lo arrayClass.lo cameraClass.lo clippedClass.lo fieldClass.lo groupClass.lo lightClass.lo objectClass.lo stringClass.lo xformClass.lo screenClass.lo privateClass.lo -lXinerama -lnetcdf -ldf -ljpeg -lsz -lXpm -ltiff -ldl -lXm -lXp -lGLU -lGL -lm -lXmu -lXext -lXt -lX11 -lSM -lICE -L/usr/X11R6/lib -lpthread -lz -L/sw/lib -lGraphicsMagick | |
libtool: link: ar cru .libs/libDXlite.a object.o string.o lbcamera.o clipped.o field.o group.o series.o composite.o multigrid.o lblight.o array.o sharedarray.o regulararray.o cstarray.o patharray.o productarray.o mesharray.o xform.o lbscreen.o lbprivate.o lbmessage.o timing.o lock.o plock.o stringtable.o client.o basic.o lbvector.o matrix.o init.o lbgrid.o box.o helper.o neighbors.o lbprint.o hash.o lbcolor.o lbextract.o component.o edflex.o edfparse.o edfobj.o edfdata.o edfdict.o edfio.o edfprint.o fileio.o rwobject.o renderstubs.o memorystubs.o qmessage.o lbtask.o lbcache.o version.o outglue.o invalid.o seglist.o notify.o userinit.o parts.o arrayClass.o cameraClass.o clippedClass.o fieldClass.o groupClass.o lightClass.o objectClass.o stringClass.o xformClass.o screenClass.o privateClass.o | |
/usr/bin/ranlib: file: .libs/libDXlite.a(plock.o) has no symbols | |
libtool: link: ranlib .libs/libDXlite.a | |
ranlib: file: .libs/libDXlite.a(plock.o) has no symbols | |
libtool: link: ( cd ".libs" && rm -f "libDXlite.la" && ln -s "../libDXlite.la" "libDXlite.la" ) | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT interpClass.lo -MD -MP -MF .deps/interpClass.Tpo -c -o interpClass.lo interpClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT interpClass.lo -MD -MP -MF .deps/interpClass.Tpo -c interpClass.c -o interpClass.o | |
mv -f .deps/interpClass.Tpo .deps/interpClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT fieldinterpClass.lo -MD -MP -MF .deps/fieldinterpClass.Tpo -c -o fieldinterpClass.lo fieldinterpClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT fieldinterpClass.lo -MD -MP -MF .deps/fieldinterpClass.Tpo -c fieldinterpClass.c -o fieldinterpClass.o | |
mv -f .deps/fieldinterpClass.Tpo .deps/fieldinterpClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT groupinterpClass.lo -MD -MP -MF .deps/groupinterpClass.Tpo -c -o groupinterpClass.lo groupinterpClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT groupinterpClass.lo -MD -MP -MF .deps/groupinterpClass.Tpo -c groupinterpClass.c -o groupinterpClass.o | |
mv -f .deps/groupinterpClass.Tpo .deps/groupinterpClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT fle2DClass.lo -MD -MP -MF .deps/fle2DClass.Tpo -c -o fle2DClass.lo fle2DClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT fle2DClass.lo -MD -MP -MF .deps/fle2DClass.Tpo -c fle2DClass.c -o fle2DClass.o | |
mv -f .deps/fle2DClass.Tpo .deps/fle2DClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT linesII1DClass.lo -MD -MP -MF .deps/linesII1DClass.Tpo -c -o linesII1DClass.lo linesII1DClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT linesII1DClass.lo -MD -MP -MF .deps/linesII1DClass.Tpo -c linesII1DClass.c -o linesII1DClass.o | |
mv -f .deps/linesII1DClass.Tpo .deps/linesII1DClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT linesRR1DClass.lo -MD -MP -MF .deps/linesRR1DClass.Tpo -c -o linesRR1DClass.lo linesRR1DClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT linesRR1DClass.lo -MD -MP -MF .deps/linesRR1DClass.Tpo -c linesRR1DClass.c -o linesRR1DClass.o | |
mv -f .deps/linesRR1DClass.Tpo .deps/linesRR1DClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT linesRI1DClass.lo -MD -MP -MF .deps/linesRI1DClass.Tpo -c -o linesRI1DClass.lo linesRI1DClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT linesRI1DClass.lo -MD -MP -MF .deps/linesRI1DClass.Tpo -c linesRI1DClass.c -o linesRI1DClass.o | |
mv -f .deps/linesRI1DClass.Tpo .deps/linesRI1DClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT trisRI2DClass.lo -MD -MP -MF .deps/trisRI2DClass.Tpo -c -o trisRI2DClass.lo trisRI2DClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT trisRI2DClass.lo -MD -MP -MF .deps/trisRI2DClass.Tpo -c trisRI2DClass.c -o trisRI2DClass.o | |
mv -f .deps/trisRI2DClass.Tpo .deps/trisRI2DClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT quadsRR2DClass.lo -MD -MP -MF .deps/quadsRR2DClass.Tpo -c -o quadsRR2DClass.lo quadsRR2DClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT quadsRR2DClass.lo -MD -MP -MF .deps/quadsRR2DClass.Tpo -c quadsRR2DClass.c -o quadsRR2DClass.o | |
mv -f .deps/quadsRR2DClass.Tpo .deps/quadsRR2DClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT cubesIIClass.lo -MD -MP -MF .deps/cubesIIClass.Tpo -c -o cubesIIClass.lo cubesIIClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT cubesIIClass.lo -MD -MP -MF .deps/cubesIIClass.Tpo -c cubesIIClass.c -o cubesIIClass.o | |
mv -f .deps/cubesIIClass.Tpo .deps/cubesIIClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT cubesRRClass.lo -MD -MP -MF .deps/cubesRRClass.Tpo -c -o cubesRRClass.lo cubesRRClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT cubesRRClass.lo -MD -MP -MF .deps/cubesRRClass.Tpo -c cubesRRClass.c -o cubesRRClass.o | |
mv -f .deps/cubesRRClass.Tpo .deps/cubesRRClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT tetrasClass.lo -MD -MP -MF .deps/tetrasClass.Tpo -c -o tetrasClass.lo tetrasClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT tetrasClass.lo -MD -MP -MF .deps/tetrasClass.Tpo -c tetrasClass.c -o tetrasClass.o | |
mv -f .deps/tetrasClass.Tpo .deps/tetrasClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT quadsII2DClass.lo -MD -MP -MF .deps/quadsII2DClass.Tpo -c -o quadsII2DClass.lo quadsII2DClass.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT quadsII2DClass.lo -MD -MP -MF .deps/quadsII2DClass.Tpo -c quadsII2DClass.c -o quadsII2DClass.o | |
mv -f .deps/quadsII2DClass.Tpo .deps/quadsII2DClass.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT axes.lo -MD -MP -MF .deps/axes.Tpo -c -o axes.lo axes.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT axes.lo -MD -MP -MF .deps/axes.Tpo -c axes.c -o axes.o | |
mv -f .deps/axes.Tpo .deps/axes.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT buffer.lo -MD -MP -MF .deps/buffer.Tpo -c -o buffer.lo buffer.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT buffer.lo -MD -MP -MF .deps/buffer.Tpo -c buffer.c -o buffer.o | |
mv -f .deps/buffer.Tpo .deps/buffer.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT displayfb.lo -MD -MP -MF .deps/displayfb.Tpo -c -o displayfb.lo displayfb.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT displayfb.lo -MD -MP -MF .deps/displayfb.Tpo -c displayfb.c -o displayfb.o | |
mv -f .deps/displayfb.Tpo .deps/displayfb.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT displayx.lo -MD -MP -MF .deps/displayx.Tpo -c -o displayx.lo displayx.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT displayx.lo -MD -MP -MF .deps/displayx.Tpo -c displayx.c -o displayx.o | |
mv -f .deps/displayx.Tpo .deps/displayx.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT displayutil.lo -MD -MP -MF .deps/displayutil.Tpo -c -o displayutil.lo displayutil.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT displayutil.lo -MD -MP -MF .deps/displayutil.Tpo -c displayutil.c -o displayutil.o | |
mv -f .deps/displayutil.Tpo .deps/displayutil.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT displayw.lo -MD -MP -MF .deps/displayw.Tpo -c -o displayw.lo displayw.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT displayw.lo -MD -MP -MF .deps/displayw.Tpo -c displayw.c -o displayw.o | |
mv -f .deps/displayw.Tpo .deps/displayw.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT windows.lo -MD -MP -MF .deps/windows.Tpo -c -o windows.lo windows.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT windows.lo -MD -MP -MF .deps/windows.Tpo -c windows.c -o windows.o | |
mv -f .deps/windows.Tpo .deps/windows.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT grow.lo -MD -MP -MF .deps/grow.Tpo -c -o grow.lo grow.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT grow.lo -MD -MP -MF .deps/grow.Tpo -c grow.c -o grow.o | |
mv -f .deps/grow.Tpo .deps/grow.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT image.lo -MD -MP -MF .deps/image.Tpo -c -o image.lo image.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT image.lo -MD -MP -MF .deps/image.Tpo -c image.c -o image.o | |
mv -f .deps/image.Tpo .deps/image.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT irreggrow.lo -MD -MP -MF .deps/irreggrow.Tpo -c -o irreggrow.lo irreggrow.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT irreggrow.lo -MD -MP -MF .deps/irreggrow.Tpo -c irreggrow.c -o irreggrow.o | |
mv -f .deps/irreggrow.Tpo .deps/irreggrow.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbmap.lo -MD -MP -MF .deps/lbmap.Tpo -c -o lbmap.lo lbmap.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbmap.lo -MD -MP -MF .deps/lbmap.Tpo -c lbmap.c -o lbmap.o | |
mv -f .deps/lbmap.Tpo .deps/lbmap.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT gather.lo -MD -MP -MF .deps/gather.Tpo -c -o gather.lo gather.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT gather.lo -MD -MP -MF .deps/gather.Tpo -c gather.c -o gather.o | |
mv -f .deps/gather.Tpo .deps/gather.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT line.lo -MD -MP -MF .deps/line.Tpo -c -o line.lo line.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT line.lo -MD -MP -MF .deps/line.Tpo -c line.c -o line.o | |
mv -f .deps/line.Tpo .deps/line.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbpartition.lo -MD -MP -MF .deps/lbpartition.Tpo -c -o lbpartition.lo lbpartition.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbpartition.lo -MD -MP -MF .deps/lbpartition.Tpo -c lbpartition.c -o lbpartition.o | |
mv -f .deps/lbpartition.Tpo .deps/lbpartition.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT partreg.lo -MD -MP -MF .deps/partreg.Tpo -c -o partreg.lo partreg.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT partreg.lo -MD -MP -MF .deps/partreg.Tpo -c partreg.c -o partreg.o | |
mv -f .deps/partreg.Tpo .deps/partreg.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT permute.lo -MD -MP -MF .deps/permute.Tpo -c -o permute.lo permute.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT permute.lo -MD -MP -MF .deps/permute.Tpo -c permute.c -o permute.o | |
mv -f .deps/permute.Tpo .deps/permute.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT paint.lo -MD -MP -MF .deps/paint.Tpo -c -o paint.lo paint.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT paint.lo -MD -MP -MF .deps/paint.Tpo -c paint.c -o paint.o | |
mv -f .deps/paint.Tpo .deps/paint.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT reggrow.lo -MD -MP -MF .deps/reggrow.Tpo -c -o reggrow.lo reggrow.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT reggrow.lo -MD -MP -MF .deps/reggrow.Tpo -c reggrow.c -o reggrow.o | |
reggrow.c:2766:13: warning: 5 enumeration values not handled in switch: 'TYPE_BYTE', 'TYPE_USHORT', 'TYPE_UINT'... [-Wswitch-enum] | |
switch(type) | |
^ | |
reggrow.c:2837:13: warning: 5 enumeration values not handled in switch: 'TYPE_BYTE', 'TYPE_USHORT', 'TYPE_UINT'... [-Wswitch-enum] | |
switch(type) | |
^ | |
2 warnings generated. | |
mv -f .deps/reggrow.Tpo .deps/reggrow.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT stats.lo -MD -MP -MF .deps/stats.Tpo -c -o stats.lo stats.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT stats.lo -MD -MP -MF .deps/stats.Tpo -c stats.c -o stats.o | |
stats.c:1405:6: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
EACHTYPE_R(RS); | |
^ | |
stats.c:1336:12: note: instantiated from: | |
switch(type) { \ | |
^ | |
stats.c:1428:2: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
EACHTYPE(S); | |
^ | |
stats.c:1316:12: note: instantiated from: | |
switch(type) { \ | |
^ | |
stats.c:1434:6: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
EACHTYPE(v2D); | |
^ | |
stats.c:1316:12: note: instantiated from: | |
switch(type) { \ | |
^ | |
stats.c:1437:6: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
EACHTYPE(m2D); | |
^ | |
stats.c:1316:12: note: instantiated from: | |
switch(type) { \ | |
^ | |
stats.c:1445:6: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
EACHTYPE(v3D); | |
^ | |
stats.c:1316:12: note: instantiated from: | |
switch(type) { \ | |
^ | |
stats.c:1448:6: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
EACHTYPE(m3D); | |
^ | |
stats.c:1316:12: note: instantiated from: | |
switch(type) { \ | |
^ | |
stats.c:1456:6: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
EACHTYPE_N(vND, shape[0]); | |
^ | |
stats.c:1364:12: note: instantiated from: | |
switch(type) { \ | |
^ | |
stats.c:1459:6: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
EACHTYPE_N(mND, shape[0]); | |
^ | |
stats.c:1364:12: note: instantiated from: | |
switch(type) { \ | |
^ | |
stats.c:1732:6: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
EACHTYPE(S); | |
^ | |
stats.c:1667:12: note: instantiated from: | |
switch(type) { \ | |
^ | |
stats.c:1736:6: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
EACHTYPE(S); | |
^ | |
stats.c:1667:12: note: instantiated from: | |
switch(type) { \ | |
^ | |
stats.c:1774:2: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
EACHTYPE(S); | |
^ | |
stats.c:1667:12: note: instantiated from: | |
switch(type) { \ | |
^ | |
stats.c:1780:6: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
EACHTYPE(v2D); | |
^ | |
stats.c:1667:12: note: instantiated from: | |
switch(type) { \ | |
^ | |
stats.c:1783:6: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
EACHTYPE(m2D); | |
^ | |
stats.c:1667:12: note: instantiated from: | |
switch(type) { \ | |
^ | |
stats.c:1791:6: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
EACHTYPE(v3D); | |
^ | |
stats.c:1667:12: note: instantiated from: | |
switch(type) { \ | |
^ | |
stats.c:1794:6: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
EACHTYPE(m3D); | |
^ | |
stats.c:1667:12: note: instantiated from: | |
switch(type) { \ | |
^ | |
stats.c:1802:6: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
EACHTYPE_N(vND, shape[0]); | |
^ | |
stats.c:1689:12: note: instantiated from: | |
switch(type) { \ | |
^ | |
stats.c:1805:6: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
EACHTYPE_N(mND, shape[0]); | |
^ | |
stats.c:1689:12: note: instantiated from: | |
switch(type) { \ | |
^ | |
stats.c:1853:9: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
switch(type) { | |
^ | |
stats.c:1893:12: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
switch(type) { | |
^ | |
19 warnings generated. | |
mv -f .deps/stats.Tpo .deps/stats.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbtext.lo -MD -MP -MF .deps/lbtext.Tpo -c -o lbtext.lo lbtext.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbtext.lo -MD -MP -MF .deps/lbtext.Tpo -c lbtext.c -o lbtext.o | |
mv -f .deps/lbtext.Tpo .deps/lbtext.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbtransform.lo -MD -MP -MF .deps/lbtransform.Tpo -c -o lbtransform.lo lbtransform.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbtransform.lo -MD -MP -MF .deps/lbtransform.Tpo -c lbtransform.c -o lbtransform.o | |
lbtransform.c:954:12: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
switch(type) | |
^ | |
lbtransform.c:1079:12: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
switch(type) | |
^ | |
lbtransform.c:1216:12: warning: enumeration values 'TYPE_HYPER' and 'TYPE_STRING' not handled in switch [-Wswitch-enum] | |
switch(type) | |
^ | |
3 warnings generated. | |
mv -f .deps/lbtransform.Tpo .deps/lbtransform.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT binSort.lo -MD -MP -MF .deps/binSort.Tpo -c -o binSort.lo binSort.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT binSort.lo -MD -MP -MF .deps/binSort.Tpo -c binSort.c -o binSort.o | |
mv -f .deps/binSort.Tpo .deps/binSort.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT interp.lo -MD -MP -MF .deps/interp.Tpo -c -o interp.lo interp.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT interp.lo -MD -MP -MF .deps/interp.Tpo -c interp.c -o interp.o | |
mv -f .deps/interp.Tpo .deps/interp.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT fieldinterp.lo -MD -MP -MF .deps/fieldinterp.Tpo -c -o fieldinterp.lo fieldinterp.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT fieldinterp.lo -MD -MP -MF .deps/fieldinterp.Tpo -c fieldinterp.c -o fieldinterp.o | |
mv -f .deps/fieldinterp.Tpo .deps/fieldinterp.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT groupinterp.lo -MD -MP -MF .deps/groupinterp.Tpo -c -o groupinterp.lo groupinterp.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT groupinterp.lo -MD -MP -MF .deps/groupinterp.Tpo -c groupinterp.c -o groupinterp.o | |
mv -f .deps/groupinterp.Tpo .deps/groupinterp.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT fle2D.lo -MD -MP -MF .deps/fle2D.Tpo -c -o fle2D.lo fle2D.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT fle2D.lo -MD -MP -MF .deps/fle2D.Tpo -c fle2D.c -o fle2D.o | |
mv -f .deps/fle2D.Tpo .deps/fle2D.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT linesII1D.lo -MD -MP -MF .deps/linesII1D.Tpo -c -o linesII1D.lo linesII1D.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT linesII1D.lo -MD -MP -MF .deps/linesII1D.Tpo -c linesII1D.c -o linesII1D.o | |
mv -f .deps/linesII1D.Tpo .deps/linesII1D.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT linesRR1D.lo -MD -MP -MF .deps/linesRR1D.Tpo -c -o linesRR1D.lo linesRR1D.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT linesRR1D.lo -MD -MP -MF .deps/linesRR1D.Tpo -c linesRR1D.c -o linesRR1D.o | |
mv -f .deps/linesRR1D.Tpo .deps/linesRR1D.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT linesRI1D.lo -MD -MP -MF .deps/linesRI1D.Tpo -c -o linesRI1D.lo linesRI1D.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT linesRI1D.lo -MD -MP -MF .deps/linesRI1D.Tpo -c linesRI1D.c -o linesRI1D.o | |
mv -f .deps/linesRI1D.Tpo .deps/linesRI1D.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT trisRI2D.lo -MD -MP -MF .deps/trisRI2D.Tpo -c -o trisRI2D.lo trisRI2D.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT trisRI2D.lo -MD -MP -MF .deps/trisRI2D.Tpo -c trisRI2D.c -o trisRI2D.o | |
mv -f .deps/trisRI2D.Tpo .deps/trisRI2D.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT quadsRR2D.lo -MD -MP -MF .deps/quadsRR2D.Tpo -c -o quadsRR2D.lo quadsRR2D.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT quadsRR2D.lo -MD -MP -MF .deps/quadsRR2D.Tpo -c quadsRR2D.c -o quadsRR2D.o | |
mv -f .deps/quadsRR2D.Tpo .deps/quadsRR2D.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT cubesII.lo -MD -MP -MF .deps/cubesII.Tpo -c -o cubesII.lo cubesII.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT cubesII.lo -MD -MP -MF .deps/cubesII.Tpo -c cubesII.c -o cubesII.o | |
mv -f .deps/cubesII.Tpo .deps/cubesII.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT cubesRR.lo -MD -MP -MF .deps/cubesRR.Tpo -c -o cubesRR.lo cubesRR.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT cubesRR.lo -MD -MP -MF .deps/cubesRR.Tpo -c cubesRR.c -o cubesRR.o | |
mv -f .deps/cubesRR.Tpo .deps/cubesRR.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT tetras.lo -MD -MP -MF .deps/tetras.Tpo -c -o tetras.lo tetras.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT tetras.lo -MD -MP -MF .deps/tetras.Tpo -c tetras.c -o tetras.o | |
mv -f .deps/tetras.Tpo .deps/tetras.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT quadsII2D.lo -MD -MP -MF .deps/quadsII2D.Tpo -c -o quadsII2D.lo quadsII2D.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT quadsII2D.lo -MD -MP -MF .deps/quadsII2D.Tpo -c quadsII2D.c -o quadsII2D.o | |
mv -f .deps/quadsII2D.Tpo .deps/quadsII2D.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT plane.lo -MD -MP -MF .deps/plane.Tpo -c -o plane.lo plane.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT plane.lo -MD -MP -MF .deps/plane.Tpo -c plane.c -o plane.o | |
mv -f .deps/plane.Tpo .deps/plane.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT point.lo -MD -MP -MF .deps/point.Tpo -c -o point.lo point.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT point.lo -MD -MP -MF .deps/point.Tpo -c point.c -o point.o | |
mv -f .deps/point.Tpo .deps/point.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT quad.lo -MD -MP -MF .deps/quad.Tpo -c -o quad.lo quad.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT quad.lo -MD -MP -MF .deps/quad.Tpo -c quad.c -o quad.o | |
mv -f .deps/quad.Tpo .deps/quad.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbshade.lo -MD -MP -MF .deps/lbshade.Tpo -c -o lbshade.lo lbshade.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbshade.lo -MD -MP -MF .deps/lbshade.Tpo -c lbshade.c -o lbshade.o | |
mv -f .deps/lbshade.Tpo .deps/lbshade.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT tile.lo -MD -MP -MF .deps/tile.Tpo -c -o tile.lo tile.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT tile.lo -MD -MP -MF .deps/tile.Tpo -c tile.c -o tile.o | |
mv -f .deps/tile.Tpo .deps/tile.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT triangle.lo -MD -MP -MF .deps/triangle.Tpo -c -o triangle.lo triangle.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT triangle.lo -MD -MP -MF .deps/triangle.Tpo -c triangle.c -o triangle.o | |
mv -f .deps/triangle.Tpo .deps/triangle.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT volume.lo -MD -MP -MF .deps/volume.Tpo -c -o volume.lo volume.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT volume.lo -MD -MP -MF .deps/volume.Tpo -c volume.c -o volume.o | |
mv -f .deps/volume.Tpo .deps/volume.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT xfield.lo -MD -MP -MF .deps/xfield.Tpo -c -o xfield.lo xfield.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT xfield.lo -MD -MP -MF .deps/xfield.Tpo -c xfield.c -o xfield.o | |
mv -f .deps/xfield.Tpo .deps/xfield.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT xwindow.lo -MD -MP -MF .deps/xwindow.Tpo -c -o xwindow.lo xwindow.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT xwindow.lo -MD -MP -MF .deps/xwindow.Tpo -c xwindow.c -o xwindow.o | |
mv -f .deps/xwindow.Tpo .deps/xwindow.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -O -c ./zclipT.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -O -c ./zclipT.c -o zclipT.o | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -O -c ./zclipQ.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -O -c ./zclipQ.c -o zclipQ.o | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbpick.lo -MD -MP -MF .deps/lbpick.Tpo -c -o lbpick.lo lbpick.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbpick.lo -MD -MP -MF .deps/lbpick.Tpo -c lbpick.c -o lbpick.o | |
mv -f .deps/lbpick.Tpo .deps/lbpick.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbmsgs.lo -MD -MP -MF .deps/lbmsgs.Tpo -c -o lbmsgs.lo lbmsgs.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lbmsgs.lo -MD -MP -MF .deps/lbmsgs.Tpo -c lbmsgs.c -o lbmsgs.o | |
mv -f .deps/lbmsgs.Tpo .deps/lbmsgs.Plo | |
sh ../../../libtool --tag=CC --mode=link gcc -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -L/sw/lib -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -o libLIBDX.la arrayClass.lo cameraClass.lo clippedClass.lo fieldClass.lo groupClass.lo lightClass.lo objectClass.lo privateClass.lo screenClass.lo stringClass.lo xformClass.lo interpClass.lo fieldinterpClass.lo groupinterpClass.lo fle2DClass.lo linesII1DClass.lo linesRR1DClass.lo linesRI1DClass.lo trisRI2DClass.lo quadsRR2DClass.lo cubesIIClass.lo cubesRRClass.lo tetrasClass.lo quadsII2DClass.lo array.lo basic.lo box.lo lbcamera.lo clipped.lo composite.lo cstarray.lo field.lo lbgrid.lo group.lo helper.lo init.lo lblight.lo lock.lo matrix.lo mesharray.lo lbmessage.lo multigrid.lo neighbors.lo object.lo patharray.lo lbprivate.lo productarray.lo sharedarray.lo regulararray.lo lbscreen.lo series.lo string.lo stringtable.lo timing.lo lbvector.lo version.lo xform.lo userinit.lo axes.lo buffer.lo client.lo lbcolor.lo component.lo displayfb.lo displayx.lo displayutil.lo displayw.lo windows.lo edfdata.lo edfdict.lo edfio.lo edflex.lo edfobj.lo edfparse.lo edfprint.lo lbextract.lo fileio.lo grow.lo hash.lo image.lo invalid.lo irreggrow.lo lbmap.lo gather.lo line.lo lbpartition.lo partreg.lo parts.lo permute.lo paint.lo plock.lo lbprint.lo reggrow.lo rwobject.lo seglist.lo stats.lo lbtext.lo lbtransform.lo binSort.lo interp.lo fieldinterp.lo groupinterp.lo fle2D.lo linesII1D.lo linesRR1D.lo linesRI1D.lo trisRI2D.lo quadsRR2D.lo cubesII.lo cubesRR.lo tetras.lo quadsII2D.lo plane.lo point.lo quad.lo lbshade.lo tile.lo triangle.lo volume.lo xfield.lo xwindow.lo zclipT.lo zclipQ.lo notify.lo lbpick.lo lbmsgs.lo -lXinerama -lnetcdf -ldf -ljpeg -lsz -lXpm -ltiff -ldl -lXm -lXp -lGLU -lGL -lm -lXmu -lXext -lXt -lX11 -lSM -lICE -L/usr/X11R6/lib -lpthread -lz -L/sw/lib -lGraphicsMagick | |
libtool: link: ar cru .libs/libLIBDX.a arrayClass.o cameraClass.o clippedClass.o fieldClass.o groupClass.o lightClass.o objectClass.o privateClass.o screenClass.o stringClass.o xformClass.o interpClass.o fieldinterpClass.o groupinterpClass.o fle2DClass.o linesII1DClass.o linesRR1DClass.o linesRI1DClass.o trisRI2DClass.o quadsRR2DClass.o cubesIIClass.o cubesRRClass.o tetrasClass.o quadsII2DClass.o array.o basic.o box.o lbcamera.o clipped.o composite.o cstarray.o field.o lbgrid.o group.o helper.o init.o lblight.o lock.o matrix.o mesharray.o lbmessage.o multigrid.o neighbors.o object.o patharray.o lbprivate.o productarray.o sharedarray.o regulararray.o lbscreen.o series.o string.o stringtable.o timing.o lbvector.o version.o xform.o userinit.o axes.o buffer.o client.o lbcolor.o component.o displayfb.o displayx.o displayutil.o displayw.o windows.o edfdata.o edfdict.o edfio.o edflex.o edfobj.o edfparse.o edfprint.o lbextract.o fileio.o grow.o hash.o image.o invalid.o irreggrow.o lbmap.o gather.o line.o lbpartition.o partreg.o parts.o permute.o paint.o plock.o lbprint.o reggrow.o rwobject.o seglist.o stats.o lbtext.o lbtransform.o binSort.o interp.o fieldinterp.o groupinterp.o fle2D.o linesII1D.o linesRR1D.o linesRI1D.o trisRI2D.o quadsRR2D.o cubesII.o cubesRR.o tetras.o quadsII2D.o plane.o point.o quad.o lbshade.o tile.o triangle.o volume.o xfield.o xwindow.o zclipT.o zclipQ.o notify.o lbpick.o lbmsgs.o | |
/usr/bin/ranlib: file: .libs/libLIBDX.a(displayw.o) has no symbols | |
/usr/bin/ranlib: file: .libs/libLIBDX.a(windows.o) has no symbols | |
/usr/bin/ranlib: file: .libs/libLIBDX.a(plock.o) has no symbols | |
/usr/bin/ranlib: file: .libs/libLIBDX.a(lbmsgs.o) has no symbols | |
libtool: link: ranlib .libs/libLIBDX.a | |
ranlib: file: .libs/libLIBDX.a(displayw.o) has no symbols | |
ranlib: file: .libs/libLIBDX.a(windows.o) has no symbols | |
ranlib: file: .libs/libLIBDX.a(plock.o) has no symbols | |
ranlib: file: .libs/libLIBDX.a(lbmsgs.o) has no symbols | |
libtool: link: ( cd ".libs" && rm -f "libLIBDX.la" && ln -s "../libLIBDX.la" "libLIBDX.la" ) | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT callm_xinit.lo -MD -MP -MF .deps/callm_xinit.Tpo -c -o callm_xinit.lo callm_xinit.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT callm_xinit.lo -MD -MP -MF .deps/callm_xinit.Tpo -c callm_xinit.c -o callm_xinit.o | |
mv -f .deps/callm_xinit.Tpo .deps/callm_xinit.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT callm_init.lo -MD -MP -MF .deps/callm_init.Tpo -c -o callm_init.lo callm_init.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT callm_init.lo -MD -MP -MF .deps/callm_init.Tpo -c callm_init.c -o callm_init.o | |
mv -f .deps/callm_init.Tpo .deps/callm_init.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT callm_winit.lo -MD -MP -MF .deps/callm_winit.Tpo -c -o callm_winit.lo callm_winit.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT callm_winit.lo -MD -MP -MF .deps/callm_winit.Tpo -c callm_winit.c -o callm_winit.o | |
mv -f .deps/callm_winit.Tpo .deps/callm_winit.Plo | |
sh ../../../libtool --tag=CC --mode=link gcc -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -L/sw/lib -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -o libcallm.la qmessage.lo outglue.lo lbtask.lo lbcache.lo memorystubs.lo callm_xinit.lo callm_init.lo callm_winit.lo -lXinerama -lnetcdf -ldf -ljpeg -lsz -lXpm -ltiff -ldl -lXm -lXp -lGLU -lGL -lm -lXmu -lXext -lXt -lX11 -lSM -lICE -L/usr/X11R6/lib -lpthread -lz -L/sw/lib -lGraphicsMagick | |
libtool: link: ar cru .libs/libcallm.a qmessage.o outglue.o lbtask.o lbcache.o memorystubs.o callm_xinit.o callm_init.o callm_winit.o | |
/usr/bin/ranlib: file: .libs/libcallm.a(callm_winit.o) has no symbols | |
libtool: link: ranlib .libs/libcallm.a | |
ranlib: file: .libs/libcallm.a(callm_winit.o) has no symbols | |
libtool: link: ( cd ".libs" && rm -f "libcallm.la" && ln -s "../libcallm.la" "libcallm.la" ) | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT mem.lo -MD -MP -MF .deps/mem.Tpo -c -o mem.lo mem.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT mem.lo -MD -MP -MF .deps/mem.Tpo -c mem.c -o mem.o | |
mv -f .deps/mem.Tpo .deps/mem.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT memory.lo -MD -MP -MF .deps/memory.Tpo -c -o memory.lo memory.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT memory.lo -MD -MP -MF .deps/memory.Tpo -c memory.c -o memory.o | |
mv -f .deps/memory.Tpo .deps/memory.Plo | |
sh ../../../libtool --tag=CC --mode=link gcc -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -L/sw/lib -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -o libmem.la mem.lo memory.lo -lXinerama -lnetcdf -ldf -ljpeg -lsz -lXpm -ltiff -ldl -lXm -lXp -lGLU -lGL -lm -lXmu -lXext -lXt -lX11 -lSM -lICE -L/usr/X11R6/lib -lpthread -lz -L/sw/lib -lGraphicsMagick | |
libtool: link: ar cru .libs/libmem.a mem.o memory.o | |
libtool: link: ranlib .libs/libmem.a | |
libtool: link: ( cd ".libs" && rm -f "libmem.la" && ln -s "../libmem.la" "libmem.la" ) | |
Making all in dxmods | |
echo MYINC: | |
MYINC: | |
rm -f dx.mdf | |
cp ./dxmdf.src tmp.c | |
gcc -E -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -DHAVE_CONFIG_H -DCPLUSPLUS_UI -DEXECUTIVE_MODS tmp.c > dx.mdf | |
cat dx.mdf |sed '/^#/d' > tmp.mdf | |
cat tmp.mdf |sed -f stripl.sed > dx.mdf | |
rm -f tmp.c | |
user.c rule | |
awk -f ../../../lib/mdf2c.awk < dx.mdf > user.c | |
rm -f dxcm.mdf | |
cp ./dxmdf.src tmp.c | |
gcc -E -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -DHAVE_CONFIG_H tmp.c > dxcm.mdf | |
rm -f tmp.c | |
usercm.c rule | |
awk -f ../../../lib/mdf2c.awk < dxcm.mdf > usercm.c | |
make all-am | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT ambientlight.lo -MD -MP -MF .deps/ambientlight.Tpo -c -o ambientlight.lo ambientlight.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT ambientlight.lo -MD -MP -MF .deps/ambientlight.Tpo -c ambientlight.c -o ambientlight.o | |
mv -f .deps/ambientlight.Tpo .deps/ambientlight.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT append.lo -MD -MP -MF .deps/append.Tpo -c -o append.lo append.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT append.lo -MD -MP -MF .deps/append.Tpo -c append.c -o append.o | |
append.c:189:2: warning: if statement has empty body [-Wempty-body] | |
; /* DXWarning("#4016"); -* no inputs specified; nothing appended */ | |
^ | |
append.c:192:9: warning: if statement has empty body [-Wempty-body] | |
; /* DXWarning("#4010"); -* valid object following NULL in list */ | |
^ | |
2 warnings generated. | |
mv -f .deps/append.Tpo .deps/append.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT arrange.lo -MD -MP -MF .deps/arrange.Tpo -c -o arrange.lo arrange.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT arrange.lo -MD -MP -MF .deps/arrange.Tpo -c arrange.c -o arrange.o | |
mv -f .deps/arrange.Tpo .deps/arrange.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT attribute.lo -MD -MP -MF .deps/attribute.Tpo -c -o attribute.lo attribute.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT attribute.lo -MD -MP -MF .deps/attribute.Tpo -c attribute.c -o attribute.o | |
mv -f .deps/attribute.Tpo .deps/attribute.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT autocolor.lo -MD -MP -MF .deps/autocolor.Tpo -c -o autocolor.lo autocolor.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT autocolor.lo -MD -MP -MF .deps/autocolor.Tpo -c autocolor.c -o autocolor.o | |
mv -f .deps/autocolor.Tpo .deps/autocolor.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT autoaxes.lo -MD -MP -MF .deps/autoaxes.Tpo -c -o autoaxes.lo autoaxes.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT autoaxes.lo -MD -MP -MF .deps/autoaxes.Tpo -c autoaxes.c -o autoaxes.o | |
mv -f .deps/autoaxes.Tpo .deps/autoaxes.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT autoglyph.lo -MD -MP -MF .deps/autoglyph.Tpo -c -o autoglyph.lo autoglyph.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT autoglyph.lo -MD -MP -MF .deps/autoglyph.Tpo -c autoglyph.c -o autoglyph.o | |
mv -f .deps/autoglyph.Tpo .deps/autoglyph.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT autogray.lo -MD -MP -MF .deps/autogray.Tpo -c -o autogray.lo autogray.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT autogray.lo -MD -MP -MF .deps/autogray.Tpo -c autogray.c -o autogray.o | |
mv -f .deps/autogray.Tpo .deps/autogray.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT autoregrid.lo -MD -MP -MF .deps/autoregrid.Tpo -c -o autoregrid.lo autoregrid.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT autoregrid.lo -MD -MP -MF .deps/autoregrid.Tpo -c autoregrid.c -o autoregrid.o | |
mv -f .deps/autoregrid.Tpo .deps/autoregrid.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT band.lo -MD -MP -MF .deps/band.Tpo -c -o band.lo band.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT band.lo -MD -MP -MF .deps/band.Tpo -c band.c -o band.o | |
mv -f .deps/band.Tpo .deps/band.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT bspline.lo -MD -MP -MF .deps/bspline.Tpo -c -o bspline.lo bspline.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT bspline.lo -MD -MP -MF .deps/bspline.Tpo -c bspline.c -o bspline.o | |
mv -f .deps/bspline.Tpo .deps/bspline.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT cachescene.lo -MD -MP -MF .deps/cachescene.Tpo -c -o cachescene.lo cachescene.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT cachescene.lo -MD -MP -MF .deps/cachescene.Tpo -c cachescene.c -o cachescene.o | |
mv -f .deps/cachescene.Tpo .deps/cachescene.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT camera.lo -MD -MP -MF .deps/camera.Tpo -c -o camera.lo camera.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT camera.lo -MD -MP -MF .deps/camera.Tpo -c camera.c -o camera.o | |
mv -f .deps/camera.Tpo .deps/camera.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT caption.lo -MD -MP -MF .deps/caption.Tpo -c -o caption.lo caption.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT caption.lo -MD -MP -MF .deps/caption.Tpo -c caption.c -o caption.o | |
mv -f .deps/caption.Tpo .deps/caption.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT categorize.lo -MD -MP -MF .deps/categorize.Tpo -c -o categorize.lo categorize.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT categorize.lo -MD -MP -MF .deps/categorize.Tpo -c categorize.c -o categorize.o | |
mv -f .deps/categorize.Tpo .deps/categorize.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT catstats.lo -MD -MP -MF .deps/catstats.Tpo -c -o catstats.lo catstats.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT catstats.lo -MD -MP -MF .deps/catstats.Tpo -c catstats.c -o catstats.o | |
mv -f .deps/catstats.Tpo .deps/catstats.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT changetype.lo -MD -MP -MF .deps/changetype.Tpo -c -o changetype.lo changetype.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT changetype.lo -MD -MP -MF .deps/changetype.Tpo -c changetype.c -o changetype.o | |
changetype.c:85:13: warning: if statement has empty body [-Wempty-body] | |
; | |
^ | |
1 warning generated. | |
mv -f .deps/changetype.Tpo .deps/changetype.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT changemember.lo -MD -MP -MF .deps/changemember.Tpo -c -o changemember.lo changemember.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT changemember.lo -MD -MP -MF .deps/changemember.Tpo -c changemember.c -o changemember.o | |
mv -f .deps/changemember.Tpo .deps/changemember.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT clipbox.lo -MD -MP -MF .deps/clipbox.Tpo -c -o clipbox.lo clipbox.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT clipbox.lo -MD -MP -MF .deps/clipbox.Tpo -c clipbox.c -o clipbox.o | |
mv -f .deps/clipbox.Tpo .deps/clipbox.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT clipplane.lo -MD -MP -MF .deps/clipplane.Tpo -c -o clipplane.lo clipplane.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT clipplane.lo -MD -MP -MF .deps/clipplane.Tpo -c clipplane.c -o clipplane.o | |
mv -f .deps/clipplane.Tpo .deps/clipplane.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT collect.lo -MD -MP -MF .deps/collect.Tpo -c -o collect.lo collect.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT collect.lo -MD -MP -MF .deps/collect.Tpo -c collect.c -o collect.o | |
collect.c:62:2: warning: if statement has empty body [-Wempty-body] | |
; /* DXWarning("#4010"); -* valid objects following NULL object */ | |
^ | |
1 warning generated. | |
mv -f .deps/collect.Tpo .deps/collect.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT collectmulti.lo -MD -MP -MF .deps/collectmulti.Tpo -c -o collectmulti.lo collectmulti.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT collectmulti.lo -MD -MP -MF .deps/collectmulti.Tpo -c collectmulti.c -o collectmulti.o | |
collectmulti.c:116:9: warning: if statement has empty body [-Wempty-body] | |
; /* DXWarning("#4010"); -* skipping null objects */ | |
^ | |
1 warning generated. | |
mv -f .deps/collectmulti.Tpo .deps/collectmulti.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT collectnamed.lo -MD -MP -MF .deps/collectnamed.Tpo -c -o collectnamed.lo collectnamed.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT collectnamed.lo -MD -MP -MF .deps/collectnamed.Tpo -c collectnamed.c -o collectnamed.o | |
collectnamed.c:94:9: warning: if statement has empty body [-Wempty-body] | |
; /* DXWarning("#4010"); -* skipping invalid object */ | |
^ | |
1 warning generated. | |
mv -f .deps/collectnamed.Tpo .deps/collectnamed.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT collectser.lo -MD -MP -MF .deps/collectser.Tpo -c -o collectser.lo collectser.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT collectser.lo -MD -MP -MF .deps/collectser.Tpo -c collectser.c -o collectser.o | |
collectser.c:158:2: warning: if statement has empty body [-Wempty-body] | |
; /* DXWarning("#4010"); -* skipping nulls in list */ | |
^ | |
1 warning generated. | |
mv -f .deps/collectser.Tpo .deps/collectser.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT color.lo -MD -MP -MF .deps/color.Tpo -c -o color.lo color.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT color.lo -MD -MP -MF .deps/color.Tpo -c color.c -o color.o | |
mv -f .deps/color.Tpo .deps/color.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT colorbar.lo -MD -MP -MF .deps/colorbar.Tpo -c -o colorbar.lo colorbar.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT colorbar.lo -MD -MP -MF .deps/colorbar.Tpo -c colorbar.c -o colorbar.o | |
mv -f .deps/colorbar.Tpo .deps/colorbar.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT colormap.lo -MD -MP -MF .deps/colormap.Tpo -c -o colormap.lo colormap.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT colormap.lo -MD -MP -MF .deps/colormap.Tpo -c colormap.c -o colormap.o | |
colormap.c:1170:7: warning: format string is not a string literal (potentially insecure) [-Wformat-security] | |
sprintf(ei.mp,name); while(*ei.mp) ei.mp++; | |
^~~~~~~~~~~~~~~~~~~ | |
/usr/include/secure/_stdio.h:50:56: note: instantiated from: | |
__builtin___sprintf_chk (str, 0, __darwin_obsz(str), __VA_ARGS__) | |
^ | |
colormap.c:1170:21: note: instantiated from: | |
sprintf(ei.mp,name); while(*ei.mp) ei.mp++; | |
^~~~ | |
colormap.c:1189:4: warning: format string is not a string literal (potentially insecure) [-Wformat-security] | |
sprintf(ei.mp,name); while(*ei.mp) ei.mp++; | |
^~~~~~~~~~~~~~~~~~~ | |
/usr/include/secure/_stdio.h:50:56: note: instantiated from: | |
__builtin___sprintf_chk (str, 0, __darwin_obsz(str), __VA_ARGS__) | |
^ | |
colormap.c:1189:18: note: instantiated from: | |
sprintf(ei.mp,name); while(*ei.mp) ei.mp++; | |
^~~~ | |
2 warnings generated. | |
mv -f .deps/colormap.Tpo .deps/colormap.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT compute.lo -MD -MP -MF .deps/compute.Tpo -c -o compute.lo compute.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT compute.lo -MD -MP -MF .deps/compute.Tpo -c compute.c -o compute.o | |
mv -f .deps/compute.Tpo .deps/compute.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT compute2.lo -MD -MP -MF .deps/compute2.Tpo -c -o compute2.lo compute2.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT compute2.lo -MD -MP -MF .deps/compute2.Tpo -c compute2.c -o compute2.o | |
mv -f .deps/compute2.Tpo .deps/compute2.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT connect.lo -MD -MP -MF .deps/connect.Tpo -c -o connect.lo connect.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT connect.lo -MD -MP -MF .deps/connect.Tpo -c connect.c -o connect.o | |
mv -f .deps/connect.Tpo .deps/connect.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT construct.lo -MD -MP -MF .deps/construct.Tpo -c -o construct.lo construct.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT construct.lo -MD -MP -MF .deps/construct.Tpo -c construct.c -o construct.o | |
mv -f .deps/construct.Tpo .deps/construct.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT convert.lo -MD -MP -MF .deps/convert.Tpo -c -o convert.lo convert.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT convert.lo -MD -MP -MF .deps/convert.Tpo -c convert.c -o convert.o | |
mv -f .deps/convert.Tpo .deps/convert.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT copy.lo -MD -MP -MF .deps/copy.Tpo -c -o copy.lo copy.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT copy.lo -MD -MP -MF .deps/copy.Tpo -c copy.c -o copy.o | |
mv -f .deps/copy.Tpo .deps/copy.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT describe.lo -MD -MP -MF .deps/describe.Tpo -c -o describe.lo describe.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT describe.lo -MD -MP -MF .deps/describe.Tpo -c describe.c -o describe.o | |
mv -f .deps/describe.Tpo .deps/describe.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT direction.lo -MD -MP -MF .deps/direction.Tpo -c -o direction.lo direction.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT direction.lo -MD -MP -MF .deps/direction.Tpo -c direction.c -o direction.o | |
mv -f .deps/direction.Tpo .deps/direction.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT display.lo -MD -MP -MF .deps/display.Tpo -c -o display.lo display.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT display.lo -MD -MP -MF .deps/display.Tpo -c display.c -o display.o | |
mv -f .deps/display.Tpo .deps/display.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT divcurl.lo -MD -MP -MF .deps/divcurl.Tpo -c -o divcurl.lo divcurl.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT divcurl.lo -MD -MP -MF .deps/divcurl.Tpo -c divcurl.c -o divcurl.o | |
mv -f .deps/divcurl.Tpo .deps/divcurl.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT dxlmessage.lo -MD -MP -MF .deps/dxlmessage.Tpo -c -o dxlmessage.lo dxlmessage.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT dxlmessage.lo -MD -MP -MF .deps/dxlmessage.Tpo -c dxlmessage.c -o dxlmessage.o | |
mv -f .deps/dxlmessage.Tpo .deps/dxlmessage.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT dxloutvalue.lo -MD -MP -MF .deps/dxloutvalue.Tpo -c -o dxloutvalue.lo dxloutvalue.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT dxloutvalue.lo -MD -MP -MF .deps/dxloutvalue.Tpo -c dxloutvalue.c -o dxloutvalue.o | |
mv -f .deps/dxloutvalue.Tpo .deps/dxloutvalue.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT echo.lo -MD -MP -MF .deps/echo.Tpo -c -o echo.lo echo.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT echo.lo -MD -MP -MF .deps/echo.Tpo -c echo.c -o echo.o | |
mv -f .deps/echo.Tpo .deps/echo.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT enumerate.lo -MD -MP -MF .deps/enumerate.Tpo -c -o enumerate.lo enumerate.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT enumerate.lo -MD -MP -MF .deps/enumerate.Tpo -c enumerate.c -o enumerate.o | |
mv -f .deps/enumerate.Tpo .deps/enumerate.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT equalize.lo -MD -MP -MF .deps/equalize.Tpo -c -o equalize.lo equalize.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT equalize.lo -MD -MP -MF .deps/equalize.Tpo -c equalize.c -o equalize.o | |
mv -f .deps/equalize.Tpo .deps/equalize.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT export.lo -MD -MP -MF .deps/export.Tpo -c -o export.lo export.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT export.lo -MD -MP -MF .deps/export.Tpo -c export.c -o export.o | |
mv -f .deps/export.Tpo .deps/export.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT extract.lo -MD -MP -MF .deps/extract.Tpo -c -o extract.lo extract.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT extract.lo -MD -MP -MF .deps/extract.Tpo -c extract.c -o extract.o | |
mv -f .deps/extract.Tpo .deps/extract.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT facenormals.lo -MD -MP -MF .deps/facenormals.Tpo -c -o facenormals.lo facenormals.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT facenormals.lo -MD -MP -MF .deps/facenormals.Tpo -c facenormals.c -o facenormals.o | |
mv -f .deps/facenormals.Tpo .deps/facenormals.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT filter.lo -MD -MP -MF .deps/filter.Tpo -c -o filter.lo filter.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT filter.lo -MD -MP -MF .deps/filter.Tpo -c filter.c -o filter.o | |
mv -f .deps/filter.Tpo .deps/filter.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT format.lo -MD -MP -MF .deps/format.Tpo -c -o format.lo format.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT format.lo -MD -MP -MF .deps/format.Tpo -c format.c -o format.o | |
mv -f .deps/format.Tpo .deps/format.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT fourier.lo -MD -MP -MF .deps/fourier.Tpo -c -o fourier.lo fourier.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT fourier.lo -MD -MP -MF .deps/fourier.Tpo -c fourier.c -o fourier.o | |
mv -f .deps/fourier.Tpo .deps/fourier.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT getscene.lo -MD -MP -MF .deps/getscene.Tpo -c -o getscene.lo getscene.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT getscene.lo -MD -MP -MF .deps/getscene.Tpo -c getscene.c -o getscene.o | |
mv -f .deps/getscene.Tpo .deps/getscene.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT glyph.lo -MD -MP -MF .deps/glyph.Tpo -c -o glyph.lo glyph.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT glyph.lo -MD -MP -MF .deps/glyph.Tpo -c glyph.c -o glyph.o | |
mv -f .deps/glyph.Tpo .deps/glyph.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT gradient.lo -MD -MP -MF .deps/gradient.Tpo -c -o gradient.lo gradient.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT gradient.lo -MD -MP -MF .deps/gradient.Tpo -c gradient.c -o gradient.o | |
mv -f .deps/gradient.Tpo .deps/gradient.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT grid.lo -MD -MP -MF .deps/grid.Tpo -c -o grid.lo grid.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT grid.lo -MD -MP -MF .deps/grid.Tpo -c grid.c -o grid.o | |
mv -f .deps/grid.Tpo .deps/grid.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT histogram.lo -MD -MP -MF .deps/histogram.Tpo -c -o histogram.lo histogram.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT histogram.lo -MD -MP -MF .deps/histogram.Tpo -c histogram.c -o histogram.o | |
mv -f .deps/histogram.Tpo .deps/histogram.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT imagemessage.lo -MD -MP -MF .deps/imagemessage.Tpo -c -o imagemessage.lo imagemessage.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT imagemessage.lo -MD -MP -MF .deps/imagemessage.Tpo -c imagemessage.c -o imagemessage.o | |
mv -f .deps/imagemessage.Tpo .deps/imagemessage.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT import.lo -MD -MP -MF .deps/import.Tpo -c -o import.lo import.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT import.lo -MD -MP -MF .deps/import.Tpo -c import.c -o import.o | |
mv -f .deps/import.Tpo .deps/import.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT import_ss.lo -MD -MP -MF .deps/import_ss.Tpo -c -o import_ss.lo import_ss.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT import_ss.lo -MD -MP -MF .deps/import_ss.Tpo -c import_ss.c -o import_ss.o | |
mv -f .deps/import_ss.Tpo .deps/import_ss.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT include.lo -MD -MP -MF .deps/include.Tpo -c -o include.lo include.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT include.lo -MD -MP -MF .deps/include.Tpo -c include.c -o include.o | |
mv -f .deps/include.Tpo .deps/include.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT inquire.lo -MD -MP -MF .deps/inquire.Tpo -c -o inquire.lo inquire.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT inquire.lo -MD -MP -MF .deps/inquire.Tpo -c inquire.c -o inquire.o | |
mv -f .deps/inquire.Tpo .deps/inquire.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT isolate.lo -MD -MP -MF .deps/isolate.Tpo -c -o isolate.lo isolate.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT isolate.lo -MD -MP -MF .deps/isolate.Tpo -c isolate.c -o isolate.o | |
mv -f .deps/isolate.Tpo .deps/isolate.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT isosurface.lo -MD -MP -MF .deps/isosurface.Tpo -c -o isosurface.lo isosurface.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT isosurface.lo -MD -MP -MF .deps/isosurface.Tpo -c isosurface.c -o isosurface.o | |
mv -f .deps/isosurface.Tpo .deps/isosurface.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT integer.lo -MD -MP -MF .deps/integer.Tpo -c -o integer.lo integer.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT integer.lo -MD -MP -MF .deps/integer.Tpo -c integer.c -o integer.o | |
mv -f .deps/integer.Tpo .deps/integer.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT integerlist.lo -MD -MP -MF .deps/integerlist.Tpo -c -o integerlist.lo integerlist.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT integerlist.lo -MD -MP -MF .deps/integerlist.Tpo -c integerlist.c -o integerlist.o | |
mv -f .deps/integerlist.Tpo .deps/integerlist.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT keyin.lo -MD -MP -MF .deps/keyin.Tpo -c -o keyin.lo keyin.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT keyin.lo -MD -MP -MF .deps/keyin.Tpo -c keyin.c -o keyin.o | |
mv -f .deps/keyin.Tpo .deps/keyin.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT light.lo -MD -MP -MF .deps/light.Tpo -c -o light.lo light.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT light.lo -MD -MP -MF .deps/light.Tpo -c light.c -o light.o | |
mv -f .deps/light.Tpo .deps/light.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT list.lo -MD -MP -MF .deps/list.Tpo -c -o list.lo list.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT list.lo -MD -MP -MF .deps/list.Tpo -c list.c -o list.o | |
mv -f .deps/list.Tpo .deps/list.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lookup.lo -MD -MP -MF .deps/lookup.Tpo -c -o lookup.lo lookup.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lookup.lo -MD -MP -MF .deps/lookup.Tpo -c lookup.c -o lookup.o | |
mv -f .deps/lookup.Tpo .deps/lookup.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT macroutil.lo -MD -MP -MF .deps/macroutil.Tpo -c -o macroutil.lo macroutil.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT macroutil.lo -MD -MP -MF .deps/macroutil.Tpo -c macroutil.c -o macroutil.o | |
mv -f .deps/macroutil.Tpo .deps/macroutil.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT map.lo -MD -MP -MF .deps/map.Tpo -c -o map.lo map.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT map.lo -MD -MP -MF .deps/map.Tpo -c map.c -o map.o | |
mv -f .deps/map.Tpo .deps/map.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT maptoplane.lo -MD -MP -MF .deps/maptoplane.Tpo -c -o maptoplane.lo maptoplane.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT maptoplane.lo -MD -MP -MF .deps/maptoplane.Tpo -c maptoplane.c -o maptoplane.o | |
mv -f .deps/maptoplane.Tpo .deps/maptoplane.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT mark.lo -MD -MP -MF .deps/mark.Tpo -c -o mark.lo mark.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT mark.lo -MD -MP -MF .deps/mark.Tpo -c mark.c -o mark.o | |
mv -f .deps/mark.Tpo .deps/mark.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT measure.lo -MD -MP -MF .deps/measure.Tpo -c -o measure.lo measure.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT measure.lo -MD -MP -MF .deps/measure.Tpo -c measure.c -o measure.o | |
mv -f .deps/measure.Tpo .deps/measure.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT message.lo -MD -MP -MF .deps/message.Tpo -c -o message.lo message.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT message.lo -MD -MP -MF .deps/message.Tpo -c message.c -o message.o | |
mv -f .deps/message.Tpo .deps/message.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT normals.lo -MD -MP -MF .deps/normals.Tpo -c -o normals.lo normals.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT normals.lo -MD -MP -MF .deps/normals.Tpo -c normals.c -o normals.o | |
mv -f .deps/normals.Tpo .deps/normals.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT options.lo -MD -MP -MF .deps/options.Tpo -c -o options.lo options.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT options.lo -MD -MP -MF .deps/options.Tpo -c options.c -o options.o | |
mv -f .deps/options.Tpo .deps/options.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT overlay.lo -MD -MP -MF .deps/overlay.Tpo -c -o overlay.lo overlay.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT overlay.lo -MD -MP -MF .deps/overlay.Tpo -c overlay.c -o overlay.o | |
mv -f .deps/overlay.Tpo .deps/overlay.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT parse.lo -MD -MP -MF .deps/parse.Tpo -c -o parse.lo parse.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT parse.lo -MD -MP -MF .deps/parse.Tpo -c parse.c -o parse.o | |
mv -f .deps/parse.Tpo .deps/parse.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT partition.lo -MD -MP -MF .deps/partition.Tpo -c -o partition.lo partition.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT partition.lo -MD -MP -MF .deps/partition.Tpo -c partition.c -o partition.o | |
mv -f .deps/partition.Tpo .deps/partition.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT pick.lo -MD -MP -MF .deps/pick.Tpo -c -o pick.lo pick.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT pick.lo -MD -MP -MF .deps/pick.Tpo -c pick.c -o pick.o | |
mv -f .deps/pick.Tpo .deps/pick.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT pickinv.lo -MD -MP -MF .deps/pickinv.Tpo -c -o pickinv.lo pickinv.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT pickinv.lo -MD -MP -MF .deps/pickinv.Tpo -c pickinv.c -o pickinv.o | |
mv -f .deps/pickinv.Tpo .deps/pickinv.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT pie.lo -MD -MP -MF .deps/pie.Tpo -c -o pie.lo pie.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT pie.lo -MD -MP -MF .deps/pie.Tpo -c pie.c -o pie.o | |
mv -f .deps/pie.Tpo .deps/pie.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT plot.lo -MD -MP -MF .deps/plot.Tpo -c -o plot.lo plot.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT plot.lo -MD -MP -MF .deps/plot.Tpo -c plot.c -o plot.o | |
mv -f .deps/plot.Tpo .deps/plot.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT post.lo -MD -MP -MF .deps/post.Tpo -c -o post.lo post.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT post.lo -MD -MP -MF .deps/post.Tpo -c post.c -o post.o | |
mv -f .deps/post.Tpo .deps/post.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT print.lo -MD -MP -MF .deps/print.Tpo -c -o print.lo print.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT print.lo -MD -MP -MF .deps/print.Tpo -c print.c -o print.o | |
mv -f .deps/print.Tpo .deps/print.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT programctl.lo -MD -MP -MF .deps/programctl.Tpo -c -o programctl.lo programctl.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT programctl.lo -MD -MP -MF .deps/programctl.Tpo -c programctl.c -o programctl.o | |
mv -f .deps/programctl.Tpo .deps/programctl.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT quantize.lo -MD -MP -MF .deps/quantize.Tpo -c -o quantize.lo quantize.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT quantize.lo -MD -MP -MF .deps/quantize.Tpo -c quantize.c -o quantize.o | |
mv -f .deps/quantize.Tpo .deps/quantize.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT rdimagewin.lo -MD -MP -MF .deps/rdimagewin.Tpo -c -o rdimagewin.lo rdimagewin.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT rdimagewin.lo -MD -MP -MF .deps/rdimagewin.Tpo -c rdimagewin.c -o rdimagewin.o | |
mv -f .deps/rdimagewin.Tpo .deps/rdimagewin.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT readimage.lo -MD -MP -MF .deps/readimage.Tpo -c -o readimage.lo readimage.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT readimage.lo -MD -MP -MF .deps/readimage.Tpo -c readimage.c -o readimage.o | |
mv -f .deps/readimage.Tpo .deps/readimage.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT reduce.lo -MD -MP -MF .deps/reduce.Tpo -c -o reduce.lo reduce.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT reduce.lo -MD -MP -MF .deps/reduce.Tpo -c reduce.c -o reduce.o | |
mv -f .deps/reduce.Tpo .deps/reduce.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT refine.lo -MD -MP -MF .deps/refine.Tpo -c -o refine.lo refine.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT refine.lo -MD -MP -MF .deps/refine.Tpo -c refine.c -o refine.o | |
mv -f .deps/refine.Tpo .deps/refine.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT regrid.lo -MD -MP -MF .deps/regrid.Tpo -c -o regrid.lo regrid.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT regrid.lo -MD -MP -MF .deps/regrid.Tpo -c regrid.c -o regrid.o | |
mv -f .deps/regrid.Tpo .deps/regrid.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT remove.lo -MD -MP -MF .deps/remove.Tpo -c -o remove.lo remove.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT remove.lo -MD -MP -MF .deps/remove.Tpo -c remove.c -o remove.o | |
mv -f .deps/remove.Tpo .deps/remove.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT rename.lo -MD -MP -MF .deps/rename.Tpo -c -o rename.lo rename.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT rename.lo -MD -MP -MF .deps/rename.Tpo -c rename.c -o rename.o | |
mv -f .deps/rename.Tpo .deps/rename.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT render.lo -MD -MP -MF .deps/render.Tpo -c -o render.lo render.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT render.lo -MD -MP -MF .deps/render.Tpo -c render.c -o render.o | |
mv -f .deps/render.Tpo .deps/render.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT reorient.lo -MD -MP -MF .deps/reorient.Tpo -c -o reorient.lo reorient.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT reorient.lo -MD -MP -MF .deps/reorient.Tpo -c reorient.c -o reorient.o | |
mv -f .deps/reorient.Tpo .deps/reorient.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT replace.lo -MD -MP -MF .deps/replace.Tpo -c -o replace.lo replace.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT replace.lo -MD -MP -MF .deps/replace.Tpo -c replace.c -o replace.o | |
mv -f .deps/replace.Tpo .deps/replace.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT ribbon.lo -MD -MP -MF .deps/ribbon.Tpo -c -o ribbon.lo ribbon.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT ribbon.lo -MD -MP -MF .deps/ribbon.Tpo -c ribbon.c -o ribbon.o | |
mv -f .deps/ribbon.Tpo .deps/ribbon.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT rotate.lo -MD -MP -MF .deps/rotate.Tpo -c -o rotate.lo rotate.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT rotate.lo -MD -MP -MF .deps/rotate.Tpo -c rotate.c -o rotate.o | |
mv -f .deps/rotate.Tpo .deps/rotate.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT route.lo -MD -MP -MF .deps/route.Tpo -c -o route.lo route.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT route.lo -MD -MP -MF .deps/route.Tpo -c route.c -o route.o | |
mv -f .deps/route.Tpo .deps/route.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT rubbersheet.lo -MD -MP -MF .deps/rubbersheet.Tpo -c -o rubbersheet.lo rubbersheet.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT rubbersheet.lo -MD -MP -MF .deps/rubbersheet.Tpo -c rubbersheet.c -o rubbersheet.o | |
mv -f .deps/rubbersheet.Tpo .deps/rubbersheet.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT sample.lo -MD -MP -MF .deps/sample.Tpo -c -o sample.lo sample.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT sample.lo -MD -MP -MF .deps/sample.Tpo -c sample.c -o sample.o | |
mv -f .deps/sample.Tpo .deps/sample.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT scalar.lo -MD -MP -MF .deps/scalar.Tpo -c -o scalar.lo scalar.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT scalar.lo -MD -MP -MF .deps/scalar.Tpo -c scalar.c -o scalar.o | |
mv -f .deps/scalar.Tpo .deps/scalar.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT scalarlist.lo -MD -MP -MF .deps/scalarlist.Tpo -c -o scalarlist.lo scalarlist.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT scalarlist.lo -MD -MP -MF .deps/scalarlist.Tpo -c scalarlist.c -o scalarlist.o | |
mv -f .deps/scalarlist.Tpo .deps/scalarlist.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT scale.lo -MD -MP -MF .deps/scale.Tpo -c -o scale.lo scale.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT scale.lo -MD -MP -MF .deps/scale.Tpo -c scale.c -o scale.o | |
mv -f .deps/scale.Tpo .deps/scale.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT scalescreen.lo -MD -MP -MF .deps/scalescreen.Tpo -c -o scalescreen.lo scalescreen.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT scalescreen.lo -MD -MP -MF .deps/scalescreen.Tpo -c scalescreen.c -o scalescreen.o | |
mv -f .deps/scalescreen.Tpo .deps/scalescreen.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT screen.lo -MD -MP -MF .deps/screen.Tpo -c -o screen.lo screen.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT screen.lo -MD -MP -MF .deps/screen.Tpo -c screen.c -o screen.o | |
mv -f .deps/screen.Tpo .deps/screen.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT select.lo -MD -MP -MF .deps/select.Tpo -c -o select.lo select.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT select.lo -MD -MP -MF .deps/select.Tpo -c select.c -o select.o | |
mv -f .deps/select.Tpo .deps/select.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT selector.lo -MD -MP -MF .deps/selector.Tpo -c -o selector.lo selector.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT selector.lo -MD -MP -MF .deps/selector.Tpo -c selector.c -o selector.o | |
mv -f .deps/selector.Tpo .deps/selector.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT shade.lo -MD -MP -MF .deps/shade.Tpo -c -o shade.lo shade.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT shade.lo -MD -MP -MF .deps/shade.Tpo -c shade.c -o shade.o | |
mv -f .deps/shade.Tpo .deps/shade.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT showboundary.lo -MD -MP -MF .deps/showboundary.Tpo -c -o showboundary.lo showboundary.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT showboundary.lo -MD -MP -MF .deps/showboundary.Tpo -c showboundary.c -o showboundary.o | |
mv -f .deps/showboundary.Tpo .deps/showboundary.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT showbox.lo -MD -MP -MF .deps/showbox.Tpo -c -o showbox.lo showbox.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT showbox.lo -MD -MP -MF .deps/showbox.Tpo -c showbox.c -o showbox.o | |
mv -f .deps/showbox.Tpo .deps/showbox.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT showconnect.lo -MD -MP -MF .deps/showconnect.Tpo -c -o showconnect.lo showconnect.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT showconnect.lo -MD -MP -MF .deps/showconnect.Tpo -c showconnect.c -o showconnect.o | |
mv -f .deps/showconnect.Tpo .deps/showconnect.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT showposition.lo -MD -MP -MF .deps/showposition.Tpo -c -o showposition.lo showposition.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT showposition.lo -MD -MP -MF .deps/showposition.Tpo -c showposition.c -o showposition.o | |
mv -f .deps/showposition.Tpo .deps/showposition.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT slab.lo -MD -MP -MF .deps/slab.Tpo -c -o slab.lo slab.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT slab.lo -MD -MP -MF .deps/slab.Tpo -c slab.c -o slab.o | |
mv -f .deps/slab.Tpo .deps/slab.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT slice.lo -MD -MP -MF .deps/slice.Tpo -c -o slice.lo slice.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT slice.lo -MD -MP -MF .deps/slice.Tpo -c slice.c -o slice.o | |
mv -f .deps/slice.Tpo .deps/slice.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT socketconnect.lo -MD -MP -MF .deps/socketconnect.Tpo -c -o socketconnect.lo socketconnect.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT socketconnect.lo -MD -MP -MF .deps/socketconnect.Tpo -c socketconnect.c -o socketconnect.o | |
mv -f .deps/socketconnect.Tpo .deps/socketconnect.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT sort.lo -MD -MP -MF .deps/sort.Tpo -c -o sort.lo sort.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT sort.lo -MD -MP -MF .deps/sort.Tpo -c sort.c -o sort.o | |
mv -f .deps/sort.Tpo .deps/sort.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT stack.lo -MD -MP -MF .deps/stack.Tpo -c -o stack.lo stack.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT stack.lo -MD -MP -MF .deps/stack.Tpo -c stack.c -o stack.o | |
mv -f .deps/stack.Tpo .deps/stack.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT statistics.lo -MD -MP -MF .deps/statistics.Tpo -c -o statistics.lo statistics.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT statistics.lo -MD -MP -MF .deps/statistics.Tpo -c statistics.c -o statistics.o | |
mv -f .deps/statistics.Tpo .deps/statistics.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT streakline.lo -MD -MP -MF .deps/streakline.Tpo -c -o streakline.lo streakline.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT streakline.lo -MD -MP -MF .deps/streakline.Tpo -c streakline.c -o streakline.o | |
mv -f .deps/streakline.Tpo .deps/streakline.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT streamline.lo -MD -MP -MF .deps/streamline.Tpo -c -o streamline.lo streamline.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT streamline.lo -MD -MP -MF .deps/streamline.Tpo -c streamline.c -o streamline.o | |
mv -f .deps/streamline.Tpo .deps/streamline.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT stringlegend.lo -MD -MP -MF .deps/stringlegend.Tpo -c -o stringlegend.lo stringlegend.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT stringlegend.lo -MD -MP -MF .deps/stringlegend.Tpo -c stringlegend.c -o stringlegend.o | |
mv -f .deps/stringlegend.Tpo .deps/stringlegend.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT superstate.lo -MD -MP -MF .deps/superstate.Tpo -c -o superstate.lo superstate.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT superstate.lo -MD -MP -MF .deps/superstate.Tpo -c superstate.c -o superstate.o | |
mv -f .deps/superstate.Tpo .deps/superstate.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT superwin.lo -MD -MP -MF .deps/superwin.Tpo -c -o superwin.lo superwin.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT superwin.lo -MD -MP -MF .deps/superwin.Tpo -c superwin.c -o superwin.o | |
mv -f .deps/superwin.Tpo .deps/superwin.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT switch.lo -MD -MP -MF .deps/switch.Tpo -c -o switch.lo switch.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT switch.lo -MD -MP -MF .deps/switch.Tpo -c switch.c -o switch.o | |
mv -f .deps/switch.Tpo .deps/switch.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT system.lo -MD -MP -MF .deps/system.Tpo -c -o system.lo system.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT system.lo -MD -MP -MF .deps/system.Tpo -c system.c -o system.o | |
mv -f .deps/system.Tpo .deps/system.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT text.lo -MD -MP -MF .deps/text.Tpo -c -o text.lo text.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT text.lo -MD -MP -MF .deps/text.Tpo -c text.c -o text.o | |
mv -f .deps/text.Tpo .deps/text.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT toggle.lo -MD -MP -MF .deps/toggle.Tpo -c -o toggle.lo toggle.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT toggle.lo -MD -MP -MF .deps/toggle.Tpo -c toggle.c -o toggle.o | |
mv -f .deps/toggle.Tpo .deps/toggle.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT trace.lo -MD -MP -MF .deps/trace.Tpo -c -o trace.lo trace.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT trace.lo -MD -MP -MF .deps/trace.Tpo -c trace.c -o trace.o | |
mv -f .deps/trace.Tpo .deps/trace.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT transform.lo -MD -MP -MF .deps/transform.Tpo -c -o transform.lo transform.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT transform.lo -MD -MP -MF .deps/transform.Tpo -c transform.c -o transform.o | |
mv -f .deps/transform.Tpo .deps/transform.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT translate.lo -MD -MP -MF .deps/translate.Tpo -c -o translate.lo translate.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT translate.lo -MD -MP -MF .deps/translate.Tpo -c translate.c -o translate.o | |
mv -f .deps/translate.Tpo .deps/translate.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT transpose.lo -MD -MP -MF .deps/transpose.Tpo -c -o transpose.lo transpose.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT transpose.lo -MD -MP -MF .deps/transpose.Tpo -c transpose.c -o transpose.o | |
mv -f .deps/transpose.Tpo .deps/transpose.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT tube.lo -MD -MP -MF .deps/tube.Tpo -c -o tube.lo tube.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT tube.lo -MD -MP -MF .deps/tube.Tpo -c tube.c -o tube.o | |
mv -f .deps/tube.Tpo .deps/tube.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT unmark.lo -MD -MP -MF .deps/unmark.Tpo -c -o unmark.lo unmark.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT unmark.lo -MD -MP -MF .deps/unmark.Tpo -c unmark.c -o unmark.o | |
mv -f .deps/unmark.Tpo .deps/unmark.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT usage.lo -MD -MP -MF .deps/usage.Tpo -c -o usage.lo usage.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT usage.lo -MD -MP -MF .deps/usage.Tpo -c usage.c -o usage.o | |
mv -f .deps/usage.Tpo .deps/usage.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT vector.lo -MD -MP -MF .deps/vector.Tpo -c -o vector.lo vector.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT vector.lo -MD -MP -MF .deps/vector.Tpo -c vector.c -o vector.o | |
mv -f .deps/vector.Tpo .deps/vector.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT vectorlist.lo -MD -MP -MF .deps/vectorlist.Tpo -c -o vectorlist.lo vectorlist.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT vectorlist.lo -MD -MP -MF .deps/vectorlist.Tpo -c vectorlist.c -o vectorlist.o | |
mv -f .deps/vectorlist.Tpo .deps/vectorlist.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT verify.lo -MD -MP -MF .deps/verify.Tpo -c -o verify.lo verify.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT verify.lo -MD -MP -MF .deps/verify.Tpo -c verify.c -o verify.o | |
mv -f .deps/verify.Tpo .deps/verify.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT visualobject.lo -MD -MP -MF .deps/visualobject.Tpo -c -o visualobject.lo visualobject.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT visualobject.lo -MD -MP -MF .deps/visualobject.Tpo -c visualobject.c -o visualobject.o | |
mv -f .deps/visualobject.Tpo .deps/visualobject.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT writeimage.lo -MD -MP -MF .deps/writeimage.Tpo -c -o writeimage.lo writeimage.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT writeimage.lo -MD -MP -MF .deps/writeimage.Tpo -c writeimage.c -o writeimage.o | |
mv -f .deps/writeimage.Tpo .deps/writeimage.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT simplesurf.lo -MD -MP -MF .deps/simplesurf.Tpo -c -o simplesurf.lo simplesurf.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT simplesurf.lo -MD -MP -MF .deps/simplesurf.Tpo -c simplesurf.c -o simplesurf.o | |
mv -f .deps/simplesurf.Tpo .deps/simplesurf.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _autocolor.lo -MD -MP -MF .deps/_autocolor.Tpo -c -o _autocolor.lo _autocolor.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _autocolor.lo -MD -MP -MF .deps/_autocolor.Tpo -c _autocolor.c -o _autocolor.o | |
mv -f .deps/_autocolor.Tpo .deps/_autocolor.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _autogray.lo -MD -MP -MF .deps/_autogray.Tpo -c -o _autogray.lo _autogray.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _autogray.lo -MD -MP -MF .deps/_autogray.Tpo -c _autogray.c -o _autogray.o | |
mv -f .deps/_autogray.Tpo .deps/_autogray.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _cat_util.lo -MD -MP -MF .deps/_cat_util.Tpo -c -o _cat_util.lo _cat_util.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _cat_util.lo -MD -MP -MF .deps/_cat_util.Tpo -c _cat_util.c -o _cat_util.o | |
_cat_util.c:140:17: warning: use of logical && with constant operand; switch to bitwise & or remove constant [-Wconstant-logical-operand] | |
if ( ignore && CAT_I_SPACE ) { | |
^ ~~~~~~~~~~~ | |
_cat_util.c:144:22: warning: use of logical && with constant operand; switch to bitwise & or remove constant [-Wconstant-logical-operand] | |
else if ( ignore && CAT_I_LSPACE ) { | |
^ ~~~~~~~~~~~~ | |
_cat_util.c:148:22: warning: use of logical && with constant operand; switch to bitwise & or remove constant [-Wconstant-logical-operand] | |
else if ( ignore && CAT_I_RSPACE ) { | |
^ ~~~~~~~~~~~~ | |
_cat_util.c:152:22: warning: use of logical && with constant operand; switch to bitwise & or remove constant [-Wconstant-logical-operand] | |
else if ( ignore && CAT_I_LRSPACE ) { | |
^ ~~~~~~~~~~~~~ | |
_cat_util.c:157:17: warning: use of logical && with constant operand; switch to bitwise & or remove constant [-Wconstant-logical-operand] | |
if ( ignore && CAT_I_PUNCT ) { | |
^ ~~~~~~~~~~~ | |
5 warnings generated. | |
mv -f .deps/_cat_util.Tpo .deps/_cat_util.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _color.lo -MD -MP -MF .deps/_color.Tpo -c -o _color.lo _color.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _color.lo -MD -MP -MF .deps/_color.Tpo -c _color.c -o _color.o | |
mv -f .deps/_color.Tpo .deps/_color.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _colormap.lo -MD -MP -MF .deps/_colormap.Tpo -c -o _colormap.lo _colormap.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _colormap.lo -MD -MP -MF .deps/_colormap.Tpo -c _colormap.c -o _colormap.o | |
mv -f .deps/_colormap.Tpo .deps/_colormap.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _complex.lo -MD -MP -MF .deps/_complex.Tpo -c -o _complex.lo _complex.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _complex.lo -MD -MP -MF .deps/_complex.Tpo -c _complex.c -o _complex.o | |
mv -f .deps/_complex.Tpo .deps/_complex.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _compoper.lo -MD -MP -MF .deps/_compoper.Tpo -c -o _compoper.lo _compoper.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _compoper.lo -MD -MP -MF .deps/_compoper.Tpo -c _compoper.c -o _compoper.o | |
mv -f .deps/_compoper.Tpo .deps/_compoper.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _compoper1.lo -MD -MP -MF .deps/_compoper1.Tpo -c -o _compoper1.lo _compoper1.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _compoper1.lo -MD -MP -MF .deps/_compoper1.Tpo -c _compoper1.c -o _compoper1.o | |
mv -f .deps/_compoper1.Tpo .deps/_compoper1.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _compoper2.lo -MD -MP -MF .deps/_compoper2.Tpo -c -o _compoper2.lo _compoper2.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _compoper2.lo -MD -MP -MF .deps/_compoper2.Tpo -c _compoper2.c -o _compoper2.o | |
mv -f .deps/_compoper2.Tpo .deps/_compoper2.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _compcmplx.lo -MD -MP -MF .deps/_compcmplx.Tpo -c -o _compcmplx.lo _compcmplx.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _compcmplx.lo -MD -MP -MF .deps/_compcmplx.Tpo -c _compcmplx.c -o _compcmplx.o | |
mv -f .deps/_compcmplx.Tpo .deps/_compcmplx.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _compinput.lo -MD -MP -MF .deps/_compinput.Tpo -c -o _compinput.lo _compinput.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _compinput.lo -MD -MP -MF .deps/_compinput.Tpo -c _compinput.c -o _compinput.o | |
mv -f .deps/_compinput.Tpo .deps/_compinput.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _compexec.lo -MD -MP -MF .deps/_compexec.Tpo -c -o _compexec.lo _compexec.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _compexec.lo -MD -MP -MF .deps/_compexec.Tpo -c _compexec.c -o _compexec.o | |
mv -f .deps/_compexec.Tpo .deps/_compexec.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _compparse.lo -MD -MP -MF .deps/_compparse.Tpo -c -o _compparse.lo _compparse.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _compparse.lo -MD -MP -MF .deps/_compparse.Tpo -c _compparse.c -o _compparse.o | |
mv -f .deps/_compparse.Tpo .deps/_compparse.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _compputils.lo -MD -MP -MF .deps/_compputils.Tpo -c -o _compputils.lo _compputils.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _compputils.lo -MD -MP -MF .deps/_compputils.Tpo -c _compputils.c -o _compputils.o | |
mv -f .deps/_compputils.Tpo .deps/_compputils.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _connectgrids.lo -MD -MP -MF .deps/_connectgrids.Tpo -c -o _connectgrids.lo _connectgrids.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _connectgrids.lo -MD -MP -MF .deps/_connectgrids.Tpo -c _connectgrids.c -o _connectgrids.o | |
mv -f .deps/_connectgrids.Tpo .deps/_connectgrids.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _connectvor.lo -MD -MP -MF .deps/_connectvor.Tpo -c -o _connectvor.lo _connectvor.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _connectvor.lo -MD -MP -MF .deps/_connectvor.Tpo -c _connectvor.c -o _connectvor.o | |
mv -f .deps/_connectvor.Tpo .deps/_connectvor.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _construct.lo -MD -MP -MF .deps/_construct.Tpo -c -o _construct.lo _construct.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _construct.lo -MD -MP -MF .deps/_construct.Tpo -c _construct.c -o _construct.o | |
mv -f .deps/_construct.Tpo .deps/_construct.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _divcurl.lo -MD -MP -MF .deps/_divcurl.Tpo -c -o _divcurl.lo _divcurl.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _divcurl.lo -MD -MP -MF .deps/_divcurl.Tpo -c _divcurl.c -o _divcurl.o | |
mv -f .deps/_divcurl.Tpo .deps/_divcurl.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _getfield.lo -MD -MP -MF .deps/_getfield.Tpo -c -o _getfield.lo _getfield.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _getfield.lo -MD -MP -MF .deps/_getfield.Tpo -c _getfield.c -o _getfield.o | |
mv -f .deps/_getfield.Tpo .deps/_getfield.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _gif.lo -MD -MP -MF .deps/_gif.Tpo -c -o _gif.lo _gif.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _gif.lo -MD -MP -MF .deps/_gif.Tpo -c _gif.c -o _gif.o | |
mv -f .deps/_gif.Tpo .deps/_gif.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _glyph.lo -MD -MP -MF .deps/_glyph.Tpo -c -o _glyph.lo _glyph.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _glyph.lo -MD -MP -MF .deps/_glyph.Tpo -c _glyph.c -o _glyph.o | |
mv -f .deps/_glyph.Tpo .deps/_glyph.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _gradient.lo -MD -MP -MF .deps/_gradient.Tpo -c -o _gradient.lo _gradient.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _gradient.lo -MD -MP -MF .deps/_gradient.Tpo -c _gradient.c -o _gradient.o | |
mv -f .deps/_gradient.Tpo .deps/_gradient.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _grid.lo -MD -MP -MF .deps/_grid.Tpo -c -o _grid.lo _grid.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _grid.lo -MD -MP -MF .deps/_grid.Tpo -c _grid.c -o _grid.o | |
mv -f .deps/_grid.Tpo .deps/_grid.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _helper_jea.lo -MD -MP -MF .deps/_helper_jea.Tpo -c -o _helper_jea.lo _helper_jea.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _helper_jea.lo -MD -MP -MF .deps/_helper_jea.Tpo -c _helper_jea.c -o _helper_jea.o | |
mv -f .deps/_helper_jea.Tpo .deps/_helper_jea.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _im_image.lo -MD -MP -MF .deps/_im_image.Tpo -c -o _im_image.lo _im_image.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _im_image.lo -MD -MP -MF .deps/_im_image.Tpo -c _im_image.c -o _im_image.o | |
mv -f .deps/_im_image.Tpo .deps/_im_image.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _irregstream.lo -MD -MP -MF .deps/_irregstream.Tpo -c -o _irregstream.lo _irregstream.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _irregstream.lo -MD -MP -MF .deps/_irregstream.Tpo -c _irregstream.c -o _irregstream.o | |
mv -f .deps/_irregstream.Tpo .deps/_irregstream.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _isosurface.lo -MD -MP -MF .deps/_isosurface.Tpo -c -o _isosurface.lo _isosurface.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _isosurface.lo -MD -MP -MF .deps/_isosurface.Tpo -c _isosurface.c -o _isosurface.o | |
_isosurface.c:1278:28: warning: if statement has empty body [-Wempty-body] | |
if ( equivalence == 1 ); | |
^ | |
_isosurface.c:1418:28: warning: if statement has empty body [-Wempty-body] | |
if ( equivalence == 1 ); | |
^ | |
_isosurface.c:1670:28: warning: if statement has empty body [-Wempty-body] | |
if ( equivalence == 1 ); | |
^ | |
3 warnings generated. | |
mv -f .deps/_isosurface.Tpo .deps/_isosurface.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _maptoplane.lo -MD -MP -MF .deps/_maptoplane.Tpo -c -o _maptoplane.lo _maptoplane.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _maptoplane.lo -MD -MP -MF .deps/_maptoplane.Tpo -c _maptoplane.c -o _maptoplane.o | |
mv -f .deps/_maptoplane.Tpo .deps/_maptoplane.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _newtri.lo -MD -MP -MF .deps/_newtri.Tpo -c -o _newtri.lo _newtri.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _newtri.lo -MD -MP -MF .deps/_newtri.Tpo -c _newtri.c -o _newtri.o | |
mv -f .deps/_newtri.Tpo .deps/_newtri.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _normals.lo -MD -MP -MF .deps/_normals.Tpo -c -o _normals.lo _normals.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _normals.lo -MD -MP -MF .deps/_normals.Tpo -c _normals.c -o _normals.o | |
mv -f .deps/_normals.Tpo .deps/_normals.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _partnbrs.lo -MD -MP -MF .deps/_partnbrs.Tpo -c -o _partnbrs.lo _partnbrs.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _partnbrs.lo -MD -MP -MF .deps/_partnbrs.Tpo -c _partnbrs.c -o _partnbrs.o | |
_partnbrs.c:164:5: warning: argument to 'sizeof' in '__builtin___memset_chk' call is the same expression as the destination; did you mean to dereference it? [-Wsizeof-pointer-memaccess] | |
memset(grid, -1, sizeof(grid)); | |
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
/usr/include/secure/_string.h:77:41: note: instantiated from: | |
? __builtin___memset_chk (dest, val, len, __darwin_obsz0 (dest)) \ | |
^ | |
_partnbrs.c:164:29: note: instantiated from: | |
memset(grid, -1, sizeof(grid)); | |
~~~~ ^~~~ | |
1 warning generated. | |
mv -f .deps/_partnbrs.Tpo .deps/_partnbrs.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _plot.lo -MD -MP -MF .deps/_plot.Tpo -c -o _plot.lo _plot.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _plot.lo -MD -MP -MF .deps/_plot.Tpo -c _plot.c -o _plot.o | |
mv -f .deps/_plot.Tpo .deps/_plot.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _post.lo -MD -MP -MF .deps/_post.Tpo -c -o _post.lo _post.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _post.lo -MD -MP -MF .deps/_post.Tpo -c _post.c -o _post.o | |
mv -f .deps/_post.Tpo .deps/_post.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _postscript.lo -MD -MP -MF .deps/_postscript.Tpo -c -o _postscript.lo _postscript.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _postscript.lo -MD -MP -MF .deps/_postscript.Tpo -c _postscript.c -o _postscript.o | |
mv -f .deps/_postscript.Tpo .deps/_postscript.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _refine.lo -MD -MP -MF .deps/_refine.Tpo -c -o _refine.lo _refine.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _refine.lo -MD -MP -MF .deps/_refine.Tpo -c _refine.c -o _refine.o | |
mv -f .deps/_refine.Tpo .deps/_refine.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _refineirr.lo -MD -MP -MF .deps/_refineirr.Tpo -c -o _refineirr.lo _refineirr.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _refineirr.lo -MD -MP -MF .deps/_refineirr.Tpo -c _refineirr.c -o _refineirr.o | |
mv -f .deps/_refineirr.Tpo .deps/_refineirr.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _refinereg.lo -MD -MP -MF .deps/_refinereg.Tpo -c -o _refinereg.lo _refinereg.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _refinereg.lo -MD -MP -MF .deps/_refinereg.Tpo -c _refinereg.c -o _refinereg.o | |
mv -f .deps/_refinereg.Tpo .deps/_refinereg.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _refinetopo.lo -MD -MP -MF .deps/_refinetopo.Tpo -c -o _refinetopo.lo _refinetopo.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _refinetopo.lo -MD -MP -MF .deps/_refinetopo.Tpo -c _refinetopo.c -o _refinetopo.o | |
mv -f .deps/_refinetopo.Tpo .deps/_refinetopo.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _regstream.lo -MD -MP -MF .deps/_regstream.Tpo -c -o _regstream.lo _regstream.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _regstream.lo -MD -MP -MF .deps/_regstream.Tpo -c _regstream.c -o _regstream.o | |
mv -f .deps/_regstream.Tpo .deps/_regstream.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _rgb_image.lo -MD -MP -MF .deps/_rgb_image.Tpo -c -o _rgb_image.lo _rgb_image.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _rgb_image.lo -MD -MP -MF .deps/_rgb_image.Tpo -c _rgb_image.c -o _rgb_image.o | |
mv -f .deps/_rgb_image.Tpo .deps/_rgb_image.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _rubbersheet.lo -MD -MP -MF .deps/_rubbersheet.Tpo -c -o _rubbersheet.lo _rubbersheet.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _rubbersheet.lo -MD -MP -MF .deps/_rubbersheet.Tpo -c _rubbersheet.c -o _rubbersheet.o | |
mv -f .deps/_rubbersheet.Tpo .deps/_rubbersheet.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _rw_image.lo -MD -MP -MF .deps/_rw_image.Tpo -c -o _rw_image.lo _rw_image.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _rw_image.lo -MD -MP -MF .deps/_rw_image.Tpo -c _rw_image.c -o _rw_image.o | |
mv -f .deps/_rw_image.Tpo .deps/_rw_image.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _sample.lo -MD -MP -MF .deps/_sample.Tpo -c -o _sample.lo _sample.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _sample.lo -MD -MP -MF .deps/_sample.Tpo -c _sample.c -o _sample.o | |
mv -f .deps/_sample.Tpo .deps/_sample.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _simplesurf.lo -MD -MP -MF .deps/_simplesurf.Tpo -c -o _simplesurf.lo _simplesurf.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _simplesurf.lo -MD -MP -MF .deps/_simplesurf.Tpo -c _simplesurf.c -o _simplesurf.o | |
mv -f .deps/_simplesurf.Tpo .deps/_simplesurf.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _tiff.lo -MD -MP -MF .deps/_tiff.Tpo -c -o _tiff.lo _tiff.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _tiff.lo -MD -MP -MF .deps/_tiff.Tpo -c _tiff.c -o _tiff.o | |
mv -f .deps/_tiff.Tpo .deps/_tiff.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _tube.lo -MD -MP -MF .deps/_tube.Tpo -c -o _tube.lo _tube.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _tube.lo -MD -MP -MF .deps/_tube.Tpo -c _tube.c -o _tube.o | |
mv -f .deps/_tube.Tpo .deps/_tube.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _unpart.lo -MD -MP -MF .deps/_unpart.Tpo -c -o _unpart.lo _unpart.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT _unpart.lo -MD -MP -MF .deps/_unpart.Tpo -c _unpart.c -o _unpart.o | |
mv -f .deps/_unpart.Tpo .deps/_unpart.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT bounds.lo -MD -MP -MF .deps/bounds.Tpo -c -o bounds.lo bounds.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT bounds.lo -MD -MP -MF .deps/bounds.Tpo -c bounds.c -o bounds.o | |
mv -f .deps/bounds.Tpo .deps/bounds.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT definter.lo -MD -MP -MF .deps/definter.Tpo -c -o definter.lo definter.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT definter.lo -MD -MP -MF .deps/definter.Tpo -c definter.c -o definter.o | |
mv -f .deps/definter.Tpo .deps/definter.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT exp_gai.lo -MD -MP -MF .deps/exp_gai.Tpo -c -o exp_gai.lo exp_gai.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT exp_gai.lo -MD -MP -MF .deps/exp_gai.Tpo -c exp_gai.c -o exp_gai.o | |
exp_gai.c:425:24: warning: format string is not a string literal (potentially insecure) [-Wformat-security] | |
fprintf(h->dfp,del); | |
^~~ | |
exp_gai.c:442:24: warning: format string is not a string literal (potentially insecure) [-Wformat-security] | |
fprintf(h->dfp,del); | |
^~~ | |
exp_gai.c:459:24: warning: format string is not a string literal (potentially insecure) [-Wformat-security] | |
fprintf(h->dfp,del); | |
^~~ | |
exp_gai.c:476:24: warning: format string is not a string literal (potentially insecure) [-Wformat-security] | |
fprintf(h->dfp,del); | |
^~~ | |
exp_gai.c:493:24: warning: format string is not a string literal (potentially insecure) [-Wformat-security] | |
fprintf(h->dfp,del); | |
^~~ | |
exp_gai.c:510:24: warning: format string is not a string literal (potentially insecure) [-Wformat-security] | |
fprintf(h->dfp,del); | |
^~~ | |
exp_gai.c:527:24: warning: format string is not a string literal (potentially insecure) [-Wformat-security] | |
fprintf(h->dfp,del); | |
^~~ | |
exp_gai.c:544:24: warning: format string is not a string literal (potentially insecure) [-Wformat-security] | |
fprintf(h->dfp,del); | |
^~~ | |
exp_gai.c:557:21: warning: format string is not a string literal (potentially insecure) [-Wformat-security] | |
fprintf(h->dfp,del); | |
^~~ | |
exp_gai.c:833:24: warning: format string is not a string literal (potentially insecure) [-Wformat-security] | |
fprintf(h->dfp,del); | |
^~~ | |
exp_gai.c:848:21: warning: format string is not a string literal (potentially insecure) [-Wformat-security] | |
fprintf(h->dfp,del); | |
^~~ | |
exp_gai.c:854:36: warning: format string is not a string literal (potentially insecure) [-Wformat-security] | |
if (j > 0) fprintf(h->dfp, del); | |
^~~ | |
12 warnings generated. | |
mv -f .deps/exp_gai.Tpo .deps/exp_gai.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT genimp.lo -MD -MP -MF .deps/genimp.Tpo -c -o genimp.lo genimp.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT genimp.lo -MD -MP -MF .deps/genimp.Tpo -c genimp.c -o genimp.o | |
mv -f .deps/genimp.Tpo .deps/genimp.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT genimp_io.lo -MD -MP -MF .deps/genimp_io.Tpo -c -o genimp_io.lo genimp_io.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT genimp_io.lo -MD -MP -MF .deps/genimp_io.Tpo -c genimp_io.c -o genimp_io.o | |
mv -f .deps/genimp_io.Tpo .deps/genimp_io.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT genimp_parse.lo -MD -MP -MF .deps/genimp_parse.Tpo -c -o genimp_parse.lo genimp_parse.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT genimp_parse.lo -MD -MP -MF .deps/genimp_parse.Tpo -c genimp_parse.c -o genimp_parse.o | |
mv -f .deps/genimp_parse.Tpo .deps/genimp_parse.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT importtable.lo -MD -MP -MF .deps/importtable.Tpo -c -o importtable.lo importtable.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT importtable.lo -MD -MP -MF .deps/importtable.Tpo -c importtable.c -o importtable.o | |
mv -f .deps/importtable.Tpo .deps/importtable.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT import_cdf.lo -MD -MP -MF .deps/import_cdf.Tpo -c -o import_cdf.lo import_cdf.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT import_cdf.lo -MD -MP -MF .deps/import_cdf.Tpo -c import_cdf.c -o import_cdf.o | |
mv -f .deps/import_cdf.Tpo .deps/import_cdf.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT import_cm.lo -MD -MP -MF .deps/import_cm.Tpo -c -o import_cm.lo import_cm.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT import_cm.lo -MD -MP -MF .deps/import_cm.Tpo -c import_cm.c -o import_cm.o | |
mv -f .deps/import_cm.Tpo .deps/import_cm.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT import_hdf.lo -MD -MP -MF .deps/import_hdf.Tpo -c -o import_hdf.lo import_hdf.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT import_hdf.lo -MD -MP -MF .deps/import_hdf.Tpo -c import_hdf.c -o import_hdf.o | |
mv -f .deps/import_hdf.Tpo .deps/import_hdf.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT import_ncdf.lo -MD -MP -MF .deps/import_ncdf.Tpo -c -o import_ncdf.lo import_ncdf.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT import_ncdf.lo -MD -MP -MF .deps/import_ncdf.Tpo -c import_ncdf.c -o import_ncdf.o | |
mv -f .deps/import_ncdf.Tpo .deps/import_ncdf.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT private.lo -MD -MP -MF .deps/private.Tpo -c -o private.lo private.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT private.lo -MD -MP -MF .deps/private.Tpo -c private.c -o private.o | |
mv -f .deps/private.Tpo .deps/private.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT separate.lo -MD -MP -MF .deps/separate.Tpo -c -o separate.lo separate.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT separate.lo -MD -MP -MF .deps/separate.Tpo -c separate.c -o separate.o | |
mv -f .deps/separate.Tpo .deps/separate.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT superwinX.lo -MD -MP -MF .deps/superwinX.Tpo -c -o superwinX.lo superwinX.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT superwinX.lo -MD -MP -MF .deps/superwinX.Tpo -c superwinX.c -o superwinX.o | |
mv -f .deps/superwinX.Tpo .deps/superwinX.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT superwinW.lo -MD -MP -MF .deps/superwinW.Tpo -c -o superwinW.lo superwinW.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT superwinW.lo -MD -MP -MF .deps/superwinW.Tpo -c superwinW.c -o superwinW.o | |
mv -f .deps/superwinW.Tpo .deps/superwinW.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT tracevisual.lo -MD -MP -MF .deps/tracevisual.Tpo -c -o tracevisual.lo tracevisual.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT tracevisual.lo -MD -MP -MF .deps/tracevisual.Tpo -c tracevisual.c -o tracevisual.o | |
mv -f .deps/tracevisual.Tpo .deps/tracevisual.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT vectors.lo -MD -MP -MF .deps/vectors.Tpo -c -o vectors.lo vectors.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT vectors.lo -MD -MP -MF .deps/vectors.Tpo -c vectors.c -o vectors.o | |
mv -f .deps/vectors.Tpo .deps/vectors.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT vrml.lo -MD -MP -MF .deps/vrml.Tpo -c -o vrml.lo vrml.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT vrml.lo -MD -MP -MF .deps/vrml.Tpo -c vrml.c -o vrml.o | |
mv -f .deps/vrml.Tpo .deps/vrml.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT eigen.lo -MD -MP -MF .deps/eigen.Tpo -c -o eigen.lo eigen.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT eigen.lo -MD -MP -MF .deps/eigen.Tpo -c eigen.c -o eigen.o | |
mv -f .deps/eigen.Tpo .deps/eigen.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT vsincos.lo -MD -MP -MF .deps/vsincos.Tpo -c -o vsincos.lo vsincos.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT vsincos.lo -MD -MP -MF .deps/vsincos.Tpo -c vsincos.c -o vsincos.o | |
mv -f .deps/vsincos.Tpo .deps/vsincos.Plo | |
sh ../../../libtool --tag=CC --mode=link gcc -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -L/sw/lib -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -o libDXMODS.la ambientlight.lo append.lo arrange.lo attribute.lo autocolor.lo autoaxes.lo autoglyph.lo autogray.lo autoregrid.lo band.lo bspline.lo cachescene.lo camera.lo caption.lo categorize.lo catstats.lo changetype.lo changemember.lo clipbox.lo clipplane.lo collect.lo collectmulti.lo collectnamed.lo collectser.lo color.lo colorbar.lo colormap.lo compute.lo compute2.lo connect.lo construct.lo convert.lo copy.lo describe.lo direction.lo display.lo divcurl.lo dxlmessage.lo dxloutvalue.lo echo.lo enumerate.lo equalize.lo export.lo extract.lo facenormals.lo filter.lo format.lo fourier.lo getscene.lo glyph.lo gradient.lo grid.lo histogram.lo imagemessage.lo import.lo import_ss.lo include.lo inquire.lo isolate.lo isosurface.lo integer.lo integerlist.lo keyin.lo light.lo list.lo lookup.lo macroutil.lo map.lo maptoplane.lo mark.lo measure.lo message.lo normals.lo options.lo overlay.lo parse.lo partition.lo pick.lo pickinv.lo pie.lo plot.lo post.lo print.lo programctl.lo quantize.lo rdimagewin.lo readimage.lo reduce.lo refine.lo regrid.lo remove.lo rename.lo render.lo reorient.lo replace.lo ribbon.lo rotate.lo route.lo rubbersheet.lo sample.lo scalar.lo scalarlist.lo scale.lo scalescreen.lo screen.lo select.lo selector.lo shade.lo showboundary.lo showbox.lo showconnect.lo showposition.lo slab.lo slice.lo socketconnect.lo sort.lo stack.lo statistics.lo streakline.lo streamline.lo stringlegend.lo superstate.lo superwin.lo switch.lo system.lo text.lo toggle.lo trace.lo transform.lo translate.lo transpose.lo tube.lo unmark.lo usage.lo vector.lo vectorlist.lo verify.lo visualobject.lo writeimage.lo simplesurf.lo _autocolor.lo _autogray.lo _cat_util.lo _color.lo _colormap.lo _complex.lo _compoper.lo _compoper1.lo _compoper2.lo _compcmplx.lo _compinput.lo _compexec.lo _compparse.lo _compputils.lo _connectgrids.lo _connectvor.lo _construct.lo _divcurl.lo _getfield.lo _gif.lo _glyph.lo _gradient.lo _grid.lo _helper_jea.lo _im_image.lo _irregstream.lo _isosurface.lo _maptoplane.lo _newtri.lo _normals.lo _partnbrs.lo _plot.lo _post.lo _postscript.lo _refine.lo _refineirr.lo _refinereg.lo _refinetopo.lo _regstream.lo _rgb_image.lo _rubbersheet.lo _rw_image.lo _sample.lo _simplesurf.lo _tiff.lo _tube.lo _unpart.lo bounds.lo definter.lo exp_gai.lo genimp.lo genimp_io.lo genimp_parse.lo importtable.lo import_cdf.lo import_cm.lo import_hdf.lo import_ncdf.lo private.lo separate.lo superwinX.lo superwinW.lo tracevisual.lo vectors.lo vrml.lo eigen.lo vsincos.lo -lXinerama -lnetcdf -ldf -ljpeg -lsz -lXpm -ltiff -ldl -lXm -lXp -lGLU -lGL -lm -lXmu -lXext -lXt -lX11 -lSM -lICE -L/usr/X11R6/lib -lpthread -lz -L/sw/lib -lGraphicsMagick | |
libtool: link: ar cru .libs/libDXMODS.a ambientlight.o append.o arrange.o attribute.o autocolor.o autoaxes.o autoglyph.o autogray.o autoregrid.o band.o bspline.o cachescene.o camera.o caption.o categorize.o catstats.o changetype.o changemember.o clipbox.o clipplane.o collect.o collectmulti.o collectnamed.o collectser.o color.o colorbar.o colormap.o compute.o compute2.o connect.o construct.o convert.o copy.o describe.o direction.o display.o divcurl.o dxlmessage.o dxloutvalue.o echo.o enumerate.o equalize.o export.o extract.o facenormals.o filter.o format.o fourier.o getscene.o glyph.o gradient.o grid.o histogram.o imagemessage.o import.o import_ss.o include.o inquire.o isolate.o isosurface.o integer.o integerlist.o keyin.o light.o list.o lookup.o macroutil.o map.o maptoplane.o mark.o measure.o message.o normals.o options.o overlay.o parse.o partition.o pick.o pickinv.o pie.o plot.o post.o print.o programctl.o quantize.o rdimagewin.o readimage.o reduce.o refine.o regrid.o remove.o rename.o render.o reorient.o replace.o ribbon.o rotate.o route.o rubbersheet.o sample.o scalar.o scalarlist.o scale.o scalescreen.o screen.o select.o selector.o shade.o showboundary.o showbox.o showconnect.o showposition.o slab.o slice.o socketconnect.o sort.o stack.o statistics.o streakline.o streamline.o stringlegend.o superstate.o superwin.o switch.o system.o text.o toggle.o trace.o transform.o translate.o transpose.o tube.o unmark.o usage.o vector.o vectorlist.o verify.o visualobject.o writeimage.o simplesurf.o _autocolor.o _autogray.o _cat_util.o _color.o _colormap.o _complex.o _compoper.o _compoper1.o _compoper2.o _compcmplx.o _compinput.o _compexec.o _compparse.o _compputils.o _connectgrids.o _connectvor.o _construct.o _divcurl.o _getfield.o _gif.o _glyph.o _gradient.o _grid.o _helper_jea.o _im_image.o _irregstream.o _isosurface.o _maptoplane.o _newtri.o _normals.o _partnbrs.o _plot.o _post.o _postscript.o _refine.o _refineirr.o _refinereg.o _refinetopo.o _regstream.o _rgb_image.o _rubbersheet.o _rw_image.o _sample.o _simplesurf.o _tiff.o _tube.o _unpart.o bounds.o definter.o exp_gai.o genimp.o genimp_io.o genimp_parse.o importtable.o import_cdf.o import_cm.o import_hdf.o import_ncdf.o private.o separate.o superwinX.o superwinW.o tracevisual.o vectors.o vrml.o eigen.o vsincos.o | |
/usr/bin/ranlib: file: .libs/libDXMODS.a(superwinW.o) has no symbols | |
libtool: link: ranlib .libs/libDXMODS.a | |
ranlib: file: .libs/libDXMODS.a(superwinW.o) has no symbols | |
libtool: link: ( cd ".libs" && rm -f "libDXMODS.la" && ln -s "../libDXMODS.la" "libDXMODS.la" ) | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT usercm.lo -MD -MP -MF .deps/usercm.Tpo -c -o usercm.lo usercm.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT usercm.lo -MD -MP -MF .deps/usercm.Tpo -c usercm.c -o usercm.o | |
mv -f .deps/usercm.Tpo .deps/usercm.Plo | |
sh ../../../libtool --tag=CC --mode=link gcc -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -L/sw/lib -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -o libusercm.la usercm.lo -lXinerama -lnetcdf -ldf -ljpeg -lsz -lXpm -ltiff -ldl -lXm -lXp -lGLU -lGL -lm -lXmu -lXext -lXt -lX11 -lSM -lICE -L/usr/X11R6/lib -lpthread -lz -L/sw/lib -lGraphicsMagick | |
libtool: link: ar cru .libs/libusercm.a usercm.o | |
libtool: link: ranlib .libs/libusercm.a | |
libtool: link: ( cd ".libs" && rm -f "libusercm.la" && ln -s "../libusercm.la" "libusercm.la" ) | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT user.lo -MD -MP -MF .deps/user.Tpo -c -o user.lo user.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT user.lo -MD -MP -MF .deps/user.Tpo -c user.c -o user.o | |
mv -f .deps/user.Tpo .deps/user.Plo | |
sh ../../../libtool --tag=CC --mode=link gcc -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -L/sw/lib -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -o libuser.la user.lo -lXinerama -lnetcdf -ldf -ljpeg -lsz -lXpm -ltiff -ldl -lXm -lXp -lGLU -lGL -lm -lXmu -lXext -lXt -lX11 -lSM -lICE -L/usr/X11R6/lib -lpthread -lz -L/sw/lib -lGraphicsMagick | |
libtool: link: ar cru .libs/libuser.a user.o | |
libtool: link: ranlib .libs/libuser.a | |
libtool: link: ( cd ".libs" && rm -f "libuser.la" && ln -s "../libuser.la" "libuser.la" ) | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT executive.lo -MD -MP -MF .deps/executive.Tpo -c -o executive.lo executive.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT executive.lo -MD -MP -MF .deps/executive.Tpo -c executive.c -o executive.o | |
mv -f .deps/executive.Tpo .deps/executive.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT getset.lo -MD -MP -MF .deps/getset.Tpo -c -o getset.lo getset.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT getset.lo -MD -MP -MF .deps/getset.Tpo -c getset.c -o getset.o | |
mv -f .deps/getset.Tpo .deps/getset.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT loop.lo -MD -MP -MF .deps/loop.Tpo -c -o loop.lo loop.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT loop.lo -MD -MP -MF .deps/loop.Tpo -c loop.c -o loop.o | |
mv -f .deps/loop.Tpo .deps/loop.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT dxlinnamed.lo -MD -MP -MF .deps/dxlinnamed.Tpo -c -o dxlinnamed.lo dxlinnamed.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT dxlinnamed.lo -MD -MP -MF .deps/dxlinnamed.Tpo -c dxlinnamed.c -o dxlinnamed.o | |
mv -f .deps/dxlinnamed.Tpo .deps/dxlinnamed.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT sequencer.lo -MD -MP -MF .deps/sequencer.Tpo -c -o sequencer.lo sequencer.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1706/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT sequencer.lo -MD -MP -MF .deps/sequencer.Tpo -c sequencer.c -o sequencer.o | |
mv -f .deps/sequencer.Tpo .deps/sequencer.Plo | |
sh ../../../libtool --tag=CC --mode=link gcc -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -L/sw/lib -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -o libDXMODSN.la executive.lo getset.lo loop.lo dxlinnamed.lo sequencer.lo -lXinerama -lnetcdf -ldf -ljpeg -lsz -lXpm -ltiff -ldl -lXm -lXp -lGLU -lGL -lm -lXmu -lXext -lXt -lX11 -lSM -lICE -L/usr/X11R6/lib -lpthread -lz -L/sw/lib -lGraphicsMagick | |
libtool: link: ar cru .libs/libDXMODSN.a executive.o getset.o loop.o dxlinnamed.o sequencer.o | |
libtool: link: ranlib .libs/libDXMODSN.a | |
libtool: link: ( cd ".libs" && rm -f "libDXMODSN.la" && ln -s "../libDXMODSN.la" "libDXMODSN.la" ) | |
Making all in hwrender | |
Making all in opengl | |
sh ../../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../../include -I../../../../include -I./.. -I./../../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwPortUtilOGL.lo -MD -MP -MF .deps/hwPortUtilOGL.Tpo -c -o hwPortUtilOGL.lo hwPortUtilOGL.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../../include -I../../../../include -I./.. -I./../../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwPortUtilOGL.lo -MD -MP -MF .deps/hwPortUtilOGL.Tpo -c hwPortUtilOGL.c -o hwPortUtilOGL.o | |
mv -f .deps/hwPortUtilOGL.Tpo .deps/hwPortUtilOGL.Plo | |
sh ../../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../../include -I../../../../include -I./.. -I./../../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwInteractorEchoOGL.lo -MD -MP -MF .deps/hwInteractorEchoOGL.Tpo -c -o hwInteractorEchoOGL.lo hwInteractorEchoOGL.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../../include -I../../../../include -I./.. -I./../../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwInteractorEchoOGL.lo -MD -MP -MF .deps/hwInteractorEchoOGL.Tpo -c hwInteractorEchoOGL.c -o hwInteractorEchoOGL.o | |
mv -f .deps/hwInteractorEchoOGL.Tpo .deps/hwInteractorEchoOGL.Plo | |
sh ../../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../../include -I../../../../include -I./.. -I./../../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwDisplayListsOGL.lo -MD -MP -MF .deps/hwDisplayListsOGL.Tpo -c -o hwDisplayListsOGL.lo hwDisplayListsOGL.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../../include -I../../../../include -I./.. -I./../../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwDisplayListsOGL.lo -MD -MP -MF .deps/hwDisplayListsOGL.Tpo -c hwDisplayListsOGL.c -o hwDisplayListsOGL.o | |
mv -f .deps/hwDisplayListsOGL.Tpo .deps/hwDisplayListsOGL.Plo | |
sh ../../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../../include -I../../../../include -I./.. -I./../../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwPortOGL.lo -MD -MP -MF .deps/hwPortOGL.Tpo -c -o hwPortOGL.lo hwPortOGL.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../../include -I../../../../include -I./.. -I./../../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwPortOGL.lo -MD -MP -MF .deps/hwPortOGL.Tpo -c hwPortOGL.c -o hwPortOGL.o | |
mv -f .deps/hwPortOGL.Tpo .deps/hwPortOGL.Plo | |
sh ../../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../../include -I../../../../include -I./.. -I./../../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwLoadOGL.lo -MD -MP -MF .deps/hwLoadOGL.Tpo -c -o hwLoadOGL.lo hwLoadOGL.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../../include -I../../../../include -I./.. -I./../../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwLoadOGL.lo -MD -MP -MF .deps/hwLoadOGL.Tpo -c hwLoadOGL.c -o hwLoadOGL.o | |
mv -f .deps/hwLoadOGL.Tpo .deps/hwLoadOGL.Plo | |
sh ../../../../libtool --tag=CC --mode=link gcc -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -L/sw/lib -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -o libOPENGL.la hwPortUtilOGL.lo hwInteractorEchoOGL.lo hwDisplayListsOGL.lo hwPortOGL.lo hwLoadOGL.lo -lXinerama -lnetcdf -ldf -ljpeg -lsz -lXpm -ltiff -ldl -lXm -lXp -lGLU -lGL -lm -lXmu -lXext -lXt -lX11 -lSM -lICE -L/usr/X11R6/lib -lpthread -lz -L/sw/lib -lGraphicsMagick | |
libtool: link: ar cru .libs/libOPENGL.a hwPortUtilOGL.o hwInteractorEchoOGL.o hwDisplayListsOGL.o hwPortOGL.o hwLoadOGL.o | |
libtool: link: ranlib .libs/libOPENGL.a | |
libtool: link: ( cd ".libs" && rm -f "libOPENGL.la" && ln -s "../libOPENGL.la" "libOPENGL.la" ) | |
Making all in gl | |
make[4]: Nothing to be done for `all'. | |
Making all in xgl | |
make[4]: Nothing to be done for `all'. | |
Making all in starbase | |
make[4]: Nothing to be done for `all'. | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwClientMessage.lo -MD -MP -MF .deps/hwClientMessage.Tpo -c -o hwClientMessage.lo hwClientMessage.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwClientMessage.lo -MD -MP -MF .deps/hwClientMessage.Tpo -c hwClientMessage.c -o hwClientMessage.o | |
mv -f .deps/hwClientMessage.Tpo .deps/hwClientMessage.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwClipped.lo -MD -MP -MF .deps/hwClipped.Tpo -c -o hwClipped.lo hwClipped.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwClipped.lo -MD -MP -MF .deps/hwClipped.Tpo -c hwClipped.c -o hwClipped.o | |
mv -f .deps/hwClipped.Tpo .deps/hwClipped.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwCursorInteractor.lo -MD -MP -MF .deps/hwCursorInteractor.Tpo -c -o hwCursorInteractor.lo hwCursorInteractor.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwCursorInteractor.lo -MD -MP -MF .deps/hwCursorInteractor.Tpo -c hwCursorInteractor.c -o hwCursorInteractor.o | |
hwCursorInteractor.c:756:30: warning: equality comparison with extraneous parentheses [-Wparentheses] | |
if ((PDATA(CursorNotBlank) == TRUE)) | |
~~~~~~~~~~~~~~~~~~~~~~^~~~~~~ | |
hwCursorInteractor.c:756:30: note: remove extraneous parentheses around the comparison to silence this warning | |
if ((PDATA(CursorNotBlank) == TRUE)) | |
~ ^ ~ | |
hwCursorInteractor.c:756:30: note: use '=' to turn this equality comparison into an assignment | |
if ((PDATA(CursorNotBlank) == TRUE)) | |
^~ | |
= | |
1 warning generated. | |
mv -f .deps/hwCursorInteractor.Tpo .deps/hwCursorInteractor.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwDraw.lo -MD -MP -MF .deps/hwDraw.Tpo -c -o hwDraw.lo hwDraw.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwDraw.lo -MD -MP -MF .deps/hwDraw.Tpo -c hwDraw.c -o hwDraw.o | |
mv -f .deps/hwDraw.Tpo .deps/hwDraw.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwGroupInteractor.lo -MD -MP -MF .deps/hwGroupInteractor.Tpo -c -o hwGroupInteractor.lo hwGroupInteractor.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwGroupInteractor.lo -MD -MP -MF .deps/hwGroupInteractor.Tpo -c hwGroupInteractor.c -o hwGroupInteractor.o | |
mv -f .deps/hwGroupInteractor.Tpo .deps/hwGroupInteractor.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwInitScreen.lo -MD -MP -MF .deps/hwInitScreen.Tpo -c -o hwInitScreen.lo hwInitScreen.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwInitScreen.lo -MD -MP -MF .deps/hwInitScreen.Tpo -c hwInitScreen.c -o hwInitScreen.o | |
mv -f .deps/hwInitScreen.Tpo .deps/hwInitScreen.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwInteractor.lo -MD -MP -MF .deps/hwInteractor.Tpo -c -o hwInteractor.lo hwInteractor.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwInteractor.lo -MD -MP -MF .deps/hwInteractor.Tpo -c hwInteractor.c -o hwInteractor.o | |
mv -f .deps/hwInteractor.Tpo .deps/hwInteractor.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwList.lo -MD -MP -MF .deps/hwList.Tpo -c -o hwList.lo hwList.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwList.lo -MD -MP -MF .deps/hwList.Tpo -c hwList.c -o hwList.o | |
mv -f .deps/hwList.Tpo .deps/hwList.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwMatrix.lo -MD -MP -MF .deps/hwMatrix.Tpo -c -o hwMatrix.lo hwMatrix.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwMatrix.lo -MD -MP -MF .deps/hwMatrix.Tpo -c hwMatrix.c -o hwMatrix.o | |
mv -f .deps/hwMatrix.Tpo .deps/hwMatrix.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwMaterials.lo -MD -MP -MF .deps/hwMaterials.Tpo -c -o hwMaterials.lo hwMaterials.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwMaterials.lo -MD -MP -MF .deps/hwMaterials.Tpo -c hwMaterials.c -o hwMaterials.o | |
mv -f .deps/hwMaterials.Tpo .deps/hwMaterials.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwMemory.lo -MD -MP -MF .deps/hwMemory.Tpo -c -o hwMemory.lo hwMemory.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwMemory.lo -MD -MP -MF .deps/hwMemory.Tpo -c hwMemory.c -o hwMemory.o | |
mv -f .deps/hwMemory.Tpo .deps/hwMemory.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwNavigateInteractor.lo -MD -MP -MF .deps/hwNavigateInteractor.Tpo -c -o hwNavigateInteractor.lo hwNavigateInteractor.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwNavigateInteractor.lo -MD -MP -MF .deps/hwNavigateInteractor.Tpo -c hwNavigateInteractor.c -o hwNavigateInteractor.o | |
mv -f .deps/hwNavigateInteractor.Tpo .deps/hwNavigateInteractor.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwObject.lo -MD -MP -MF .deps/hwObject.Tpo -c -o hwObject.lo hwObject.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwObject.lo -MD -MP -MF .deps/hwObject.Tpo -c hwObject.c -o hwObject.o | |
mv -f .deps/hwObject.Tpo .deps/hwObject.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwObjectHash.lo -MD -MP -MF .deps/hwObjectHash.Tpo -c -o hwObjectHash.lo hwObjectHash.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwObjectHash.lo -MD -MP -MF .deps/hwObjectHash.Tpo -c hwObjectHash.c -o hwObjectHash.o | |
mv -f .deps/hwObjectHash.Tpo .deps/hwObjectHash.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwPolyline.lo -MD -MP -MF .deps/hwPolyline.Tpo -c -o hwPolyline.lo hwPolyline.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwPolyline.lo -MD -MP -MF .deps/hwPolyline.Tpo -c hwPolyline.c -o hwPolyline.o | |
mv -f .deps/hwPolyline.Tpo .deps/hwPolyline.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwPortHandle.lo -MD -MP -MF .deps/hwPortHandle.Tpo -c -o hwPortHandle.lo hwPortHandle.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwPortHandle.lo -MD -MP -MF .deps/hwPortHandle.Tpo -c hwPortHandle.c -o hwPortHandle.o | |
mv -f .deps/hwPortHandle.Tpo .deps/hwPortHandle.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwQmesh.lo -MD -MP -MF .deps/hwQmesh.Tpo -c -o hwQmesh.lo hwQmesh.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwQmesh.lo -MD -MP -MF .deps/hwQmesh.Tpo -c hwQmesh.c -o hwQmesh.o | |
mv -f .deps/hwQmesh.Tpo .deps/hwQmesh.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwRender.lo -MD -MP -MF .deps/hwRender.Tpo -c -o hwRender.lo hwRender.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwRender.lo -MD -MP -MF .deps/hwRender.Tpo -c hwRender.c -o hwRender.o | |
mv -f .deps/hwRender.Tpo .deps/hwRender.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwRotateInteractor.lo -MD -MP -MF .deps/hwRotateInteractor.Tpo -c -o hwRotateInteractor.lo hwRotateInteractor.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwRotateInteractor.lo -MD -MP -MF .deps/hwRotateInteractor.Tpo -c hwRotateInteractor.c -o hwRotateInteractor.o | |
mv -f .deps/hwRotateInteractor.Tpo .deps/hwRotateInteractor.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwScreen.lo -MD -MP -MF .deps/hwScreen.Tpo -c -o hwScreen.lo hwScreen.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwScreen.lo -MD -MP -MF .deps/hwScreen.Tpo -c hwScreen.c -o hwScreen.o | |
mv -f .deps/hwScreen.Tpo .deps/hwScreen.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwSort.lo -MD -MP -MF .deps/hwSort.Tpo -c -o hwSort.lo hwSort.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwSort.lo -MD -MP -MF .deps/hwSort.Tpo -c hwSort.c -o hwSort.o | |
mv -f .deps/hwSort.Tpo .deps/hwSort.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwStereo.lo -MD -MP -MF .deps/hwStereo.Tpo -c -o hwStereo.lo hwStereo.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwStereo.lo -MD -MP -MF .deps/hwStereo.Tpo -c hwStereo.c -o hwStereo.o | |
mv -f .deps/hwStereo.Tpo .deps/hwStereo.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwStereoSys.lo -MD -MP -MF .deps/hwStereoSys.Tpo -c -o hwStereoSys.lo hwStereoSys.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwStereoSys.lo -MD -MP -MF .deps/hwStereoSys.Tpo -c hwStereoSys.c -o hwStereoSys.o | |
mv -f .deps/hwStereoSys.Tpo .deps/hwStereoSys.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwStereoCams.lo -MD -MP -MF .deps/hwStereoCams.Tpo -c -o hwStereoCams.lo hwStereoCams.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwStereoCams.lo -MD -MP -MF .deps/hwStereoCams.Tpo -c hwStereoCams.c -o hwStereoCams.o | |
mv -f .deps/hwStereoCams.Tpo .deps/hwStereoCams.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwTexture.lo -MD -MP -MF .deps/hwTexture.Tpo -c -o hwTexture.lo hwTexture.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwTexture.lo -MD -MP -MF .deps/hwTexture.Tpo -c hwTexture.c -o hwTexture.o | |
mv -f .deps/hwTexture.Tpo .deps/hwTexture.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwTmesh.lo -MD -MP -MF .deps/hwTmesh.Tpo -c -o hwTmesh.lo hwTmesh.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwTmesh.lo -MD -MP -MF .deps/hwTmesh.Tpo -c hwTmesh.c -o hwTmesh.o | |
mv -f .deps/hwTmesh.Tpo .deps/hwTmesh.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwWindow.lo -MD -MP -MF .deps/hwWindow.Tpo -c -o hwWindow.lo hwWindow.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwWindow.lo -MD -MP -MF .deps/hwWindow.Tpo -c hwWindow.c -o hwWindow.o | |
mv -f .deps/hwWindow.Tpo .deps/hwWindow.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwZoomInteractor.lo -MD -MP -MF .deps/hwZoomInteractor.Tpo -c -o hwZoomInteractor.lo hwZoomInteractor.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwZoomInteractor.lo -MD -MP -MF .deps/hwZoomInteractor.Tpo -c hwZoomInteractor.c -o hwZoomInteractor.o | |
mv -f .deps/hwZoomInteractor.Tpo .deps/hwZoomInteractor.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwGather.lo -MD -MP -MF .deps/hwGather.Tpo -c -o hwGather.lo hwGather.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwGather.lo -MD -MP -MF .deps/hwGather.Tpo -c hwGather.c -o hwGather.o | |
mv -f .deps/hwGather.Tpo .deps/hwGather.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwPaint.lo -MD -MP -MF .deps/hwPaint.Tpo -c -o hwPaint.lo hwPaint.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwPaint.lo -MD -MP -MF .deps/hwPaint.Tpo -c hwPaint.c -o hwPaint.o | |
mv -f .deps/hwPaint.Tpo .deps/hwPaint.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwUpdateview.lo -MD -MP -MF .deps/hwUpdateview.Tpo -c -o hwUpdateview.lo hwUpdateview.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwUpdateview.lo -MD -MP -MF .deps/hwUpdateview.Tpo -c hwUpdateview.c -o hwUpdateview.o | |
hwUpdateview.c:111:14: warning: 6 enumeration values not handled in switch: 'HW_CLASS_GATHER', 'HW_CLASS_VIEW', 'HW_CLASS_LIST'... [-Wswitch-enum] | |
switch(_dxf_getHwClass(object)) { | |
^ | |
1 warning generated. | |
mv -f .deps/hwUpdateview.Tpo .deps/hwUpdateview.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwUserInteractor.lo -MD -MP -MF .deps/hwUserInteractor.Tpo -c -o hwUserInteractor.lo hwUserInteractor.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwUserInteractor.lo -MD -MP -MF .deps/hwUserInteractor.Tpo -c hwUserInteractor.c -o hwUserInteractor.o | |
mv -f .deps/hwUserInteractor.Tpo .deps/hwUserInteractor.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwView.lo -MD -MP -MF .deps/hwView.Tpo -c -o hwView.lo hwView.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwView.lo -MD -MP -MF .deps/hwView.Tpo -c hwView.c -o hwView.o | |
mv -f .deps/hwView.Tpo .deps/hwView.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwXfield.lo -MD -MP -MF .deps/hwXfield.Tpo -c -o hwXfield.lo hwXfield.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT hwXfield.lo -MD -MP -MF .deps/hwXfield.Tpo -c hwXfield.c -o hwXfield.o | |
mv -f .deps/hwXfield.Tpo .deps/hwXfield.Plo | |
sh ../../../libtool --tag=CC --mode=link gcc -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -L/sw/lib -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -o libHW.la hwClientMessage.lo hwClipped.lo hwCursorInteractor.lo hwDraw.lo hwGroupInteractor.lo hwInitScreen.lo hwInteractor.lo hwList.lo hwMatrix.lo hwMaterials.lo hwMemory.lo hwNavigateInteractor.lo hwObject.lo hwObjectHash.lo hwPolyline.lo hwPortHandle.lo hwQmesh.lo hwRender.lo hwRotateInteractor.lo hwScreen.lo hwSort.lo hwStereo.lo hwStereoSys.lo hwStereoCams.lo hwTexture.lo hwTmesh.lo hwWindow.lo hwZoomInteractor.lo hwGather.lo hwPaint.lo hwUpdateview.lo hwUserInteractor.lo hwView.lo hwXfield.lo -lXinerama -lnetcdf -ldf -ljpeg -lsz -lXpm -ltiff -ldl -lXm -lXp -lGLU -lGL -lm -lXmu -lXext -lXt -lX11 -lSM -lICE -L/usr/X11R6/lib -lpthread -lz -L/sw/lib -lGraphicsMagick | |
libtool: link: ar cru .libs/libHW.a hwClientMessage.o hwClipped.o hwCursorInteractor.o hwDraw.o hwGroupInteractor.o hwInitScreen.o hwInteractor.o hwList.o hwMatrix.o hwMaterials.o hwMemory.o hwNavigateInteractor.o hwObject.o hwObjectHash.o hwPolyline.o hwPortHandle.o hwQmesh.o hwRender.o hwRotateInteractor.o hwScreen.o hwSort.o hwStereo.o hwStereoSys.o hwStereoCams.o hwTexture.o hwTmesh.o hwWindow.o hwZoomInteractor.o hwGather.o hwPaint.o hwUpdateview.o hwUserInteractor.o hwView.o hwXfield.o | |
/usr/bin/ranlib: file: .libs/libHW.a(hwMemory.o) has no symbols | |
libtool: link: ranlib .libs/libHW.a | |
ranlib: file: .libs/libHW.a(hwMemory.o) has no symbols | |
libtool: link: ( cd ".libs" && rm -f "libHW.la" && ln -s "../libHW.la" "libHW.la" ) | |
Making all in dpexec | |
make all-am | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT dpattribute.lo -MD -MP -MF .deps/dpattribute.Tpo -c -o dpattribute.lo dpattribute.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT dpattribute.lo -MD -MP -MF .deps/dpattribute.Tpo -c dpattribute.c -o dpattribute.o | |
mv -f .deps/dpattribute.Tpo .deps/dpattribute.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT background.lo -MD -MP -MF .deps/background.Tpo -c -o background.lo background.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT background.lo -MD -MP -MF .deps/background.Tpo -c background.c -o background.o | |
mv -f .deps/background.Tpo .deps/background.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT cache.lo -MD -MP -MF .deps/cache.Tpo -c -o cache.lo cache.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT cache.lo -MD -MP -MF .deps/cache.Tpo -c cache.c -o cache.o | |
cache.c:76:5: warning: expression result unused [-Wunused-value] | |
ExReference(EmptyGvar); | |
^~~~~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
cache.c:76:5: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
1 warning generated. | |
mv -f .deps/cache.Tpo .deps/cache.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT cachegraph.lo -MD -MP -MF .deps/cachegraph.Tpo -c -o cachegraph.lo cachegraph.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT cachegraph.lo -MD -MP -MF .deps/cachegraph.Tpo -c cachegraph.c -o cachegraph.o | |
cachegraph.c:332:9: warning: expression result unused [-Wunused-value] | |
ExReference(pv->gv); | |
^~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
cachegraph.c:332:9: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
cachegraph.c:358:10: warning: expression result unused [-Wunused-value] | |
ExReference(pv->gv); | |
^~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
cachegraph.c:358:10: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
2 warnings generated. | |
mv -f .deps/cachegraph.Tpo .deps/cachegraph.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT ccm.lo -MD -MP -MF .deps/ccm.Tpo -c -o ccm.lo ccm.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT ccm.lo -MD -MP -MF .deps/ccm.Tpo -c ccm.c -o ccm.o | |
mv -f .deps/ccm.Tpo .deps/ccm.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT command.lo -MD -MP -MF .deps/command.Tpo -c -o command.lo command.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT command.lo -MD -MP -MF .deps/command.Tpo -c command.c -o command.o | |
command.c:495:70: warning: if statement has empty body [-Wempty-body] | |
if(optlen > (strlen(index->options) + 1)); | |
^ | |
1 warning generated. | |
mv -f .deps/command.Tpo .deps/command.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT context.lo -MD -MP -MF .deps/context.Tpo -c -o context.lo context.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT context.lo -MD -MP -MF .deps/context.Tpo -c context.c -o context.o | |
mv -f .deps/context.Tpo .deps/context.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT crc.lo -MD -MP -MF .deps/crc.Tpo -c -o crc.lo crc.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT crc.lo -MD -MP -MF .deps/crc.Tpo -c crc.c -o crc.o | |
mv -f .deps/crc.Tpo .deps/crc.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT d.lo -MD -MP -MF .deps/d.Tpo -c -o d.lo d.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT d.lo -MD -MP -MF .deps/d.Tpo -c d.c -o d.o | |
d.c:342:2: warning: expression result unused [-Wunused-value] | |
ExReference (o); | |
^~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
d.c:342:2: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
d.c:389:5: warning: expression result unused [-Wunused-value] | |
ExReference (obj); | |
^~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
d.c:389:5: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
2 warnings generated. | |
mv -f .deps/d.Tpo .deps/d.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT distconnect.lo -MD -MP -MF .deps/distconnect.Tpo -c -o distconnect.lo distconnect.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT distconnect.lo -MD -MP -MF .deps/distconnect.Tpo -c distconnect.c -o distconnect.o | |
mv -f .deps/distconnect.Tpo .deps/distconnect.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT distpacket.lo -MD -MP -MF .deps/distpacket.Tpo -c -o distpacket.lo distpacket.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT distpacket.lo -MD -MP -MF .deps/distpacket.Tpo -c distpacket.c -o distpacket.o | |
mv -f .deps/distpacket.Tpo .deps/distpacket.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT distqueue.lo -MD -MP -MF .deps/distqueue.Tpo -c -o distqueue.lo distqueue.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT distqueue.lo -MD -MP -MF .deps/distqueue.Tpo -c distqueue.c -o distqueue.o | |
mv -f .deps/distqueue.Tpo .deps/distqueue.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT dxmain.lo -MD -MP -MF .deps/dxmain.Tpo -c -o dxmain.lo dxmain.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT dxmain.lo -MD -MP -MF .deps/dxmain.Tpo -c dxmain.c -o dxmain.o | |
dxmain.c:2132:17: warning: format string is not a string literal (potentially insecure) [-Wformat-security] | |
printf (prompt? prompt: EX_PROMPT); | |
^~~~~~~~~~~~~~~~~~~~~~~~~ | |
dxmain.c:2346:13: warning: format string is not a string literal (potentially insecure) [-Wformat-security] | |
ISSUE_PROMPT (); | |
^~~~~~~~~~~~~~~ | |
dxmain.c:2308:10: note: instantiated from: | |
printf (prompt ? prompt : EX_PROMPT);\ | |
^ | |
dxmain.c:2454:13: warning: format string is not a string literal (potentially insecure) [-Wformat-security] | |
ISSUE_PROMPT (); | |
^~~~~~~~~~~~~~~ | |
dxmain.c:2308:10: note: instantiated from: | |
printf (prompt ? prompt : EX_PROMPT);\ | |
^ | |
3 warnings generated. | |
mv -f .deps/dxmain.Tpo .deps/dxmain.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT dxpfsmgr.lo -MD -MP -MF .deps/dxpfsmgr.Tpo -c -o dxpfsmgr.lo dxpfsmgr.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT dxpfsmgr.lo -MD -MP -MF .deps/dxpfsmgr.Tpo -c dxpfsmgr.c -o dxpfsmgr.o | |
mv -f .deps/dxpfsmgr.Tpo .deps/dxpfsmgr.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT evalgraph.lo -MD -MP -MF .deps/evalgraph.Tpo -c -o evalgraph.lo evalgraph.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT evalgraph.lo -MD -MP -MF .deps/evalgraph.Tpo -c evalgraph.c -o evalgraph.o | |
evalgraph.c:147:5: warning: expression result unused [-Wunused-value] | |
ExReference(gv->oneshot); | |
^~~~~~~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:147:5: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:245:6: warning: expression result unused [-Wunused-value] | |
ExReference(pv->gv); | |
^~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:245:6: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:262:3: warning: expression result unused [-Wunused-value] | |
ExReference(pv->gv); | |
^~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:262:3: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:282:2: warning: expression result unused [-Wunused-value] | |
ExReference(pv->gv); | |
^~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:282:2: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:368:6: warning: expression result unused [-Wunused-value] | |
ExReference(pv->gv); | |
^~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:368:6: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:373:6: warning: expression result unused [-Wunused-value] | |
ExReference(pv->gv); | |
^~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:373:6: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:390:6: warning: expression result unused [-Wunused-value] | |
ExReference(pv->gv); | |
^~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:390:6: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:436:2: warning: expression result unused [-Wunused-value] | |
ExReference(pv->gv); | |
^~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:436:2: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:616:6: warning: expression result unused [-Wunused-value] | |
ExReference(pv->gv); | |
^~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:616:6: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:624:6: warning: expression result unused [-Wunused-value] | |
ExReference(pv->gv); | |
^~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:624:6: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:1726:8: warning: expression result unused [-Wunused-value] | |
ExReference(switchOvar->gv); | |
^~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:1726:8: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:1734:5: warning: expression result unused [-Wunused-value] | |
ExReference(switchIvar->gv); | |
^~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:1734:5: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:1737:8: warning: expression result unused [-Wunused-value] | |
ExReference(switchIvar->gv); | |
^~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:1737:8: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:1738:8: warning: expression result unused [-Wunused-value] | |
ExReference(switchIvar->gv); | |
^~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:1738:8: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:2159:7: warning: expression result unused [-Wunused-value] | |
ExReference(pv->gv); | |
^~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:2159:7: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:2226:8: warning: expression result unused [-Wunused-value] | |
ExReference(pv->gv); | |
^~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:2226:8: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:2282:7: warning: expression result unused [-Wunused-value] | |
ExReference(pv->gv); | |
^~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:2282:7: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:2506:7: warning: expression result unused [-Wunused-value] | |
ExReference(pv->gv); | |
^~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:2506:7: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:2538:11: warning: expression result unused [-Wunused-value] | |
ExReference(pv->gv); | |
^~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:2538:11: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:2527:7: warning: expression result unused [-Wunused-value] | |
ExReference(pv->gv); | |
^~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:2527:7: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
evalgraph.c:2619:58: warning: if statement has empty body [-Wempty-body] | |
if(temp_str && !strcmp(temp_str, "NULL")); | |
^ | |
evalgraph.c:2724:13: warning: expression result unused [-Wunused-value] | |
ExReference(outpv->gv); | |
^~~~~~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
evalgraph.c:2724:13: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
22 warnings generated. | |
mv -f .deps/evalgraph.Tpo .deps/evalgraph.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT exobject.lo -MD -MP -MF .deps/exobject.Tpo -c -o exobject.lo exobject.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT exobject.lo -MD -MP -MF .deps/exobject.Tpo -c exobject.c -o exobject.o | |
exobject.c:33:5: warning: incompatible pointer types initializing 'PFIP' (aka 'int (*)(void *)') with an expression of type 'int (EXO_Object)' [-Wincompatible-pointer-types] | |
_dxf__EXO_delete | |
^~~~~~~~~~~~~~~~ | |
1 warning generated. | |
mv -f .deps/exobject.Tpo .deps/exobject.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT function.lo -MD -MP -MF .deps/function.Tpo -c -o function.lo function.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT function.lo -MD -MP -MF .deps/function.Tpo -c function.c -o function.o | |
mv -f .deps/function.Tpo .deps/function.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT graph.lo -MD -MP -MF .deps/graph.Tpo -c -o graph.lo graph.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT graph.lo -MD -MP -MF .deps/graph.Tpo -c graph.c -o graph.o | |
graph.c:123:5: warning: incompatible pointer types initializing 'PFIP' (aka 'int (*)(void *)') with an expression of type 'int (gvar *)' [-Wincompatible-pointer-types] | |
GvarDelete | |
^~~~~~~~~~ | |
graph.c:128:5: warning: incompatible pointer types initializing 'PFIP' (aka 'int (*)(void *)') with an expression of type 'int (progobj *)' [-Wincompatible-pointer-types] | |
progobjDelete | |
^~~~~~~~~~~~~ | |
graph.c:1629:6: warning: expression result unused [-Wunused-value] | |
ExReference (pobj); | |
^~~~~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
graph.c:1629:6: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
3 warnings generated. | |
mv -f .deps/graph.Tpo .deps/graph.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT graph2.lo -MD -MP -MF .deps/graph2.Tpo -c -o graph2.lo graph2.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT graph2.lo -MD -MP -MF .deps/graph2.Tpo -c graph2.c -o graph2.o | |
mv -f .deps/graph2.Tpo .deps/graph2.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT graphqueue.lo -MD -MP -MF .deps/graphqueue.Tpo -c -o graphqueue.lo graphqueue.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT graphqueue.lo -MD -MP -MF .deps/graphqueue.Tpo -c graphqueue.c -o graphqueue.o | |
mv -f .deps/graphqueue.Tpo .deps/graphqueue.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT help.lo -MD -MP -MF .deps/help.Tpo -c -o help.lo help.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT help.lo -MD -MP -MF .deps/help.Tpo -c help.c -o help.o | |
mv -f .deps/help.Tpo .deps/help.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT instrument.lo -MD -MP -MF .deps/instrument.Tpo -c -o instrument.lo instrument.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT instrument.lo -MD -MP -MF .deps/instrument.Tpo -c instrument.c -o instrument.o | |
mv -f .deps/instrument.Tpo .deps/instrument.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lex.lo -MD -MP -MF .deps/lex.Tpo -c -o lex.lo lex.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT lex.lo -MD -MP -MF .deps/lex.Tpo -c lex.c -o lex.o | |
lex.c:651:12: warning: format string is not a string literal (potentially insecure) [-Wformat-security] | |
printf (prompt? prompt: EX_CPROMPT); | |
^~~~~~~~~~~~~~~~~~~~~~~~~~ | |
lex.c:1024:9: warning: expression result unused [-Wunused-value] | |
input (); | |
^~~~~~~~ | |
lex.c:127:16: note: instantiated from: | |
) == EOF ? 0 \ | |
^ | |
2 warnings generated. | |
mv -f .deps/lex.Tpo .deps/lex.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT license.lo -MD -MP -MF .deps/license.Tpo -c -o license.lo license.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT license.lo -MD -MP -MF .deps/license.Tpo -c license.c -o license.o | |
mv -f .deps/license.Tpo .deps/license.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT loader.lo -MD -MP -MF .deps/loader.Tpo -c -o loader.lo loader.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT loader.lo -MD -MP -MF .deps/loader.Tpo -c loader.c -o loader.o | |
mv -f .deps/loader.Tpo .deps/loader.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT log.lo -MD -MP -MF .deps/log.Tpo -c -o log.lo log.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT log.lo -MD -MP -MF .deps/log.Tpo -c log.c -o log.o | |
mv -f .deps/log.Tpo .deps/log.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT macro.lo -MD -MP -MF .deps/macro.Tpo -c -o macro.lo macro.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT macro.lo -MD -MP -MF .deps/macro.Tpo -c macro.c -o macro.o | |
mv -f .deps/macro.Tpo .deps/macro.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT nodereadb.lo -MD -MP -MF .deps/nodereadb.Tpo -c -o nodereadb.lo nodereadb.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT nodereadb.lo -MD -MP -MF .deps/nodereadb.Tpo -c nodereadb.c -o nodereadb.o | |
mv -f .deps/nodereadb.Tpo .deps/nodereadb.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT nodewriteb.lo -MD -MP -MF .deps/nodewriteb.Tpo -c -o nodewriteb.lo nodewriteb.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT nodewriteb.lo -MD -MP -MF .deps/nodewriteb.Tpo -c nodewriteb.c -o nodewriteb.o | |
mv -f .deps/nodewriteb.Tpo .deps/nodewriteb.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT packet.lo -MD -MP -MF .deps/packet.Tpo -c -o packet.lo packet.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT packet.lo -MD -MP -MF .deps/packet.Tpo -c packet.c -o packet.o | |
mv -f .deps/packet.Tpo .deps/packet.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT dpparse.lo -MD -MP -MF .deps/dpparse.Tpo -c -o dpparse.lo dpparse.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT dpparse.lo -MD -MP -MF .deps/dpparse.Tpo -c dpparse.c -o dpparse.o | |
dpparse.c:48:5: warning: incompatible pointer types initializing 'PFIP' (aka 'int (*)(void *)') with an expression of type 'int (node *)' [-Wincompatible-pointer-types] | |
_dxf_ExNode__Delete | |
^~~~~~~~~~~~~~~~~~~ | |
dpparse.c:76:5: warning: expression result unused [-Wunused-value] | |
ExReference (n); | |
^~~~~~~~~~~~~~~ | |
./exobject.h:171:25: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
dpparse.c:76:5: note: instantiated from: | |
#define ExReference(v) EXO_reference ((EXObj) (v)) | |
^ ~~~ | |
2 warnings generated. | |
mv -f .deps/dpparse.Tpo .deps/dpparse.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT parsemdf.lo -MD -MP -MF .deps/parsemdf.Tpo -c -o parsemdf.lo parsemdf.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT parsemdf.lo -MD -MP -MF .deps/parsemdf.Tpo -c parsemdf.c -o parsemdf.o | |
mv -f .deps/parsemdf.Tpo .deps/parsemdf.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT path.lo -MD -MP -MF .deps/path.Tpo -c -o path.lo path.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT path.lo -MD -MP -MF .deps/path.Tpo -c path.c -o path.o | |
mv -f .deps/path.Tpo .deps/path.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT pendingcmds.lo -MD -MP -MF .deps/pendingcmds.Tpo -c -o pendingcmds.lo pendingcmds.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT pendingcmds.lo -MD -MP -MF .deps/pendingcmds.Tpo -c pendingcmds.c -o pendingcmds.o | |
mv -f .deps/pendingcmds.Tpo .deps/pendingcmds.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT queue.lo -MD -MP -MF .deps/queue.Tpo -c -o queue.lo queue.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT queue.lo -MD -MP -MF .deps/queue.Tpo -c queue.c -o queue.o | |
mv -f .deps/queue.Tpo .deps/queue.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT remote.lo -MD -MP -MF .deps/remote.Tpo -c -o remote.lo remote.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT remote.lo -MD -MP -MF .deps/remote.Tpo -c remote.c -o remote.o | |
mv -f .deps/remote.Tpo .deps/remote.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT rih.lo -MD -MP -MF .deps/rih.Tpo -c -o rih.lo rih.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT rih.lo -MD -MP -MF .deps/rih.Tpo -c rih.c -o rih.o | |
mv -f .deps/rih.Tpo .deps/rih.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT rq.lo -MD -MP -MF .deps/rq.Tpo -c -o rq.lo rq.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT rq.lo -MD -MP -MF .deps/rq.Tpo -c rq.c -o rq.o | |
mv -f .deps/rq.Tpo .deps/rq.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT socket.lo -MD -MP -MF .deps/socket.Tpo -c -o socket.lo socket.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT socket.lo -MD -MP -MF .deps/socket.Tpo -c socket.c -o socket.o | |
mv -f .deps/socket.Tpo .deps/socket.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT status.lo -MD -MP -MF .deps/status.Tpo -c -o status.lo status.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT status.lo -MD -MP -MF .deps/status.Tpo -c status.c -o status.o | |
mv -f .deps/status.Tpo .deps/status.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT swap.lo -MD -MP -MF .deps/swap.Tpo -c -o swap.lo swap.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT swap.lo -MD -MP -MF .deps/swap.Tpo -c swap.c -o swap.o | |
mv -f .deps/swap.Tpo .deps/swap.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT task.lo -MD -MP -MF .deps/task.Tpo -c -o task.lo task.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT task.lo -MD -MP -MF .deps/task.Tpo -c task.c -o task.o | |
mv -f .deps/task.Tpo .deps/task.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT userinter.lo -MD -MP -MF .deps/userinter.Tpo -c -o userinter.lo userinter.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT userinter.lo -MD -MP -MF .deps/userinter.Tpo -c userinter.c -o userinter.o | |
mv -f .deps/userinter.Tpo .deps/userinter.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT utils.lo -MD -MP -MF .deps/utils.Tpo -c -o utils.lo utils.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT utils.lo -MD -MP -MF .deps/utils.Tpo -c utils.c -o utils.o | |
mv -f .deps/utils.Tpo .deps/utils.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT variable.lo -MD -MP -MF .deps/variable.Tpo -c -o variable.lo variable.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT variable.lo -MD -MP -MF .deps/variable.Tpo -c variable.c -o variable.o | |
mv -f .deps/variable.Tpo .deps/variable.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT vcr.lo -MD -MP -MF .deps/vcr.Tpo -c -o vcr.lo vcr.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT vcr.lo -MD -MP -MF .deps/vcr.Tpo -c vcr.c -o vcr.o | |
mv -f .deps/vcr.Tpo .deps/vcr.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT optarg.lo -MD -MP -MF .deps/optarg.Tpo -c -o optarg.lo optarg.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT optarg.lo -MD -MP -MF .deps/optarg.Tpo -c optarg.c -o optarg.o | |
mv -f .deps/optarg.Tpo .deps/optarg.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT yuiif.lo -MD -MP -MF .deps/yuiif.Tpo -c -o yuiif.lo yuiif.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT yuiif.lo -MD -MP -MF .deps/yuiif.Tpo -c yuiif.c -o yuiif.o | |
./yuiif.y:1152:7: warning: expression result unused [-Wunused-value] | |
EXO_reference ((EXO_Object) yyvsp[-1].n); | |
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
./yuiif.y:1152:7: note: instantiated from: | |
EXO_reference ((EXO_Object) yyvsp[-1].n); | |
^ ~~~~~~~~~~~ | |
./yuiif.y:1163:7: warning: expression result unused [-Wunused-value] | |
EXO_reference ((EXO_Object) yyvsp[-1].n); | |
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
./exobject.h:140:39: note: instantiated from: | |
#define EXO_reference(_obj) ((_obj) ? EXO_REFERENCE (_obj) : (_obj)) | |
^ | |
./exobject.h:120:6: note: instantiated from: | |
(_obj)\ | |
^ | |
./yuiif.y:1163:7: note: instantiated from: | |
EXO_reference ((EXO_Object) yyvsp[-1].n); | |
^ ~~~~~~~~~~~ | |
2 warnings generated. | |
mv -f .deps/yuiif.Tpo .deps/yuiif.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT sfile.lo -MD -MP -MF .deps/sfile.Tpo -c -o sfile.lo sfile.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT sfile.lo -MD -MP -MF .deps/sfile.Tpo -c sfile.c -o sfile.o | |
mv -f .deps/sfile.Tpo .deps/sfile.Plo | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT ddx.lo -MD -MP -MF .deps/ddx.Tpo -c -o ddx.lo ddx.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../libdx -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT ddx.lo -MD -MP -MF .deps/ddx.Tpo -c ddx.c -o ddx.o | |
mv -f .deps/ddx.Tpo .deps/ddx.Plo | |
sh ../../../libtool --tag=CC --mode=link gcc -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -L/sw/lib -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -o libDPEXEC.la dpattribute.lo background.lo cache.lo cachegraph.lo ccm.lo command.lo context.lo crc.lo d.lo distconnect.lo distpacket.lo distqueue.lo dxmain.lo dxpfsmgr.lo evalgraph.lo exobject.lo function.lo graph.lo graph2.lo graphqueue.lo help.lo instrument.lo lex.lo license.lo loader.lo log.lo macro.lo nodereadb.lo nodewriteb.lo packet.lo dpparse.lo parsemdf.lo path.lo pendingcmds.lo queue.lo remote.lo rih.lo rq.lo socket.lo status.lo swap.lo task.lo userinter.lo utils.lo variable.lo vcr.lo optarg.lo yuiif.lo sfile.lo ddx.lo -lXinerama -lnetcdf -ldf -ljpeg -lsz -lXpm -ltiff -ldl -lXm -lXp -lGLU -lGL -lm -lXmu -lXext -lXt -lX11 -lSM -lICE -L/usr/X11R6/lib -lpthread -lz -L/sw/lib -lGraphicsMagick | |
libtool: link: ar cru .libs/libDPEXEC.a dpattribute.o background.o cache.o cachegraph.o ccm.o command.o context.o crc.o d.o distconnect.o distpacket.o distqueue.o dxmain.o dxpfsmgr.o evalgraph.o exobject.o function.o graph.o graph2.o graphqueue.o help.o instrument.o lex.o license.o loader.o log.o macro.o nodereadb.o nodewriteb.o packet.o dpparse.o parsemdf.o path.o pendingcmds.o queue.o remote.o rih.o rq.o socket.o status.o swap.o task.o userinter.o utils.o variable.o vcr.o optarg.o yuiif.o sfile.o ddx.o | |
/usr/bin/ranlib: file: .libs/libDPEXEC.a(instrument.o) has no symbols | |
/usr/bin/ranlib: file: .libs/libDPEXEC.a(license.o) has no symbols | |
/usr/bin/ranlib: file: .libs/libDPEXEC.a(optarg.o) has no symbols | |
libtool: link: ranlib .libs/libDPEXEC.a | |
ranlib: file: .libs/libDPEXEC.a(instrument.o) has no symbols | |
ranlib: file: .libs/libDPEXEC.a(license.o) has no symbols | |
ranlib: file: .libs/libDPEXEC.a(optarg.o) has no symbols | |
libtool: link: ( cd ".libs" && rm -f "libDPEXEC.la" && ln -s "../libDPEXEC.la" "libDPEXEC.la" ) | |
sh ../../../libtool --tag=CC --mode=link gcc -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -L/sw/lib -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -o libDPEXECclm.la crc.lo d.lo exobject.lo function.lo license.lo loader.lo macro.lo dpparse.lo userinter.lo utils.lo optarg.lo sfile.lo ddx.lo -lXinerama -lnetcdf -ldf -ljpeg -lsz -lXpm -ltiff -ldl -lXm -lXp -lGLU -lGL -lm -lXmu -lXext -lXt -lX11 -lSM -lICE -L/usr/X11R6/lib -lpthread -lz -L/sw/lib -lGraphicsMagick | |
libtool: link: ar cru .libs/libDPEXECclm.a crc.o d.o exobject.o function.o license.o loader.o macro.o dpparse.o userinter.o utils.o optarg.o sfile.o ddx.o | |
/usr/bin/ranlib: file: .libs/libDPEXECclm.a(license.o) has no symbols | |
/usr/bin/ranlib: file: .libs/libDPEXECclm.a(optarg.o) has no symbols | |
libtool: link: ranlib .libs/libDPEXECclm.a | |
ranlib: file: .libs/libDPEXECclm.a(license.o) has no symbols | |
ranlib: file: .libs/libDPEXECclm.a(optarg.o) has no symbols | |
libtool: link: ( cd ".libs" && rm -f "libDPEXECclm.la" && ln -s "../libDPEXECclm.la" "libDPEXECclm.la" ) | |
Making all in dxexec | |
sh ../../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../../include -I./../dpexec -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT libDXEXEC_la-main.lo -MD -MP -MF .deps/libDXEXEC_la-main.Tpo -c -o libDXEXEC_la-main.lo `test -f 'main.c' || echo './'`main.c | |
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I./../dpexec -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT libDXEXEC_la-main.lo -MD -MP -MF .deps/libDXEXEC_la-main.Tpo -c main.c -o libDXEXEC_la-main.o | |
mv -f .deps/libDXEXEC_la-main.Tpo .deps/libDXEXEC_la-main.Plo | |
sh ../../../libtool --tag=CC --mode=link gcc -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -L/sw/lib -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -o libDXEXEC.la libDXEXEC_la-main.lo -lXinerama -lnetcdf -ldf -ljpeg -lsz -lXpm -ltiff -ldl -lXm -lXp -lGLU -lGL -lm -lXmu -lXext -lXt -lX11 -lSM -lICE -L/usr/X11R6/lib -lpthread -lz -L/sw/lib -lGraphicsMagick | |
libtool: link: ar cru .libs/libDXEXEC.a libDXEXEC_la-main.o | |
libtool: link: ranlib .libs/libDXEXEC.a | |
libtool: link: ( cd ".libs" && rm -f "libDXEXEC.la" && ln -s "../libDXEXEC.la" "libDXEXEC.la" ) | |
gcc -DHAVE_CONFIG_H -I. -I../../../include -I./../dpexec -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c | |
mv -f .deps/main.Tpo .deps/main.Po | |
sh ../../../libtool --tag=CC --mode=link gcc -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -L/sw/lib -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -o dxexec main.o ../dpexec/libDPEXEC.la ../dxmods/libDXMODS.la ../dxmods/user.lo ../dxmods/libDXMODSN.la ../libdx/libLIBDX.la ../libdx/mem.lo ../libdx/memory.lo ../hwrender/libHW.la ../hwrender/opengl/libOPENGL.la -lXinerama -lnetcdf -ldf -ljpeg -lsz -lXpm -ltiff -ldl -lXm -lXp -lGLU -lGL -lm -lXmu -lXext -lXt -lX11 -lSM -lICE -L/usr/X11R6/lib -lpthread -lz -L/sw/lib -lGraphicsMagick | |
libtool: link: gcc -g -O2 -std=c89 -I/usr/X11R6/include -D_GNU_SOURCE -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -o dxexec main.o ../dxmods/user.o ../libdx/mem.o ../libdx/memory.o -L/sw/lib ../dpexec/.libs/libDPEXEC.a -L/usr/X11R6/lib ../dxmods/.libs/libDXMODS.a ../dxmods/.libs/libDXMODSN.a ../libdx/.libs/libLIBDX.a ../hwrender/.libs/libHW.a ../hwrender/opengl/.libs/libOPENGL.a -lXinerama /sw/lib/libnetcdf.dylib /sw/lib/libdf.a /sw/lib/libjpeg.dylib /sw/lib/libsz.dylib -lXpm /sw/lib/libtiff.dylib -ldl /sw/lib/libXm.dylib -lXp -lGLU -lGL -lm -lXmu -lXext -lXt -lX11 -lSM -lICE -lpthread -lz /sw/lib/libGraphicsMagick.dylib | |
clang: warning: argument unused during compilation: '-std=c89' | |
Undefined symbols for architecture x86_64: | |
"_TemporaryFilename", referenced from: | |
__dxf_write_im in libDXMODS.a(_im_image.o) | |
ld: symbol(s) not found for architecture x86_64 | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
make[3]: *** [dxexec] Error 1 | |
make[2]: *** [all-recursive] Error 1 | |
make[1]: *** [all-recursive] Error 1 | |
make: *** [all-recursive] Error 1 | |
### execution of make failed, exit code 2 | |
Removing runtime build-lock... | |
Removing build-lock package... | |
/sw/bin/dpkg-lockwait -r fink-buildlock-dx-4.4.4-1706 | |
(Reading database ... 261314 files and directories currently installed.) | |
Removing fink-buildlock-dx-4.4.4-1706 ... | |
Failed: phase compiling: dx-4.4.4-1706 failed | |
Before reporting any errors, please run "fink selfupdate" and try again. | |
Also try using "fink configure" to set your maximum build jobs to 1 and | |
attempt to build the package again. | |
If you continue to have issues, please check to see if the FAQ on Fink's | |
website solves the problem. If not, ask on one of these mailing lists: | |
The Fink Users List <fink-users@lists.sourceforge.net> | |
The Fink Beginners List <fink-beginners@lists.sourceforge.net>, | |
with a carbon copy to the maintainer: | |
Jeremy Erwin <jerwin@ponymail.com> | |
Note that this is preferable to emailing just the maintainer directly, | |
since most fink package maintainers do not have access to all possible | |
hardware and software configurations. | |
Please try to include the complete error message in your report. This | |
generally consists of a compiler line starting with e.g. "gcc" or "g++" | |
followed by the actual error output from the compiler. | |
Also include the following system information: | |
Package manager version: 0.31.99.git | |
Distribution version: selfupdate-cvs Mon Oct 31 13:54:29 2011, 10.7, x86_64 | |
Trees: local/main stable/main local/injected | |
Xcode: 4.2 | |
Max. Fink build jobs: 2 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../../include -I../../../include -I./../dpexec -I/sw/src/fink.build/dx-4.4.4-1506/dx-4.4.4/include -Dmacos -I/sw/include/GraphicsMagick -I/sw/include -I/usr/X11R6/include -g -O2 -I/usr/X11R6/include -D_GNU_SOURCE -MT _im_image.lo -MD -MP -MF .deps/_im_image.Tpo -c _im_image.c -o _im_image.o | |
_im_image.c:305:9: warning: implicit declaration of function 'TemporaryFilename' is invalid in C99 [-Wimplicit-function-declaration] | |
TemporaryFilename(image->filename); | |
^ | |
_im_image.c:332:13: warning: implicit declaration of function 'DestroyConstitute' is invalid in C99 [-Wimplicit-function-declaration] | |
DestroyConstitute(); | |
^ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment