summaryrefslogtreecommitdiff
path: root/pixman/configure.in
diff options
context:
space:
mode:
Diffstat (limited to 'pixman/configure.in')
-rw-r--r--pixman/configure.in52
1 files changed, 0 insertions, 52 deletions
diff --git a/pixman/configure.in b/pixman/configure.in
deleted file mode 100644
index 00ea4e8a2..000000000
--- a/pixman/configure.in
+++ /dev/null
@@ -1,52 +0,0 @@
-# Process this file with autoconf to produce a configure script.
-
-AC_INIT(src/pixregion.h)
-
-dnl ===========================================================================
-
-# Package version number, (as distinct from shared library version)
-# This must be manually synchronized with the version in src/ic.h
-LIBPIXREGION_VERSION=0.1.0
-
-# libtool shared library version
-
-# Increment if the interface has additions, changes, removals.
-LT_CURRENT=1
-
-# Increment any time the source changes; set to
-# 0 if you increment CURRENT
-LT_REVISION=0
-
-# Increment if any interfaces have been added; set to 0
-# if any interfaces have been removed. removal has
-# precedence over adding, so set to 0 if both happened.
-LT_AGE=0
-
-VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE"
-AC_SUBST(VERSION_INFO)
-
-dnl ===========================================================================
-
-AM_INIT_AUTOMAKE(libpixregion, $LIBPIXREGION_VERSION)
-AM_CONFIG_HEADER(config.h)
-
-AM_MAINTAINER_MODE
-
-AC_PROG_CC
-AM_PROG_LIBTOOL
-
-dnl ===========================================================================
-
-SLIM_REQUIRED=0.2.0
-PKG_CHECK_MODULES(LIBPIXREGION, slim >= $SLIM_REQUIRED)
-
-AC_SUBST(LIBPIXREGION_CFLAGS)
-AC_SUBST(LIBPIXREGION_LIBS)
-
-dnl ===========================================================================
-
-AC_OUTPUT([
-libpixregion.pc
-Makefile
-src/Makefile
-])