Changeset 540 for ImageMagick/trunk

Show
Ignore:
Timestamp:
11/05/09 18:22:56 (2 weeks ago)
Author:
cristy
Message:
 
Location:
ImageMagick/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • ImageMagick/trunk/Makefile.am

    r1 r540  
    2626ACLOCAL_AMFLAGS = -I m4 
    2727 
    28 MODULECOMMONFLAGS = -no-undefined -export-symbols-regex ".*" -module -avoid-version 
     28MODULECOMMONFLAGS = -no-undefined -export-symbols-regex ".*" -shared -module -avoid-version 
    2929 
    3030# Options to pass when running configure in the distcheck target. 
  • ImageMagick/trunk/Makefile.in

    r503 r540  
    25442544        -I$(top_srcdir)/Magick++/lib 
    25452545ACLOCAL_AMFLAGS = -I m4 
    2546 MODULECOMMONFLAGS = -no-undefined -export-symbols-regex ".*" -module -avoid-version 
     2546MODULECOMMONFLAGS = -no-undefined -export-symbols-regex ".*" -shared -module -avoid-version 
    25472547 
    25482548# Options to pass when running configure in the distcheck target. 
  • ImageMagick/trunk/magick/utility.c

    r379 r540  
    703703  */ 
    704704  *home_directory='\0'; 
    705   cwd=getcwd(home_directory,MaxTextExtent); 
    706705  count=0; 
    707706  for (i=0; i < (long) *number_arguments; i++) 
     
    759758        GetPathComponent(option,SubimagePath,subimage); 
    760759        ExpandFilename(path); 
     760        if (*home_directory == '\0') 
     761          cwd=getcwd(home_directory,MaxTextExtent-1); 
    761762        filelist=ListFiles(*path == '\0' ? home_directory : path,filename, 
    762763          &number_files);