Remove CHECK_LIB_AVAILABLE from image.c, mistakenly reintroduced by cygw32.
authorEli Zaretskii <eliz@gnu.org>
Mon, 8 Oct 2012 10:05:50 +0000 (12:05 +0200)
committerEli Zaretskii <eliz@gnu.org>
Mon, 8 Oct 2012 10:05:50 +0000 (12:05 +0200)
 src/image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.

src/image.c

index 8139979..790ede4 100644 (file)
@@ -8783,16 +8783,6 @@ DEFUN ("lookup-image", Flookup_image, Slookup_image, 1, 1, 0, "")
                            Initialization
  ***********************************************************************/
 
-#ifdef WINDOWSNT
-/* Image types that rely on external libraries are loaded dynamically
-   if the library is available.  */
-#define CHECK_LIB_AVAILABLE(image_type, init_lib_fn, libraries) \
-  define_image_type (image_type, init_lib_fn (libraries))
-#else
-#define CHECK_LIB_AVAILABLE(image_type, init_lib_fn, libraries) \
-  define_image_type (image_type, 1)
-#endif /* WINDOWSNT */
-
 DEFUN ("init-image-library", Finit_image_library, Sinit_image_library, 1, 1, 0,
        doc: /* Initialize image library implementing image type TYPE.
 Return non-nil if TYPE is a supported image type.