diff options
author | Egbert Eich <eich@suse.de> | 2004-05-24 19:06:59 +0000 |
---|---|---|
committer | Egbert Eich <eich@suse.de> | 2004-05-24 19:06:59 +0000 |
commit | e8571878caa5d35f712e158a45391584da3d5e47 (patch) | |
tree | c469943e590ce4c62639b18ede82c21cda17e36c /read.c | |
parent | 417d53e38e84d63dfa2705f41d46ec1df777a8ad (diff) |
Fix build glitches when building modules independently using Imake.sco_port_update-baserel-0-6-1lg3d-rel-0-7-0lg3d-rel-0-6-2lg3d-baseXORG-6_8_99_901XORG-6_8_99_900XORG-6_8_99_9XORG-6_8_99_8XORG-6_8_99_7XORG-6_8_99_6XORG-6_8_99_5XORG-6_8_99_4XORG-6_8_99_3XORG-6_8_99_2XORG-6_8_99_16XORG-6_8_99_15XORG-6_8_99_14XORG-6_8_99_13XORG-6_8_99_12XORG-6_8_99_11XORG-6_8_99_10XORG-6_8_99_1XORG-6_8_2XORG-6_8_1_904XORG-6_8_1_903XORG-6_8_1_902XORG-6_8_1_901XORG-6_8_1XORG-6_8_0XORG-6_7_99_904XORG-6_7_99_903XORG-6_7_99_902XORG-6_7_99_901XORG-6_7_99_2XORG-6_7_99_1
Diffstat (limited to 'read.c')
-rw-r--r-- | read.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $XdotOrg$ */ +/* $XdotOrg: xc/programs/fonttosfnt/read.c,v 1.2 2004/04/23 19:54:32 eich Exp $ */ /* Copyright (c) 2002 by Juliusz Chroboczek @@ -20,7 +20,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/* $XdotOrg$ */ +/* $XdotOrg: xc/programs/fonttosfnt/read.c,v 1.2 2004/04/23 19:54:32 eich Exp $ */ /* $XFree86: xc/programs/fonttosfnt/read.c,v 1.5 2003/12/19 02:05:39 dawes Exp $ */ #include <stdio.h> @@ -30,7 +30,7 @@ THE SOFTWARE. #include FT_BDF_H #include "X11/Xos.h" #include "fonttosfnt.h" -#include "fontenc.h" +#include "X11/fonts/fontenc.h" #define FLOOR2(x, y) ((x) >= 0 ? (x) / (y) : -(((-(x)) + (y) - 1) / (y))) #define CEIL2(x, y) (FLOOR2((x) + (y) - 1, (y))) |