blob: 7f2f2acaf6fb756a7440dd60309a538d3adc2e40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
if test "$needs_libxpdf" = no; then
LIBXPDFCPPFLAGS=
LDLIBXPDF=
LIBXPDFDEP=
else
LIBXPDFCPPFLAGS='-I$(LIBXPDFDIR) -I$(LIBXPDFDIR)/xpdf -I$(LIBXPDFDIR)/goo -I$(LIBXPDFDIR)/fofi -I$(LIBXPDFSRCDIR) -I$(LIBXPDFSRCDIR)/xpdf -I$(LIBXPDFSRCDIR)/goo -I$(LIBXPDFSRCDIR)/fofi'
LDLIBXPDF='$(LIBXPDFDIR)/xpdf/libxpdf.a $(LIBXPDFDIR)/goo/libGoo.a $(LIBXPDFDIR)/fofi/libfofi.a'
LIBXPDFDEP='$(LIBXPDFDIR)/xpdf/libxpdf.a $(LIBXPDFDIR)/goo/libGoo.a $(LIBXPDFDIR)/fofi/libfofi.a'
fi
AC_SUBST(LIBXPDFCPPFLAGS)
AC_SUBST(LDLIBXPDF)
AC_SUBST(LIBXPDFDEP)
|