diff options
author | osa <osa@FreeBSD.org> | 2003-12-04 18:42:00 +0800 |
---|---|---|
committer | osa <osa@FreeBSD.org> | 2003-12-04 18:42:00 +0800 |
commit | 8d526c8772b3d45cbd762ecd7393f69ced10b6e5 (patch) | |
tree | 21897f9de45b8e5f119070b8375c1f4235d20d59 | |
parent | c80ca681c74252099f7941ec5c86c0f4a11f0a9c (diff) | |
download | freebsd-ports-graphics-8d526c8772b3d45cbd762ecd7393f69ced10b6e5.tar.gz freebsd-ports-graphics-8d526c8772b3d45cbd762ecd7393f69ced10b6e5.tar.zst freebsd-ports-graphics-8d526c8772b3d45cbd762ecd7393f69ced10b6e5.zip |
Update to 2.83.
-rw-r--r-- | databases/fastdb/Makefile | 2 | ||||
-rw-r--r-- | databases/fastdb/distinfo | 2 | ||||
-rw-r--r-- | databases/fastdb/files/patch-makefile | 28 |
3 files changed, 14 insertions, 18 deletions
diff --git a/databases/fastdb/Makefile b/databases/fastdb/Makefile index 0b027afc1c8..9cbae104c53 100644 --- a/databases/fastdb/Makefile +++ b/databases/fastdb/Makefile @@ -7,7 +7,7 @@ # PORTNAME= fastdb -PORTVERSION= 2.80 +PORTVERSION= 2.83 CATEGORIES= databases MASTER_SITES= http://www.garret.ru/~knizhnik/ diff --git a/databases/fastdb/distinfo b/databases/fastdb/distinfo index 44ddc79965b..a9bd2925b03 100644 --- a/databases/fastdb/distinfo +++ b/databases/fastdb/distinfo @@ -1 +1 @@ -MD5 (fastdb-2.80.tar.gz) = 38b3b5bf439d30814db6493384461706 +MD5 (fastdb-2.83.tar.gz) = a1bd753ab68ff90d7f197b24738b0183 diff --git a/databases/fastdb/files/patch-makefile b/databases/fastdb/files/patch-makefile index ddde8c966ad..883beb0ff58 100644 --- a/databases/fastdb/files/patch-makefile +++ b/databases/fastdb/files/patch-makefile @@ -1,6 +1,6 @@ ---- makefile.orig Tue Feb 18 20:58:28 2003 -+++ makefile Thu Mar 27 20:58:31 2003 -@@ -32,6 +32,6 @@ +--- makefile.orig Thu Dec 4 13:21:49 2003 ++++ makefile Thu Dec 4 13:26:32 2003 +@@ -32,8 +32,8 @@ SUFF= else ifneq (,$(findstring FreeBSD,$(OSTYPE))) @@ -9,6 +9,8 @@ +TFLAGS=-D_REENTRANT ${PTHREAD_CFLAGS} +THRLIBS=${PTHREAD_LIBS} else + TFLAGS=-D_REENTRANT -D_THREAD_SAFE + THRLIBS=-lpthread @@ -65,7 +65,7 @@ WEB_EXAMPLES = cgistub bugdb clidb @@ -18,25 +20,23 @@ # Possible FastDB compile time parameters (-Dxxx should be added to DEFS macro): # 1. USE_LOCALE_SETTINGS - use C locale for string comparison operations -@@ -101,13 +101,13 @@ +@@ -107,13 +107,12 @@ DEFS = -DUSE_QUEUE_MANAGER -DUSE_LOCALE_SETTINGS - #CFLAGS = $(TFLAGS) -c -Wall -O5 -g $(DEFS) --CFLAGS = -c -Wall -O0 -g $(DEFS) $(TFLAGS) + #CFLAGS = $(TFLAGS) -c -Wall -O5 -g -fPIC $(DEFS) +-CFLAGS = -c -Wall -O0 -g -fPIC $(DEFS) $(TFLAGS) +CFLAGS = -c ${CXXFLAGS} $(DEFS) $(TFLAGS) -fPIC - #CFLAGS = -c -Wall -O0 -DFASTDB_DEBUG=DEBUG_TRACE -g $(DEFS) $(TFLAGS) --SHFLAGS=-shared -+SHFLAGS = -shared -Wl,-soname,$@ - + #CFLAGS = -c -Wall -O0 -fPIC -DFASTDB_DEBUG=DEBUG_TRACE -g $(DEFS) $(TFLAGS) + SHFLAGS=-shared -Wl,-soname,$@ +- LD = $(CC) -LDFLAGS = -g $(TFLAGS) +LDFLAGS = $(TFLAGS) AR = ar ARFLAGS = -cru -@@ -326,18 +326,15 @@ - +@@ -354,13 +354,12 @@ install: subsql installlib mkdir -p $(BINSPATH) - cp subsql $(BINSPATH) @@ -52,8 +52,4 @@ + ${BSD_INSTALL_PROGRAM} $(FASTDB_LIB) $(CLI_LIB) $(FASTDB_SHARED) $(CLI_SHARED) $(LIBSPATH) cd $(LIBSPATH); ln -f -s $(FASTDB_SHARED) libfastdb$(SUFF).so cd $(LIBSPATH); ln -f -s $(CLI_SHARED) libcli$(SUFF).so -- -- - uninstall: - rm -fr $(INCSPATH) |