1
0
mirror of https://github.com/pdewacht/brlaser synced 2025-04-05 20:36:44 +02:00

Use cups-config --ldflags

This fixes link problems on NixOS.
This commit is contained in:
Peter De Wachter 2016-03-02 19:41:44 +01:00
parent 569e3f7766
commit d85b875627
2 changed files with 3 additions and 0 deletions

View File

@ -29,6 +29,7 @@ src_rastertobrlaser_SOURCES = \
src/line.h \
src/line.cc
src_rastertobrlaser_LDADD = $(CUPS_LIBS)
src_rastertobrlaser_LDFLAGS = $(CUPS_LDFLAGS)
src_brdecode_SOURCES = \
src/brdecode.cc

View File

@ -38,10 +38,12 @@ AS_IF([test -z "$CUPS_CONFIG"],
[AC_MSG_ERROR(["cups-config" command not found. Please install the CUPS development package.])])
CUPS_CFLAGS=`"$CUPS_CONFIG" --cflags`
CUPS_LIBS=`"$CUPS_CONFIG" --image --libs`
CUPS_LDFLAGS=`"$CUPS_CONFIG" --image --ldflags`
CUPS_SERVERBIN=`"$CUPS_CONFIG" --serverbin`
CUPS_DATADIR=`"$CUPS_CONFIG" --datadir`
AC_SUBST(CUPS_CFLAGS)
AC_SUBST(CUPS_LIBS)
AC_SUBST(CUPS_LDFLAGS)
AC_SUBST(CUPS_SERVERBIN)
AC_SUBST(CUPS_DATADIR)