Changeset 540
- Timestamp:
- 11/05/09 18:22:56 (2 weeks ago)
- Location:
- ImageMagick/trunk
- Files:
-
- 3 modified
-
Makefile.am (modified) (1 diff)
-
Makefile.in (modified) (1 diff)
-
magick/utility.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ImageMagick/trunk/Makefile.am
r1 r540 26 26 ACLOCAL_AMFLAGS = -I m4 27 27 28 MODULECOMMONFLAGS = -no-undefined -export-symbols-regex ".*" - module -avoid-version28 MODULECOMMONFLAGS = -no-undefined -export-symbols-regex ".*" -shared -module -avoid-version 29 29 30 30 # Options to pass when running configure in the distcheck target. -
ImageMagick/trunk/Makefile.in
r503 r540 2544 2544 -I$(top_srcdir)/Magick++/lib 2545 2545 ACLOCAL_AMFLAGS = -I m4 2546 MODULECOMMONFLAGS = -no-undefined -export-symbols-regex ".*" - module -avoid-version2546 MODULECOMMONFLAGS = -no-undefined -export-symbols-regex ".*" -shared -module -avoid-version 2547 2547 2548 2548 # Options to pass when running configure in the distcheck target. -
ImageMagick/trunk/magick/utility.c
r379 r540 703 703 */ 704 704 *home_directory='\0'; 705 cwd=getcwd(home_directory,MaxTextExtent);706 705 count=0; 707 706 for (i=0; i < (long) *number_arguments; i++) … … 759 758 GetPathComponent(option,SubimagePath,subimage); 760 759 ExpandFilename(path); 760 if (*home_directory == '\0') 761 cwd=getcwd(home_directory,MaxTextExtent-1); 761 762 filelist=ListFiles(*path == '\0' ? home_directory : path,filename, 762 763 &number_files);
