1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
dnl
dnl This file was autogenerated from "configure.ac.in".
dnl Edit that file instead!
dnl
dnl xfce4-diskperf-plugin - Disk performance plugin for xfce4-panel
dnl
dnl 2003, 2004 Roger Seguin <roger_seguin@msn.com>
dnl
m4_define([diskperf_version_major], [2])
m4_define([diskperf_version_minor], [5])
m4_define([diskperf_version_micro], [4])
m4_define([diskperf_version_build], [cf7b839])
m4_define([diskperf_version_tag], []) # leave empty for releases
m4_define([diskperf_version], [diskperf_version_major().diskperf_version_minor().diskperf_version_micro()ifelse(diskperf_version_tag(), [git], [diskperf_version_tag()-diskperf_version_build()], [diskperf_version_tag()])])
dnl ***************************
dnl *** Initialize autoconf ***
dnl ***************************
AC_COPYRIGHT([Copyright (c) 2006-2007
The Xfce development team. All rights reserved.])
AC_INIT([xfce4-diskperf-plugin], [diskperf_version], [http://bugzilla.xfce.org/], [xfce4-diskperf-plugin])
AC_PREREQ([2.50])
AC_CANONICAL_TARGET()
dnl ***************************
dnl *** Initialize automake ***
dnl ***************************
AM_INIT_AUTOMAKE([1.8 dist-bzip2 tar-ustar])
AM_CONFIG_HEADER([config.h])
AM_MAINTAINER_MODE()
dnl ********************************
dnl *** Check for basic programs ***
dnl ********************************
AC_PROG_CC_C99()
AC_PROG_LD()
AC_PROG_INSTALL()
AC_PROG_INTLTOOL()
LT_PREREQ([2.2.6])
LT_INIT([disable-static])
dnl **********************************
dnl *** Check for standard headers ***
dnl **********************************
AC_HEADER_STDC()
AC_CHECK_LIBM
AC_SUBST(LIBM)
dnl ******************************
dnl *** Check for i18n support ***
dnl ******************************
XDT_I18N([ar ast ca cs da de el en_GB es eu fr gl hu id it ja ko lt lv nb nl pa pl pt pt_BR ru sk sq sv tr ug uk ur ur_PK zh_CN zh_TW ])
dnl ***********************************
dnl *** Check for required packages ***
dnl ***********************************
XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.8.0])
XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-1], [4.8.0])
dnl ***********************************
dnl *** Check for debugging support ***
dnl ***********************************
XDT_FEATURE_DEBUG()
AC_OUTPUT([
Makefile
panel-plugin/Makefile
po/Makefile.in
])
|