Changeset 2571 in vbox
- Timestamp:
- May 9, 2007 8:23:34 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 21040
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r2568 r2571 195 195 i[3456789]86|x86) 196 196 MACHINE='x86' 197 LIB='lib' 197 198 ;; 198 199 x86_64|amd64) 199 200 MACHINE='amd64' 200 201 CPU='k8' 201 202 # on AMD64 systems, 64bit libs are usually located in /usr/lib64 203 # see http://www.pathname.com/fhs/pub/fhs-2.3.html#LIB64 204 LIB='lib64' 202 205 echo "" 203 206 echo "" … … 501 504 log_success "found version $libidl_ver" 502 505 cnf_append "VBOX_LIBIDL_CONFIG" \ 503 "PKG_CONFIG_PATH=`libIDL-config-2 --prefix`/ lib/pkgconfig `which_wrapper libIDL-config-2`"506 "PKG_CONFIG_PATH=`libIDL-config-2 --prefix`/$LIB/pkgconfig `which_wrapper libIDL-config-2`" 504 507 fi 505 508 elif check_avail "libIDL-config" libIDL-config; then … … 863 866 cat .tmp_src.cc >> $LOG 864 867 echo "using the following command line:" >> $LOG 865 if [ "$MACHINE" = "amd64" ]; then 866 echo "$CXX -O -Wall -o .tmp_out .tmp_src.cc -I$q/include -L$q/lib64 -L$q/lib -lqt-mt" >> $LOG 868 echo "$CXX -O -Wall -o .tmp_out .tmp_src.cc -I$q/include -L$q/$LIB -lqt-mt" >> $LOG 867 869 868 $CXX -O -Wall -o .tmp_out .tmp_src.cc -I$q/include -L$q/lib64 -L$q/lib -lqt-mt >> $LOG 2>&1 869 else 870 echo "$CXX -O -Wall -o .tmp_out .tmp_src.cc -I$q/include -L$q/lib -lqt-mt" >> $LOG 871 872 $CXX -O -Wall -o .tmp_out .tmp_src.cc -I$q/include -L$q/lib -lqt-mt >> $LOG 2>&1 873 fi 870 $CXX -O -Wall -o .tmp_out .tmp_src.cc -I$q/include -L$q/$LIB -lqt-mt >> $LOG 2>&1 874 871 if (($?==0)); then 875 872 if test_execute; then
Note:
See TracChangeset
for help on using the changeset viewer.