mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
811c8f535e
AddrInfo now has ref()/unref() and keeps a global socket->refcount map (since actual AddrInfo instances come and go.) When the count drops to 0, the existing CloseSocket() method is called. This seems to fix a bunch of race conditions that had a socket being closed and reused while old code was still expecting to write to the device attached to the socket the first time (along with lots of calls to close() already-closed sockets, attempts to write() to closed sockets, etc.)
124 lines
2.9 KiB
Makefile
124 lines
2.9 KiB
Makefile
# -*- mode: Makefile; -*-
|
|
# Copyright 2005-2009 by Eric House (xwords@eehouse.org). All rights
|
|
# reserved.
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
CXX = g++
|
|
CC=$(CXX)
|
|
SRC = \
|
|
addrinfo.cpp \
|
|
cidlock.cpp \
|
|
configs.cpp \
|
|
cref.cpp \
|
|
crefmgr.cpp \
|
|
ctrl.cpp \
|
|
dbmgr.cpp \
|
|
devmgr.cpp \
|
|
http.cpp \
|
|
lstnrmgr.cpp \
|
|
permid.cpp \
|
|
states.cpp \
|
|
strwpf.cpp \
|
|
timermgr.cpp \
|
|
tpool.cpp \
|
|
udpack.cpp \
|
|
udpager.cpp \
|
|
udpqueue.cpp \
|
|
xwrelay.cpp \
|
|
querybld.cpp \
|
|
|
|
# STATIC ?= -static
|
|
GITINFO = gitversion.txt
|
|
HASH=$(shell git rev-parse --verify HEAD)
|
|
|
|
OBJ = $(patsubst %.cpp,obj/%.o,$(SRC))
|
|
#LDFLAGS += -pthread -g -lmcheck $(STATIC)
|
|
LDFLAGS += -pthread -g $(STATIC)
|
|
LDFLAGS += -L$(shell pg_config --libdir)
|
|
LDFLAGS += $(shell pkg-config --libs glib-2.0)
|
|
LDFLAGS += -lrt
|
|
|
|
CPPFLAGS += -DSPAWN_SELF -g -Wall
|
|
CPPFLAGS += -I $(shell pg_config --includedir)
|
|
CPPFLAGS += -DSVN_REV=\"$(shell cat $(GITINFO) 2>/dev/null || echo -n $(HASH) )\"
|
|
CPPFLAGS += $(shell pkg-config --cflags glib-2.0)
|
|
# CPPFLAGS += -DLOG_UDP_PACKETS
|
|
# CPPFLAGS += -DLOG_PACKET_MD5SUMS
|
|
# CPPFLAGS += -DDO_HTTP
|
|
CPPFLAGS += -DHAVE_STIME
|
|
|
|
ifneq ($(shell which ccache),)
|
|
CC := ccache $(CC)
|
|
CXX := ccache $(CXX)
|
|
endif
|
|
|
|
# turn on semaphore debugging
|
|
# CPPFLAGS += -DDEBUG_LOCKS
|
|
# CPPFLAGS += -DLOG_POLL
|
|
|
|
memdebug all: xwrelay rq
|
|
|
|
REQUIRED_DEBS = libpq-dev g++ libglib2.0-dev postgresql \
|
|
|
|
.PHONY: debcheck debs_install
|
|
|
|
debs_install:
|
|
sudo apt-get install $(REQUIRED_DEBS)
|
|
|
|
debcheck:
|
|
@if which dpkg; then \
|
|
for DEB in $(REQUIRED_DEBS); do \
|
|
if ! dpkg -l $$DEB >/dev/null 2>&1; then \
|
|
echo "$$DEB not installed"; \
|
|
echo "try running 'make debs_install'"; \
|
|
break; \
|
|
fi \
|
|
done; \
|
|
fi
|
|
|
|
# Manual config in order to place -lpq after the .obj files as
|
|
# required by something Ubuntu did upgrading natty to oneiric
|
|
xwrelay: $(OBJ)
|
|
$(CXX) $(CPPFLAGS) -o $@ $^ -lpq $(LDFLAGS)
|
|
|
|
obj/%.o: %.cpp
|
|
@mkdir -p obj
|
|
$(CXX) -c $(CPPFLAGS) -o $@ $^
|
|
|
|
rq: rq.c
|
|
|
|
clean:
|
|
rm -f xwrelay $(OBJ) rq
|
|
|
|
tags:
|
|
etags *.cpp *.h
|
|
|
|
tarball:
|
|
@echo -n $(HASH) > $(GITINFO)
|
|
tar cvfz RELAY_SRC.tgz \
|
|
../relay/*.cpp \
|
|
../relay/*.h \
|
|
../relay/Makefile \
|
|
../relay/xwrelay.conf \
|
|
../relay/xwrelay.sh \
|
|
../relay/xwrelay.css \
|
|
../relay/$(GITINFO)
|
|
@rm -f $(GITINFO)
|
|
@echo "RELAY_SRC.tgz done"
|
|
|
|
help:
|
|
@echo $(MAKE) [STATIC=\"-static\"]
|
|
@echo $(MAKE) tarball
|