php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #3773 ImageTTFText not compiling in
Submitted: 2000-03-08 13:30 UTC Modified: 2002-10-01 13:41 UTC
From: Frank at Kujawski dot Org Assigned:
Status: Wont fix Package: Installation problem
PHP Version: 3.0.15 OS: Linux
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: Frank at Kujawski dot Org
New email:
PHP Version: OS:

 

 [2000-03-08 13:30 UTC] Frank at Kujawski dot Org
I could not compile in ImageTTFText using configure.
I am using RedHat 6.1 with freetype-devel-1.2-7

The only way I could get it to compile was to change two files after running configure.

functions/gdttf.c:
  #if HAVE_LIBFREETYPE
  #include <truetype.h>
  #else
  #include <freetype.h>
  #endif
to
  #if HAVE_LIBFREETYPE
  #include <freetype.h>
  #else
  #include <truetype.h>
  #endif

config.h.in:
  #define HAVE_LIBTTF 0
  #define HAVE_LIBFREETYPE 0
to
  #define HAVE_LIBTTF 0
  #define HAVE_LIBFREETYPE 1

I have the file called freetype.h but not truetype.h
(I am sorry I cannot debug configure)

		Frank Kujawski

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-10-01 13:41 UTC] hholzgra@php.net
We are sorry, but can not support PHP 3 related problems anymore.
Momentum is gathering for PHP 5, and we think supporting PHP 3 will
lead to a waste of resources which we want to put into getting PHP 5
ready. Ofcourse PHP 4 will will continue to be supported for the
forseeable future.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 06:01:29 2024 UTC