Software /
code /
prosody
File
util-src/Makefile @ 3458:9c3ae41e696c
net.server_select, net.server_event: Remove set_mode() call from server.link()... it can cause the last chunk of data to be discarded if shorter than buffersize (thanks to Zash for the debugging)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sun, 22 Aug 2010 21:12:22 +0100 |
parent | 3334:73f078caf99d |
child | 3762:f02bac902a1e |
line wrap: on
line source
include ../config.unix LUA_SUFFIX?=5.1 LUA_INCDIR?=/usr/include/lua$(LUA_SUFFIX) LUA_LIB?=lua$(LUA_SUFFIX) IDN_LIB?=idn OPENSSL_LIB?=crypto CC?=gcc LD?=gcc .SUFFIXES: .c .o .so .c.o: $(CC) $(CFLAGS) -I$(LUA_INCDIR) -c -o $@ $< .o.so: MACOSX_DEPLOYMENT_TARGET="10.3"; export MACOSX_DEPLOYMENT_TARGET; $(LD) $(LDFLAGS) -o $@ $< -lidn -lcrypto all: encodings.so hashes.so pposix.so signal.so install: encodings.so hashes.so pposix.so signal.so install *.so ../util/ clean: rm -f *.o rm -f *.so rm -f ../util/*.so