* Source/GNUmakefile: Remove GSGhostscriptImageRep from the build

* Source/NSImageRep.m: Remove GSGhostscriptImageRep
* configure.ac: Disable ImageMagic by default
* configure: Regenerate


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@34671 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Eric Wasylishen 2012-01-30 21:06:08 +00:00
parent 9d0b8b4dfd
commit c2ef95964f
5 changed files with 11 additions and 10 deletions

View file

@ -213,7 +213,6 @@ GSTextFinder.m \
GSLayoutManager.m \
GSTypesetter.m \
GSHorizontalTypesetter.m \
GSGhostscriptImageRep.m \
GSGormLoading.m \
GSIconManager.m \
GSImageMagickImageRep.m \

View file

@ -50,7 +50,6 @@
#import "AppKit/NSScreen.h"
#import "AppKit/DPSOperators.h"
#import "AppKit/PSOperators.h"
#import "GNUstepGUI/GSGhostscriptImageRep.h"
#import "GNUstepGUI/GSImageMagickImageRep.h"
static NSMutableArray *imageReps = nil;
@ -67,7 +66,6 @@ static Class NSImageRep_class = NULL;
NSImageRep_class = self;
imageReps = [[NSMutableArray alloc] initWithCapacity: 4];
[imageReps addObject: [NSBitmapImageRep class]];
[imageReps addObject: [GSGhostscriptImageRep class]];
#if HAVE_IMAGEMAGICK
[imageReps addObject: [GSImageMagickImageRep class]];
#endif