diff options
author | Ken Sharp <ken.sharp@artifex.com> | 2009-04-01 13:43:33 +0000 |
---|---|---|
committer | Ken Sharp <ken.sharp@artifex.com> | 2009-04-01 13:43:33 +0000 |
commit | 9da4524858b0bff1574c65235354edf5cc92dc17 (patch) | |
tree | ab68d22ca8df53263e4583c176cb3db1c570041c /main | |
parent | 119c584034699743bc4ebe5f1b49de42cc51ee95 (diff) |
Fix (ghostpcl): Can't build using MSVC since revision 9599
Details:
revision 9599 sets up the 'nogc.dev' allocator, but the MSVC makefile didn't include
nogc.dev, so GhostPCL failed to build, producing an 'unresolved external _gs_nogc_reclaim
in pl_main_init_instance. Fixed by adding nogc.dev to FEATURE_DEVS in the makefile.
Expected Differences
None
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@9614 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'main')
-rw-r--r-- | main/pcl6_msvc.mak | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/pcl6_msvc.mak b/main/pcl6_msvc.mak index 38ce53bb2..59d5ce68e 100644 --- a/main/pcl6_msvc.mak +++ b/main/pcl6_msvc.mak @@ -328,7 +328,8 @@ FEATURE_DEVS = $(DD)\dps2lib.dev \ $(DD)\psf0lib.dev \ $(DD)\sdctd.dev \ $(DD)\psf2lib.dev \ - $(DD)\lzwd.dev + $(DD)\lzwd.dev \ + $(DD)\gsnogc.dev !endif |