openbsd-ports/x11/qt2/patches/patch-configure
2001-12-22 14:09:18 +00:00

44 lines
1015 B
Plaintext

--- configure.orig Mon Oct 29 15:24:18 2001
+++ configure Sat Dec 22 11:40:51 2001
@@ -52,7 +52,10 @@ else
fi
# Check licensed modules
-MODULES=`$MAKE -f src/Makefile.in listallmodules`
+if [ -z "$MODULES" ]
+then
+ MODULES=`$MAKE -f src/Makefile.in listallmodules`
+fi
# Qt/Embedded?
if [ -f configs/linux-generic-g++-shared ]
@@ -78,6 +81,7 @@ then
Licensee=you
while true
do
+ break
echo
echo "This is the Qt$EMB Free Edition."
echo
@@ -1441,19 +1445,7 @@ echo Creating makefiles...
sepath=`echo $relpath | sed -e 's/\\./\\\\./g'`
-if [ $KDE = yes ]
-then
- if [ '!' -f $KDEDIR/bin/dcopserver ]
- then
- KDE=no
- echo ""
- echo "You wanted to compile the Qt Designer with"
- echo "KDE 2 support, but \$KDEDIR does not point"
- echo "to a valid KDE 2 installation. KDE 2 support"
- echo "has been turned off."
- echo ""
- fi
-fi
+# KDE check removed, as this will happen later.
for a in `find $relpath/. -name Makefile.in -print | sort` ; do
dir=`dirname $a`