openbsd-ports/x11/qt2/patches/patch-configure
espie e7d1c82b2e Tweak configury so that designer is not built, and qt2 is configured with
kde support, even though kde is not installed at this point.

Add missing moc man page as well.
2001-03-21 23:56:50 +00:00

44 lines
1015 B
Plaintext

--- configure.orig Mon Mar 5 19:12:49 2001
+++ configure Wed Mar 21 23:48:39 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
@@ -1331,19 +1335,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`