/[svn]/qsampler/trunk/configure.ac
ViewVC logotype

Diff of /qsampler/trunk/configure.ac

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2828 by capela, Sun Jul 19 16:35:24 2015 UTC revision 2829 by capela, Thu Jul 23 17:32:31 2015 UTC
# Line 131  if test "x$ac_qt5" = "xyes"; then Line 131  if test "x$ac_qt5" = "xyes"; then
131  fi  fi
132    
133  ac_topdirs="/usr/local /usr"  ac_topdirs="/usr/local /usr"
134  ac_subdirs="lib"  ac_libdirs="lib"
135    
136  if test "x$ac_arch" = "xx86_64"; then  if test "x$ac_arch" = "xx86_64"; then
137     ac_subdirs="$ac_subdirs lib64"     ac_libdirs="$ac_libdirs lib64"
138  fi  fi
139    
140  if test "x$ac_arch" = "xx86_64" -o "x$ac_qt5" = "xyes"; then  if test "x$ac_arch" = "xx86_64" -o "x$ac_qt5" = "xyes"; then
# Line 143  if test "x$ac_arch" = "xx86_64" -o "x$ac Line 143  if test "x$ac_arch" = "xx86_64" -o "x$ac
143  fi  fi
144    
145  for X in $ac_topdirs; do  for X in $ac_topdirs; do
146    for Y in share $ac_subdirs; do    for Y1 in share $ac_libdirs; do
147      for Z in $ac_qtdirs; do      for Y2 in $Y1 $Y1/${ac_arch}-linux-gnu; do
148        if test -d $X/$Y/$Z/bin; then        for Z in $ac_qtdirs; do
149           ac_with_paths="$ac_with_paths $X/$Y/$Z"          if test -d $X/$Y2/$Z/bin; then
150        fi             ac_with_paths="$ac_with_paths $X/$Y2/$Z"
151            fi
152          done
153      done      done
154    done    done
155  done  done
# Line 173  for X in $ac_with_paths; do Line 175  for X in $ac_with_paths; do
175      CPPFLAGS="$CPPFLAGS -I$X/include"      CPPFLAGS="$CPPFLAGS -I$X/include"
176      ac_incpath="$ac_incpath $X/include"      ac_incpath="$ac_incpath $X/include"
177    fi    fi
178    for Y in $ac_subdirs; do    for Y1 in $ac_libdirs; do
179      if test -d $X/$Y; then      for Y2 in $Y1 $Y1/${ac_arch}-linux-gnu; do
180         LIBS="-L$X/$Y $LIBS"        if test -d $X/$Y2; then
181         ac_libs="-L$X/$Y $ac_libs"           LIBS="-L$X/$Y2 $LIBS"
182      fi           ac_libs="-L$X/$Y2 $ac_libs"
183          fi
184        done
185    done    done
186  done  done
187    

Legend:
Removed from v.2828  
changed lines
  Added in v.2829

  ViewVC Help
Powered by ViewVC