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
73
74
75
76
77
78
|
dnl Process this file with autoconf to create configure.
AC_INIT(src/main.c)
AM_INIT_AUTOMAKE(feh, 1.4)
AM_CONFIG_HEADER(src/config.h)
AC_PROG_CC
AM_PROG_CC_STDC
AC_C_CONST
AC_PROG_INSTALL
AC_PROG_MAKE_SET
AM_MAINTAINER_MODE
AM_WITH_DMALLOC
AC_ARG_WITH(imlib2,
[ --with-imlib2=DIR use imlib2 in <DIR>],
[CFLAGS="$CFLAGS -I$withval/include"
LIBS="-L$withval/lib $LIBS"])
AC_PATH_GENERIC(imlib2, 1.0.0, [
AC_SUBST(IMLIB_LIBS)
AC_SUBST(IMLIB_CFLAGS) ],
AC_MSG_ERROR(Cannot find imlib2: Is imlib2-config in the path?) )
IMLIB_LIBS=`imlib2-config --libs`
IMLIB_CFLAGS=`imlib2-config --cflags`
AC_SUBST(IMLIB_LIBS)
AC_SUBST(IMLIB_CFLAGS)
AC_PATH_GENERIC(giblib, 1.2.4, [
AC_SUBST(GIBLIB_LIBS)
AC_SUBST(GIBLIB_CFLAGS) ],
AC_MSG_ERROR(Cannot find giblib: Is giblib-config in the path?) )
dnl the above doesn't work for some reason :/
GIBLIB_LIBS=`giblib-config --libs`
GIBLIB_CFLAGS=`giblib-config --cflags`
AC_SUBST(GIBLIB_LIBS)
AC_SUBST(GIBLIB_CFLAGS)
dnl Check for Xinerama
AC_ARG_ENABLE(xinerama,
AC_HELP_STRING([--disable-xinerama],[disable Xinerama multi screen support]),
[
if test x"$enableval" = xyes; then
with_xinerama="yes"
else
with_xinerama="no"
fi
],
[with_xinerama="detect"]
)
if test x"$with_xinerama" != xno; then
AC_CHECK_LIB(Xext,XMissingExtension,[
AC_CHECK_LIB(Xinerama,XineramaQueryScreens,[
AC_DEFINE(HAVE_LIBXINERAMA, [], [Enable Xinerama support])
LIBS="$LIBS -lXext -lXinerama"
])
])
fi
dnl AC_CHECK_FUNC(getopt_long,,[LIBOBJS="$LIBOBJS getopt.o getopt1.o"])
dnl AC_SUBST(LIBOBJS)
echo "checking for pr0n.... found"
AC_OUTPUT(Makefile \
feh.spec \
cam/Makefile \
src/Makefile \
src/ttfonts/Makefile \
)
echo ""
echo "If you have used an earlier version of feh,"
echo "please remove your ~/.fehrc config file."
echo "feh will create a new one when it is first run."
|