forked from coin3d/superglu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog.v1.3.0
1079 lines (782 loc) · 25.9 KB
/
ChangeLog.v1.3.0
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
2019-12-17 22:35:35 +0100 Volker Enderlein <[email protected]> (2d02722)
Added tag superglu-1.3.0 for changeset a8b67e789a6a
2019-07-01 19:05:28 +0000 Volker Enderlein <[email protected]> (0912620)
Setup full build matrix for Debug and Release versions.
M appveyor.yml
2019-06-20 21:22:47 +0200 Volker Enderlein <[email protected]> (c491295)
Removed superfluous parameters from AppVeyor build matrix.
M appveyor.yml
2019-06-17 18:02:13 +0000 Volker Enderlein <[email protected]> (09ed5e4)
Re-enabled all AppVeyor worker images.
M appveyor.yml
2019-06-17 17:49:29 +0000 Volker Enderlein <[email protected]> (9a4cd51)
Use different appveyor image.
M appveyor.yml
2019-06-17 17:15:48 +0000 Volker Enderlein <[email protected]> (aeda04b)
Use correct cmake path for downloaded version.
M appveyor.yml
2019-06-16 20:18:56 +0000 Volker Enderlein <[email protected]> (5314654)
Use correct compiler id.
M appveyor.yml
2019-06-16 20:10:38 +0000 Volker Enderlein <[email protected]> (9bd0409)
Download prerequisites after zipping sources.
M appveyor.yml
2019-06-16 20:03:45 +0000 Volker Enderlein <[email protected]> (5dae440)
Use suitable CMake for Visual Studio 2019.
M appveyor.yml
2019-06-16 19:13:35 +0000 Volker Enderlein <[email protected]> (34939bf)
Removed Visual Studio 9 as of missing MSBuild support from AppVeyor script.
M appveyor.yml
2019-06-16 19:11:06 +0000 Volker Enderlein <[email protected]> (4f8054b)
Added Visual Studio 9 and Visual Studio 16.
M appveyor.yml
2019-05-19 17:34:45 +0000 Volker Enderlein <[email protected]> (f8e973c)
Close branch curvevalbug
2019-04-24 22:31:21 +0200 Volker Enderlein <[email protected]> (0185196)
OpenGLCurveEvaluator was not returning affine coordinates but homogeneous coordinates when setting GLU_NURBS_VERTEX or GLU_NURBS_VERTEX_DATA callbacks.
M libnurbs/interface/incurveeval.cc
2019-04-24 22:26:43 +0200 Volker Enderlein <[email protected]> (066d405)
Applying bug fixes from Mesa GLU 9.0.0 to superglu. Left Copyright section unchanged.
M include/gluos.h
M libnurbs/interface/bezierEval.cc
M libnurbs/interface/bezierEval.h
M libnurbs/interface/bezierPatch.cc
M libnurbs/interface/bezierPatch.h
M libnurbs/interface/bezierPatchMesh.cc
M libnurbs/interface/bezierPatchMesh.h
M libnurbs/interface/glcurveval.cc
M libnurbs/interface/glcurveval.h
M libnurbs/interface/glimports.h
M libnurbs/interface/glinterface.cc
M libnurbs/interface/glrenderer.cc
M libnurbs/interface/glrenderer.h
M libnurbs/interface/glsurfeval.cc
M libnurbs/interface/glsurfeval.h
M libnurbs/interface/incurveeval.cc
M libnurbs/interface/insurfeval.cc
M libnurbs/interface/mystdio.h
M libnurbs/interface/mystdlib.h
M libnurbs/internals/arc.cc
M libnurbs/internals/arc.h
M libnurbs/internals/arcsorter.cc
M libnurbs/internals/arcsorter.h
M libnurbs/internals/arctess.cc
M libnurbs/internals/arctess.h
M libnurbs/internals/backend.cc
M libnurbs/internals/backend.h
M libnurbs/internals/basiccrveval.cc
M libnurbs/internals/basiccrveval.h
M libnurbs/internals/basicsurfeval.cc
M libnurbs/internals/basicsurfeval.h
M libnurbs/internals/bezierarc.h
M libnurbs/internals/bin.cc
M libnurbs/internals/bin.h
M libnurbs/internals/bufpool.cc
M libnurbs/internals/bufpool.h
M libnurbs/internals/cachingeval.cc
M libnurbs/internals/cachingeval.h
M libnurbs/internals/ccw.cc
M libnurbs/internals/coveandtiler.cc
M libnurbs/internals/coveandtiler.h
M libnurbs/internals/curve.cc
M libnurbs/internals/curve.h
M libnurbs/internals/curvelist.cc
M libnurbs/internals/curvelist.h
M libnurbs/internals/curvesub.cc
M libnurbs/internals/dataTransform.cc
M libnurbs/internals/dataTransform.h
M libnurbs/internals/defines.h
M libnurbs/internals/displaylist.cc
M libnurbs/internals/displaylist.h
M libnurbs/internals/displaymode.h
M libnurbs/internals/flist.cc
M libnurbs/internals/flist.h
M libnurbs/internals/flistsorter.cc
M libnurbs/internals/flistsorter.h
M libnurbs/internals/gridline.h
M libnurbs/internals/gridtrimvertex.h
M libnurbs/internals/gridvertex.h
M libnurbs/internals/hull.cc
M libnurbs/internals/hull.h
M libnurbs/internals/intersect.cc
M libnurbs/internals/jarcloc.h
M libnurbs/internals/knotvector.cc
M libnurbs/internals/knotvector.h
M libnurbs/internals/mapdesc.cc
M libnurbs/internals/mapdesc.h
M libnurbs/internals/mapdescv.cc
M libnurbs/internals/maplist.cc
M libnurbs/internals/maplist.h
M libnurbs/internals/mesher.cc
M libnurbs/internals/mesher.h
M libnurbs/internals/monoTriangulationBackend.cc
M libnurbs/internals/monotonizer.cc
M libnurbs/internals/monotonizer.h
M libnurbs/internals/myassert.h
M libnurbs/internals/mycode.cc
M libnurbs/internals/mymath.h
M libnurbs/internals/mysetjmp.h
M libnurbs/internals/mystring.h
M libnurbs/internals/nurbsconsts.h
M libnurbs/internals/nurbsinterfac.cc
M libnurbs/internals/nurbstess.cc
M libnurbs/internals/nurbstess.h
M libnurbs/internals/patch.cc
M libnurbs/internals/patch.h
M libnurbs/internals/patchlist.cc
M libnurbs/internals/patchlist.h
M libnurbs/internals/pwlarc.h
M libnurbs/internals/quilt.cc
M libnurbs/internals/quilt.h
M libnurbs/internals/reader.cc
M libnurbs/internals/reader.h
M libnurbs/internals/renderhints.cc
M libnurbs/internals/renderhints.h
M libnurbs/internals/simplemath.h
M libnurbs/internals/slicer.cc
M libnurbs/internals/slicer.h
M libnurbs/internals/sorter.cc
M libnurbs/internals/sorter.h
M libnurbs/internals/splitarcs.cc
M libnurbs/internals/subdivider.cc
M libnurbs/internals/subdivider.h
M libnurbs/internals/tobezier.cc
M libnurbs/internals/trimline.cc
M libnurbs/internals/trimline.h
M libnurbs/internals/trimregion.cc
M libnurbs/internals/trimregion.h
M libnurbs/internals/trimvertex.h
M libnurbs/internals/trimvertpool.cc
M libnurbs/internals/trimvertpool.h
M libnurbs/internals/types.h
M libnurbs/internals/uarray.cc
M libnurbs/internals/uarray.h
M libnurbs/internals/varray.cc
M libnurbs/internals/varray.h
M libnurbs/nurbtess/definitions.h
M libnurbs/nurbtess/directedLine.cc
M libnurbs/nurbtess/directedLine.h
M libnurbs/nurbtess/glimports.h
M libnurbs/nurbtess/gridWrap.cc
M libnurbs/nurbtess/gridWrap.h
M libnurbs/nurbtess/monoChain.cc
M libnurbs/nurbtess/monoChain.h
M libnurbs/nurbtess/monoPolyPart.cc
M libnurbs/nurbtess/monoPolyPart.h
M libnurbs/nurbtess/monoTriangulation.cc
M libnurbs/nurbtess/monoTriangulation.h
M libnurbs/nurbtess/mystdio.h
M libnurbs/nurbtess/mystdlib.h
M libnurbs/nurbtess/partitionX.cc
M libnurbs/nurbtess/partitionX.h
M libnurbs/nurbtess/partitionY.cc
M libnurbs/nurbtess/partitionY.h
M libnurbs/nurbtess/polyDBG.cc
M libnurbs/nurbtess/polyDBG.h
M libnurbs/nurbtess/polyUtil.cc
M libnurbs/nurbtess/polyUtil.h
M libnurbs/nurbtess/primitiveStream.cc
M libnurbs/nurbtess/primitiveStream.h
M libnurbs/nurbtess/quicksort.cc
M libnurbs/nurbtess/quicksort.h
M libnurbs/nurbtess/rectBlock.cc
M libnurbs/nurbtess/rectBlock.h
M libnurbs/nurbtess/sampleComp.cc
M libnurbs/nurbtess/sampleComp.h
M libnurbs/nurbtess/sampleCompBot.cc
M libnurbs/nurbtess/sampleCompBot.h
M libnurbs/nurbtess/sampleCompRight.cc
M libnurbs/nurbtess/sampleCompRight.h
M libnurbs/nurbtess/sampleCompTop.cc
M libnurbs/nurbtess/sampleCompTop.h
M libnurbs/nurbtess/sampleMonoPoly.cc
M libnurbs/nurbtess/sampleMonoPoly.h
M libnurbs/nurbtess/sampledLine.cc
M libnurbs/nurbtess/sampledLine.h
M libnurbs/nurbtess/searchTree.cc
M libnurbs/nurbtess/searchTree.h
M libnurbs/nurbtess/zlassert.h
M libtess/dict-list.h
M libtess/dict.c
M libtess/dict.h
M libtess/geom.c
M libtess/geom.h
M libtess/memalloc.c
M libtess/memalloc.h
M libtess/mesh.c
M libtess/mesh.h
M libtess/normal.c
M libtess/normal.h
M libtess/priorityq-heap.c
M libtess/priorityq-heap.h
M libtess/priorityq-sort.h
M libtess/priorityq.c
M libtess/priorityq.h
M libtess/render.c
M libtess/render.h
M libtess/sweep.c
M libtess/sweep.h
M libtess/tess.c
M libtess/tess.h
M libtess/tessmono.c
M libtess/tessmono.h
M libutil/error.c
M libutil/glue.c
M libutil/gluint.h
M libutil/mipmap.c
M libutil/project.c
M libutil/quad.c
M libutil/registry.c
2019-03-08 22:08:30 +0100 Volker Enderlein <[email protected]> (c02f8a1)
Removed superfluous $<INSTALL_PREFIX>. Used PATH_VARS for transferring information to package config file.
M CMakeLists.txt
M superglu-config.cmake.in
2018-12-23 15:50:47 +0000 Volker Enderlein <[email protected]> (da2ae84)
Close branch addsource-ci
2018-12-23 16:39:04 +0100 Volker Enderlein <[email protected]> (a40e501)
Added source package creation to appveyor.
M appveyor.yml
2018-10-25 22:01:05 +0000 Volker Enderlein <[email protected]> (1ec488d)
Close branch configpackage
2018-10-25 22:50:23 +0200 Volker Enderlein <[email protected]> (4daf5be)
Fixed CMake warning about OpenGL.
M CMakeLists.txt
2018-10-25 22:01:07 +0200 Volker Enderlein <[email protected]> (054f05e)
Synchronized layout of CMake script with other pckages of Coin3D.
M CMakeLists.txt
2018-10-25 22:00:33 +0200 Volker Enderlein <[email protected]> (efa1346)
Updated config package.
M superglu-config.cmake.in
2018-10-05 23:27:05 +0000 Volker Enderlein <[email protected]> (b7bab3f)
Close branch appveyor-ci
2018-06-06 22:55:07 +0200 Volker Enderlein <[email protected]> (3da187e)
Added AppVeyor script
A appveyor.yml
2018-06-06 22:52:28 +0200 Volker Enderlein <[email protected]> (8ef5033)
Consequent use of CMake variables throughout CMakeLists.txt
M CMakeLists.txt
2018-06-06 22:50:09 +0200 Volker Enderlein <[email protected]> (a9108ea)
Added default build type for non multi configuration environments (Visual Studio, Xcode).
M CMakeLists.txt
2018-06-06 22:46:47 +0200 Volker Enderlein <[email protected]> (70cc93a)
Reduced warnings
M cfg/genheader.pl
2018-06-06 22:42:10 +0200 Volker Enderlein <[email protected]> (f900806)
Corrected superglu.h creation!
M CMakeLists.txt
2018-06-06 22:38:19 +0200 Volker Enderlein <[email protected]> (3eea4a9)
Adapting include dirs!
M CMakeLists.txt
2018-06-06 22:35:46 +0200 Volker Enderlein <[email protected]> (957ee6b)
Defining _WIN32 is a no go!
M CMakeLists.txt
2018-06-06 22:33:44 +0200 Volker Enderlein <[email protected]> (b2be153)
Perl needs to be uppercase in find_package call.
M CMakeLists.txt
2018-04-30 09:51:20 +0200 Volker Enderlein <Volker Enderlein@localhost> (80aac8d)
fixed config file.
M superglu-config.cmake.in
2018-04-13 00:51:33 +0200 Volker Enderlein <[email protected]> (acc4c93)
Added CMake files.
A CMakeLists.txt
A include/config.h.cmake.in
A libnurbs/CMakeLists.txt
A libnurbs/interface/CMakeLists.txt
A libnurbs/internals/CMakeLists.txt
A libnurbs/nurbtess/CMakeLists.txt
A libtess/CMakeLists.txt
A libutil/CMakeLists.txt
A superglu-config.cmake.in
2008-02-27 16:08:00 +0000 Lars J. Aas <[email protected]> (7cc7e8f)
use /usr/bin/env to kickstart interpreter from a path search
M cfg/doxy4win.pl
M cfg/genheader.pl
2008-02-15 10:41:31 +0000 Frode ?ijord <[email protected]> (b50bfc5)
bootstrap
M aclocal.m4
M cfg/config.guess
M cfg/config.sub
M cfg/errors.txt
M cfg/wrapmsvc.exe
M configure
2008-02-15 10:40:05 +0000 Frode ?ijord <[email protected]> (d337cf3)
ignore static/shared configure options on windows
M configure.ac
2006-10-03 20:12:51 +0000 autosvn <[email protected]> (9b416d9)
Automatic Property adjustment.
M cfg/ltmain.sh
2006-10-03 20:12:46 +0000 autosvn <[email protected]> (836838e)
Remove now obsolete .cvsignore files.
D .cvsignore
D include/.cvsignore
D include/GL/.cvsignore
D libnurbs/.cvsignore
D libnurbs/interface/.cvsignore
D libnurbs/internals/.cvsignore
D libnurbs/nurbtess/.cvsignore
D libtess/.cvsignore
D libutil/.cvsignore
2006-09-26 09:41:07 +0000 Frode ?ijord <[email protected]> (d940724)
bootstrap
M aclocal.m4
M cfg/config.guess
M cfg/config.sub
M cfg/errors.txt
M cfg/gendsp.sh.in
M cfg/ltmain.sh
M cfg/wrapmsvc.exe
M configure
2006-02-03 11:08:02 +0000 Morten Eriksen <[email protected]> (1e63d48)
Robustness: fixes various problems detected by Valgrind, among other things. Robustness stuff, like e.g. initializing variables, picking up problems with asserts, etc.
M libnurbs/interface/glcurveval.cc
M libnurbs/interface/glcurveval.h
M libnurbs/interface/glsurfeval.h
M libnurbs/internals/nurbstess.h
M libnurbs/nurbtess/monoTriangulation.cc
M libnurbs/nurbtess/sampleComp.cc
M libnurbs/nurbtess/sampleCompRight.cc
M libnurbs/nurbtess/sampleMonoPoly.cc
2005-04-28 14:09:46 +0000 Morten Eriksen <[email protected]> (6c48ea4)
Bugfix from SGI Bugzilla (http://oss.sgi.com/bugzilla/show_bug.cgi?id=71), seems to take care of a nasty GL error.
M libnurbs/internals/slicer.cc
2005-04-28 09:46:41 +0000 Morten Eriksen <[email protected]> (4739891)
Less default debug output.
M libnurbs/internals/ccw.cc
2005-04-19 09:53:52 +0000 Morten Eriksen <[email protected]> (1073cc4)
Bootstrap.
M aclocal.m4
M configure
2005-04-19 09:47:05 +0000 Morten Eriksen <[email protected]> (9c8875c)
MSVC DLL building not ready for general consumption yet.
M configure.ac
2005-04-12 12:52:15 +0000 Morten Eriksen <[email protected]> (3934239)
Bootstrap.
M aclocal.m4
M cfg/config.guess
M cfg/config.sub
M cfg/errors.txt
A cfg/gendsp.sh.in
M cfg/ltmain.sh
M cfg/wrapmsvc.exe
M configure
2005-04-12 12:52:05 +0000 Morten Eriksen <[email protected]> (fdfe32f)
Allow building as DLL under MS Windows.
M configure.ac
2003-11-19 11:03:24 +0000 Morten Eriksen <[email protected]> (9f068b3)
Bugfix: mismatched new[] / delete found by Valgrind.
A fixed-bugs/20031119--mismatched-delete.diff
M libnurbs/internals/trimvertpool.cc
2003-11-19 11:00:38 +0000 Morten Eriksen <[email protected]> (b232296)
Start keeping track of our local modifications in an easily accessible manner.
A fixed-bugs/README.txt
2003-11-19 10:51:11 +0000 Morten Eriksen <[email protected]> (f929574)
Report installation type.
M configure.ac
2003-06-10 12:42:35 +0000 Lars J. Aas <[email protected]> (dee027f)
bootstrap so 'make dist' works
M Makefile.in
M aclocal.m4
M cfg/config.guess
M cfg/config.sub
M cfg/depcomp
M cfg/errors.txt
M cfg/gendsp.sh
M cfg/install-sh
M cfg/ltmain.sh
M cfg/missing
M cfg/mkinstalldirs
M configure
M include/Makefile.in
M include/config.h.in
M libnurbs/Makefile.in
M libnurbs/interface/Makefile.in
M libnurbs/internals/Makefile.in
M libnurbs/nurbtess/Makefile.in
M libtess/Makefile.in
M libutil/Makefile.in
2003-04-29 12:59:28 +0000 Morten Eriksen <[email protected]> (47945db)
Renamed configure.in to configure.ac.
R100 configure.in configure.ac
2003-04-29 12:59:08 +0000 Morten Eriksen <[email protected]> (eaa0705)
Convert from conf-macros to simacros. Bootstrap.
M Makefile.am
M Makefile.in
M aclocal.m4
M bootstrap
M cfg/config.guess
M cfg/config.sub
M cfg/depcomp
A cfg/doxy4win.pl
A cfg/errors.txt
A cfg/gendsp.sh
M cfg/install-sh
M cfg/missing
M cfg/mkinstalldirs
A cfg/wrapmsvc.exe
M configure
M libnurbs/interface/Makefile.in
M libnurbs/internals/Makefile.in
M libnurbs/nurbtess/Makefile.in
M libtess/Makefile.in
M libutil/Makefile.in
2003-03-09 12:56:07 +0000 Morten Eriksen <[email protected]> (5a823df)
Simplifies MSVC++ selection and setup. Also kills a bug where BUILD_WITH_MSVC could end up not being AC_SUBSTed.
M configure.in
2002-11-07 13:52:29 +0000 Morten Eriksen <[email protected]> (69903e0)
Match with correct API interface wrt calling conventions under Win32.
M libnurbs/interface/glinterface.cc
2002-11-07 13:51:45 +0000 Morten Eriksen <[email protected]> (fa7f7fa)
Don't bother with two different calling convention defines, can use APIENTRY instead of CALLBACK.
M cfg/genheader.pl
2002-11-07 12:45:52 +0000 Morten Eriksen <[email protected]> (9445157)
Compilation fixes.
M libnurbs/interface/glinterface.cc
2002-11-07 11:50:24 +0000 Morten Eriksen <[email protected]> (b1d76e8)
Set up library interface with default calling convention for exported API-methods.
M cfg/genheader.pl
2002-11-07 11:49:50 +0000 Morten Eriksen <[email protected]> (89fda2b)
Build library with default calling convention for exported API-methods.
M include/gluos.h
2002-09-26 09:51:09 +0000 Morten Eriksen <[email protected]> (e7f0217)
Bootstrap.
M aclocal.m4
M configure
2002-09-26 09:50:22 +0000 Morten Eriksen <[email protected]> (9585df9)
Report CRT configuration at end of configure run.
M configure.in
2002-09-26 09:41:52 +0000 Morten Eriksen <[email protected]> (a910129)
Bootstrap.
M aclocal.m4
M configure
M include/config.h.in
2002-09-26 09:41:20 +0000 Morten Eriksen <[email protected]> (a6c456d)
Add option to choose MSVC C run-time library.
M configure.in
2002-05-22 07:41:30 +0000 Morten Eriksen <[email protected]> (0c75742)
Update a few macro names.
M configure.in
2001-12-18 11:41:35 +0000 Morten Eriksen <[email protected]> (65c57ce)
Small cleanup of internal namespace; min(), max() and abs() renamed to glu_min(), glu_max() and glu_abs() to avoid namespace clashes. Thanks to Colin Dunlop for notifying us about the problem.
M libnurbs/internals/arc.cc
M libnurbs/internals/arctess.cc
M libnurbs/internals/ccw.cc
M libnurbs/internals/patch.cc
M libnurbs/internals/quilt.cc
M libnurbs/internals/reader.cc
M libnurbs/internals/simplemath.h
M libnurbs/internals/subdivider.cc
2001-11-12 14:27:11 +0000 Lars J. Aas <[email protected]> (ca608be)
define NDEBUG always
M configure
M configure.in
2001-10-29 09:35:26 +0000 Lars J. Aas <[email protected]> (db3b574)
dist fixes
M include/Makefile.am
M include/Makefile.in
2001-10-26 18:08:53 +0000 Lars J. Aas <[email protected]> (59c804e)
distclean superglu.h
M include/Makefile.am
M include/Makefile.in
2001-10-26 17:37:04 +0000 Lars J. Aas <[email protected]> (f0e4502)
make distcheck
M Makefile.am
M Makefile.in
M aclocal.m4
M configure
M configure.in
2001-10-26 16:38:13 +0000 Lars J. Aas <[email protected]> (8472ec2)
accept any wrapmsvc.exe as an MSVC++ compiler
M aclocal.m4
M configure
M configure.in
2001-10-19 10:52:41 +0000 Morten Eriksen <[email protected]> (8086c90)
Make sure there will be no clash with the glu.h that might already reside on the system when building the library.
M Makefile.am
M Makefile.in
M aclocal.m4
M configure
M configure.in
D include/GL/Makefile.am
D include/GL/Makefile.in
M include/Makefile.am
M include/Makefile.in
M libnurbs/Makefile.in
M libnurbs/interface/Makefile.in
M libnurbs/interface/bezierPatch.cc
M libnurbs/interface/glinterface.cc
M libnurbs/interface/glrenderer.h
M libnurbs/internals/Makefile.in
M libnurbs/nurbtess/Makefile.in
M libtess/Makefile.in
M libtess/mesh.h
M libtess/tess.h
M libutil/Makefile.in
M libutil/error.c
M libutil/mipmap.c
M libutil/project.c
M libutil/quad.c
M libutil/registry.c
2001-10-14 20:18:16 +0000 Morten Eriksen <[email protected]> (14da643)
Adds rule for constructing a GLU.lst file.
M Makefile.am
M Makefile.in
2001-10-14 18:36:08 +0000 Morten Eriksen <[email protected]> (6a56ed8)
Bootstrap with upgraded libtool to version 1.4.2.
M Makefile.in
M aclocal.m4
M bootstrap
M cfg/config.guess
M cfg/config.sub
D cfg/ltconfig.diff
M cfg/ltmain.sh
D cfg/ltmain.sh.diff
M cfg/missing
M configure
M include/GL/Makefile.in
M include/Makefile.in
M include/config.h.in
M libnurbs/Makefile.in
M libnurbs/interface/Makefile.in
M libnurbs/internals/Makefile.in
M libnurbs/nurbtess/Makefile.in
M libtess/Makefile.in
M libutil/Makefile.in
2001-10-14 18:33:33 +0000 Morten Eriksen <[email protected]> (3183de5)
New option "--with-libname-prefix" to specify a prefix string for the name of the installed library file(s).
M Makefile.am
M configure.in
2001-09-19 14:45:57 +0000 Lars J. Aas <[email protected]> (3a3dc70)
add ifdef GL_VERSION_1_2 wrappers
M libutil/mipmap.c
2001-09-19 14:38:29 +0000 Lars J. Aas <[email protected]> (7e01e0e)
predeclare GridVertex as struct to resolve for name-mangling problems
M libnurbs/internals/coveandtiler.h
2001-09-19 14:07:32 +0000 Lars J. Aas <[email protected]> (aea7102)
bootstrap
M configure
M include/config.h.in
2001-09-19 14:06:43 +0000 Lars J. Aas <[email protected]> (4592808)
reverse wrong fix and try new one
M configure.in
M libutil/mipmap.c
2001-09-19 13:50:53 +0000 Lars J. Aas <[email protected]> (9991d23)
bootstrap
M configure
M include/config.h.in
2001-09-19 13:50:05 +0000 Lars J. Aas <[email protected]> (e7cb182)
get missing prototype setup
M cfg/genheader.pl
M configure.in
M include/gluos.h
M libutil/mipmap.c
2001-09-19 12:44:41 +0000 Lars J. Aas <[email protected]> (e261c11)
automaked file
M libtess/Makefile.in
2001-09-19 12:41:54 +0000 Lars J. Aas <[email protected]> (be5ad00)
don't compile priorityq-heap.c directly
M libtess/Makefile.am
2001-09-18 16:19:05 +0000 Lars J. Aas <[email protected]> (09727bc)
some windows-dll-related tweaks
M cfg/genheader.pl
M configure
M configure.in
2001-09-18 15:57:27 +0000 Lars J. Aas <[email protected]> (ed95ae9)
misc fixes
M configure
M configure.in
M include/GL/.cvsignore
M libnurbs/interface/Makefile.am
M libnurbs/interface/Makefile.in
M libnurbs/nurbtess/Makefile.am
M libnurbs/nurbtess/Makefile.in
M libtess/Makefile.am
M libtess/Makefile.in
M libutil/Makefile.am
M libutil/Makefile.in
2001-09-18 15:38:03 +0000 Lars J. Aas <[email protected]> (95eed96)
glu.h generation setup
M Makefile.am
M Makefile.in
M configure
M configure.in
D gnumakefiles.tar
M include/GL/Makefile.am
M include/GL/Makefile.in
D include/GL/glu.h
D libspec/.cvsignore
D libspec/Makefile.am
D libspec/Makefile.in
D libspec/cutils.ls
D libspec/libspec.awk
D libspec/libspec.pm
D libspec/libspec.sh.in
D libspec/libspeccutils.pm
D libspec/libspecdefs
D libspec/spectypes.pl
2001-09-18 15:32:08 +0000 Lars J. Aas <[email protected]> (106e88c)
perl hack to generate GL/glu.h
A cfg/genheader.pl
2001-09-18 11:34:32 +0000 Lars J. Aas <[email protected]> (0da2a41)
Will be dealt with by Automake
D Distfile
D libspec/Distfile
2001-09-18 11:32:34 +0000 Lars J. Aas <[email protected]> (5ac7df2)
setup updates
M .cvsignore
D GNUmakefile
M Makefile.am
M Makefile.in
M bootstrap
M configure
M configure.in
A gnumakefiles.tar
A include/.cvsignore
A include/GL/.cvsignore
A libnurbs/.cvsignore
D libnurbs/GNUmakefile
A libnurbs/interface/.cvsignore
D libnurbs/interface/GNUmakefile
A libnurbs/internals/.cvsignore
D libnurbs/internals/GNUmakefile
A libnurbs/nurbtess/.cvsignore
D libnurbs/nurbtess/GNUmakefile
A libspec/.cvsignore
D libspec/GNUmakefile
A libspec/Makefile.am
A libspec/Makefile.in
R099 libspec/libspec.sh libspec/libspec.sh.in
A libtess/.cvsignore
D libtess/GNUmakefile
A libutil/.cvsignore
D libutil/GNUmakefile
2001-09-18 10:53:59 +0000 Lars J. Aas <[email protected]> (0c028a3)
the SGI libspec utility
A libspec/Distfile
A libspec/GNUmakefile
A libspec/cutils.ls
A libspec/libspec.awk
A libspec/libspec.pm
A libspec/libspec.sh
A libspec/libspeccutils.pm
A libspec/libspecdefs
A libspec/spectypes.pl
2001-09-17 17:50:14 +0000 Lars J. Aas <[email protected]> (efbf477)
ignore autom4te.cache
A .cvsignore
2001-09-17 17:48:52 +0000 Lars J. Aas <[email protected]> (8e9791b)
misc setup adjustments
A AUTHORS
A COPYING
A INSTALL
M Makefile.am
M Makefile.in
A NEWS
A README
A aclocal.m4
M bootstrap
D config.h.in
M configure
M configure.in
A include/Makefile.am
A include/Makefile.in
A include/config.h.in
A include/stamp-h.in
M libnurbs/Makefile.in
M libnurbs/interface/Makefile.am
M libnurbs/interface/Makefile.in
M libnurbs/internals/Makefile.am
M libnurbs/internals/Makefile.in
M libnurbs/nurbtess/Makefile.am
M libnurbs/nurbtess/Makefile.in
M libtess/Makefile.am
M libtess/Makefile.in
M libutil/Makefile.am
M libutil/Makefile.in
2001-09-17 17:48:13 +0000 Lars J. Aas <[email protected]> (9c591fa)
temporary pregenerated header
A include/GL/Makefile.am
A include/GL/Makefile.in
A include/GL/glu.h
2001-09-05 10:34:25 +0000 Peder Blekken <[email protected]> (f1cd0d9)
Spec files
A specs/enumglu.spec
A specs/glu.spec
2001-09-04 20:39:29 +0000 Morten Eriksen <[email protected]> (ae89b6a)
Initial "auto-confiscation" (ie converts configure / build process to be based on the Autoconf, Automake and Libtool utilities).
A Makefile.am
A Makefile.in
A bootstrap
A cfg/config.guess
A cfg/config.sub
A cfg/depcomp
A cfg/install-header
A cfg/install-sh
A cfg/ltconfig
A cfg/ltconfig.diff
A cfg/ltmain.sh
A cfg/ltmain.sh.diff
A cfg/missing
A cfg/mkinstalldirs
A config.h.in
A configure
A configure.in
A libnurbs/Makefile.am
A libnurbs/Makefile.in
A libnurbs/interface/Makefile.am
A libnurbs/interface/Makefile.in
A libnurbs/internals/Makefile.am
A libnurbs/internals/Makefile.in
A libnurbs/nurbtess/Makefile.am
A libnurbs/nurbtess/Makefile.in