summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormjflick <mjflick>2004-05-25 06:13:22 +0000
committermjflick <mjflick>2004-05-25 06:13:22 +0000
commit5a1af6cff5aae1c2d462612c2ad36eedde78d104 (patch)
tree8547fb8afe72ab21efeee3029a9f84d965ef7a64
parent82ba51148809a7b5cfb0716b37e5ec82d616b80d (diff)
downloadfontutils-5a1af6cff5aae1c2d462612c2ad36eedde78d104.tar.gz
removed foreign kpathsea path(s)
-rw-r--r--lib/concatn.c4
-rw-r--r--lib/dir.c8
-rw-r--r--lib/extend-fname.c2
-rw-r--r--lib/find-suffix.c4
-rw-r--r--lib/font.c7
-rw-r--r--lib/hash.c6
-rw-r--r--lib/identity.c6
-rw-r--r--lib/integer-ok.c2
-rw-r--r--lib/libfile.c4
-rw-r--r--lib/make-prefix.c2
-rw-r--r--lib/pathsrch.c4
-rw-r--r--lib/str-lcase.c2
-rw-r--r--lib/str-to-bit.c2
13 files changed, 27 insertions, 26 deletions
diff --git a/lib/concatn.c b/lib/concatn.c
index 73f7d26..8836357 100644
--- a/lib/concatn.c
+++ b/lib/concatn.c
@@ -16,9 +16,9 @@ You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-#include <kpathsea/config.h>
+#include "config.h"
-#include <kpathsea/concatn.h>
+#include "concatn.h"
/* OK, it would be epsilon more efficient to compute the total length
diff --git a/lib/dir.c b/lib/dir.c
index 1ca64ae..0cd5249 100644
--- a/lib/dir.c
+++ b/lib/dir.c
@@ -16,11 +16,13 @@ You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+
#include "config.h"
-#include <kpathsea/c-dir.h>
-#include <kpathsea/c-stat.h>
-#include <kpathsea/hash.h>
+#include "c-dir.h"
+#include "c-stat.h"
+#include "hash.h"
+#include "lib.h"
/* Return true if FN is a directory or a symlink to a directory,
diff --git a/lib/extend-fname.c b/lib/extend-fname.c
index 98d118c..6744674 100644
--- a/lib/extend-fname.c
+++ b/lib/extend-fname.c
@@ -16,7 +16,7 @@ You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-#include <kpathsea/config.h>
+#include "config.h"
/* We may or may not return NAME. It's up to the caller not to assume
diff --git a/lib/find-suffix.c b/lib/find-suffix.c
index 9774713..cb0f9cf 100644
--- a/lib/find-suffix.c
+++ b/lib/find-suffix.c
@@ -16,9 +16,9 @@ You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-#include <kpathsea/config.h>
+#include "config.h"
-#include <kpathsea/c-pathch.h>
+#include "c-pathch.h"
/* Return pointer to first character after `.' in last directory element
diff --git a/lib/font.c b/lib/font.c
index e2b9a71..b85a8d7 100644
--- a/lib/font.c
+++ b/lib/font.c
@@ -18,10 +18,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "config.h"
-#include <kpathsea/tex-file.h>
-#include <kpathsea/pathsearch.h>
-#include <kpathsea/paths.h>
-#include <kpathsea/c-ctype.h>
+#include "tex-file.h"
+#include "paths.h"
+#include "c-ctype.h"
#include "filename.h"
#include "font.h"
diff --git a/lib/hash.c b/lib/hash.c
index f6450b6..69329cf 100644
--- a/lib/hash.c
+++ b/lib/hash.c
@@ -16,10 +16,10 @@ You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-#include <kpathsea/config.h>
+#include "config.h"
-#include <kpathsea/hash.h>
-#include <kpathsea/str-list.h>
+#include "hash.h"
+#include "str-list.h"
/* The hash function. We go for simplicity here. */
diff --git a/lib/identity.c b/lib/identity.c
index ffe0e1d..1412860 100644
--- a/lib/identity.c
+++ b/lib/identity.c
@@ -17,9 +17,9 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <stdio.h>
-#include <kpathsea/c-proto.h>
-#include <kpathsea/lib.h>
-#include <kpathsea/progname.h>
+#include "c-proto.h"
+#include "lib.h"
+#include "progname.h"
/* Return `hostname:pid' as a string. */
diff --git a/lib/integer-ok.c b/lib/integer-ok.c
index 5af9214..eced4c8 100644
--- a/lib/integer-ok.c
+++ b/lib/integer-ok.c
@@ -18,7 +18,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "config.h"
-#include <kpathsea/c-ctype.h>
+#include "c-ctype.h"
boolean
diff --git a/lib/libfile.c b/lib/libfile.c
index 7ce3633..9371779 100644
--- a/lib/libfile.c
+++ b/lib/libfile.c
@@ -19,8 +19,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "config.h"
#include "paths.h"
-#include <kpathsea/c-ctype.h>
-#include <kpathsea/line.h>
+#include "c-ctype.h"
+#include "line.h"
#include "libfile.h"
#include "pathsrch.h"
diff --git a/lib/make-prefix.c b/lib/make-prefix.c
index fe4fcd4..9a454aa 100644
--- a/lib/make-prefix.c
+++ b/lib/make-prefix.c
@@ -18,7 +18,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "config.h"
-#include <kpathsea/concatn.h>
+#include "concatn.h"
string
diff --git a/lib/pathsrch.c b/lib/pathsrch.c
index e513df5..505e85f 100644
--- a/lib/pathsrch.c
+++ b/lib/pathsrch.c
@@ -22,13 +22,13 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "config.h"
-#include <kpathsea/c-stat.h>
+#include "c-stat.h"
#include "c-pathch.h"
#include "c-namemx.h"
#include "c-pathmx.h"
#include "paths.h"
-#include <kpathsea/c-ctype.h>
+#include "c-ctype.h"
#if !defined (DOS) && !defined (VMS) && !defined (VMCMS)
#include <pwd.h>
#endif
diff --git a/lib/str-lcase.c b/lib/str-lcase.c
index 0c21a4c..f8a272f 100644
--- a/lib/str-lcase.c
+++ b/lib/str-lcase.c
@@ -20,7 +20,7 @@ Cambridge, MA 02139, USA. */
#include "config.h"
-#include <kpathsea/c-ctype.h>
+#include "c-ctype.h"
#include "str-lcase.h"
diff --git a/lib/str-to-bit.c b/lib/str-to-bit.c
index 83ffa42..634e472 100644
--- a/lib/str-to-bit.c
+++ b/lib/str-to-bit.c
@@ -18,7 +18,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "config.h"
-#include <kpathsea/c-ctype.h>
+#include "c-ctype.h"
#include "font.h"