From 7fe4faa796d3393f6a806c3ebb56c0a2792c1144 Mon Sep 17 00:00:00 2001 From: Jay Freeman Date: Wed, 2 Jan 2008 02:54:43 +0000 Subject: Now serving 100 packages, fixed gzip priority/dependents, and moved subversion to versioning. git-svn-id: http://svn.telesphoreo.org/trunk@8 514c082c-b64e-11dc-b46d-3d985efe055d --- data/dict/function.diff | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 data/dict/function.diff (limited to 'data/dict/function.diff') diff --git a/data/dict/function.diff b/data/dict/function.diff new file mode 100644 index 000000000..779cff617 --- /dev/null +++ b/data/dict/function.diff @@ -0,0 +1,39 @@ +diff -r -u dictd-1.9.9/libmaa/parse.c dictd-1.9.9+iPhone/libmaa/parse.c +--- dictd-1.9.9/libmaa/parse.c 2002-08-02 19:43:15.000000000 +0000 ++++ dictd-1.9.9+iPhone/libmaa/parse.c 2008-01-01 23:41:00.000000000 +0000 +@@ -75,7 +75,7 @@ + + if (!cpp) { + if ((cpp = getenv( "KHEPERA_CPP" ))) { +- PRINTF(MAA_PARSE,(__FUNCTION__ ": Using KHEPERA_CPP from %s\n",cpp)); ++ PRINTF(MAA_PARSE,("%s: Using KHEPERA_CPP from %s\n",__FUNCTION__,cpp)); + } + + /* Always look for gcc's cpp first, since +@@ -86,7 +86,7 @@ + + if (fread( buf, 1, 1023, tmp ) > 0) { + if ((t = strchr( buf, '\n' ))) *t = '\0'; +- PRINTF(MAA_PARSE,(__FUNCTION__ ": Using GNU cpp from %s\n",buf)); ++ PRINTF(MAA_PARSE,("%s: Using GNU cpp from %s\n",__FUNCTION__,buf)); + cpp = str_find( buf ); + extra_options = "-nostdinc -nostdinc++"; + } +@@ -103,7 +103,7 @@ + for (pt = cpps; **pt; pt++) { + if (!access( *pt, X_OK )) { + PRINTF(MAA_PARSE, +- (__FUNCTION__ ": Using system cpp from %s\n",*pt)); ++ ("%s: Using system cpp from %s\n",__FUNCTION__,*pt)); + cpp = *pt; + break; + } +@@ -123,7 +123,7 @@ + sprintf( buffer, "%s -I. %s %s 2>/dev/null", cpp, + _prs_cpp_options ? _prs_cpp_options : "", filename ); + +- PRINTF(MAA_PARSE,(__FUNCTION__ ": %s\n",buffer)); ++ PRINTF(MAA_PARSE,("%s: %s\n",__FUNCTION__,buffer)); + if (!(yyin = popen( buffer, "r" ))) + err_fatal_errno( __FUNCTION__, + "Cannot open \"%s\" for read\n", filename ); -- cgit v1.2.3