aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog21
-rw-r--r--Makefile2
-rw-r--r--iemnet.c8
3 files changed, 28 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 6978dc9..2802724 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,24 @@
+2010-10-11 16:04 zmoelnig
+
+ * tcpreceive.c, udpreceive.c: use SO_REUSEPORT (if available during
+ compile-time)
+
+2010-10-11 15:34 zmoelnig
+
+ * .: svn:ignore all *.pd_linux
+
+2010-10-11 12:15 zmoelnig
+
+ * AUTHORS: authors
+
+ illiterati
+
+2010-10-11 12:13 zmoelnig
+
+ * ChangeLog, NEWS: ChangeLog and NEWS files
+
+ with bugs bunny and bill clinton
+
2010-10-11 12:04 zmoelnig
* udpserver.c: at least accept one(1) client
diff --git a/Makefile b/Makefile
index e243e6f..7b49ef5 100644
--- a/Makefile
+++ b/Makefile
@@ -56,7 +56,7 @@ INSTALL_FILE = $(INSTALL) -p -m 644
INSTALL_LIB = $(INSTALL) -p -m 644 -s
INSTALL_DIR = $(INSTALL) -p -m 755 -d
-CFLAGS = -DPD -I$(PD_PATH)/src -Wall -W -Wno-unused -g
+CFLAGS = -DPD -DLIBRARY_VERSION=\"$(LIBRARY_VERSION)\" -I$(PD_PATH)/src -Wall -W -Wno-unused -g
LDFLAGS =
LIBS =
ALLSOURCES := $(SOURCES) $(SOURCES_android) $(SOURCES_cygwin) $(SOURCES_macosx) \
diff --git a/iemnet.c b/iemnet.c
index b135c23..5922f29 100644
--- a/iemnet.c
+++ b/iemnet.c
@@ -90,8 +90,12 @@ static int iemnet__nametaken(const char*namestring) {
int iemnet__register(const char*name) {
if(iemnet__nametaken(name))return 0;
- post("iemnet: networking with Pd :: %s", name);
- post(" (c) 2010 IOhannes m zmoelnig, IEM");
+ post("iemnet - networking with Pd: [%s]", name);
+#ifdef LIBRARY_VERSION
+ post(" version "LIBRARY_VERSION"");
+#endif
+ post(" compiled on "__DATE__" at " __TIME__"");
+ post(" copyright (c) 2010 IOhannes m zmoelnig, IEM");
post(" based on mrpeach/net, based on maxlib");
return 1;
}