summaryrefslogtreecommitdiff
path: root/pixman
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2003-09-09 17:35:42 +0000
committerCarl Worth <cworth@cworth.org>2003-09-09 17:35:42 +0000
commit1abf6689e18f2fbde965efcf1b6b3bd4d6fa22f5 (patch)
tree96af986586d69f567a1568a0c002580c7e0e73e1 /pixman
parentbe113ebc4ab3c597e3b2a4f924397f66e5d83ada (diff)
Updated calls to slim_hidden_def to track cahnges in slim 0.2.0
Diffstat (limited to 'pixman')
-rw-r--r--pixman/ChangeLog.libic5
-rw-r--r--pixman/ChangeLog.libpixregion5
-rw-r--r--pixman/configure.in2
-rw-r--r--pixman/src/ic.c2
-rw-r--r--pixman/src/iccolor.c2
-rw-r--r--pixman/src/icformat.c2
-rw-r--r--pixman/src/icimage.c6
-rw-r--r--pixman/src/icrect.c2
-rw-r--r--pixman/src/pixregion.c6
9 files changed, 21 insertions, 11 deletions
diff --git a/pixman/ChangeLog.libic b/pixman/ChangeLog.libic
index 35792ecc..103cd92e 100644
--- a/pixman/ChangeLog.libic
+++ b/pixman/ChangeLog.libic
@@ -1,3 +1,8 @@
+2003-09-09 Carl Worth <cworth@isi.edu>
+
+ * configure.in (SLIM_REQUIRED): Updated calls to slim_hidden_def
+ to track changes in slim 0.2.0.
+
2003-09-05 Carl Worth <cworth@isi.edu>
* configure.in (LIBIC_VERSION): Bumped version to 0.1.1.
diff --git a/pixman/ChangeLog.libpixregion b/pixman/ChangeLog.libpixregion
index 3a4c0cca..744d9e93 100644
--- a/pixman/ChangeLog.libpixregion
+++ b/pixman/ChangeLog.libpixregion
@@ -1,3 +1,8 @@
+2003-09-09 Carl Worth <cworth@isi.edu>
+
+ * configure.in (SLIM_REQUIRED): Updated calls to slim_hidden_def
+ to track changes in slim 0.2.0.
+
2003-07-30 Carl Worth <cworth@east.isi.edu>
* src/pixregion.h: Implement our own 'extern "C"' block to avoid
diff --git a/pixman/configure.in b/pixman/configure.in
index 67ee7f5c..5a69a139 100644
--- a/pixman/configure.in
+++ b/pixman/configure.in
@@ -39,7 +39,7 @@ AM_PROG_LIBTOOL
dnl ===========================================================================
-SLIM_REQUIRED=0.1.0
+SLIM_REQUIRED=0.2.0
PKG_CHECK_MODULES(LIBPIXREGION, slim >= $SLIM_REQUIRED)
AC_SUBST(LIBPIXREGION_CFLAGS)
diff --git a/pixman/src/ic.c b/pixman/src/ic.c
index 7971d5a6..6b6d04f8 100644
--- a/pixman/src/ic.c
+++ b/pixman/src/ic.c
@@ -1134,4 +1134,4 @@ IcComposite (char op,
}
PixRegionDestroy (region);
}
-slim_hidden_def(IcComposite)
+slim_hidden_def(IcComposite);
diff --git a/pixman/src/iccolor.c b/pixman/src/iccolor.c
index fb2312ac..6e90c9d3 100644
--- a/pixman/src/iccolor.c
+++ b/pixman/src/iccolor.c
@@ -53,7 +53,7 @@ IcColorToPixel (const IcFormat *format,
a = a << format->alpha;
*pixel = r|g|b|a;
}
-slim_hidden_def(IcColorToPixel)
+slim_hidden_def(IcColorToPixel);
static CARD16
IcFillColor (CARD32 pixel, int bits)
diff --git a/pixman/src/icformat.c b/pixman/src/icformat.c
index a9fbd8d7..12c451ce 100644
--- a/pixman/src/icformat.c
+++ b/pixman/src/icformat.c
@@ -147,7 +147,7 @@ IcFormatInit (IcFormat *format, int format_code)
break;
}
}
-slim_hidden_def(IcFormatInit)
+slim_hidden_def(IcFormatInit);
void
IcFormatDestroy (IcFormat *format)
diff --git a/pixman/src/icimage.c b/pixman/src/icimage.c
index 38d00f54..c4d4fb00 100644
--- a/pixman/src/icimage.c
+++ b/pixman/src/icimage.c
@@ -45,7 +45,7 @@ IcImageCreate (IcFormat *format,
return image;
}
-slim_hidden_def(IcImageCreate)
+slim_hidden_def(IcImageCreate);
IcImage *
IcImageCreateForData (IcBits *data, IcFormat *format, int width, int height, int bpp, int stride)
@@ -185,7 +185,7 @@ IcImageSetRepeat (IcImage *image,
if (image)
image->repeat = repeat;
}
-slim_hidden_def(IcImageSetRepeat)
+slim_hidden_def(IcImageSetRepeat);
void
IcImageSetFilter (IcImage *image,
@@ -230,7 +230,7 @@ IcImageDestroy (IcImage *image)
free (image);
}
-slim_hidden_def(IcImageDestroy)
+slim_hidden_def(IcImageDestroy);
void
IcImageDestroyClip (IcImage *image)
diff --git a/pixman/src/icrect.c b/pixman/src/icrect.c
index 238d775d..644636d8 100644
--- a/pixman/src/icrect.c
+++ b/pixman/src/icrect.c
@@ -165,4 +165,4 @@ bail1:
;
}
}
-slim_hidden_def(IcFillRectangles)
+slim_hidden_def(IcFillRectangles);
diff --git a/pixman/src/pixregion.c b/pixman/src/pixregion.c
index e7aca90f..5c1400f6 100644
--- a/pixman/src/pixregion.c
+++ b/pixman/src/pixregion.c
@@ -330,7 +330,7 @@ PixRegionCreateSimple (PixRegionBox *extents)
return region;
}
-slim_hidden_def(PixRegionCreateSimple)
+slim_hidden_def(PixRegionCreateSimple);
/*****************************************************************
* RegionInit(pReg, rect, size)
@@ -455,7 +455,7 @@ PixRegionCopy(PixRegion *dst, PixRegion *src)
dst->data->numRects * sizeof(PixRegionBox));
return PixRegionStatusSuccess;
}
-slim_hidden_def(PixRegionCopy)
+slim_hidden_def(PixRegionCopy);
/*======================================================================
@@ -1239,7 +1239,7 @@ PixRegionUnion(PixRegion *newReg, PixRegion *reg1, PixRegion *reg2)
good(newReg);
return PixRegionStatusSuccess;
}
-slim_hidden_def(PixRegionUnion)
+slim_hidden_def(PixRegionUnion);
/*======================================================================