From d13da71edce4b913736c1e752a211ae20c193292 Mon Sep 17 00:00:00 2001 From: Bryan Jurish Date: Sat, 29 Nov 2008 23:22:39 +0000 Subject: + 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 --- gfsm/src/gfsm-help.pd | 4 +++- gfsm/src/noconfig.h | 42 ++++++++++++++++++++++++++++++++++++++++++ gfsm/src/pd_gfsm.c | 5 +++-- 3 files changed, 48 insertions(+), 3 deletions(-) (limited to 'gfsm/src') 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 ; +#X text 138 257 Bryan Jurish ; #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 header file. */ +#undef HAVE_DLFCN_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_INTTYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_MEMORY_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDINT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRINGS_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRING_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_STAT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_TYPES_H + +/* Define to 1 if you have the 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 * 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(); -- cgit v1.2.1