ext/RMagick/rmmain.c in rmagick-2.9.1 vs ext/RMagick/rmmain.c in rmagick-2.9.2

- old
+ new

@@ -1,8 +1,8 @@ -/* $Id: rmmain.c,v 1.285 2009/01/12 23:08:35 rmagick Exp $ */ +/* $Id: rmmain.c,v 1.288 2009/04/19 17:38:00 rmagick Exp $ */ /*============================================================================\ -| Copyright (C) 2008 by Timothy P. Hunter +| Copyright (C) 2009 by Timothy P. Hunter | Name: rmmain.c | Author: Tim Hunter | Purpose: Contains all module, class, method declarations. | Defines all constants | Contains Magick module methods. @@ -986,10 +986,16 @@ #endif #if defined(HAVE_ENUM_BARRELDISTORTION) ENUMERATOR(BarrelDistortion) #endif ENUMERATOR(BilinearDistortion) +#if defined(HAVE_ENUM_BILINEARFORWARDDISTORTION) + ENUMERATOR(BilinearForwardDistortion) +#endif +#if defined(HAVE_ENUM_BILINEARREVERSEDISTORTION) + ENUMERATOR(BilinearReverseDistortion) +#endif ENUMERATOR(PerspectiveDistortion) #if defined(HAVE_ENUM_PERSPECTIVEPROJECTIONDISTORTION) ENUMERATOR(PerspectiveProjectionDistortion) #endif #if defined(HAVE_ENUM_POLYNOMIALDISTORTION) @@ -1407,12 +1413,20 @@ ENUMERATOR(HorizontalTileVirtualPixelMethod) #endif #if defined(HAVE_ENUM_VERTICALTILEVIRTUALPIXELMETHOD) ENUMERATOR(VerticalTileVirtualPixelMethod) #endif +#if defined(HAVE_ENUM_HORIZONTALTILEEDGEVIRTUALPIXELMETHOD) + ENUMERATOR(HorizontalTileEdgeVirtualPixelMethod) +#endif +#if defined(HAVE_ENUM_VERTICALTILEEDGEVIRTUALPIXELMETHOD) + ENUMERATOR(VerticalTileEdgeVirtualPixelMethod) +#endif +#if defined(HAVE_ENUM_CHECKERTILEVIRTUALPIXELMETHOD) + ENUMERATOR(CheckerTileVirtualPixelMethod) +#endif END_ENUM - // WeightType constants DEF_ENUM(WeightType) ENUMERATOR(AnyWeight) ENUMERATOR(NormalWeight) ENUMERATOR(BoldWeight) @@ -1557,10 +1571,10 @@ str = rb_str_new2(Q(RMAGICK_VERSION_STRING)); rb_obj_freeze(str); rb_define_const(Module_Magick, "Version", str); sprintf(long_version, - "This is %s ($Date: 2009/01/12 23:08:35 $) Copyright (C) 2008 by Timothy P. Hunter\n" + "This is %s ($Date: 2009/04/19 17:38:00 $) Copyright (C) 2009 by Timothy P. Hunter\n" "Built with %s\n" "Built for %s\n" "Web page: http://rmagick.rubyforge.org\n" "Email: rmagick@rubyforge.org\n", Q(RMAGICK_VERSION_STRING), mgk_version, Q(RUBY_VERSION_STRING));