GNOME Bugzilla – Bug 108001
configuration output for ./configure broken
Last modified: 2004-12-22 21:47:04 UTC
At the end of ./configure, the backends configured are output. This is broken on Solaris. Solaris 7/SPARC gives: ./configure[12635]: syntax error at line 12635 : `then' unmatched
Created attachment 14898 [details] [review] configure.in patch
*** Bug 108618 has been marked as a duplicate of this bug. ***
Decided to rewrite to avoid nested "" inside `` inside "" and do something that I knew would work: backends="" if $have_freetype && $have_fontconfig ; then backends="$backends FreeType"; fi if $have_x ; then backends="$backends X"; fi if $have_xft ; then backends="$backends Xft"; fi if $have_win32 ; then backends="$backends Win32"; fi echo "configuration: backends:$backends" Tue Apr 15 05:13:56 2003 Owen Taylor <otaylor@redhat.com> * configure.in: Avoid complex quoting mess that didn't work with all shells. (#108001)