~cairo-dock-team/cairo-dock-plug-ins/popup_from_shortkey

« back to all changes in this revision

Viewing changes to kde-integration/configure.ac

  • Committer: Fabounet (Fabrice Rey) - http://cairo-dock.org
  • Date: 2009-10-02 00:10:12 UTC
  • Revision ID: fabounet_fabrice_rey_-_httpcairo-dock.org-20091002001012-g7xd63cloqie9oix
small bug fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#                                               -*- Autoconf -*-
 
2
# Process this file with autoconf to produce a configure script.
 
3
 
 
4
AC_PREREQ(2.59)
 
5
AC_INIT([cd_kde-integration],[0.0.1],[Fabrice Rey (fabounet@users.berlios.de)])
 
6
AC_CONFIG_SRCDIR([config.h.in])
 
7
AC_CONFIG_HEADER([config.h])
 
8
 
 
9
AM_INIT_AUTOMAKE([foreign])
 
10
AC_DISABLE_STATIC
 
11
AC_PROG_LIBTOOL
 
12
 
 
13
 
 
14
kde_integrationdatadir=[`pkg-config cairo-dock --variable=pluginsdatadir`/kde-integration]
 
15
AC_SUBST(kde_integrationdatadir)
 
16
libdir=[`pkg-config cairo-dock --variable=pluginsdir`]
 
17
AC_SUBST(libdir)
 
18
 
 
19
AC_SUBST(VERSION_KDE_INTEGRATION, "$VERSION")
 
20
AC_SUBST(PACKAGE_KDE_INTEGRATION, "$PACKAGE")
 
21
 
 
22
PKG_CHECK_MODULES(PACKAGE, cairo-dock)
 
23
PKG_CHECK_MODULES(KDE_INTEGRATION,gio-2.0)
 
24
 
 
25
AC_CONFIG_FILES([Makefile
 
26
                src/Makefile
 
27
                data/Makefile])
 
28
AC_OUTPUT