Changeset 4476

Show
Ignore:
Timestamp:
07/03/06 05:41:09 (2 years ago)
Author:
erijo
Message:

Don't add -mimpure-text to LDFLAGS when using gcc on solaris.
Closes #736

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/qt-gui/configure.in

    r4469 r4476  
    4646    *-*-solaris*) 
    4747        CPPFLAGS="$CPPFLAGS -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -DUSE_SOLARIS -DPIC -fPIC" 
    48         LDFLAGS="$LDFLAGS -mimpure-text" 
     48        if test $GXX != yes; then 
     49            LDFLAGS="$LDFLAGS -mimpure-text" 
     50        fi 
    4951        echo "Setting Solaris compilation options" 
    5052        ;;