blob: af1a4112941a5f8eccbedab9fee65bda58b0ba48 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
--- configure.in.orig Sun Aug 26 16:59:47 2001
+++ configure.in Sun Sep 2 19:56:27 2001
@@ -12,13 +12,13 @@
for dir in $1
do
- if test -f $dir/moc
+ if test -f $dir/moc2
then
QTMOCDIR=$dir
echo "found in $QTMOCDIR"
break
else
- if test -f $dir/bin/moc
+ if test -f $dir/bin/moc2
then
QTMOCDIR=$dir/bin
echo "found in $QTMOCDIR"
@@ -54,13 +54,13 @@
for dir in $1
do
- if test -f $dir/libqt.so
+ if test -f $dir/libqt2.so
then
QTLIBDIR=$dir
echo "found in $QTLIBDIR"
break
else
- if test -f $dir/lib/libqt.so
+ if test -f $dir/lib/libqt2.so
then
QTLIBDIR=$dir/lib
echo "found in $QTLIBDIR"
|