summaryrefslogtreecommitdiff
path: root/pango/mini-fribidi/fribidi.patch
blob: e8b1cdca791e7c0067c52cf380bbf581f9557518 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
Only in /usr/src/fribidi/: acconfig.h
Only in /usr/src/fribidi/: acinclude.m4
Only in /usr/src/fribidi/: aclocal.m4
Only in /usr/src/fribidi/: ANNOUNCE
Only in /usr/src/fribidi/: AUTHORS
Only in /usr/src/fribidi/: autom4te.cache
Only in /usr/src/fribidi/: bootstrap
Only in /usr/src/fribidi/: ChangeLog
Only in /usr/src/fribidi/: config.guess
Only in /usr/src/fribidi/: config.h
Only in /usr/src/fribidi/: config.h.in
Only in /usr/src/fribidi/: config.log
Only in /usr/src/fribidi/: config.status
Only in /usr/src/fribidi/: config.sub
Only in /usr/src/fribidi/: configure
Only in /usr/src/fribidi/: configure.in
Only in /usr/src/fribidi/: conformance
Only in /usr/src/fribidi/: COPYING
Common subdirectories: /usr/src/fribidi/CVS and mini-fribidi/CVS
Only in mini-fribidi/: .cvsignore
Only in /usr/src/fribidi/: depcomp
Only in /usr/src/fribidi/: .deps
Only in /usr/src/fribidi/: fribidi_benchmark.c
diff -bu /usr/src/fribidi/fribidi.c mini-fribidi/fribidi.c
--- /usr/src/fribidi/fribidi.c	2002-09-13 16:26:42.000000000 -0400
+++ mini-fribidi/fribidi.c	2003-07-14 18:21:27.000000000 -0400
@@ -21,27 +21,17 @@
  * <fwpg@sharif.edu>.
  */
 
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-#include "fribidi.h"
-#include "fribidi_mem.h"
-#ifdef DEBUG
-#include <stdio.h>
-#endif
+#include <glib.h>
+#include "pango/pango-utils.h"
+#include "fribidi_types.h"
 
-/* Redefine FRIBIDI_CHUNK_SIZE in config.h to override this. */
-#ifndef FRIBIDI_CHUNK_SIZE
-#ifdef MEM_OPTIMIZED
-#define FRIBIDI_CHUNK_SIZE 16
-#else
-#define FRIBIDI_CHUNK_SIZE 128
-#endif
+#ifdef DEBUG
+static gboolean fribidi_debug = FALSE;
 #endif
 
 #ifdef DEBUG
-#define DBG(s) do { if (fribidi_debug_status(fribidienv)) { fprintf(stderr, s); } } while (0)
-#define DBG2(s, t) do { if (fribidi_debug_status(fribidienv)) { fprintf(stderr, s, t); } } while (0)
+#define DBG(s) do { if (fribidi_debug) { fprintf(stderr, s); } } while (0)
+#define DBG2(s, t) do { if (fribidi_debug) { fprintf(stderr, s, t); } } while (0)
 #else
 #define DBG(s)
 #define DBG2(s, t)
@@ -51,7 +41,7 @@
 char fribidi_char_from_type (FriBidiCharType c);
 #endif
 
-#define MAX(a,b) ((a) > (b) ? (a) : (b))
+#define UNI_MAX_BIDI_LEVEL 61
 
 /*======================================================================
  * Typedef for the run-length list.
@@ -79,63 +69,12 @@
 }
 LevelInfo;
 
-
-static void
-bidi_string_reverse (FriBidiChar *str,
-		     FriBidiStrIndex len)
-{
-  FriBidiStrIndex i;
-  for (i = 0; i < len / 2; i++)
-    {
-      FriBidiChar tmp = str[i];
-      str[i] = str[len - 1 - i];
-      str[len - 1 - i] = tmp;
-    }
-}
-
-static void
-index_array_reverse (FriBidiStrIndex *arr,
-		     FriBidiStrIndex len)
-{
-  FriBidiStrIndex i;
-  for (i = 0; i < len / 2; i++)
-    {
-      FriBidiStrIndex tmp = arr[i];
-      arr[i] = arr[len - 1 - i];
-      arr[len - 1 - i] = tmp;
-    }
-}
-
-#ifndef USE_SIMPLE_MALLOC
-static TypeLink *free_type_links = NULL;
-#endif
-
 static TypeLink *
-new_type_link (FriBidiEnv *fribidienv)
+new_type_link ()
 {
   TypeLink *link;
 
-#ifdef USE_SIMPLE_MALLOC
-  link = (TypeLink *) fribidi_malloc (fribidienv, sizeof (TypeLink));
-#else /* !USE_SIMPLE_MALLOC */
-  if (free_type_links)
-    {
-      link = free_type_links;
-      free_type_links = free_type_links->next;
-    }
-  else
-    {
-      static FriBidiMemChunk *mem_chunk = NULL;
-
-      if (!mem_chunk)
-	mem_chunk = fribidi_mem_chunk_create (fribidienv, TypeLink,
-					      FRIBIDI_CHUNK_SIZE,
-					      FRIBIDI_ALLOC_ONLY);
-
-      link = fribidi_chunk_new (fribidienv, TypeLink,
-				mem_chunk);
-    }
-#endif /* !USE_SIMPLE_MALLOC */
+  link = (TypeLink *) g_malloc (sizeof (TypeLink));
 
   link->len = 0;
   link->pos = 0;
@@ -146,15 +85,9 @@
 }
 
 static void
-free_type_link (FriBidiEnv *fribidienv,
-		TypeLink *link)
+free_type_link (TypeLink *link)
 {
-#ifdef USE_SIMPLE_MALLOC
-  fribidi_free (fribidienv, link);
-#else
-  link->next = free_type_links;
-  free_type_links = link;
-#endif
+  g_free (link);
 }
 
 #define FRIBIDI_ADD_TYPE_LINK(p,q) \
@@ -166,8 +99,7 @@
 	} while (0)
 
 static TypeLink *
-run_length_encode_types (FriBidiEnv *fribidienv,
-			 FriBidiCharType *char_type,
+run_length_encode_types (FriBidiCharType *char_type,
 			 FriBidiStrIndex type_len)
 {
   TypeLink *list, *last, *link;
@@ -175,7 +107,7 @@
   FriBidiStrIndex i;
 
   /* Add the starting link */
-  list = new_type_link (fribidienv);
+  list = new_type_link ();
   list->type = FRIBIDI_TYPE_SOT;
   list->level = FRIBIDI_LEVEL_START;
   last = list;
@@ -184,14 +116,14 @@
   for (i = 0; i < type_len; i++)
     if (char_type[i] != last->type)
       {
-	link = new_type_link (fribidienv);
+        link = new_type_link ();
 	link->type = char_type[i];
 	link->pos = i;
 	FRIBIDI_ADD_TYPE_LINK (last, link);
       }
 
   /* Add the ending link */
-  link = new_type_link (fribidienv);
+  link = new_type_link ();
   link->type = FRIBIDI_TYPE_EOT;
   link->level = FRIBIDI_LEVEL_END;
   link->pos = type_len;
@@ -205,22 +137,21 @@
    the override_list.
 */
 static void
-init_list (FriBidiEnv *fribidienv,
-	   TypeLink **start,
+init_list (TypeLink **start,
 	   TypeLink **end)
 {
   TypeLink *list;
   TypeLink *link;
 
   /* Add the starting link */
-  list = new_type_link (fribidienv);
+  list = new_type_link ();
   list->type = FRIBIDI_TYPE_SOT;
   list->level = FRIBIDI_LEVEL_START;
   list->len = 0;
   list->pos = 0;
 
   /* Add the ending link */
-  link = new_type_link (fribidienv);
+  link = new_type_link ();
   link->type = FRIBIDI_TYPE_EOT;
   link->level = FRIBIDI_LEVEL_END;
   link->len = 0;
@@ -267,8 +198,7 @@
    TBD: use some explanatory names instead of p, q, ...
 */
 static void
-override_list (FriBidiEnv *fribidienv,
-	       TypeLink *base,
+override_list (TypeLink *base,
 	       TypeLink *over)
 {
   TypeLink *p = base, *q, *r, *s, *t;
@@ -283,7 +213,7 @@
 	{
 	  t = q;
 	  q = q->next;
-	  free_type_link (fribidienv, t);
+          free_type_link (t);
 	  continue;
 	}
       pos = q->pos;
@@ -304,7 +234,7 @@
 	    r = r->next;
 	  else
 	    {
-	      r = new_type_link (fribidienv);
+              r = new_type_link ();
 	      *r = *p;
 	      if (r->next)
 		{
@@ -320,7 +250,7 @@
 	    {
 	      t = p;
 	      p = p->prev;
-	      free_type_link (fribidienv, t);
+              free_type_link (t);
 	    }
 	  else
 	    p->len = pos - p->pos;
@@ -346,7 +276,7 @@
 	    {
 	      t = s;
 	      s = s->next;
-	      free_type_link (fribidienv, t);
+              free_type_link (t);
 	    }
 	}
       /* before updating the next and prev links to point to the inserted q,
@@ -368,31 +298,28 @@
 #define RL_LEVEL(list) ((list)->level)
 
 static TypeLink *
-merge_with_prev (FriBidiEnv *fribidienv,
-		 TypeLink *second)
+merge_with_prev (TypeLink *second)
 {
   TypeLink *first = second->prev;
   first->next = second->next;
   first->next->prev = first;
   RL_LEN (first) += RL_LEN (second);
-  free_type_link (fribidienv, second);
+  free_type_link (second);
   return first;
 }
 
 static void
-compact_list (FriBidiEnv *fribidienv,
-	      TypeLink *list)
+compact_list (TypeLink *list)
 {
   if (list->next)
     for (list = list->next; list; list = list->next)
       if (RL_TYPE (list->prev) == RL_TYPE (list)
 	  && RL_LEVEL (list->prev) == RL_LEVEL (list))
-	list = merge_with_prev (fribidienv, list);
+        list = merge_with_prev (list);
 }
 
 static void
-compact_neutrals (FriBidiEnv *fribidienv,
-		  TypeLink *list)
+compact_neutrals (TypeLink *list)
 {
   if (list->next)
     {
@@ -404,7 +331,7 @@
 		(list->prev) == RL_TYPE (list)
 		|| (FRIBIDI_IS_NEUTRAL (RL_TYPE (list->prev))
 		    && FRIBIDI_IS_NEUTRAL (RL_TYPE (list))))))
-	    list = merge_with_prev (fribidienv, list);
+            list = merge_with_prev (list);
 	}
     }
 }
@@ -498,7 +425,6 @@
       ) \
     )
 
-
 /* Return the embedding direction of a link. */
 #define FRIBIDI_EMBEDDING_DIRECTION(list) \
     FRIBIDI_LEVEL_TO_DIR(RL_LEVEL(list))
@@ -572,17 +498,15 @@
   fprintf (stderr, "  Org. types : ");
   for (i = 0; str[i]; i++)
     fprintf (stderr, "%c",
-	     fribidi_char_from_type (fribidi_get_type (fribidienv, str[i])));
+	     fribidi_char_from_type (_pango_fribidi_get_type (str[i])));
   fprintf (stderr, "\n");
 }
 #endif
-
 /*======================================================================
  *  This function should follow the Unicode specification closely!
  *----------------------------------------------------------------------*/
 static void
-fribidi_analyse_string (FriBidiEnv *fribidienv,
-			/* input */
+fribidi_analyse_string (/* input */
 			const FriBidiChar *str,
 			FriBidiStrIndex len,
 			FriBidiCharType *pbase_dir,
@@ -601,18 +525,17 @@
   DBG ("  Determine character types\n");
   {
     FriBidiCharType *char_type =
-      (FriBidiCharType *) fribidi_malloc (fribidienv,
-					  len * sizeof (FriBidiCharType));
+      (FriBidiCharType *) g_malloc (len * sizeof (FriBidiCharType));
     for (i = 0; i < len; i++)
-      char_type[i] = fribidi_get_type (fribidienv, str[i]);
+      char_type[i] = _pango_fribidi_get_type (str[i]);
 
     /* Run length encode the character types */
-    type_rl_list = run_length_encode_types (fribidienv, char_type, len);
-    fribidi_free (fribidienv, char_type);
+    type_rl_list = run_length_encode_types (char_type, len);
+    g_free (char_type);
   }
   DBG ("  Determine character types, Done\n");
 
-  init_list (fribidienv, &explicits_list, &explicits_list_end);
+  init_list (&explicits_list, &explicits_list_end);
 
   /* Find base level */
   DBG ("  Finding the base level\n");
@@ -640,7 +563,7 @@
   DBG ("  Finding the base level, Done\n");
 
 #ifdef DEBUG
-  if (fribidi_debug_status (fribidienv))
+  if (fribidi_debug)
     {
       print_types_re (type_rl_list);
     }
@@ -667,9 +590,7 @@
     over_pushed = 0;
     first_interval = 0;
     status_stack =
-      (LevelInfo *) fribidi_malloc (fribidienv,
-				    sizeof (LevelInfo) * (UNI_MAX_BIDI_LEVEL +
-							  2));
+      (LevelInfo *) g_malloc (sizeof (LevelInfo) * (UNI_MAX_BIDI_LEVEL + 2));
 
     for (pp = type_rl_list->next; pp->next; pp = pp->next)
       {
@@ -733,7 +654,7 @@
     stack_size = 0;
     over_pushed = 0;
 
-    fribidi_free (fribidienv, status_stack);
+    g_free (status_stack);
   }
   /* X10. The remaining rules are applied to each run of characters at the
      same level. For each run, determine the start-of-level-run (sor) and
@@ -745,10 +666,10 @@
   /* Resolving Implicit Levels can be done out of X10 loop, so only change
      of Resolving Weak Types and Resolving Neutral Types is needed. */
 
-  compact_list (fribidienv, type_rl_list);
+  compact_list (type_rl_list);
 
 #ifdef DEBUG
-  if (fribidi_debug_status (fribidienv))
+  if (fribidi_debug)
     {
       print_types_re (type_rl_list);
       print_bidi_string (str);
@@ -761,7 +682,7 @@
   DBG ("Resolving weak types\n");
   {
     FriBidiCharType last_strong, prev_type_org;
-    fribidi_boolean w4;
+    gboolean w4;
 
     last_strong = base_dir;
 
@@ -787,7 +708,7 @@
 	if (this_type == FRIBIDI_TYPE_NSM)
 	  {
 	    if (RL_LEVEL (pp->prev) == RL_LEVEL (pp))
-	      pp = merge_with_prev (fribidienv, pp);
+              pp = merge_with_prev (pp);
 	    else
 	      RL_TYPE (pp) = prev_type;
 	    continue;		/* As we know the next condition cannot be true. */
@@ -810,7 +731,7 @@
     /* Resolving dependency of loops for rules W4 and W5, W5 may
        want to prevent W4 to take effect in the next turn, do this 
        through "w4". */
-    w4 = FRIBIDI_TRUE;
+    w4 = TRUE;
     /* Resolving dependency of loops for rules W4 and W5 with W7,
        W7 may change an EN to L but it sets the prev_type_org if needed,
        so W4 and W5 in next turn can still do their works. */
@@ -831,7 +752,7 @@
 	if (this_type == FRIBIDI_TYPE_AL)
 	  {
 	    RL_TYPE (pp) = FRIBIDI_TYPE_RTL;
-	    w4 = FRIBIDI_TRUE;
+            w4 = TRUE;
 	    prev_type_org = FRIBIDI_TYPE_ON;
 	    continue;
 	  }
@@ -848,7 +769,7 @@
 	    RL_TYPE (pp) = prev_type;
 	    this_type = RL_TYPE (pp);
 	  }
-	w4 = FRIBIDI_TRUE;
+        w4 = TRUE;
 
 	/* W5. A sequence of European terminators adjacent to European
 	   numbers changes to All European numbers. */
@@ -857,7 +778,7 @@
 		|| next_type == FRIBIDI_TYPE_EN))
 	  {
 	    RL_TYPE (pp) = FRIBIDI_TYPE_EN;
-	    w4 = FRIBIDI_FALSE;
+            w4 = FALSE;
 	    this_type = RL_TYPE (pp);
 	  }
 
@@ -877,10 +798,10 @@
       }
   }
 
-  compact_neutrals (fribidienv, type_rl_list);
+  compact_neutrals (type_rl_list);
 
 #ifdef DEBUG
-  if (fribidi_debug_status (fribidienv))
+  if (fribidi_debug)
     {
       print_resolved_levels (type_rl_list);
       print_resolved_types (type_rl_list);
@@ -909,10 +830,10 @@
       }
   }
 
-  compact_list (fribidienv, type_rl_list);
+  compact_list (type_rl_list);
 
 #ifdef DEBUG
-  if (fribidi_debug_status (fribidienv))
+  if (fribidi_debug)
     {
       print_resolved_levels (type_rl_list);
       print_resolved_types (type_rl_list);
@@ -945,10 +866,10 @@
       }
   }
 
-  compact_list (fribidienv, type_rl_list);
+  compact_list (type_rl_list);
 
 #ifdef DEBUG
-  if (fribidi_debug_status (fribidienv))
+  if (fribidi_debug)
     {
       print_bidi_string (str);
       print_resolved_levels (type_rl_list);
@@ -962,7 +883,7 @@
   {
     TypeLink *p;
 
-    override_list (fribidienv, type_rl_list, explicits_list);
+    override_list (type_rl_list, explicits_list);
     p = type_rl_list->next;
     if (p->level < 0)
       p->level = base_level;
@@ -972,7 +893,7 @@
   }
 
 #ifdef DEBUG
-  if (fribidi_debug_status (fribidienv))
+  if (fribidi_debug)
     {
       print_types_re (type_rl_list);
       print_resolved_levels (type_rl_list);
@@ -986,7 +907,7 @@
     TypeLink *p, *q, *list, *list_end;
 
     /* L1. Reset the embedding levels of some chars. */
-    init_list (fribidienv, &list, &list_end);
+    init_list (&list, &list_end);
     q = list_end;
     state = 1;
     pos = len - 1;
@@ -994,7 +915,7 @@
       {
 	/* if state is on at the very first of string, do this too. */
 	if (j >= 0)
-	  k = fribidi_get_type (fribidienv, str[j]);
+          k = _pango_fribidi_get_type (str[j]);
 	else
 	  k = FRIBIDI_TYPE_ON;
 	if (!state && FRIBIDI_IS_SEPARATOR (k))
@@ -1005,7 +926,7 @@
 	else if (state && !FRIBIDI_IS_EXPLICIT_OR_SEPARATOR_OR_BN_OR_WS (k))
 	  {
 	    state = 0;
-	    p = new_type_link (fribidienv);
+            p = new_type_link ();
 	    p->prev = p->next = (TypeLink *) NULL;
 	    p->pos = j + 1;
 	    p->len = pos - j;
@@ -1015,11 +936,11 @@
 	    q = p;
 	  }
       }
-    override_list (fribidienv, type_rl_list, list);
+    override_list (type_rl_list, list);
   }
 
 #ifdef DEBUG
-  if (fribidi_debug_status (fribidienv))
+  if (fribidi_debug)
     {
       print_types_re (type_rl_list);
       print_resolved_levels (type_rl_list);
@@ -1040,8 +961,7 @@
  *  fribidi_analyse_string(), after the list is not needed anymore.
  *----------------------------------------------------------------------*/
 static void
-free_rl_list (FriBidiEnv *fribidienv,
-	      TypeLink *type_rl_list)
+free_rl_list (TypeLink *type_rl_list)
 {
 
   TypeLink *pp;
@@ -1054,7 +974,6 @@
       return;
     }
 
-#ifdef USE_SIMPLE_MALLOC
   pp = type_rl_list;
   while (pp)
     {
@@ -1062,366 +981,55 @@
 
       p = pp;
       pp = pp->next;
-      free_type_link (fribidienv, p);
+      free_type_link (p);
     };
-#else
-  for (pp = type_rl_list->next; pp->next; pp = pp->next)
-    /* Nothing */ ;
-  pp->next = free_type_links;
-  free_type_links = type_rl_list;
-  type_rl_list = NULL;
-#endif
 
   DBG ("Leaving free_rl_list()\n");
   return;
 }
 
-
-/*======================================================================
- *  Here starts the exposed front end functions.
- *----------------------------------------------------------------------*/
-
-/*======================================================================
- *  fribidi_remove_bidi_marks() removes bidirectional marks, and returns
- *  the new length, updates each of other inputs if not NULL.
- *----------------------------------------------------------------------*/
-FRIBIDI_API FriBidiStrIndex
-fribidi_remove_bidi_marks (FriBidiEnv *fribidienv,
-			   FriBidiChar *str,
-			   FriBidiStrIndex length,
-			   FriBidiStrIndex *position_to_this_list,
-			   FriBidiStrIndex *position_from_this_list,
-			   FriBidiLevel *embedding_level_list)
-{
-  FriBidiStrIndex i, j;
-  fribidi_boolean private_from_this = FRIBIDI_FALSE;
-
-  DBG ("Entering fribidi_remove_bidi_marks()\n");
-
-  /* If to_this is to not null, we must have from_this as well. If it is
-     not given by the caller, we have to make a private instance of it. */
-  if (position_to_this_list && !position_from_this_list)
-    {
-      private_from_this = FRIBIDI_TRUE;
-      position_from_this_list =
-	(FriBidiStrIndex *) fribidi_malloc (fribidienv,
-					    sizeof (FriBidiStrIndex) *
-					    length);
-    }
-
-  j = 0;
-  for (i = 0; i < length; i++)
-    if (!FRIBIDI_IS_EXPLICIT (fribidi_get_type (fribidienv, str[i]))
-	&& str[i] != UNI_LRM && str[i] != UNI_RLM)
-      {
-	str[j] = str[i];
-	if (embedding_level_list)
-	  embedding_level_list[j] = embedding_level_list[i];
-	if (position_from_this_list)
-	  position_from_this_list[j] = position_from_this_list[i];
-	j++;
-      }
-
-  /* Convert the from_this list to to_this */
-  if (position_to_this_list)
-    {
-      DBG ("  Converting from_this list to to_this\n");
-      for (i = 0; i < length; i++)
-	position_to_this_list[i] = -1;
-      for (i = 0; i < length; i++)
-	position_to_this_list[position_from_this_list[i]] = i;
-      DBG ("  Converting from_this list to to_this, Done\n");
-    }
-
-  if (private_from_this)
-    fribidi_free (fribidienv, position_from_this_list);
-
-  DBG ("Leaving fribidi_remove_bidi_marks()\n");
-  return j;
-}
-
-
-/*======================================================================
- *  fribidi_log2vis() calls the function_analyse_string() and then
- *  does reordering and fills in the output strings.
- *----------------------------------------------------------------------*/
-FRIBIDI_API fribidi_boolean
-fribidi_log2vis (FriBidiEnv *fribidienv,
-		 /* input */
-		 const FriBidiChar *str,
-		 FriBidiStrIndex len,
-		 FriBidiCharType *pbase_dir,
-		 /* output */
-		 FriBidiChar *visual_str,
-		 FriBidiStrIndex *position_L_to_V_list,
-		 FriBidiStrIndex *position_V_to_L_list,
-		 FriBidiLevel *embedding_level_list)
-{
-  TypeLink *type_rl_list, *pp = (TypeLink *) NULL;
-  FriBidiLevel max_level;
-  fribidi_boolean private_V_to_L = FRIBIDI_FALSE;
-
-  DBG ("Entering fribidi_log2vis()\n");
-
-  if (len == 0)
-    {
-      DBG ("Leaving fribidi_log2vis()\n");
-      return FRIBIDI_TRUE;
-    }
-
-  /* If l2v is to be calculated we must have v2l as well. If it is not
-     given by the caller, we have to make a private instance of it. */
-  if (position_L_to_V_list && !position_V_to_L_list)
-    {
-      private_V_to_L = FRIBIDI_TRUE;
-      position_V_to_L_list =
-	(FriBidiStrIndex *) fribidi_malloc (fribidienv,
-					    sizeof (FriBidiStrIndex) * len);
-    }
-
-  if (len > FRIBIDI_MAX_STRING_LENGTH && position_V_to_L_list)
-    {
-#ifdef DEBUG
-      fprintf (stderr, "%s: cannot handle strings > %ld characters\n",
-	       FRIBIDI_PACKAGE, (long) FRIBIDI_MAX_STRING_LENGTH);
-#endif
-      return FRIBIDI_FALSE;
-    }
-  fribidi_analyse_string (fribidienv, str, len, pbase_dir,
-			  /* output */
-			  &type_rl_list, &max_level);
-
-  /* 7. Reordering resolved levels */
-  DBG ("Reordering resolved levels\n");
-  {
-    FriBidiLevel level_idx;
-    FriBidiStrIndex i;
-
-    /* Set up the ordering array to sorted order */
-    if (position_V_to_L_list)
-      {
-	DBG ("  Initialize position_V_to_L_list\n");
-	for (i = 0; i < len; i++)
-	  position_V_to_L_list[i] = i;
-	DBG ("  Initialize position_V_to_L_list, Done\n");
-      }
-    /* Copy the logical string to the visual */
-    if (visual_str)
-      {
-	DBG ("  Initialize visual_str\n");
-	for (i = 0; i < len; i++)
-	  visual_str[i] = str[i];
-	visual_str[len] = 0;
-	DBG ("  Initialize visual_str, Done\n");
-      }
-
-    /* Assign the embedding level array */
-    if (embedding_level_list)
-      {
-	DBG ("  Fill the embedding levels array\n");
-	for (pp = type_rl_list->next; pp->next; pp = pp->next)
-	  {
-	    FriBidiStrIndex i, pos, len;
-	    FriBidiLevel level;
-
-	    pos = pp->pos;
-	    len = pp->len;
-	    level = pp->level;
-	    for (i = 0; i < len; i++)
-	      embedding_level_list[pos + i] = level;
-	  }
-	DBG ("  Fill the embedding levels array, Done\n");
-      }
-
-    /* Reorder both the outstring and the order array */
-    if (visual_str || position_V_to_L_list)
-      {
-	if (fribidi_mirroring_status (fribidienv) && visual_str)
-	  {
-	    /* L4. Mirror all characters that are in odd levels and have mirrors. */
-	    DBG ("  Mirroring\n");
-	    for (pp = type_rl_list->next; pp->next; pp = pp->next)
-	      {
-		if (pp->level & 1)
-		  {
-		    FriBidiStrIndex i;
-		    for (i = RL_POS (pp); i < RL_POS (pp) + RL_LEN (pp); i++)
-		      {
-			FriBidiChar mirrored_ch;
-			if (fribidi_get_mirror_char
-			    (fribidienv, visual_str[i], &mirrored_ch))
-			  visual_str[i] = mirrored_ch;
-		      }
-		  }
-	      }
-	    DBG ("  Mirroring, Done\n");
-	  }
-
-	if (fribidi_reorder_nsm_status (fribidienv))
-	  {
-	    /* L3. Reorder NSMs. */
-	    DBG ("  Reordering NSM sequences\n");
-	    /* We apply this rule before L2, so go backward in odd levels. */
-	    for (pp = type_rl_list->next; pp->next; pp = pp->next)
-	      {
-		if (pp->level & 1)
-		  {
-		    FriBidiStrIndex i, seq_end = 0;
-		    fribidi_boolean is_nsm_seq;
-
-		    is_nsm_seq = 0;
-		    for (i = RL_POS (pp) + RL_LEN (pp) - 1; i >= RL_POS (pp);
-			 i--)
-		      {
-			FriBidiCharType this_type;
-
-			this_type = fribidi_get_type (NULL, str[i]);
-			if (is_nsm_seq && this_type != FRIBIDI_TYPE_NSM)
-			  {
-			    if (visual_str)
-			      {
-				bidi_string_reverse (visual_str + i,
-						     seq_end - i + 1);
-			      }
-			    if (position_V_to_L_list)
-			      {
-				index_array_reverse (position_V_to_L_list + i,
-						     seq_end - i + 1);
-			      }
-			    is_nsm_seq = 0;
-			  }
-			else if (!is_nsm_seq && this_type == FRIBIDI_TYPE_NSM)
-			  {
-			    seq_end = i;
-			    is_nsm_seq = 1;
-			  }
-		      }
-		    if (is_nsm_seq)
-		      {
-			DBG
-			  ("Warning: NSMs at the beggining of run level.\n");
-		      }
-		  }
-	      }
-	    DBG ("  Reordering NSM sequences, Done\n");
-	  }
-
-	/* L2. Reorder. */
-	DBG ("  Reordering\n");
-	for (level_idx = max_level; level_idx > 0; level_idx--)
-	  {
-	    for (pp = type_rl_list->next; pp->next; pp = pp->next)
-	      {
-		if (RL_LEVEL (pp) >= level_idx)
-		  {
-		    /* Find all stretches that are >= level_idx */
-		    FriBidiStrIndex len = RL_LEN (pp),
-		      pos = RL_POS (pp);
-		    TypeLink *pp1 = pp->next;
-		    while (pp1->next && RL_LEVEL (pp1) >= level_idx)
-		      {
-			len += RL_LEN (pp1);
-			pp1 = pp1->next;
-		      }
-		    pp = pp1->prev;
-		    if (visual_str)
-		      bidi_string_reverse (visual_str + pos, len);
-		    if (position_V_to_L_list)
-		      index_array_reverse (position_V_to_L_list + pos, len);
-		  }
-	      }
-	  }
-	DBG ("  Reordering, Done\n");
-      }
-
-    /* Convert the v2l list to l2v */
-    if (position_L_to_V_list)
-      {
-	DBG ("  Converting v2l list to l2v\n");
-	for (i = 0; i < len; i++)
-	  position_L_to_V_list[position_V_to_L_list[i]] = i;
-	DBG ("  Converting v2l list to l2v, Done\n");
-      }
-  }
-  DBG ("Reordering resolved levels, Done\n");
-
-  if (private_V_to_L)
-    fribidi_free (fribidienv, position_V_to_L_list);
-
-  free_rl_list (fribidienv, type_rl_list);
-
-  DBG ("Leaving fribidi_log2vis()\n");
-  return FRIBIDI_TRUE;
-
-}
-
 /*======================================================================
  *  fribidi_log2vis_get_embedding_levels() is used in order to just get
  *  the embedding levels.
  *----------------------------------------------------------------------*/
-FRIBIDI_API fribidi_boolean
-fribidi_log2vis_get_embedding_levels (FriBidiEnv *fribidienv,
-				      /* input */
-				      const FriBidiChar *str,
-				      FriBidiStrIndex len,
-				      FriBidiCharType *pbase_dir,
+gboolean
+pango_log2vis_get_embedding_levels (/* input */
+                                    gunichar *str,
+                                    gint len,
+                                    PangoDirection *pbase_dir,
 				      /* output */
-				      FriBidiLevel *embedding_level_list)
+                                    guint8 *embedding_level_list)
 {
   TypeLink *type_rl_list, *pp;
   FriBidiLevel max_level;
+  FriBidiCharType fribidi_base_dir;
 
   DBG ("Entering fribidi_log2vis_get_embedding_levels()\n");
 
+  fribidi_base_dir = (*pbase_dir == PANGO_DIRECTION_LTR) ? FRIBIDI_TYPE_LTR : FRIBIDI_TYPE_RTL;
+
   if (len == 0)
     {
       DBG ("Leaving fribidi_log2vis_get_embedding_levels()\n");
-      return FRIBIDI_TRUE;
+      return TRUE;
     }
 
-  fribidi_analyse_string (fribidienv, str, len, pbase_dir,
+  fribidi_analyse_string (str, len, &fribidi_base_dir,
 			  /* output */
 			  &type_rl_list, &max_level);
 
   for (pp = type_rl_list->next; pp->next; pp = pp->next)
     {
-      FriBidiStrIndex i, pos = RL_POS (pp),
+      gint i, pos = RL_POS (pp),
         len = RL_LEN (pp);
-      FriBidiLevel level = RL_LEVEL (pp);
+      gint level = RL_LEVEL (pp);
       for (i = 0; i < len; i++)
 	embedding_level_list[pos + i] = level;
     }
 
-  free_rl_list (fribidienv, type_rl_list);
+  free_rl_list (type_rl_list);
 
   DBG ("Leaving fribidi_log2vis_get_embedding_levels()\n");
-  return FRIBIDI_TRUE;
+  return TRUE;
 }
 
-
-
-const char *fribidi_version_info =
-  FRIBIDI_PACKAGE " " FRIBIDI_VERSION "\n" "interface version "
-  TOSTR (FRIBIDI_INTERFACE_VERSION)
-  "\n"
-  "Unicode version " FRIBIDI_UNICODE_VERSION "\n"
-  "\n"
-  "Copyright (C) 2002 FriBidi Project (http://fribidi.sf.net/).\n"
-  FRIBIDI_PACKAGE " comes with NO WARRANTY, to the extent permitted by law.\n"
-  "You may redistribute copies of " FRIBIDI_PACKAGE " under the terms of\n"
-  "the GNU Lesser General Public License.\n"
-  "For more information about these matters, see the files named COPYING.\n"
-  "\n" "Configured with following options:\n"
-#ifdef DEBUG
-  "--enable-debug\n"
-#endif
-#ifdef MEM_OPTIMIZED
-  "--enable-memopt\n"
-#endif
-#ifdef USE_SIMPLE_MALLOC
-  "--enable-malloc\n"
-#endif
-#ifdef FRIBIDI_NO_CHARSETS
-  "--without-charsts\n"
-#endif
-;
Only in /usr/src/fribidi/: fribidi_char_sets.c
Only in /usr/src/fribidi/: fribidi_char_sets_cap_rtl.c
Only in /usr/src/fribidi/: fribidi_char_sets_cap_rtl.h
Only in /usr/src/fribidi/: fribidi_char_sets_cp1255.c
Only in /usr/src/fribidi/: fribidi_char_sets_cp1255.h
Only in /usr/src/fribidi/: fribidi_char_sets_cp1256.c
Only in /usr/src/fribidi/: fribidi_char_sets_cp1256.h
Only in /usr/src/fribidi/: fribidi_char_sets.h
Only in /usr/src/fribidi/: fribidi_char_sets.i
Only in /usr/src/fribidi/: fribidi_char_sets_isiri_3342.c
Only in /usr/src/fribidi/: fribidi_char_sets_isiri_3342.h
Only in /usr/src/fribidi/: fribidi_char_sets_iso8859_6.c
Only in /usr/src/fribidi/: fribidi_char_sets_iso8859_6.h
Only in /usr/src/fribidi/: fribidi_char_sets_iso8859_8.c
Only in /usr/src/fribidi/: fribidi_char_sets_iso8859_8.h
Only in /usr/src/fribidi/: fribidi_char_sets_utf8.c
Only in /usr/src/fribidi/: fribidi_char_sets_utf8.h
diff -bu /usr/src/fribidi/fribidi_char_type.c mini-fribidi/fribidi_char_type.c
--- /usr/src/fribidi/fribidi_char_type.c	2003-07-17 17:18:01.000000000 -0400
+++ mini-fribidi/fribidi_char_type.c	2003-07-14 18:06:19.000000000 -0400
@@ -19,85 +19,18 @@
  * For licensing issues, contact <fwpg@sharif.edu>. 
  */
 
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-#include "fribidi.h"
+#include <glib.h>
+#include "fribidi_types.h"
 
 /*======================================================================
- *  fribidi_get_type() returns the bidi type of a character.
+ *  _pango_fribidi_get_type() returns the bidi type of a character.
  *----------------------------------------------------------------------*/
-FRIBIDI_API FriBidiCharType fribidi_get_type_internal (FriBidiChar uch);
+FriBidiCharType _pango_fribidi_get_type_internal (FriBidiChar uch);
 
-FRIBIDI_API FriBidiCharType
-fribidi_get_type (FriBidiEnv *env,
-		  FriBidiChar uch)
+FriBidiCharType
+_pango_fribidi_get_type (FriBidiChar uch)
 {
-  return fribidi_get_type_internal (uch);
+  return _pango_fribidi_get_type_internal (uch);
 }
 
-FRIBIDI_API void
-fribidi_get_types (FriBidiEnv *env,
-		   /* input */
-		   const FriBidiChar *str,
-		   FriBidiStrIndex len,
-		   /* output */
-		   FriBidiCharType *type)
-{
-  FriBidiStrIndex i;
-
-  for (i = 0; i < len; i++)
-    type[i] = fribidi_get_type (env, str[i]);
-}
-
-#ifdef MEM_OPTIMIZED
-
-#if   HAS_FRIBIDI_TAB_CHAR_TYPE_9_I
-#include "fribidi_tab_char_type_9.i"
-#elif HAS_FRIBIDI_TAB_CHAR_TYPE_8_I
-#include "fribidi_tab_char_type_8.i"
-#elif HAS_FRIBIDI_TAB_CHAR_TYPE_7_I
-#include "fribidi_tab_char_type_7.i"
-#elif HAS_FRIBIDI_TAB_CHAR_TYPE_6_I
-#include "fribidi_tab_char_type_6.i"
-#elif HAS_FRIBIDI_TAB_CHAR_TYPE_5_I
-#include "fribidi_tab_char_type_5.i"
-#elif HAS_FRIBIDI_TAB_CHAR_TYPE_4_I
-#include "fribidi_tab_char_type_4.i"
-#elif HAS_FRIBIDI_TAB_CHAR_TYPE_3_I
-#include "fribidi_tab_char_type_3.i"
-#elif HAS_FRIBIDI_TAB_CHAR_TYPE_2_I
 #include "fribidi_tab_char_type_2.i"
-#else
-#error You have no fribidi_tab_char_type_*.i file, please first make one by \
-       make fribidi_tab_char_type_n.i which n is the compress level, a digit \
-       between 2 and 9, or simply run make fribidi_tab_char_type_small, \
-       retry to make.
-#endif
-
-#else
-
-#if   HAS_FRIBIDI_TAB_CHAR_TYPE_2_I
-#include "fribidi_tab_char_type_2.i"
-#elif HAS_FRIBIDI_TAB_CHAR_TYPE_3_I
-#include "fribidi_tab_char_type_3.i"
-#elif HAS_FRIBIDI_TAB_CHAR_TYPE_4_I
-#include "fribidi_tab_char_type_4.i"
-#elif HAS_FRIBIDI_TAB_CHAR_TYPE_5_I
-#include "fribidi_tab_char_type_5.i"
-#elif HAS_FRIBIDI_TAB_CHAR_TYPE_6_I
-#include "fribidi_tab_char_type_6.i"
-#elif HAS_FRIBIDI_TAB_CHAR_TYPE_7_I
-#include "fribidi_tab_char_type_7.i"
-#elif HAS_FRIBIDI_TAB_CHAR_TYPE_8_I
-#include "fribidi_tab_char_type_8.i"
-#elif HAS_FRIBIDI_TAB_CHAR_TYPE_9_I
-#include "fribidi_tab_char_type_9.i"
-#else
-#error You have no fribidi_tab_char_type_*.i file, please first make one by \
-       make fribidi_tab_char_type_n.i which n is the compress level, a digit \
-       between 2 and 9, or simply run make fribidi_tab_char_type_large, \
-       retry to make.
-#endif
-
-#endif
Only in /usr/src/fribidi/: fribidi-config
Only in /usr/src/fribidi/: fribidi_config.h
Only in /usr/src/fribidi/: fribidi_config.h.in
Only in /usr/src/fribidi/: fribidi-config.in
Only in /usr/src/fribidi/: fribidi_create_char_types
Only in /usr/src/fribidi/: fribidi_create_char_types.c
Only in /usr/src/fribidi/: fribidi_create_char_types.o
Only in /usr/src/fribidi/: fribidi_create_mirroring.c
Only in /usr/src/fribidi/: fribidi_env.c
Only in /usr/src/fribidi/: fribidi_env.h
Only in mini-fribidi/: fribidi_get_type.c
Only in /usr/src/fribidi/: fribidi.h
Only in /usr/src/fribidi/: fribidi_main.c
Only in /usr/src/fribidi/: fribidi_mem.c
Only in /usr/src/fribidi/: fribidi_mem.h
Only in /usr/src/fribidi/: fribidi_mirroring.c
Only in mini-fribidi/: fribidi.patch
Only in /usr/src/fribidi/: fribidi.pc
Only in /usr/src/fribidi/: fribidi.pc.in
Only in /usr/src/fribidi/: fribidi.spec
Only in /usr/src/fribidi/: fribidi.spec.in
diff -bu /usr/src/fribidi/fribidi_tab_char_type_2.i mini-fribidi/fribidi_tab_char_type_2.i
--- /usr/src/fribidi/fribidi_tab_char_type_2.i	2003-07-17 17:18:01.000000000 -0400
+++ mini-fribidi/fribidi_tab_char_type_2.i	2003-07-17 17:49:01.000000000 -0400
@@ -1,12 +1,13 @@
 /*
-  This file was automatically created from UnicodeData.txt version 3.2.0
+  This file was automatically created from UnicodeData.txt version 4.0.0
   by fribidi_create_char_types
 */
 
 #ifndef FRIBIDI_TAB_CHAR_TYPE_2_I
 #define FRIBIDI_TAB_CHAR_TYPE_2_I
 
-#include "fribidi.h"
+#include <glib.h>
+#include "fribidi_types.h"
 
 #define LTR FRIBIDI_PROP_TYPE_LTR
 #define RTL FRIBIDI_PROP_TYPE_RTL
@@ -28,9 +29,6 @@
 #define SS FRIBIDI_PROP_TYPE_SS
 #define WS FRIBIDI_PROP_TYPE_WS
 
-#define PACKTAB_UINT8 fribidi_uint8
-#define PACKTAB_UINT16 fribidi_uint16
-#define PACKTAB_UINT32 fribidi_uint32
 /*
   Automatically generated by packtab.c version 2
 
@@ -979,7 +977,7 @@
   LTR,LTR,LTR,LTR,LTR,LTR,LTR,LTR,LTR,LTR,LTR,LTR,LTR,LTR,LTR,LTR,
 };
 
-static const PACKTAB_UINT16 FriBidiPropertyBlockLevel0[4352*1] = {
+static const guint16 FriBidiPropertyBlockLevel0[4352*1] = {
 
 #define FriBidiPropertyBlockLevel0_0000 0x0
 
@@ -5363,13 +5361,13 @@
 #undef RTL
 #undef LTR
 /*======================================================================
- *  fribidi_get_type_internal() returns the bidi type of a character.
+ *  _pango_fribidi_get_type_internal() returns the bidi type of a character.
  *----------------------------------------------------------------------*/
-FRIBIDI_API FriBidiCharType
-fribidi_get_type_internal (FriBidiChar uch)
+FriBidiCharType
+_pango_fribidi_get_type_internal (FriBidiChar uch)
 {
   if (uch < 0x110000)
-    return fribidi_prop_to_type[(unsigned char)FRIBIDI_GET_TYPE (uch)];
+    return _pango_fribidi_prop_to_type[(unsigned char)FRIBIDI_GET_TYPE (uch)];
   else
     return FRIBIDI_TYPE_LTR;
   /* Non-Unicode chars */
Only in /usr/src/fribidi/: fribidi_tab_char_type_9.i
Only in /usr/src/fribidi/: fribidi_tab_char_type_stamp
Only in mini-fribidi/: fribidi_tables.i
Only in /usr/src/fribidi/: fribidi_tab_mirroring.i
diff -bu /usr/src/fribidi/fribidi_types.c mini-fribidi/fribidi_types.c
--- /usr/src/fribidi/fribidi_types.c	2002-08-01 09:39:28.000000000 -0400
+++ mini-fribidi/fribidi_types.c	2003-07-14 18:06:21.000000000 -0400
@@ -19,10 +19,8 @@
  * For licensing issues, contact <fwpg@sharif.edu>. 
  */
 
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-#include "fribidi.h"
+#include <glib.h>
+#include "fribidi_types.h"
 
 #ifdef DEBUG
 
@@ -125,4 +123,4 @@
 #undef _FRIBIDI_ADD_TYPE
 };
 
-FriBidiCharType *fribidi_prop_to_type = fribidi_prop_to_type_array;
+FriBidiCharType *_pango_fribidi_prop_to_type = fribidi_prop_to_type_array;
diff -bu /usr/src/fribidi/fribidi_types.h mini-fribidi/fribidi_types.h
--- /usr/src/fribidi/fribidi_types.h	2002-08-07 08:02:52.000000000 -0400
+++ mini-fribidi/fribidi_types.h	2003-07-14 18:06:22.000000000 -0400
@@ -23,37 +23,15 @@
 #ifndef FRIBIDI_TYPES_H
 #define FRIBIDI_TYPES_H
 
-#include "fribidi_config.h"
+#include <glib.h>
 
-#ifdef __cplusplus
-extern "C"
-{
-#endif
-
-#define FRIBIDI_INT8	char
-#define FRIBIDI_INT16	short
-#define FRIBIDI_INT32	long
-#define FRIBIDI_INT	int
-
-  typedef int fribidi_boolean;
-
-  typedef signed FRIBIDI_INT8 fribidi_int8;
-  typedef unsigned FRIBIDI_INT8 fribidi_uint8;
-  typedef signed FRIBIDI_INT16 fribidi_int16;
-  typedef unsigned FRIBIDI_INT16 fribidi_uint16;
-  typedef signed FRIBIDI_INT32 fribidi_int32;
-  typedef unsigned FRIBIDI_INT32 fribidi_uint32;
-  typedef signed FRIBIDI_INT fribidi_int;
-  typedef unsigned FRIBIDI_INT fribidi_uint;
-
-
-  typedef fribidi_int8 FriBidiLevel;
-  typedef fribidi_uint32 FriBidiChar;
-  typedef fribidi_int FriBidiStrIndex;
-  typedef fribidi_int32 FriBidiMaskType;
+  typedef gint8 FriBidiLevel;
+  typedef gunichar FriBidiChar;
+  typedef gint FriBidiStrIndex;
+  typedef gint32 FriBidiMaskType;
   typedef FriBidiMaskType FriBidiCharType;
 
-  char *fribidi_type_name (FriBidiCharType c);
+  gchar *fribidi_type_name (FriBidiCharType c);
 
 /* The following type is used by fribidi_utils */
   typedef struct
@@ -291,10 +269,9 @@
 	(FRIBIDI_IS_OVERRIDE(p) ? FRIBIDI_LEVEL_TO_DIR(FRIBIDI_DIR_TO_LEVEL(p)) \
 				: FRIBIDI_TYPE_ON)
 
-
 /*
  * Define character types that char_type_tables use.
- * define them to be 0, 1, 2, ... and then in fribidi_get_type.c map them
+ * define them to be 0, 1, 2, ... and then in _pango_fribidi_get_type.c map them
  * to FriBidiCharTypes.
  */
   typedef char FriBidiPropCharType;
@@ -308,10 +285,12 @@
   };
 
 /* Map fribidi_prop_types to fribidi_types */
-  extern FriBidiCharType *fribidi_prop_to_type;
+  extern FriBidiCharType *_pango_fribidi_prop_to_type;
 
-#ifdef	__cplusplus
-}
-#endif
 
-#endif
+/*======================================================================
+ *  _pango_fribidi_get_type() returns bidi type of a character.
+ *----------------------------------------------------------------------*/
+  FriBidiCharType _pango_fribidi_get_type (FriBidiChar uch);
+
+#endif  /* #ifndef FRIBIDI_TYPES_H */
Only in /usr/src/fribidi/: fribidi_unicode.h
Only in /usr/src/fribidi/: fribidi_utils.c
Only in /usr/src/fribidi/: fribidi_wcwidth.c
Only in /usr/src/fribidi/: fribidi_wcwidth.i
Only in /usr/src/fribidi/: getopt1.c
Only in /usr/src/fribidi/: getopt.c
Only in /usr/src/fribidi/: getopt.h
Only in /usr/src/fribidi/: .indent.pro
Only in /usr/src/fribidi/: INSTALL
Only in /usr/src/fribidi/: install-sh
Only in /usr/src/fribidi/: .libs
Only in /usr/src/fribidi/: libtool
Only in /usr/src/fribidi/: ltconfig
Only in /usr/src/fribidi/: ltmain.sh
Only in /usr/src/fribidi/: Makefile
diff -bu /usr/src/fribidi/Makefile.am mini-fribidi/Makefile.am
--- /usr/src/fribidi/Makefile.am	2002-08-10 00:17:54.000000000 -0400
+++ mini-fribidi/Makefile.am	2003-07-14 18:21:14.000000000 -0400
@@ -1,208 +1,30 @@
+## Process this file with automake to produce Makefile.in
 
-AUTOMAKE_OPTIONS = gnu 
+INCLUDES = 					\
+	-DSYSCONFDIR=\"$(sysconfdir)\" 		\
+	-DLIBDIR=\"$(libdir)\" 			\
+	-DG_DISABLE_DEPRECATED			\
+	$(PANGO_DEBUG_FLAGS)			\
+	-I$(top_srcdir)				\
+	$(GLIB_CFLAGS)
+
+LDADDS = @STRIP_BEGIN@ 	\
+	@x_ldflags@	\
+	@x_libs@	\
+	@GLIB_LIBS@	\
+	-lm		\
+@STRIP_END@
 
-noinst_PROGRAMS = fribidi_benchmark	\
-		fribidi_create_char_types	\
-		fribidi_create_mirroring
-
-libfribidi_charsets =	\
-	fribidi_char_sets.c	\
-	fribidi_char_sets_utf8.c
-
-libfribidi_charsets_extra =	\
-	fribidi_char_sets_cap_rtl.c	\
-	fribidi_char_sets_iso8859_6.c	\
-	fribidi_char_sets_iso8859_8.c	\
-	fribidi_char_sets_cp1255.c	\
-	fribidi_char_sets_cp1256.c	\
-	fribidi_char_sets_isiri_3342.c
-
-libfribidi_charsets_h =	\
-	fribidi_char_sets.h	\
-	fribidi_char_sets_utf8.h
-
-libfribidi_charsets_extra_h =	\
-	fribidi_char_sets_cap_rtl.h	\
-	fribidi_char_sets_cp1255.h	\
-	fribidi_char_sets_cp1256.h	\
-	fribidi_char_sets_isiri_3342.h	\
-	fribidi_char_sets_iso8859_6.h	\
-	fribidi_char_sets_iso8859_8.h
+noinst_LTLIBRARIES = libmini-fribidi.la
 
-libfribidi_extra_h =	\
-	fribidi_mem.h
-
-lib_LTLIBRARIES = libfribidi.la
-
-libfribidi_la_SOURCES =	\
+libmini_fribidi_la_SOURCES =    \
 	fribidi.c	\
-	fribidi_types.c		\
-	fribidi_env.c	\
-	fribidi_mem.c	\
-	fribidi_mirroring.c	\
 	fribidi_char_type.c	\
-	fribidi_wcwidth.c	\
-	fribidi_utils.c	\
-	$(libfribidi_charsets)	\
-	$(libfribidi_charsets_extra)
-
-libfribidi_la_LIBADD = 
-
-libfribidiincdir = $(includedir)/fribidi
-
-libfribidiinc_HEADERS =	\
-	fribidi.h	\
-	fribidi_types.h	\
-	fribidi_env.h	\
-	fribidi_unicode.h	\
-	$(libfribidi_charsets_h)	\
-	$(libfribidi_charsets_extra_h)	\
-	fribidi_config.h
-
-GETOPT_SRC =	\
-	getopt.c	\
-	getopt1.c
-
-GETOPT_HDR =	\
-	getopt.h
-
-TEST_FILES =	\
-	tests/test_CapRTL_explicit.input	\
-	tests/test_CapRTL_explicit.reference	\
-	tests/test_CapRTL_implicit.input	\
-	tests/test_CapRTL_implicit.reference	\
-	tests/test_ISO8859-8_hebrew.input	\
-	tests/test_ISO8859-8_hebrew.reference	\
-	tests/test_UTF-8_persian.input	\
-	tests/test_UTF-8_persian.reference
-
-TABLE_FILES =	\
-	fribidi_types.i	\
-	fribidi_char_sets.i	\
-	fribidi_tab_mirroring.i	\
-	fribidi_tab_char_type_2.i	\
-	fribidi_tab_char_type_9.i
-
-UNIDATA_FILES =	\
-	unidata/README	\
-	unidata/UnicodeData.txt	\
-	unidata/BidiMirroring.txt
-
-OTHER_FILES =	\
-	fribidi_wcwidth.i
-
-EXTRA_HEADERS =	\
-	packtab.h	\
-	$(libfribidi_extra_h)	\
-	$(GETOPT_HDR)
+	fribidi_types.c 	\
+	fribidi_types.h
 
 EXTRA_DIST =	\
-	bootstrap \
-	run.tests	\
-	ANNOUNCE	\
-	acinclude.m4	\
-	fribidi_config.h.in	\
-	fribidi.pc.in	\
-	fribidi.spec.in	\
-	fribidi.spec	\
-	$(TEST_FILES)	\
-	$(TABLE_FILES)	\
-	$(UNIDATA_FILES)	\
-	$(OTHER_FILES)	\
-	$(EXTRA_HEADERS)
-
-fribidi_benchmark_SOURCES = fribidi_benchmark.c $(GETOPT_SRC)
-fribidi_benchmark_LDADD = libfribidi.la
-
-fribidi_create_char_types_SOURCES = fribidi_create_char_types.c packtab.c
-
-fribidi_create_mirroring_SOURCES = fribidi_create_mirroring.c
-
-bin_PROGRAMS = fribidi
-fribidi_SOURCES = fribidi_main.c $(GETOPT_SRC)
-fribidi_LDADD = libfribidi.la
-
-
-fribidi_tab_mirroring.i: $(fribidi_create_mirroring_SOURCES) fribidi_types.h	\
-		unidata/BidiMirroring.txt
-	$(MAKE) fribidi_create_mirroring
-	if test -d unidata; then UNIDATA=unidata;	\
-	else UNIDATA="$(srcdir)/unidata"; fi &&	\
-	./fribidi_create_mirroring "$$UNIDATA" ||	\
-	($(RM) "$@"; false)
-
-
-$(srcdir)/fribidi_mirroring.c: fribidi_tab_mirroring.i
-	touch "$@" || $(MAKE) clean
-
-fribidi_tab_mirroring:	fribidi_tab_mirroring.i
-
-
-fribidi_tab_char_type_%.i: $(fribidi_create_char_types_SOURCES)	\
-		unidata/UnicodeData.txt
-	$(MAKE) fribidi_create_char_types
-	if test -d unidata; then UNIDATA=unidata;	\
-	else UNIDATA="$(srcdir)/unidata"; fi &&	\
-	./fribidi_create_char_types "`echo "$@"	\
-	  | $(SED) 's/[^0-9]*//g'`" "$$UNIDATA" ||	\
-	($(RM) "$@"; false)
-	$(RM) fribidi_tab_char_type_stamp
-	$(MAKE) fribidi_tab_char_type_stamp
-
-fribidi_tab_char_type_stamp:
-	touch "$(srcdir)/fribidi_char_type.c" || $(MAKE) clean
-	touch "$@"
-
-fribidi_tab_char_type_small:
-	$(MAKE) fribidi_tab_char_type_9.i
-
-fribidi_tab_char_type_large:
-	$(MAKE) fribidi_tab_char_type_2.i
-
-fribidi_tab tab:	fribidi_tab_char_type_small	\
-			fribidi_tab_char_type_large	\
-			fribidi_tab_mirroring
-
-
-config.h: fribidi_tab_char_type_stamp
-	./config.status --recheck
-	./config.status
-	touch "$@"
-
-$(srcdir)/fribidi_char_type.c: config.h
-
-tests/test_%.reference: tests/test_%.input $(libfribidi_la_SOURCES)
-	$(MAKE) fribidi
-	(test -d tests || mkdir tests) &&	\
-	testcase="$@" && 	\
-	charset="`echo "$@" | $(SED) 's/_[^_]*$$//;s/.*_//'`" &&	\
-	./fribidi --test --charset "$$charset" "$<" > "$@" || \
-	($(RM) "$@"; false)
-
-test.reference:
-	for testcase in "$(srcdir)"/tests/test_*.input; do	\
-		test="`echo "$$testcase"	\
-		  | $(SED) 's/\.input$$/.reference/i; s|.*/||;'`" &&	\
-		$(MAKE) "tests/$$test" ||	\
-		exit 1;	\
-	done
-
-test: fribidi
-	"$(srcdir)/run.tests"
-
-.PHONY:		test test.reference	\
-		fribidi_tab_char_type_small fribidi_tab_char_type_large	\
-		fribidi_tab_mirroring fribidi_tab tab
-
-TESTS = run.tests
-
-bin_SCRIPTS = fribidi-config
-
-pkgconfigdir = $(libdir)/pkgconfig
-pkgconfig_DATA = fribidi.pc
-
-CLEANFILES = 
-
-DISTCLEANFILES = fribidi_tab_char_type_stamp
+	README	                \
+	fribidi_tab_char_type_2.i \
+        fribidi_types.i
 
-MAINTAINERCLEANFILES = Makefile.in configure aclocal.m4 config.h.in
Only in /usr/src/fribidi/: Makefile.in
Only in /usr/src/fribidi/: missing
Only in /usr/src/fribidi/: mkinstalldirs
Only in /usr/src/fribidi/: NEWS
Only in /usr/src/fribidi/: packtab.c
Only in /usr/src/fribidi/: packtab.h
Only in /usr/src/fribidi/: packtab.o
diff -bu /usr/src/fribidi/README mini-fribidi/README
--- /usr/src/fribidi/README	2002-08-07 06:23:34.000000000 -0400
+++ mini-fribidi/README	2003-07-14 18:31:21.000000000 -0400
@@ -1,149 +1,44 @@
+This directory holds a stripped down version of Dov Grobgeld's FriBidi
+library. The fribidi version that fribidi.patch is against was
+obtained with "cvs up -D '2003-07-14'" from the fribidi cvs repository.
+
+Like Pango, FriBidi is licensed under the terms of the GNU Lesser
+General Public License - see the file COPYING in the toplevel
+directory of the Pango distribution.
+
+12 November 2000, 18 October 2001
+Owen Taylor
+14 July 2003
+Noah Levitt
+
+
+From the README of Fribidi:
+
+
 This is is FriBidi, a Free Implementation of the Unicode BiDi algorithm.
 
 Background
 ==========
-One of the missing links stopping the penetration of free software in Middle
-East is the lack of support for the Arabic and Hebrew alphabets. In order to
-have proper Arabic and Hebrew support, the BiDi algorithm should have been
-implemented. It is our hope that this library will stimulate more free
-software in the Middle Eastern countries.
+One of the missing links stopping the penetration of free software in
+Israel is the lack of support for Hebrew. In order to have proper
+Hebrew support, the BiDi algorithm must be implemented. It is my hope
+that this library will stimulate more Hebrew free software.
+
+Of course the BiDi algorithm is not limited to Hebrew, so I expect 
+that our Arab neighbors will also find this software useful.
 
 Audience
 ========
-It is our hope that this library will stimulate the implementation of Hebrew
-and Arabic in lots of free software. Here is a small list of projects that
-would benifit from the use of the FriBidi library, but of course there are
-many more: Wine, Mozilla, Qt, KDE, lynx, OpenOffice.
 
-It may be interesting for you to know that Fribidi is already being used in
-projects like Gnome, GTK+, Pango, AbiWord, and Xterm.
+It is my hope that this library will stimulate the implementation of
+Hebrew and Arabic in lots of free software. Here is a small list of
+projects that would benifit from the use of the FriBidi library, but
+of course there are many more: Wine, Mozilla, Gtk, Gnome, Qt, KDE,
+AbiWord, lynx.
 
 Downloading
 ===========
 The latest version of FriBidi may be found at:
 
-   http://fribidi.sourceforge.net/
-
-Building
-========
-See INSTALL for a description of how to build and install this library.
-
-Copyright
-=========
-Fribidi is:
-Copyright (C) 1999,2000 Dov Grobgeld, and
-Copyright (C) 2001,2002 Behdad Esfahbod.
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public License
-along with this library, in a file named COPYING; if not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330,
-Boston, MA  02111-1307  USA
-
-For licensing issues, contact <dov@imagic.weizmann.ac.il> and
-<fwpg@sharif.edu>.
-
-Implementation
-==============
-The library implements the algorithm described in the "Unicode Standard
-Annex #9, The Bidirectional Algorithm", available at
-http://www.unicode.org/unicode/reports/tr9/. Fribidi has been tested
-exhaustively against the Unicode Reference Code, and due to our knowledge,
-it completely conforms to the specification, always producing the same
-result as the Reference Code.
-
-In the API we were inspired by the document "Bi-Di languages support
-- BiDi API propasal", http://www.langbox.com/AraMosaic/mozilla/BiDi_API.html,
-by Franck Portaneri <franck@langbox.com> which he wrote as a proposal for
-adding BiDi support to Mozilla.
-
-Internally, the library uses Unicode entirely. The character property
-function was automatically created from the Unicode property list document
-PropList.txt available from the Unicode FTP site. This means that every
-Unicode character is treated in strict accordance with the Unicode
-specification. The same is true for the mirroring of characters, which also
-works for all the characters listed as mirrorable in the the Unicode
-specification.
-
-Other character sets must be converted into Unicode before the library
-may be used. In order to use, e.g. iso8859-8, the function
-
-     void
-     fribidi_iso8859_8_to_unicode(guchar *s,
-             	                  /* output */
-	    	                  FriBidiChar *us)
-
-must be called which translates the guchar string *s to a unicode 
-string. There is also a corresponding fribidi_unicode_to_iso8859_8
-that may be called to convert the string back to iso8859_8 for output.
-
-The reordering of characters is done through the function:
-      
-     void
-     fribidi_log2vis(/* input */
-		     FriBidiChar *str,
-		     int len,
-		     FriBidiCharType *pbase_dir,
-		     /* output */
-		     FriBidiChar *visual_str,
-		     gint        *position_L_to_V_list,
-		     gint        *position_V_to_L_list,
-		     gint8       *embedding_level_list
-		     )
-    
-
-where
-     str                    is the Unicode input string
-     len                    is the length of the unicode string
-     pbase_dir              is the input and output base direction. If 
-                            base == FRIBIDI_TYPE_ON then fribidi_log2vis 
-                            calculates the base direction on its own
-                            according to the BiDi algorithm.
-     visual_str             The reordered output unicode string.
-     position_L_to_V_list   Maps the positions in the logical string to 
-                            positions in the visual string.
-     position_V_to_L_list   Maps the positions in the visual string to 
-                            the positions in the logical string.
-     embedding_level_list   Returns the classification of each character. Even
-                            levels indicate LTR characters, and odd levels
-                            indicate RTL characters. The main use of this
-                            list is in interactive applications when the
-                            embedding e.g. level determines cursor display.
-
-In any of the output pointers == NULL, then that information is not 
-calculated.
-
-How it looks like
-=================
-
-Have a look at tests directory, to see some input and outputs, which
-CapRTL charset means that CAPITAL letters are right to left, and digits
-6, 7, 8, 9 are Arabic digits, try 'fribidi --charsetdesc CapRTL' for the
-full description.
-
-Executable
-==========
-There is also a command line utilitity called fribidi that loops over
-the text of a file and performs the BiDi algorithm on each line, also
-used for testing the algorithm. Run fribidi with the --help option to
-learn about usage.
-
-Bugs and comments
-=================
-
-Report FriBidi bugs at:
-
-	http://fribidi.sourceforge.net/bugs.php
-
-And send your comments to:
+   http://fribidi.sourceforge.net
 
-	fribidi-discuss@lists.sourceforge.net
Only in /usr/src/fribidi/: run.tests
Only in /usr/src/fribidi/: stamp-h1
Only in /usr/src/fribidi/: stamp-h.in
Only in /usr/src/fribidi/: tests
Only in /usr/src/fribidi/: THANKS
Only in /usr/src/fribidi/: TODO
Only in /usr/src/fribidi/: unidata
Only in /usr/src/fribidi/: win