diff options
author | Bryan Jurish <mukau@users.sourceforge.net> | 2008-11-29 23:22:39 +0000 |
---|---|---|
committer | Bryan Jurish <mukau@users.sourceforge.net> | 2008-11-29 23:22:39 +0000 |
commit | d13da71edce4b913736c1e752a211ae20c193292 (patch) | |
tree | 57b0c3884b5d465259d21906f89e4ec5635da9d3 /gfsm/src | |
parent | 2072ea2ef54b92775efc83c82d9a4b7a8ac4d616 (diff) |
+ added local copy of gfsm source tree in gfsm/ subdir (for pd-extended auto-builds)
+ external builds now use static local libgfsm by default (insulates vs. API change, etc.)
svn path=/trunk/externals/moocow/; revision=10403
Diffstat (limited to 'gfsm/src')
-rw-r--r-- | gfsm/src/gfsm-help.pd | 4 | ||||
-rw-r--r-- | gfsm/src/noconfig.h | 42 | ||||
-rw-r--r-- | gfsm/src/pd_gfsm.c | 5 |
3 files changed, 48 insertions, 3 deletions
diff --git a/gfsm/src/gfsm-help.pd b/gfsm/src/gfsm-help.pd index ca0aa18..5a1edfa 100644 --- a/gfsm/src/gfsm-help.pd +++ b/gfsm/src/gfsm-help.pd @@ -1,6 +1,6 @@ #N canvas 0 0 436 289 10; #X obj 66 7 gfsm; -#X text 126 241 Bryan Jurish <moocow@ling.uni-potsdam.de>; +#X text 138 257 Bryan Jurish <moocow@ling.uni-potsdam.de>; #X text 21 43 EXTERNALS:; #X obj 41 72 gfsm_alphabet; #X obj 41 98 gfsm_automaton; @@ -13,3 +13,5 @@ #X text 99 8 : finite state machine external library; #X obj 40 150 gfsm_markov; #X text 161 151 trainable Markov chain; +#X text 38 227 http://www.ling.uni-potsdam.de/~moocow/projects/gfsm +; diff --git a/gfsm/src/noconfig.h b/gfsm/src/noconfig.h index 5fc7800..3a53581 100644 --- a/gfsm/src/noconfig.h +++ b/gfsm/src/noconfig.h @@ -1,5 +1,35 @@ /* src/config.h.in. Generated from configure.in by autoheader. */ +/* Define to 1 if you have the <dlfcn.h> header file. */ +#undef HAVE_DLFCN_H + +/* Define to 1 if you have the <inttypes.h> header file. */ +#undef HAVE_INTTYPES_H + +/* Define to 1 if you have the <memory.h> header file. */ +#undef HAVE_MEMORY_H + +/* Define to 1 if you have the <stdint.h> header file. */ +#undef HAVE_STDINT_H + +/* Define to 1 if you have the <stdlib.h> header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the <strings.h> header file. */ +#undef HAVE_STRINGS_H + +/* Define to 1 if you have the <string.h> header file. */ +#undef HAVE_STRING_H + +/* Define to 1 if you have the <sys/stat.h> header file. */ +#undef HAVE_SYS_STAT_H + +/* Define to 1 if you have the <sys/types.h> header file. */ +#undef HAVE_SYS_TYPES_H + +/* Define to 1 if you have the <unistd.h> header file. */ +#undef HAVE_UNISTD_H + /* Name of package */ #undef PACKAGE @@ -18,5 +48,17 @@ /* Define to the version of this package. */ #undef PACKAGE_VERSION +/* Date this external was configured */ +#undef PD_GFSM_DATE + +/* User who configured this external */ +#undef PD_GFSM_USER + +/* Which version of gfsm are we using? */ +#undef PD_GFSM_WHICH + +/* Define to 1 if you have the ANSI C header files. */ +#undef STDC_HEADERS + /* Version number of package */ #undef VERSION diff --git a/gfsm/src/pd_gfsm.c b/gfsm/src/pd_gfsm.c index 0659454..e74acec 100644 --- a/gfsm/src/pd_gfsm.c +++ b/gfsm/src/pd_gfsm.c @@ -3,7 +3,7 @@ * Author: Bryan Jurish <moocow@ling.uni-potsdam.de> * Description: finite state automata for Pd * - * Copyright (c) 2004-2006 Bryan Jurish. + * Copyright (c) 2004-2008 Bryan Jurish. * * For information on usage and redistribution, and for a DISCLAIMER OF ALL * WARRANTIES, see the file, "LICENSE.txt," in this distribution. @@ -72,7 +72,8 @@ void gfsm_setup(void) //-- banner post(""); post("gfsm: finite state machine externals v%s by Bryan Jurish", PACKAGE_VERSION); - //post("fsm: based on code by Helmut Schmid"); + post("gfsm: using " PD_GFSM_WHICH " libgfsm v%s", gfsm_version_string); + post("gfsm: compiled by " PD_GFSM_USER " on " PD_GFSM_DATE); //-- library pd_gfsm_alphabet_setup(); |