Changeset 1025 in vbox
- Timestamp:
- Feb 22, 2007 1:00:30 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 18882
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r994 r1025 23 23 24 24 # 25 # Default positions25 # Defaults 26 26 # 27 27 OSE=1 28 XPCOM=1 28 WITH_XPCOM=1 29 WITH_LIBIDL=1 30 WITH_QT=1 29 31 CC="gcc" 30 32 CXX="g++" … … 52 54 INCPNG="" 53 55 LIBPNG="-lpng" 54 QTDIR="/usr/qt/3 /usr/lib/qt3 /usr/ share/qt3"56 QTDIR="/usr/qt/3 /usr/lib/qt3 /usr/lib/qt-3.3 /usr/share/qt3" 55 57 KBUILDDIR="`cd $(dirname $0); pwd`/kBuild" 56 58 DEVDIR="`cd $(dirname $0); pwd`/tools" … … 226 228 227 229 # Automatically disable XPCOM on darwin. 228 if [ "$OS" = "darwin" -a $XPCOM -eq 1 ]; then 229 XPCOM=0 230 if [ "$OS" = "darwin" -a $WITH_XPCOM -eq 1 ]; then 231 WITH_XPCOM=0 232 WITH_LIBIDL=0 233 WITH_QT=0 230 234 echo "Disabling checks for XPCOM related components." 231 235 fi … … 785 789 printf("found version %d.%d.%d", 786 790 SND_LIB_MAJOR, SND_LIB_MINOR, SND_LIB_SUBMINOR); 787 #if 10000*SND_LIB_MAJOR + 100*SND_LIB_MINOR + SND_LIB_SUBMINOR >= 1000 8791 #if 10000*SND_LIB_MAJOR + 100*SND_LIB_MINOR + SND_LIB_SUBMINOR >= 10006 788 792 printf(", OK.\n"); 789 793 return 0; 790 794 #else 791 printf(", expected version 1.0. 8or higher\n");795 printf(", expected version 1.0.6 or higher\n"); 792 796 return 1; 793 797 #endif … … 1085 1089 ;; 1086 1090 --disable-xpcom) 1087 XPCOM=01091 WITH_XPCOM=0 1088 1092 ;; 1089 1093 --disable-qt) … … 1186 1190 1187 1191 # the libraries 1188 (($ XPCOM==1)) && check_xalan1189 (($ XPCOM==1)) && check_xerces1190 (($ XPCOM==1)) && check_libidl1192 (($WITH_XPCOM==1)) && check_xalan 1193 (($WITH_XPCOM==1)) && check_xerces 1194 (($WITH_LIBIDL==1)) && check_libidl 1191 1195 [ "$OS" != "darwin" ] && check_uuid 1192 1196 (($OSE==0)) && check_ssl … … 1200 1204 [ "$OS" != "darwin" ] && check_x 1201 1205 [ "$OS" != "darwin" ] && check_xcursor 1202 (($ XPCOM==1)) && check_qt1206 (($WITH_QT==1)) && check_qt 1203 1207 1204 1208 # Linux-specific
Note:
See TracChangeset
for help on using the changeset viewer.