aboutsummaryrefslogtreecommitdiff
path: root/src/zexy.h
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-04-12 12:01:47 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-04-12 12:01:47 +0000
commit9ede211655cfec7fc3a7245b8e93409634580787 (patch)
treedc62fc89810549fac998351f39a277924daee19b /src/zexy.h
parent9334a4c6d22b4c02c3c14832e85b916503b80c66 (diff)
use !ZEXY_LIBRARY instead of SINGLE_EXTERNALS to differentiate between library-built and single-external built
svn path=/trunk/externals/zexy/; revision=2733
Diffstat (limited to 'src/zexy.h')
-rw-r--r--src/zexy.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/zexy.h b/src/zexy.h
index 7d6a2cb..cbfe00a 100644
--- a/src/zexy.h
+++ b/src/zexy.h
@@ -58,18 +58,20 @@ typedef struct _mypdlist
t_atom *x_list;
} t_mypdlist;
-#ifdef SINGLE_EXTERNALS
+#ifndef ZEXY_LIBRARY
static void zexy_register(char*object){
if(object!=0){
- post("%s: part of the zexy external "VERSION"", object);
- post("\t (l) forum::für::umläute");
- post("\t IOhannes m zmölnig @ IEM");
- post("\t compiled: "__DATE__" ");
+ post("[%s]", object);
+ post("\tpart of zexy-%s", VERSION);
+ post("\tCopyright (l) IOhannes m zmölnig, 1999-2005");
+ post("\tforum::für::umläute");
+ post("\tIEM");
+ post("\tcompiled: "__DATE__" ");
}
}
#else
static void zexy_register(char*object){}
-#endif /* SINGLE_EXTERNALS */
+#endif /* ZEXY_LIBRARY */
#endif /* INCLUDE_ZEXY_H__ */