This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac.in
49 lines (40 loc) · 1.79 KB
/
configure.ac.in
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
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
AC_INIT(pidgin-extended-blist-sort, @@VERSION@@, [email protected])
AM_INIT_AUTOMAKE([1.9 foreign tar-pax])
AC_CONFIG_SRCDIR([src/extended_blist_sort.c])
AC_CONFIG_HEADER([config.h])
AC_CONFIG_MACRO_DIR([m4])
# Note: AC_DEFINE_UNQUOTED() needs to be in a single line in order to not
# break scripts/gen-mingw-config_h.sh on Windows.
AC_DEFINE_UNQUOTED(PLUGIN_VERSION, ["@@VERSION@@"], [Define the plugin version])
AC_DEFINE_UNQUOTED(PLUGIN_WEBSITE, ["https://github.com/kgraefe/pidgin-extended-blist-sort"], [Define the plugin website])
AC_DEFINE_UNQUOTED(PLUGIN_ID, ["gtk-freakazoid-extended-blist-sort"], [Define the plugin website])
AC_DEFINE_UNQUOTED(PLUGIN_STATIC_NAME, ["extended-blist-sort"], [Define the plugin website])
AC_DEFINE_UNQUOTED(PLUGIN_AUTHOR, ["Konrad Gräfe <[email protected]>"], [Define the plugin author])
AC_DEFINE_UNQUOTED(PLUGIN_PREFS_PREFIX, ["/plugins/gtk/extended_blist_sort"], [Define the plugin preference path])
# Checks for programs.
AC_PROG_CC
AC_PROG_LIBTOOL
AC_PROG_INTLTOOL
GETTEXT_PACKAGE=pidgin-extended-blist-sort
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, ["$GETTEXT_PACKAGE"], [Define the gettext package])
ALL_LINGUAS="@@LANGUAGES@@"
AM_GLIB_GNU_GETTEXT
# Checks for libraries.
PKG_CHECK_MODULES(pidgin, [pidgin >= 2.5.2], , [AC_MSG_ERROR(pidgin >= 2.5.2 required!)])
LIBS="$LIBS $pidgin_LIBS"
CFLAGS="$CFLAGS $pidgin_CFLAGS -Wall -Werror-implicit-function-declaration"
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_CONFIG_FILES([
Makefile
src/Makefile
po/Makefile.in
share/Makefile
share/appdata/Makefile
])
AC_OUTPUT