Lines 1-5
Link Here
|
1 |
--- config/config.mk.orig Thu Oct 31 23:24:59 2002 |
1 |
--- config/config.mk.orig Tue Dec 24 15:59:08 2002 |
2 |
+++ config/config.mk Thu Oct 31 23:27:02 2002 |
2 |
+++ config/config.mk Tue Apr 15 13:40:16 2003 |
3 |
@@ -33,8 +33,8 @@ |
3 |
@@ -33,8 +33,8 @@ |
4 |
# |
4 |
# |
5 |
############################################################################### |
5 |
############################################################################### |
Lines 11-25
Link Here
|
11 |
#MAC_OS_X:= -DMacOSX |
11 |
#MAC_OS_X:= -DMacOSX |
12 |
#SOLARIS:= -DSolaris |
12 |
#SOLARIS:= -DSolaris |
13 |
#WIN32:= -DWIN32 |
13 |
#WIN32:= -DWIN32 |
14 |
@@ -99,7 +99,6 @@ |
14 |
@@ -112,7 +112,7 @@ |
15 |
ifdef SEARCH_DAEMON |
15 |
ifdef SEARCH_DAEMON |
16 |
|
16 |
|
17 |
ifdef FREE_BSD |
17 |
ifdef FREE_BSD |
18 |
-PTHREAD_LIB:= -pthread |
18 |
-PTHREAD_LINK:= -pthread |
|
|
19 |
+PTHREAD_LINK:= ${PTHREAD_LIBS} |
19 |
else |
20 |
else |
20 |
PTHREAD_LIB:= -lpthread |
21 |
PTHREAD_LINK:= -lpthread |
21 |
endif |
22 |
endif |
22 |
@@ -130,7 +129,7 @@ |
23 |
@@ -149,7 +149,7 @@ |
23 |
# The command to remove files recursively and ignore errors; |
24 |
# The command to remove files recursively and ignore errors; |
24 |
# usually "rm -fr" for Unix or "erase" for Windows. |
25 |
# usually "rm -fr" for Unix or "erase" for Windows. |
25 |
|
26 |
|
Lines 28-34
Link Here
|
28 |
# The full path to the Perl 5 executable; usually "/bin/perl" or |
29 |
# The full path to the Perl 5 executable; usually "/bin/perl" or |
29 |
# "/usr/local/bin/perl" for Unix or "\Perl\bin\perl" for |
30 |
# "/usr/local/bin/perl" for Unix or "\Perl\bin\perl" for |
30 |
# Windows. You need this only if you intend on using |
31 |
# Windows. You need this only if you intend on using |
31 |
@@ -164,7 +163,7 @@ |
32 |
@@ -176,14 +176,14 @@ |
|
|
33 |
# |
34 |
############################################################################### |
35 |
|
36 |
-CC:= g++ |
37 |
+CC:= ${CXX} |
38 |
# The C++ compiler you are using; usually "CC" or "g++". |
39 |
|
40 |
#DEBUG:= true |
32 |
ifdef DEBUG |
41 |
ifdef DEBUG |
33 |
OPTIM:= -g |
42 |
OPTIM:= -g |
34 |
else |
43 |
else |
Lines 37-43
Link Here
|
37 |
# The optimization level. Many compilers allow a digit after the |
46 |
# The optimization level. Many compilers allow a digit after the |
38 |
# O to specify the level of optimization; if so, set yours to the |
47 |
# O to specify the level of optimization; if so, set yours to the |
39 |
# highest number your compiler allows without eliciting problems |
48 |
# highest number your compiler allows without eliciting problems |
40 |
@@ -208,7 +207,7 @@ |
49 |
@@ -227,7 +227,7 @@ |
41 |
INSTALL:= $(ROOT)/install-sh |
50 |
INSTALL:= $(ROOT)/install-sh |
42 |
# Install command; usually "$(ROOT)/install-sh". |
51 |
# Install command; usually "$(ROOT)/install-sh". |