forked from mschwager/pa-applet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
26 lines (21 loc) · 1.08 KB
/
configure.ac
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
AC_PREREQ(2.59c)
AC_INIT([pa-applet], [1.0.0], [], [pa-applet])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([foreign])
AC_PROG_CC_C99
if test "x$ac_cv_prog_cc_c99" = "xno"; then
AC_MSG_ERROR([C compiler must be C99 compliant])
fi
AC_HEADER_STDC
PKG_CHECK_MODULES([GLIB], [glib-2.0])
AC_ARG_ENABLE([gtk2], [AS_HELP_STRING([--enable-gtk2], use GTK+ 2)], [gtk=gtk+-2.0], [gtk=gtk+-3.0])
PKG_CHECK_MODULES([GTK], [$gtk])
PKG_CHECK_MODULES([LIBPULSE], [libpulse])
PKG_CHECK_MODULES([LIBPULSE_GLIB], [libpulse-mainloop-glib])
AC_ARG_WITH([libnotify], [AS_HELP_STRING([--without-libnotify], [disable notification support])], [], [with_libnotify=yes])
AS_IF([test "x$with_libnotify" == xyes], [PKG_CHECK_MODULES([LIBNOTIFY], [libnotify], [AC_DEFINE(HAVE_LIBNOTIFY, [], [Notification support])])])
AC_ARG_WITH([mixer], [AS_HELP_STRING([--with-mixer=pavucontrol], [Mixer application])], [with_mixer=$withval], [with_mixer=pavucontrol])
AC_DEFINE_UNQUOTED([MIXER], ["$with_mixer"], [Mixer application])
PKG_CHECK_MODULES([XLIB], [x11])
AC_CONFIG_FILES([Makefile man/Makefile src/Makefile])
AC_OUTPUT