Changeset 757 in vbox
- Timestamp:
- Feb 7, 2007 5:30:10 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 18416
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r225 r757 47 47 LIBPTHREAD="-lpthread" 48 48 LIBXCURSOR="-lXcursor" 49 LIBX11="- lXext -lX11"49 LIBX11="-L/usr/X11R6/lib -lXext -lX11" 50 50 INCZ="" 51 51 LIBZ="-lz" … … 75 75 function cleanup() 76 76 { 77 rm -f .tmp_src.cc .tmp_src.c .tmp_out 77 rm -f .tmp_src.cc .tmp_src.c .tmp_out .test_execute.log 78 78 } 79 79 … … 176 176 { 177 177 echo "executing the binary" >> $LOG 178 log=`./.tmp_out`178 ./.tmp_out > .test_execute.log 179 179 rc=$? 180 echo $log | tee -a $LOG180 cat .test_execute.log | tee -a $LOG 181 181 if (($rc!=0)); then 182 182 fail $1 … … 430 430 printf("found version %d.%d.%d", 431 431 XALAN_VERSION_MAJOR, XALAN_VERSION_MINOR, XALAN_VERSION_REVISION); 432 #if _XALAN_VERSION >= 1 1000432 #if _XALAN_VERSION >= 10800 433 433 printf(", OK.\n"); 434 434 return 0; 435 435 #else 436 printf(", expected version 1. 10.0 or higher\n");436 printf(", expected version 1.8.0 or higher\n"); 437 437 return 1; 438 438 #endif … … 460 460 printf("found version %d.%d.%d", 461 461 XERCES_VERSION_MAJOR, XERCES_VERSION_MINOR, XERCES_VERSION_REVISION); 462 #if _XERCES_VERSION >= 20 600462 #if _XERCES_VERSION >= 20500 463 463 printf(", OK.\n"); 464 464 return 0; 465 465 #else 466 printf(", expected version 2. 6.0 or higher");466 printf(", expected version 2.5.0 or higher"); 467 467 return 1; 468 468 #endif … … 656 656 # Check for pam, needed by VRDPAuth 657 657 # Version 79 was introduced in 9/2005, do we support older versions? 658 # Debian/sarge uses 76 658 659 # 659 660 function check_pam() … … 666 667 { 667 668 printf("found version %d", __LIBPAM_VERSION); 668 if (__LIBPAM_VERSION >= 7 9)669 if (__LIBPAM_VERSION >= 76) 669 670 { 670 671 printf(", OK.\n"); … … 673 674 else 674 675 { 675 printf(", expected version 7 9or higher\n");676 printf(", expected version 76 or higher\n"); 676 677 return 1; 677 678 } … … 725 726 #include <cstdio> 726 727 #include <SDL/SDL_ttf.h> 728 #ifndef SDL_TTF_MAJOR_VERSION 729 #define SDL_TTF_MAJOR_VERSION TTF_MAJOR_VERSION 730 #define SDL_TTF_MINOR_VERSION TTF_MINOR_VERSION 731 #define SDL_TTF_PATCHLEVEL TTF_PATCHLEVEL 732 #endif 727 733 extern "C" int main(void) 728 734 { … … 823 829 cat .tmp_src.cc >> $LOG 824 830 echo "using the following command line:" >> $LOG 825 echo "$CXX -O -Wall -o .tmp_out .tmp_src.cc \"-I$q/include -L$q/lib -lqt-mt\"" >> $LOG831 echo "$CXX -O -Wall -o .tmp_out .tmp_src.cc -I$q/include -L$q/lib -lqt-mt" >> $LOG 826 832 $CXX -O -Wall -o .tmp_out .tmp_src.cc -I$q/include -L$q/lib -lqt-mt >> $LOG 2>&1 827 833 if (($?==0)); then
Note:
See TracChangeset
for help on using the changeset viewer.