Lines 1-6
Link Here
|
1 |
--- configure.orig Mon Dec 16 10:12:16 2002 |
1 |
--- configure.orig Wed Jan 29 12:29:38 2003 |
2 |
+++ configure Fri Dec 20 18:11:14 2002 |
2 |
+++ configure Tue Feb 4 14:07:39 2003 |
3 |
@@ -8071,6 +8071,7 @@ |
3 |
@@ -8104,6 +8104,7 @@ |
4 |
|
4 |
|
5 |
# This can be used to rebuild libtool when needed |
5 |
# This can be used to rebuild libtool when needed |
6 |
LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" |
6 |
LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" |
Lines 8-14
Link Here
|
8 |
|
8 |
|
9 |
# Always use our own libtool. |
9 |
# Always use our own libtool. |
10 |
LIBTOOL='$(SHELL) $(top_builddir)/libtool' |
10 |
LIBTOOL='$(SHELL) $(top_builddir)/libtool' |
11 |
@@ -9000,7 +9001,7 @@ |
11 |
@@ -9046,7 +9047,7 @@ |
12 |
;; |
12 |
;; |
13 |
esac |
13 |
esac |
14 |
fi |
14 |
fi |
Lines 17-19
Link Here
|
17 |
|
17 |
|
18 |
if test -n "$HOSTNAME"; then |
18 |
if test -n "$HOSTNAME"; then |
19 |
echo "$as_me:$LINENO: result: $HOSTNAME" >&5 |
19 |
echo "$as_me:$LINENO: result: $HOSTNAME" >&5 |
|
|
20 |
@@ -9238,43 +9239,8 @@ |
21 |
echo "$as_me:$LINENO: checking \"how to check if pid exists\"" >&5 |
22 |
echo $ECHO_N "checking \"how to check if pid exists\"... $ECHO_C" >&6 |
23 |
PS=$ac_cv_path_PS |
24 |
-# Linux style |
25 |
-if $PS p $$ 2> /dev/null | grep $0 > /dev/null |
26 |
-then |
27 |
- FIND_PROC="$PS p \$\$PID | grep mysqld > /dev/null" |
28 |
-# Solaris |
29 |
-elif $PS -p $$ 2> /dev/null | grep $0 > /dev/null |
30 |
-then |
31 |
- FIND_PROC="$PS -p \$\$PID | grep mysqld > /dev/null" |
32 |
# BSD style |
33 |
-elif $PS -uaxww 2> /dev/null | grep $0 > /dev/null |
34 |
-then |
35 |
FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" |
36 |
-# SysV style |
37 |
-elif $PS -ef 2> /dev/null | grep $0 > /dev/null |
38 |
-then |
39 |
- FIND_PROC="$PS -ef | grep mysqld | grep \" \$\$PID \" > /dev/null" |
40 |
-# Do anybody use this? |
41 |
-elif $PS $$ 2> /dev/null | grep $0 > /dev/null |
42 |
-then |
43 |
- FIND_PROC="$PS \$\$PID | grep mysqld > /dev/null" |
44 |
-else |
45 |
- case $SYSTEM_TYPE in |
46 |
- *darwin*) |
47 |
- FIND_PROC="$PS -uaxww | grep mysqld | grep \" \$\$PID \" > /dev/null" |
48 |
- ;; |
49 |
- *cygwin*) |
50 |
- FIND_PROC="$PS -e | grep mysqld | grep \" \$\$PID \" > /dev/null" |
51 |
- ;; |
52 |
- *netware* | *modesto*) |
53 |
- FIND_PROC= |
54 |
- ;; |
55 |
- *) |
56 |
- { { echo "$as_me:$LINENO: error: Could not find the right ps switches. Which OS is this ?. See the Installation chapter in the Reference Manual." >&5 |
57 |
-echo "$as_me: error: Could not find the right ps switches. Which OS is this ?. See the Installation chapter in the Reference Manual." >&2;} |
58 |
- { (exit 1); exit 1; }; } |
59 |
- esac |
60 |
-fi |
61 |
|
62 |
echo "$as_me:$LINENO: result: \"$FIND_PROC\"" >&5 |
63 |
echo "${ECHO_T}\"$FIND_PROC\"" >&6 |