blob: 5524f1c1c724aceee0fe79320320e97c3168647e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- Makefile.in.orig Wed Aug 16 20:10:54 2000
+++ Makefile.in Wed Oct 18 03:29:59 2000
@@ -41,8 +41,8 @@
CXX = @CXX@
CC = @CC@
DEFS = @DEFS@
-CXXFLAGS = @CXXFLAGS@ $(DEFS)
-CFLAGS = @CFLAGS@ $(DEFS)
+CXXFLAGS = @CXXFLAGS@ $(DEFS) -D_THREAD_SAFE
+CFLAGS = @CFLAGS@ $(DEFS) -D_THREAD_SAFE
LD = $(CXX)
LDFLAGS = @LDFLAGS@ @TDEFS@ @LIBS@
AR = ar
@@ -122,7 +122,7 @@
$(LIBTOOL) --mode=install $(INSTALL) $(GB_LIB) $(CLI_LIB) $(libdir)
mkdir -p $(bindir)
cp subsql $(bindir)
-# strip $(bindir)/subsql
+ strip $(bindir)/subsql
clean:
rm -f *.o *.lo core *~
|