~ubuntu-dev/ubuntu/lucid/glew/lucid-201002101911

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
2005-01-29 20:48  ikits

	* auto/Makefile, auto/src/glew.rc, auto/src/glewinfo.rc,
	  auto/src/visualinfo.rc, build/vc6/glew_shared.dsp,
	  build/vc6/glew_static.dsp, build/vc6/glewinfo.dsp,
	  build/vc6/visualinfo.dsp: added resource files for win32
	  versioning

2005-01-29 18:39  ikits

	* config/version: changed versioning to make it easier to follow

2005-01-29 11:59  ikits

	* auto/src/glew_head.h: fix borland compilation problem

2005-01-28 23:36  ikits

	* auto/bin/parse_spec.pl: fixed GLhalf bug

2005-01-21 09:04  ikits

	* auto/core/GL_EXT_framebuffer_object: ubercomplete

2005-01-20 19:53  ikits

	* auto/core/GL_VERSION_2_0: fixed bugs

2005-01-11 18:03  mem

	* auto/lib/OpenGL/Spec.pm: Clean up a little

2005-01-11 15:40  mem

	* auto/lib/OpenGL/Spec.pm: Modularized parser

2005-01-06 01:53  ikits

	* doc/: advanced.html, basic.html, credits.html, index.html,
	  install.html, log.html, ogl_sm.jpg, new.png: sync up webpage and
	  docs

2005-01-06 01:26  ikits

	* TODO.txt: one more item

2005-01-06 01:25  ikits

	* auto/bin/update_ext.sh: fixed GLhandleARB

2005-01-05 15:37  mem

	* config/version: Forgot to bump GLEW version

2005-01-05 15:35  mem

	* TODO.txt: Expanded TODO item about autoinitialization

2005-01-05 15:27  mem

	* ChangeLog: Added ChangeLog.  The file is generated with cvs2cl.

2005-01-05 15:19  mem

	* Makefile, auto/Makefile, config/Makefile.darwin,
	  config/Makefile.freebsd, config/Makefile.irix,
	  config/Makefile.linux, config/Makefile.solaris, config/version:
	  Fix soname, ABI broke

2005-01-04 20:55  ikits

	* doc/gpl.txt: documentation update

2005-01-04 20:32  ikits

	* doc/index.html: documentation update

2005-01-04 20:17  ikits

	* doc/glew.css: documentation update

2005-01-04 20:10  ikits

	* auto/src/template.html, doc/README.html, doc/advanced.html,
	  doc/basic.html, doc/credits.html, doc/index.html,
	  doc/install.html, doc/log.html: documentation update

2005-01-04 20:01  ikits

	* README.txt, auto/src/template.html, doc/glew.css: documentation
	  update

2005-01-04 10:02  ikits

	* auto/src/glew_head.c: bug fixes

2005-01-04 01:00  ikits

	* auto/src/template.html: web crap

2005-01-04 00:30  ikits

	* auto/: bin/make_str.pl, src/glew_head.c, src/glew_str_glx.c,
	  src/glew_str_head.c, src/glew_str_tail.c, src/glew_str_wgl.c,
	  src/glew_utils.c, src/glew_utils.h: extended glewIsSupported

2005-01-03 23:17  ikits

	* config/: Makefile.solaris, Makefile.sunos: makefile fixes

2005-01-03 23:11  ikits

	* Makefile, config/Makefile.cygwin, config/Makefile.mingw32:
	  makefile fixes

2005-01-03 22:57  ikits

	* Makefile, config/Makefile.darwin: added darwin makefile

2005-01-03 22:29  ikits

	* auto/: Makefile, bin/make_info.pl, bin/make_list.pl,
	  bin/make_str.pl: bug fixes

2005-01-03 22:05  ikits

	* auto/: Makefile, bin/make_init.pl, src/glew_head.c,
	  src/glew_utils.c, src/glew_utils.h: bug fixes

2005-01-03 02:32  ikits

	* Makefile, TODO.txt, auto/Makefile,
	  auto/bin/fix_OML_sync_control.sh, auto/bin/make.pl,
	  auto/bin/make_def_fun.pl, auto/bin/make_def_var.pl,
	  auto/bin/make_header.pl, auto/bin/make_html.pl,
	  auto/bin/make_info.pl, auto/bin/make_info_list.pl,
	  auto/bin/make_init.pl, auto/bin/make_list.pl,
	  auto/bin/make_str.pl, auto/bin/make_struct_fun.pl,
	  auto/bin/make_struct_var.pl, auto/bin/parse_spec.pl,
	  auto/bin/update_ext.sh, auto/bin/update_registry.sh,
	  auto/src/glew_head.html, auto/src/glew_tail.html,
	  auto/src/glxew_head.html, auto/src/wglew_head.html,
	  auto/src/wglew_tail.html, src/visualinfo.c: Year bump in
	  copyright message. Removed obsolete files from auto/src.

2005-01-03 02:09  ikits

	* build/vc6/: glew_shared.dsp, glew_static.dsp: Single file now
	  compiles with VC71. Kept multi-file split for future use.

2005-01-03 02:05  ikits

	* auto/Makefile, auto/bin/make_header.pl, auto/bin/make_html.pl,
	  auto/src/glew_gl_fun.c, auto/src/glew_gl_head.c,
	  auto/src/glew_gl_init.c, auto/src/glew_gl_tail.c,
	  auto/src/glew_gl_var.c, auto/src/glew_glx_fun.c,
	  auto/src/glew_glx_head.c, auto/src/glew_glx_init.c,
	  auto/src/glew_glx_tail.c, auto/src/glew_glx_var.c,
	  auto/src/glew_head.c, auto/src/glew_head.h,
	  auto/src/glew_init_gl.c, auto/src/glew_init_glx.c,
	  auto/src/glew_init_tail.c, auto/src/glew_init_wgl.c,
	  auto/src/glew_license.h, auto/src/glew_str_head.c,
	  auto/src/glew_utils.c, auto/src/glew_utils.h,
	  auto/src/glew_wgl_head.c, auto/src/glew_wgl_init.c,
	  auto/src/glew_wgl_tail.c, auto/src/glew_wgl_var.c,
	  auto/src/glewinfo_head.c, auto/src/glx_license.h,
	  auto/src/glxew_head.h, auto/src/sgi_license.h,
	  auto/src/template.html, auto/src/wglew_head.h,
	  build/vc6/glew_shared.dsp, build/vc6/glew_static.dsp,
	  src/glew_utils.c, src/glew_utils.h: Single file now compiles with
	  VC71. Kept multi-file split for future use.

2004-12-31 03:49  ikits

	* auto/Makefile, auto/bin/make_def_fun.pl,
	  auto/bin/make_def_var.pl, auto/bin/make_header.pl,
	  auto/bin/make_html.pl, auto/bin/make_info.pl,
	  auto/bin/make_info_list.pl, auto/bin/make_init.pl,
	  auto/bin/make_list.pl, auto/bin/make_str.pl,
	  auto/bin/make_struct_fun.pl, auto/bin/make_struct_var.pl,
	  auto/custom.txt, TODO.txt: added customized subset selection

2004-12-29 22:11  ikits

	* auto/src/glew_tail.h: added longer alias

2004-12-29 22:05  ikits

	* auto/core/GL_VERSION_2_0: bug fixes

2004-12-29 21:59  ikits

	* auto/core/GL_VERSION_2_0: added core 2.0 spec file

2004-12-29 02:45  ikits

	* auto/core/WGL_ATI_render_texture_rectangle: the drivers seem to
	  support it; no public spec yet, though

2004-12-29 02:22  ikits

	* auto/Makefile, auto/src/glew_gl_head.c, auto/src/glew_gl_tail.c,
	  auto/src/glew_glx_head.c, auto/src/glew_glx_init.c,
	  auto/src/glew_glx_tail.c, auto/src/glew_str_glx.c,
	  auto/src/glew_str_tail.c, auto/src/glew_str_wgl.c,
	  auto/src/glxew_tail.h, auto/src/wglew_tail.h, build/vc6/Makefile,
	  build/vc6/glew_shared.dsp, build/vc6/glew_static.dsp,
	  auto/bin/make_def.pl, auto/bin/make_def_fun.pl,
	  auto/bin/make_def_var.pl, auto/src/glew_gl_fun.c,
	  auto/src/glew_gl_var.c, auto/src/glew_glx_fun.c,
	  auto/src/glew_glx_var.c, auto/src/glew_wgl_var.c: fixed problems
	  with mx builds; update project files

2004-12-29 00:42  ikits

	* Makefile, auto/Makefile, auto/bin/make_info.pl,
	  auto/bin/make_init.pl, auto/bin/make_list.pl, auto/src/glew_gl.c,
	  auto/src/glew_gl_head.c, auto/src/glew_gl_init.c,
	  auto/src/glew_gl_tail.c, auto/src/glew_glx.c,
	  auto/src/glew_glx_head.c, auto/src/glew_glx_init.c,
	  auto/src/glew_glx_tail.c, auto/src/glew_head.h,
	  auto/src/glew_head.html, auto/src/glew_init_glx.c,
	  auto/src/glew_post.c, auto/src/glew_post.h,
	  auto/src/glew_post.html, auto/src/glew_pre.c,
	  auto/src/glew_pre.h, auto/src/glew_pre.html,
	  auto/src/glew_str_glx.c, auto/src/glew_str_head.c,
	  auto/src/glew_str_tail.c, auto/src/glew_str_wgl.c,
	  auto/src/glew_tail.h, auto/src/glew_tail.html,
	  auto/src/glew_wgl.c, auto/src/glew_wgl_head.c,
	  auto/src/glew_wgl_init.c, auto/src/glew_wgl_tail.c,
	  auto/src/glewinfo_head.c, auto/src/glewinfo_post.c,
	  auto/src/glewinfo_pre.c, auto/src/glewinfo_tail.c,
	  auto/src/glxew_head.h, auto/src/glxew_head.html,
	  auto/src/glxew_post.h, auto/src/glxew_pre.h,
	  auto/src/glxew_pre.html, auto/src/glxew_tail.h,
	  auto/src/wglew_head.h, auto/src/wglew_head.html,
	  auto/src/wglew_post.h, auto/src/wglew_pre.h,
	  auto/src/wglew_pre.html, auto/src/wglew_tail.h,
	  auto/src/wglew_tail.html, src/glew_utils.c, src/glew_utils.h,
	  auto/bin/make_str.pl: Version bump; added glewIsSupported; split
	  source file, it is too big for VC7.1

2004-12-21 22:17  ikits

	* auto/core/GL_VERSION_1_5: fixed getQueryiv bug

2004-12-12 02:45  ikits

	* build/vc6/: glew_shared.dsp, glew_static.dsp, glewinfo.dsp,
	  visualinfo.dsp: added MX build targets

2004-12-11 23:38  ikits

	* auto/src/: glew_pre.h, glxew_pre.h: moved GLX token to glxew.h

2004-12-07 12:28  mem

	* Makefile, config/Makefile.cygwin, config/Makefile.freebsd,
	  config/Makefile.irix, config/Makefile.linux,
	  config/Makefile.mingw32, config/Makefile.sunos,
	  config/config.guess, doc/README.html: Makefile is getting out of
	  hand.  Use GNU tools' config.guess to obtain the canonical system
	  name and include the corresponding Makefile snippet from config/.
	   config.guess has been written with portability in mind, so it
	  should work properly on all supported systems.  Should its
	  licence (GPL) become a problem, it can be replaced with a simpler
	  script that supports only the systems we know something about.

	  Adding support for a new system is just a matter of running
	  config/config.guess and writing the matching
	  config/Makefile.$system file.

2004-12-06 04:00  ikits

	* TODO.txt: [no log message]

2004-12-06 03:39  ikits

	* Makefile, auto/Makefile: version bump

2004-12-06 03:14  ikits

	* auto/bin/parse_spec.pl: fixed GLX_ token in glew.h bug

2004-12-06 02:52  ikits

	* Makefile, auto/src/glew_post.html: [no log message]

2004-12-06 02:35  ikits

	* doc/README.html: [no log message]

2004-12-06 02:16  ikits

	* src/visualinfo.c: [no log message]

2004-12-06 01:53  ikits

	* Makefile: added FreeBSD support

2004-12-06 01:40  ikits

	* auto/src/glew_pre.h: fixed mingw and wxwindows problem

2004-12-06 01:29  ikits

	* auto/core/GL_EXT_Cg_shader: [no log message]

2004-12-06 00:57  ikits

	* auto/core/GL_KTX_buffer_region: [no log message]

2004-12-06 00:39  ikits

	* auto/bin/update_ext.sh: fixed ATI_fragment_shader problem

2004-11-13 21:34  mem

	* Makefile: Add PIC flags to Linux build

2004-11-04 21:55  ikits

	* TODO.txt, auto/core/GL_VERSION_1_5, auto/core/GL_VERSION_2_0: [no
	  log message]

2004-09-28 16:25  ikits

	* auto/: core/GL_VERSION_2_0, src/glew_gl.c, src/glew_pre.h: added
	  GL_VERSION_2_0

2004-09-28 13:35  ikits

	* auto/core/GL_ATI_texture_compression_3dc: added
	  GL_ATI_texture_compression_3dc

2004-09-28 13:29  ikits

	* auto/: blacklist, core/GL_EXT_draw_range_elements: fixed
	  draw_range_elements bug

2004-09-06 17:07  ikits

	* Makefile, auto/Makefile: version bump

2004-09-06 16:56  ikits

	* auto/src/glew_post.html, doc/README.html: [no log message]

2004-09-06 16:27  ikits

	* src/visualinfo.c: [no log message]

2004-09-06 15:58  ikits

	* Makefile: fixed IRIX bugs

2004-09-06 15:52  ikits

	* src/visualinfo.c: [no log message]

2004-09-06 15:51  ikits

	* build/vc6/Makefile: retired wglinfo

2004-09-06 15:41  ikits

	* build/vc6/: glew.dsw, visualinfo.dsp, wglinfo.dsp: retired
	  wglinfo

2004-09-06 15:31  ikits

	* src/visualinfo.c: fixed IRIX warnings

2004-09-06 15:29  ikits

	* src/visualinfo.c: [no log message]

2004-09-06 12:05  ikits

	* src/visualinfo.c: fixed visualinfo on Linux

2004-09-06 12:03  ikits

	* TODO.txt, auto/blacklist: removed SGI hyperpipe extension

2004-09-06 11:39  ikits

	* doc/: README.html, visualinfo.txt: got rid of visualinfo.txt

2004-09-06 11:36  ikits

	* doc/README.html, doc/visualinfo.txt, doc/wglinfo.txt,
	  src/wglinfo.c: retired wglinfo

2004-09-06 11:09  ikits

	* src/visualinfo.c, auto/src/glew_pre.h: fixed visualinfo and
	  ptrdiff bug

2004-09-05 21:13  ikits

	* auto/bin/update_ext.sh: removed const correctness fix in
	  GL_ARB_shader_objects

2004-07-02 15:21  ikits

	* auto/blacklist: added GLU extensions to blacklist

2004-06-27 18:36  mem

	* auto/Makefile: Whitespace change

2004-06-27 18:34  mem

	* auto/bin/parse_spec.pl: Add some comments; some whitespace
	  changes

2004-06-24 11:07  ikits

	* auto/src/glew_glx.c: [no log message]

2004-06-17 13:16  ikits

	* src/visualinfo.c: [no log message]

2004-06-17 13:11  ikits

	* src/visualinfo.c: [no log message]

2004-06-17 12:54  ikits

	* src/visualinfo.c: [no log message]

2004-06-17 12:40  ikits

	* src/visualinfo.c: [no log message]

2004-06-17 12:33  ikits

	* Makefile, auto/Makefile, src/visualinfo.c: added visualinfo

2004-06-10 06:03  ikits

	* auto/src/glew_post.html, doc/README.html: getting ready to the
	  1.2.3 release

2004-06-10 05:46  ikits

	* auto/core/GL_ARB_vertex_blend: fixed bug in ARB_vertex_blend

2004-05-19 03:23  ikits

	* Makefile, auto/Makefile: bumped up version numbers

2004-05-19 02:44  ikits

	* TODO.txt: [no log message]

2004-05-19 02:17  ikits

	* auto/core/: GL_NV_fragment_program2,
	  GL_NV_fragment_program_option, GL_NV_vertex_program2_option,
	  GL_NV_vertex_program3: added nvidia vertex/fragment program
	  extensions

2004-05-09 18:19  ikits

	* TODO.txt: [no log message]

2004-05-09 05:35  ikits

	* auto/src/glewinfo_post.c, auto/src/glewinfo_pre.c,
	  doc/README.html: [no log message]

2004-05-09 05:30  ikits

	* Makefile: [no log message]

2004-05-09 05:26  ikits

	* auto/: bin/fix_OML_sync_control.sh, src/glewinfo_post.c,
	  src/glewinfo_pre.c: fixed GLEW_MX bugs

2004-05-09 05:09  ikits

	* Makefile: [no log message]

2004-05-09 05:08  ikits

	* auto/src/: glewinfo_post.c, glewinfo_pre.c: added GLEW_MX to
	  glewinfo

2004-05-09 05:02  ikits

	* auto/Makefile: fixed GLEW_MX bug on unix

2004-05-09 04:21  ikits

	* Makefile: fixed shared flag on Solaris

2004-05-09 03:39  ikits

	* auto/src/glew_post.html, doc/README.html: [no log message]

2004-05-09 00:41  ikits

	* Makefile: [no log message]

2004-04-27 02:51  ikits

	* Makefile, auto/Makefile, src/wglinfo.c: version upgrade and minor
	  fix in wglinfo

2004-04-21 22:24  ikits

	* auto/core/: GL_EXT_pixel_buffer_object, GL_NV_element_array:
	  retired NV_element_array

2004-03-23 23:56  ikits

	* doc/README.html: updated glew mx doc

2004-03-22 18:50  ikits

	* auto/core/GL_EXT_texture_rectangle: fixed token definitions

2004-03-19 16:27  ikits

	* auto/Makefile: [no log message]

2004-03-19 15:22  ikits

	* auto/Makefile, auto/src/glew_post.html, doc/README.html: ready to
	  release

2004-03-18 20:12  ikits

	* auto/src/glew_pre.c: [no log message]

2004-03-18 19:53  ikits

	* Makefile, auto/Makefile: updated version number

2004-03-18 19:52  ikits

	* auto/: Makefile, bin/make_list.pl, bin/update_ext.sh: fixed
	  problem with ARB_shader_objects and ARB_vertex_shader

2004-03-18 16:59  ikits

	* src/wglinfo.c: added gdi flag to wglinfo

2004-03-18 16:20  ikits

	* src/wglinfo.c: added multisample flag

2004-03-02 22:54  ikits

	* TODO.txt: [no log message]

2004-02-23 15:35  ikits

	* auto/src/glew_gl.c: [no log message]

2004-02-22 19:10  ikits

	* Makefile: [no log message]

2004-02-19 13:02  ikits

	* auto/: Makefile, bin/fix_OML_sync_control.sh: [no log message]

2004-02-19 12:51  ikits

	* auto/: Makefile, bin/make_struct_fun.pl, bin/make_struct_var.pl,
	  bin/make_struct.pl: [no log message]

2004-02-19 04:43  ikits

	* auto/: Makefile, bin/make_init.pl, bin/make_list.pl,
	  src/glew_gl.c, src/glew_glx.c, src/glew_pre.c, src/glew_wgl.c:
	  [no log message]

2004-02-19 04:24  ikits

	* auto/src/glew_pre.c: [no log message]

2004-02-19 03:50  ikits

	* doc/README.html: [no log message]

2004-02-19 03:17  ikits

	* auto/: Makefile, bin/fix_OML_sync_control.sh, src/glew_glx.c,
	  src/glew_pre.c: [no log message]

2004-02-19 02:49  ikits

	* auto/: bin/make_init.pl, bin/make_list.pl, src/glew_gl.c,
	  src/glew_glx.c, src/glew_post.c, src/glew_pre.c, src/glew_pre.h,
	  src/glew_wgl.c, src/glewinfo_post.c: [no log message]

2004-02-19 02:37  ikits

	* auto/: bin/fix_OML_sync_control.sh, src/glxew_pre.h: [no log
	  message]

2004-02-19 02:28  ikits

	* auto/: Makefile, bin/make_def.pl: [no log message]

2004-02-19 01:32  ikits

	* auto/src/glew_post.html, doc/README.html: [no log message]

2004-02-19 01:22  ikits

	* auto/src/: glew_pre.html, glxew_pre.html, wglew_pre.html: [no log
	  message]

2004-02-19 01:18  ikits

	* doc/README.html: [no log message]

2004-02-19 01:17  ikits

	* doc/README.html: updated the documentation

2004-02-18 23:37  ikits

	* auto/: Makefile, bin/make_header.pl, bin/make_init.pl,
	  bin/make_list.pl, bin/make_struct.pl, src/glew_gl.c,
	  src/glew_glx.c, src/glew_post.c, src/glew_post.h, src/glew_pre.c,
	  src/glew_pre.h, src/glew_wgl.c, src/glxew_post.h,
	  src/wglew_post.h: added binary compatibility for the single pipe
	  version (through global variables) -- GLEW_MX is not a
	  compilation switch

2004-02-05 18:14  ikits

	* auto/Makefile, TODO.txt: [no log message]

2004-02-05 16:59  ikits

	* auto/core/GL_VERSION_1_4: blending bug fix

2004-02-01 22:07  ikits

	* TODO.txt: [no log message]

2004-02-01 22:01  ikits

	* auto/bin/make_info.pl, auto/bin/make_list.pl, TODO.txt: [no log
	  message]

2004-02-01 21:56  ikits

	* auto/src/: glewinfo_gl.c, glewinfo_pre.c, glewinfo_wgl.c,
	  glewinfo_glx.c: [no log message]

2004-02-01 21:41  ikits

	* auto/src/glewinfo_post.c: [no log message]

2004-02-01 21:30  ikits

	* auto/src/: glewinfo_post.c, glewinfo_pre.c: [no log message]

2004-02-01 21:25  ikits

	* auto/src/: glewinfo_post.c, glewinfo_pre.c: [no log message]

2004-02-01 21:13  ikits

	* Makefile, auto/src/glewinfo_post.c: [no log message]

2004-02-01 20:57  ikits

	* auto/src/glewinfo_post.c: [no log message]

2004-02-01 18:07  ikits

	* TODO.txt: [no log message]

2004-02-01 18:05  ikits

	* auto/src/glewinfo_post.c: fixed parsing bug

2004-02-01 17:59  ikits

	* auto/src/glewinfo_post.c: added visual selection to glewinfo

2004-02-01 17:29  ikits

	* auto/src/wglew_post.h: fixed wglew bug

2004-02-01 17:27  ikits

	* auto/src/: glew_gl.c, glew_glx.c, glew_post.h, glew_wgl.c,
	  glewinfo_post.c, glxew_post.h, glxew_pre.h: fixed glxew bugs

2004-02-01 17:10  ikits

	* auto/: Makefile, bin/fix_OML_sync_control.sh, src/glew_post.h,
	  src/glxew_post.h, src/wglew_post.h: fixed glxew problems

2004-02-01 16:34  ikits

	* auto/src/glewinfo_post.c: [no log message]

2004-02-01 16:26  ikits

	* auto/src/: glewinfo_post.c, glewinfo_pre.c: added command line
	  flags to glewinfo

2004-02-01 15:03  ikits

	* Makefile, README.txt, TODO.txt, auto/Makefile,
	  auto/bin/fix_OML_sync_control.sh, auto/bin/make.pl,
	  auto/bin/make_header.pl, auto/bin/make_html.pl,
	  auto/bin/make_info.pl, auto/bin/make_info_list.pl,
	  auto/bin/make_init.pl, auto/bin/make_list.pl,
	  auto/bin/make_struct.pl, auto/bin/parse_spec.pl,
	  auto/bin/update_ext.sh, auto/bin/update_registry.sh,
	  auto/src/glew_pre.c, auto/src/glew_pre.h,
	  auto/src/glewinfo_pre.c, auto/src/glxew_post.h,
	  auto/src/glxew_pre.h, auto/src/wglew_pre.h: updated copyright
	  notices

2004-02-01 14:21  ikits

	* auto/: Makefile, bin/update_ext.sh: shader objects const bug fix

2004-02-01 13:18  ikits

	* auto/bin/update_ext.sh, TODO.txt: [no log message]

2004-02-01 13:11  ikits

	* auto/: bin/make.pl, bin/make_header.pl, bin/make_info.pl,
	  bin/make_init.pl, bin/make_list.pl, bin/make_struct.pl, Makefile,
	  core/GL_ARB_imaging, src/glew_gl.c, src/glew_glx.c,
	  src/glew_post.c, src/glew_post.h, src/glew_pre.c, src/glew_pre.h,
	  src/glew_wgl.c, src/wglew_post.h: added glew mx

2004-01-27 21:51  ikits

	* auto/bin/make.pl: [no log message]

2004-01-27 16:33  ikits

	* auto/core/GLX_SUN_video_resize: [no log message]

2004-01-27 16:21  ikits

	* auto/core/GL_SUN_read_video_pixels: [no log message]

2004-01-27 15:35  ikits

	* auto/Makefile, auto/bin/update_ext.sh, auto/core/GL_VERSION_1_5,
	  auto/src/glew_pre.h, Makefile: fix bugs created by adding GL 1.5

2004-01-27 14:55  ikits

	* auto/src/: glew_gl.c, glew_pre.h: added ptrdiff_t definition on
	  windows

2004-01-27 14:48  ikits

	* auto/core/GL_VERSION_1_5: added OpenGL 1.5 spec file

2004-01-20 18:32  ikits

	* auto/bin/update_ext.sh: fixed missing defines in
	  GL_ARB_shader_objects

2004-01-19 16:18  ikits

	* auto/src/glew_gl.c: added GL 1.5 branch is version test

2004-01-13 13:59  ikits

	* auto/: Makefile, bin/update_ext.sh: replaced sed with perl

2004-01-13 02:15  mem

	* Makefile, README.txt: Fix wording in README regarding how to
	  build GLEW.  It is not necessary to regenerate the extension data
	  if then only thing you want is to build the library

2004-01-11 06:45  ikits

	* Makefile: added MinGW patch

2004-01-06 16:58  ikits

	* auto/bin/fix_OML_sync_control.sh: replaced sed with perl

2004-01-06 16:17  ikits

	* auto/: Makefile, bin/fix_OML_sync_control.sh, bin/update_ext.sh:
	  fixed sed problems

2004-01-05 18:29  ikits

	* Makefile: more OSX bug fixes

2004-01-05 18:09  ikits

	* Makefile, auto/src/glew_pre.h: OSX bug fixes

2004-01-05 17:25  ikits

	* auto/bin/update_ext.sh: bug fix; missing '> tmp'

2004-01-05 14:33  ikits

	* auto/Makefile, Makefile: changed version number

2004-01-04 09:20  mem

	* auto/: bin/parse_spec.pl, bin/update_ext.sh, src/glew_pre.h:
	  Mostly formatting and documentation noops.

	  For VBO:

	      typedef ptrdiff_t GLsizeiptrARB;
	      typedef ptrdiff_t GLintptrARB;

	  as per email discussion with Marco Fabbricatore.  See
	  argumentation in auto/bin/update_ext.sh and auto/src/glew_pre.h.

	  Windows needs to get this fixed.  See glew_pre.h.

2003-12-15 11:43  ikits

	* doc/: README.html: [no log message]

2003-12-15 11:40  ikits

	* auto/core/GL_APPLE_texture_range: [no log message]

2003-12-15 11:23  ikits

	* README.txt: [no log message]

2003-12-15 11:19  ikits

	* doc/README.html: [no log message]

2003-12-15 11:05  ikits

	* doc/README.html: [no log message]

2003-12-15 11:00  ikits

	* README.txt, auto/src/glew_post.html, doc/README.html: [no log
	  message]

2003-12-14 10:21  ikits

	* Makefile: [no log message]

2003-12-13 21:16  ikits

	* auto/core/GL_EXT_texture_cube_map: [no log message]

2003-12-13 21:02  ikits

	* auto/core/: GL_APPLE_float_pixels, GL_EXT_texture_edge_clamp,
	  GL_EXT_texture_edge_clamp.txt: [no log message]

2003-12-13 13:01  ikits

	* auto/core/GL_APPLE_float_pixels: [no log message]

2003-12-13 12:52  ikits

	* auto/core/GL_EXT_texture_cube_map: [no log message]

2003-12-13 12:44  ikits

	* auto/bin/parse_spec.pl: fixed 2X_BIT bug

2003-12-13 12:36  ikits

	* auto/core/GL_EXT_texture_edge_clamp.txt: [no log message]

2003-12-09 07:59  ikits

	* auto/core/GLX_ATI_render_texture: [no log message]

2003-12-09 07:52  ikits

	* auto/core/: GLX_ATI_pixel_format_float, GLX_ATI_render_texture:
	  added extensions from glxATI.h

2003-11-12 15:58  ikits

	* auto/core/GL_ATI_map_object_buffer: fixed bug in
	  ATI_map_object_buffer

2003-11-10 03:50  ikits

	* auto/Makefile: [no log message]

2003-11-06 18:11  ikits

	* README.txt: [no log message]

2003-11-06 18:06  ikits

	* README.txt, TODO.txt: [no log message]

2003-11-06 17:56  ikits

	* TODO.txt: added TODO list

2003-11-06 17:40  ikits

	* auto/Makefile: made the auto generation scripts work on Darwin

2003-10-30 22:08  ikits

	* auto/src/: glew_pre.h: [no log message]

2003-10-30 16:51  ikits

	* auto/src/glew_pre.c: added string pointer cast in
	  wglGetProcAddress to make glew.c compile with a c++ compiler

2003-10-30 11:52  ikits

	* Makefile, auto/Makefile, auto/core/GL_WIN_swap_hint: on to the
	  next release

2003-10-28 23:28  ikits

	* auto/src/glew_post.html, doc/README.html: [no log message]

2003-10-27 03:57  ikits

	* Makefile, auto/src/glewinfo_post.c: [no log message]

2003-10-27 00:28  ikits

	* Makefile, auto/bin/make_info.pl, auto/bin/make_info_list.pl,
	  auto/bin/make_init.pl, auto/bin/make_list.pl,
	  auto/bin/parse_spec.pl, auto/src/glew_post.c,
	  auto/src/glew_pre.c, auto/src/glewinfo_pre.c: added Solaris
	  support

2003-10-26 22:11  ikits

	* auto/: bin/make_info.pl, core/GL_WIN_swap_hint,
	  src/glewinfo_pre.c: [no log message]

2003-10-26 21:34  ikits

	* auto/: bin/make_info.pl, src/glew_pre.c, src/glewinfo_pre.c,
	  src/glxew_post.h, src/glxew_pre.h, src/wglew_post.h,
	  src/wglew_pre.h: [no log message]

2003-10-26 20:13  ikits

	* Makefile, auto/src/glew_glx.c: [no log message]

2003-10-26 20:06  ikits

	* Makefile, auto/src/glew_post.c, auto/src/glewinfo_post.c:
	  extended Darwin support

2003-10-03 02:44  ikits

	* auto/src/glew_post.c: removed signed/unsigned mismatch error

2003-10-03 02:28  ikits

	* Makefile: added . to find

2003-10-02 05:49  mem

	* auto/src/glew_post.c: Guard against people updating the string
	  lists but forgetting to update the magic constants sprinkled in
	  the code.  Any reasonable compiler should be able to optimize
	  this away.

2003-09-30 23:41  ikits

	* auto/src/glew_post.c: [no log message]

2003-09-30 23:23  ikits

	* auto/src/glew_post.c: fixed sizeof bug in glew_post.c

2003-09-29 06:30  ikits

	* auto/blacklist: [no log message]

2003-09-27 02:56  ikits

	* auto/src/glewinfo_post.c: [no log message]

2003-09-26 12:33  ikits

	* auto/src/: glewinfo_post.c: [no log message]

2003-09-26 12:10  ikits

	* Makefile, auto/src/glewinfo_post.c: [no log message]

2003-09-26 12:07  ikits

	* Makefile, auto/src/glew_pre.c, auto/src/glewinfo_post.c: [no log
	  message]

2003-09-26 10:44  ikits

	* Makefile, auto/src/glewinfo_post.c: [no log message]

2003-09-26 10:17  ikits

	* auto/src/glewinfo_post.c: [no log message]

2003-09-26 09:56  ikits

	* Makefile: [no log message]

2003-09-26 09:48  ikits

	* auto/src/glew_pre.c, auto/src/glewinfo_post.c,
	  auto/src/glewinfo_pre.c, build/vc6/glewinfo.dsp: removed GLUT
	  dependency

2003-09-26 08:24  ikits

	* Makefile: [no log message]

2003-09-26 08:13  ikits

	* Makefile: fixed Makefile for MACOSX compilation

2003-09-26 07:34  ikits

	* auto/: bin/parse_spec.pl, bin/update_ext.sh, src/glew_pre.c:
	  added support for GL_ARB_vertex_shader, GL_ARB_fragment_shader,
	  and GL_ARB_shader_objects

2003-09-25 19:30  ikits

	* Makefile, auto/Makefile: added Darwin architecture

2003-09-19 19:39  ikits

	* auto/src/glew_pre.c: added support for maxosx

2003-09-17 13:52  ikits

	* doc/README.html: [no log message]

2003-09-15 13:19  ikits

	* auto/src/glewinfo_pre.c: [no log message]

2003-09-15 13:01  ikits

	* auto/src/: glew_gl.c, glewinfo_pre.c: [no log message]

2003-09-15 12:53  ikits

	* auto/src/: glew_gl.c, glew_glx.c, glew_wgl.c, glewinfo_pre.c,
	  glxew_post.h, wglew_post.h: [no log message]

2003-09-15 12:13  ikits

	* doc/: README.html: [no log message]

2003-09-15 12:04  ikits

	* auto/src/glew_post.html, doc/README.html: [no log message]

2003-09-15 11:35  ikits

	* auto/: Makefile, bin/make_list.pl, bin/update_registry.sh,
	  src/glew_wgl.c: removed WGL_{ARB,EXT}_extensions_string
	  dependency

2003-09-15 11:15  ikits

	* auto/core/GL_OML_interlace: GL_OML_interlace made it to the
	  registry

2003-09-12 00:46  ikits

	* auto/bin/make_list.pl: [no log message]

2003-09-11 23:50  ikits

	* Makefile, auto/Makefile, auto/src/glew_gl.c,
	  auto/src/glew_post.c, auto/src/glew_post.h, auto/src/glew_pre.c,
	  auto/src/glew_wgl.c, auto/src/glewinfo_post.c: fixed problems
	  with WGL_{ARB,EXT}_extensions_string

2003-08-27 15:54  ikits

	* auto/bin/make_init.pl: changed order of boolean propagation to
	  make sure partial extensions are initialized properly

2003-08-11 15:16  ikits

	* doc/README.html, auto/src/glew_post.html: [no log message]

2003-08-11 15:03  ikits

	* Makefile: [no log message]

2003-08-11 14:27  ikits

	* Makefile: [no log message]

2003-07-29 04:47  mem

	* auto/core/GLX_NV_float_buffer: The extremely elusive
	  GLX_NV_float_buffer extension magic.

2003-07-29 04:41  mem

	* Makefile, auto/src/glew_pre.c: Use a NULL for the path passed to
	  dlopen, that means 'give me a handle to the loaded image' which
	  at the point where this function is called already included all
	  libGL's symbols.  Makes the whole thing easier to maintain.

2003-07-16 03:49  ikits

	* auto/bin/parse_spec.pl: [no log message]

2003-07-16 03:32  ikits

	* Makefile: changed version number for next release

2003-07-16 03:28  ikits

	* auto/bin/parse_spec.pl: fixed void * problem

2003-07-15 11:40  ikits

	* build/vc6/: glew_shared.dsp, glew_static.dsp, glewinfo.dsp,
	  wglinfo.dsp: [no log message]

2003-07-08 21:29  ikits

	* doc/README.html, doc/glew.css, auto/src/glew_pre.html: [no log
	  message]

2003-07-08 14:39  ikits

	* doc/README.html, auto/src/glew_post.html: [no log message]

2003-07-08 14:29  ikits

	* doc/README.html: [no log message]

2003-07-08 14:24  ikits

	* doc/: README.html, glew.css: [no log message]

2003-07-08 13:56  ikits

	* auto/Makefile, auto/bin/make_list.pl, src/wglinfo.c: [no log
	  message]

2003-07-08 13:17  ikits

	* doc/: README.html, gpl.txt: [no log message]

2003-07-08 12:43  ikits

	* auto/: Makefile, bin/fix_OML_sync_control.sh, bin/make.pl,
	  bin/make_header.pl, bin/make_html.pl, bin/make_info.pl,
	  bin/make_info_list.pl, bin/make_init.pl, bin/make_list.pl,
	  bin/parse_spec.pl, bin/update_ext.sh, bin/update_registry.sh,
	  src/glew_post.html, src/glew_pre.html, src/glxew_pre.html,
	  src/wglew_pre.html: [no log message]

2003-07-08 11:15  ikits

	* doc/: README.html, glew.css: [no log message]

2003-07-07 23:19  ikits

	* doc/: README.html, glew.html, glxew.html, wglew.html, glew.css:
	  [no log message]

2003-07-07 22:14  ikits

	* auto/: core/GLX_ARB_get_proc_address,
	  core/GLX_NV_vertex_array_range, core/GLX_SGIX_swap_barrier,
	  core/GLX_SGIX_swap_group, core/GL_ATIX_point_sprites,
	  core/GL_ATIX_texture_env_combine3,
	  core/GL_ATIX_texture_env_route,
	  core/GL_ATIX_vertex_shader_output_point_size,
	  core/GL_ATI_envmap_bumpmap, core/GL_ATI_map_object_buffer,
	  core/GL_ATI_pn_triangles, core/GL_ATI_separate_stencil,
	  core/GL_ATI_vertex_streams, core/GL_EXT_depth_bounds_test,
	  core/GL_EXT_fog_coord, core/GL_EXT_secondary_color,
	  core/GL_EXT_texture_rectangle, core/GL_EXT_vertex_shader,
	  core/GL_NV_element_array, core/GL_OML_interlace,
	  core/WGL_NV_vertex_array_range, src/glew_post.html,
	  src/glew_pre.html, src/glxew_pre.html, src/wglew_pre.html: [no
	  log message]

2003-07-07 21:26  ikits

	* auto/core/: GL_ATIX_point_sprites, GL_ATIX_texture_env_combine3:
	  [no log message]

2003-07-07 21:17  ikits

	* auto/core/: GL_ARB_matrix_palette, GL_ARB_multitexture,
	  GL_ARB_vertex_blend, GL_ATIX_point_sprites,
	  GL_ATIX_texture_env_combine3: [no log message]

2003-07-07 07:29  mem

	* auto/bin/update_registry.sh: cd to the directory even if it
	  already existed :-P

2003-07-06 17:17  mem

	* auto/Makefile: Ignore CVS stuff

2003-07-06 17:14  mem

	* auto/: bin/make_header.pl, core/GLX_ARB_get_proc_address,
	  core/GLX_NV_vertex_array_range, core/GLX_SGIS_shared_multisample,
	  core/GLX_SGIX_swap_barrier, core/GLX_SGIX_swap_group,
	  core/GLX_VERSION_1_2, core/GLX_VERSION_1_3, core/GLX_VERSION_1_4,
	  core/GL_ARB_imaging, core/GL_ARB_matrix_palette,
	  core/GL_ARB_multitexture, core/GL_ARB_vertex_blend,
	  core/GL_ATIX_point_sprites, core/GL_ATIX_texture_env_combine3,
	  core/GL_ATIX_texture_env_route,
	  core/GL_ATIX_vertex_shader_output_point_size,
	  core/GL_ATI_envmap_bumpmap, core/GL_ATI_map_object_buffer,
	  core/GL_ATI_pn_triangles, core/GL_ATI_separate_stencil,
	  core/GL_ATI_vertex_streams, core/GL_EXT_depth_bounds_test,
	  core/GL_EXT_fog_coord, core/GL_EXT_secondary_color,
	  core/GL_EXT_texture_rectangle, core/GL_EXT_vertex_shader,
	  core/GL_NV_element_array, core/GL_VERSION_1_2,
	  core/GL_VERSION_1_3, core/GL_VERSION_1_4, core/GL_WIN_swap_hint,
	  core/WGL_NV_vertex_array_range: Forgot this

2003-07-06 16:21  mem

	* Makefile: Real Bourne Shells do not like {foo,bar,baz} notation
	  and IRIX's make likes to be given a hint to get out of the way

2003-07-06 16:03  mem

	* auto/src/glewinfo_post.c: Be more UNIX-like if running on
	  non-Windows OSes; overwriting files with a predefined name is
	  very impolite

2003-07-06 16:00  mem

	* auto/Makefile: Sorry, got the logic backwards

2003-07-06 15:27  mem

	* Makefile: Fix some portability problems; clean up some compiler
	  droppings (IRIX); remove CVS stuff from the tarball; really
	  remove the extension registry from the tarball

2003-07-06 12:41  mem

	* Makefile, auto/src/glew_pre.c: Add support for IRIX; tested on
	  IRIX 6.5.18 with an Infinite Reality 3

2003-07-06 11:06  mem

	* auto/.cvsignore, src/.cvsignore, .cvsignore: Ignore list

2003-07-06 11:05  mem

	* auto/Makefile: Make sure include/GL exists before attempting to
	  use it

2003-07-06 11:01  mem

	* Makefile, auto/Makefile, auto/blacklist,
	  auto/bin/fix_OML_sync_control.sh, auto/bin/make.pl,
	  auto/bin/make_header.pl, auto/bin/make_info.pl,
	  auto/bin/make_info_list.pl, auto/bin/make_init.pl,
	  auto/bin/make_list.pl, auto/bin/parse_spec.pl,
	  auto/bin/update_ext.sh, auto/bin/update_registry.sh,
	  auto/src/glew_gl.c, auto/src/glew_glx.c,
	  auto/src/glew_init_glx.c, auto/src/glew_post.c,
	  auto/src/glew_post.h, auto/src/glew_pre.c, auto/src/glew_pre.h,
	  auto/src/glew_wgl.c, auto/src/glewinfo_gl.c,
	  auto/src/glewinfo_glx.c, auto/src/glewinfo_post.c,
	  auto/src/glewinfo_pre.c, auto/src/glewinfo_wgl.c,
	  auto/src/glxew_post.h, auto/src/glxew_pre.h,
	  auto/src/wglew_post.h, auto/src/wglew_pre.h, build/vc6/Makefile,
	  doc/glew.html, src/glew.c, src/glewinfo.c, src/wglinfo.c: Merge
	  Milan's 1.1.x

2003-06-30 18:43  ikits

	* doc/glew.html, src/glewinfo.c: [no log message]

2003-06-30 07:33  ikits

	* src/glew.c, src/glewinfo.c, Makefile: [no log message]

2003-06-18 15:14  mem

	* doc/IDEAS: Some old ideas I forgot to check in

2003-05-19 07:58  mem

	* doc/glew.info: Current state of the info file.  It's not useful
	  as it is since it contains too much redundant information (wrt
	  registry/) but there are some valuable pieces (e.g., version
	  information).

2003-05-19 07:36  mem

	* doc/.cvsignore: Ignore registry directory, we don't want to
	  redistribute this stuff

2003-05-19 07:35  mem

	* bin/update_registry: Forgot about GNUmakefile -> Makefile rename

2003-05-19 07:33  mem

	* src/: Makefile, glew.c, glewinfo.c, malloc.c: Sync with local
	  tree

2003-05-19 07:26  mem

	* Makefile, bin/parse_info.pl, bin/parse_spec.pl,
	  bin/update_registry, doc/IDEAS, doc/blacklist,
	  doc/info_format.txt: Sync with local tree

2003-05-04 16:11  ikits

	* doc/README.html: [no log message]

2003-05-04 15:54  ikits

	* Makefile: [no log message]

2003-05-04 15:47  ikits

	* src/glew.c: [no log message]

2003-05-02 05:42  ikits

	* src/wglinfo.c: [no log message]

2003-05-02 04:33  ikits

	* build/vc6/Makefile, src/wglinfo.c: [no log message]

2003-05-02 03:53  ikits

	* src/glew.c: [no log message]

2003-05-01 19:40  ikits

	* Makefile: [no log message]

2003-05-01 16:12  ikits

	* Makefile: [no log message]

2003-05-01 16:02  ikits

	* Makefile, src/glew.c: [no log message]

2003-05-01 15:49  ikits

	* doc/: README.html, glew.html: [no log message]

2003-05-01 15:41  ikits

	* doc/: README.html, glew.html: [no log message]

2003-05-01 15:35  ikits

	* src/wglinfo.c: [no log message]

2003-05-01 15:31  ikits

	* build/vc6/: glew.dsw, glew_shared.dsp, glewinfo.dsp, wglinfo.dsp:
	  [no log message]

2003-05-01 15:25  ikits

	* build/vc6/glew_shared.dsp, build/vc6/glew_static.dsp,
	  build/vc6/glewinfo.dsp, build/vc6/wglinfo.dsp, src/glew.c: [no
	  log message]

2003-05-01 14:55  ikits

	* build/vc6/: glew_shared.dsp, glew_static.dsp, glewinfo.dsp,
	  wglinfo.dsp: [no log message]

2003-05-01 14:39  ikits

	* Makefile, build/vc6/glew.dsw, build/vc6/glew_shared.dsp,
	  build/vc6/glew_static.dsp, build/vc6/glewinfo.dsp,
	  build/vc6/wglinfo.dsp, src/glew.c, src/glewinfo.c, src/wglinfo.c,
	  doc/lgpl.txt: [no log message]

2003-05-01 12:39  ikits

	* bin/.cvsignore, bin/.do.not.remove, lib/.cvsignore,
	  lib/.do.not.remove, GNUmakefile, Makefile: [no log message]

2003-04-04 13:13  ikits

	* GNUmakefile, src/wglinfo.c: [no log message]

2003-02-21 13:47  ikits

	* src/: glew.c, glewinfo.c: added linux patch

2003-02-18 01:45  ikits

	* doc/README.html: added documentation

2003-02-03 14:47  ikits

	* doc/README.html: [no log message]

2003-02-03 14:46  ikits

	* GNUmakefile: getting ready for 1.0.5

2003-02-03 14:44  ikits

	* src/wglinfo.c: added wglinfo

2003-02-03 14:34  ikits

	* doc/: README.html, wglinfo.txt: added wglinfo

2003-02-03 13:33  ikits

	* doc/glew.html: [no log message]

2003-02-03 03:34  ikits

	* GNUmakefile, doc/glew.html, src/glew.c, src/glewinfo.c: added
	  NV_texture_expand_normal

2003-01-25 13:27  ikits

	* GNUmakefile: [no log message]

2003-01-25 13:06  ikits

	* doc/: glew.html, wglew.html: [no log message]

2003-01-10 16:31  ikits

	* doc/glew.html, src/glew.c, src/glewinfo.c: cleaned up ATI
	  extensions

2003-01-10 16:07  ikits

	* doc/glew.html, src/glew.c, src/glewinfo.c: took out not
	  implemented ATI extensions

2003-01-10 08:41  ikits

	* doc/glew.html, src/glew.c, src/glewinfo.c: changed function
	  prototypes to match .glext.h; added EXT_texture3D

2003-01-10 06:47  ikits

	* GNUmakefile, doc/README.html, doc/glew.html, doc/wglew.html,
	  src/glew.c, src/glewinfo.c: Bug fixes: VertexAttribArray typos,
	  EXT_texture_env_combine missing, DrawBuffersATI typo; Added ATI
	  reference doc

2002-12-25 15:41  ikits

	* src/: glew.c, glewinfo.c: fixed blend_func_separate typo

2002-12-22 03:16  ikits

	* doc/README.html: [no log message]

2002-12-22 02:49  ikits

	* GNUmakefile: [no log message]

2002-12-22 02:37  ikits

	* doc/: glew.html, glxew.html, wglew.html: [no log message]

2002-12-22 02:34  ikits

	* doc/: README.html, glew.html, glxew.html, wglew.html: [no log
	  message]

2002-12-22 02:05  ikits

	* doc/wglew.html: [no log message]

2002-12-22 01:53  ikits

	* doc/: README.html, glew.html, glxew.html, wglew.html: [no log
	  message]

2002-12-22 01:28  ikits

	* doc/glew.html, src/glew.c, src/glewinfo.c: [no log message]

2002-12-22 00:50  ikits

	* doc/: glew.html, glxew.html, wglew.html: [no log message]

2002-12-21 20:03  ikits

	* doc/: README.html, glew.html, glxew.html, wglew.html: added list
	  of extensions to documentation

2002-12-18 14:35  ikits

	* GNUmakefile: version change in GNUmakefile

2002-12-15 03:30  ikits

	* GNUmakefile: added -lGLU to glewinfo and library version in
	  GNUmakefile

2002-12-15 03:08  ikits

	* GNUmakefile: bug fix in GNUmakefile

2002-12-15 02:36  ikits

	* doc/README.html, src/glew.c, src/glewinfo.c: added
	  glewGetExtension and updated documentation

2002-12-13 16:33  ikits

	* doc/README.html: [no log message]

2002-12-13 03:31  ikits

	* GNUmakefile, bin/.do.not.remove, doc/glew.png, doc/glx.txt,
	  doc/README.html, doc/lgpl.txt, doc/sgi.txt, lib/.do.not.remove,
	  src/glew.c, src/glewinfo.c: Initial revision

2002-12-13 03:31  ikits

	* GNUmakefile, bin/.do.not.remove, doc/glew.png, doc/glx.txt,
	  doc/README.html, doc/lgpl.txt, doc/sgi.txt, lib/.do.not.remove,
	  src/glew.c, src/glewinfo.c: glew initial import