After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 108001 - configuration output for ./configure broken
configuration output for ./configure broken
Status: RESOLVED FIXED
Product: pango
Classification: Platform
Component: general
1.2.x
Other other
: Normal normal
: ---
Assigned To: Owen Taylor
Owen Taylor
: 108618 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2003-03-10 15:06 UTC by The Written Word
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
configure.in patch (602 bytes, patch)
2003-03-10 15:07 UTC, The Written Word
none Details | Review

Description The Written Word 2003-03-10 15:06:45 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
Comment 1 The Written Word 2003-03-10 15:07:01 UTC
Created attachment 14898 [details] [review]
configure.in patch
Comment 2 Owen Taylor 2003-03-17 22:54:30 UTC
*** Bug 108618 has been marked as a duplicate of this bug. ***
Comment 3 Owen Taylor 2003-04-15 21:25:19 UTC
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)