diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2007-03-14 10:55:35 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2007-03-14 10:55:35 +0000 |
commit | 25cd1d868382c0d0e605523df6956b528bcaef2e (patch) | |
tree | 71d862de84fb334c793577cce657939a46439f8b | |
parent | ea84faed56e13492aecaec7c521beb4fc949f42d (diff) |
updated everything a bit...
svn path=/trunk/externals/zexy/; revision=7487
-rw-r--r-- | BUGS.txt | 4 | ||||
-rw-r--r-- | README.txt | 11 | ||||
-rw-r--r-- | pd-zexy.info | 2 | ||||
-rw-r--r-- | z_install.bat | 11 |
4 files changed, 22 insertions, 6 deletions
@@ -1,7 +1,9 @@ [drip] - sometimes crashes with small delays . according to the backtrace this should be a memory corruption - . (actually the crashing bug was buggy by design and i haven't got a simple bug-patch yet) + . (actually the crashing patch was buggy by design and i haven't got a simple bug-patch yet) + = UNREPRODUCIBLE [s2l] - numerically looking sub-symbols are converted wrongly to floats: e.g. "192.168.0.1" -> 192,168 + + FIXED @@ -39,6 +39,14 @@ installation:: linux :
------------------------------------------------------------------------------
+
+short:
+#1> cd src/
+#2> make
+#3> make install
+(this will automatically call autoconf and ./configure if needed (see "long"))
+
+long:
#1> cd src/
#2> autoconf
#3> ./configure
@@ -93,7 +101,6 @@ to compile: the "unit-at-a-time" optimization (which gets enabled by "-O2")
is the cause of this problem. turning it off might help
-
irix :
------------------------------------------------------------------------------
@@ -120,7 +127,7 @@ or load it via the object "zexy" at runtime authors::
==============================================================================
this software is
-copyleft 1999-2005 by iohannes m zmoelnig <zmoelnig@iem.kug.ac.at>
+copyleft 1999-2007 by IOhannes m zmoelnig <zmoelnig [at] iem [dot] at>
with some contributions by winfried ritsch, guenter geiger, miller.s.puckette
and surely some others
diff --git a/pd-zexy.info b/pd-zexy.info index 5663418..f7b897e 100644 --- a/pd-zexy.info +++ b/pd-zexy.info @@ -1,6 +1,6 @@ Title Zexy for Pd Version MSP standard paths -Description iohannes m zmoelnig's zexy +Description IOhannes m zmoelnig's zexy DefaultLocation /usr/local/lib DeleteWarning diff --git a/z_install.bat b/z_install.bat index b0faa49..3f39e46 100644 --- a/z_install.bat +++ b/z_install.bat @@ -11,6 +11,13 @@ REM which pd-version do we have ? set PDVERSION=0.38
+
+
+
+
+
+
+
REM ==============================================
REM do not edit below this line !!!
REM ==============================================
@@ -30,7 +37,7 @@ pause IF NOT EXIST %PDPATH%\bin\pd.exe goto location_error
set BINPATH=extra
-set REFPATH=extra\help-zexy
+set REFPATH=extra\zexy
if %PDVERSION% LSS 0.37 set REFPATH=doc\5.reference\zexy
@@ -39,7 +46,7 @@ copy zexy.dll %PDPATH%\%BINPATH% > tempInstall.trash echo copying help files
mkdir %PDPATH%\%REFPATH%
-copy examples\* %PDPATH%\%REFPATH% > tempInstall.trash
+copy reference\* %PDPATH%\%REFPATH% > tempInstall.trash
echo copying abstractions
copy abs\*.pd %PDPATH%\%BINPATH% > tempInstall.trash
|