[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: HELP!! Re: Bug#365126: wmrack - FTBFS: error: WMRack needs X Windows!!!



Chris Waters <xtifr@debian.org> writes:

>   CFLAGS="$CFLAGS -I${x_includes}"
>   LIBS="$LIBS -L${x_libraries} -lX11"

x_includes and x_libraries now expand to the empty string, biting
anything that assumed otherwise.  Accounting for that isn't too hard,
though:

  CFLAGS="$CFLAGS ${x_includes:+-I$x_includes}"
  LIBS="$LIBS ${x_libraries:+-L$x_libraries} -lX11"

-- 
Aaron M. Ucko, KB1CJC (amu at alum.mit.edu, ucko at debian.org)
Finger amu@monk.mit.edu (NOT a valid e-mail address) for more info.



Reply to: