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
|
SCCS-info %W% %E%
$Id: README.SYS,v 1.5 1994/08/02 15:59:33 sander Exp sander $
SYSTEMS WHERE VCG WAS CHECKED TO RUN
====================================
Note: I don't have anymore an IBM AIX system. The AIX validation refers
to the check of the older version VCG 1.2. I also don't have the
ULTRIX machine. This test was done by a user of VCG.
uname -srm CC CFLAGS WindowSystem
--------------------------------------------------------------------------
SunOS 4.1.3 sun4c gcc (version 2.4.5) -c -O X11R4
SunOS 4.1.3 sun4c gcc (version 2.4.5) -c -O X11R5
SunOS 4.1.3 sun4c gcc (version 2.6.3) (5) X11R6
SunOS 4.1.3 sun4c g++ (version 2.6.3) (5) X11R6
SunOS 4.1.3 sun4c cc (SunOS 4.1 K&R C) -c -O X11R5
SunOS 5.3 sun4m gcc (version 2.6.3) (5) Soraris Openwin
IRIX 5.2 IP22 cc (the MIPS ucode CC) (1a) X11R5
IRIX 4.0.5H IP22 cc (the MIPS ucode CC) (1b) X11R5
AIX 2 000047594100 cc (XL R6000 CC) (2) AIX Windows
Linux 0.99.13 i486 gcc (version 2.5.2) -c -O X11R5
HP-UX A.08.07 9000/730 c89 (POSIX ANSI C) (3) X11R5
HP-UX A.08.07 9000/730 cc (K&R C) (3) X11R5
HP-UX A.08.07 9000/730 gcc (version 2.6.3) -c -O X11R5
ULTRIX ????????? gcc (4) X11R5
(1a) -c -O -D__STDC__ -signed on IRIX
(1b) -c -O -D__STDC__ on IRIX
(2) -c -O -DAIXCC -DAIX on AIX
(3) -c -O -DHPUX -D_INCLUDE_POSIX_SOURCE on HP-UX
(4) -c -O -DULTRIX on ULTRIX
(5) -c -O -finline-functions -pipe on SunOS
The following setups are tested on different machines. First, we list
the setups as it is written in Makefile, src/globals.h and demo/demo.csh.
These lists can be used, if you set up these files manually.
After that, a list of setups is added as it is produced by the config script
which can be used if you like to setup the files automatically by using
config.
Note that some access pathes (e.g. BINPATH, MANPATH, everything around X11)
may be different on your system.
On the Solaris machnine (SunOS 5.3) we had only gcc available, since the
language package was not installed. Thus, no tests with the Sun C compiler.
========== Setup for SunOS (Sparcstation, X11R5, gcc ) =================
PROBLEMS WITH SunOS:
--------------------
1) It might be the case that parsegen is not available.
Further, a tool called not_available might be called.
Both tools are not required, thus messages about the nonexisting
of both tools can be ignored.
2) In some module, variables are declared but never used. This depends
on the configuration. In other configurations, the same variables
might be used.
3) Linking with gcc -static causes strange effects: e.g. remote
xvcg -display ... does not work. (This is not anymore true for
gcc 2.6.3).
4) On Solaris (SunOS 5.3), we had to setenv
LD_LIBRARY_PATH=/usr/openwin/lib:/usr/lib:/lib
Otherwise, the dynamic libraries of X11 are not found, which results
in messages like this:
ld.so.1: xvcg: fatal: libXext.so.0: can't open file: errno=2
Killed
5) On Solaris (SunOS 5.3), we used /usr/ucb/install instead of
/bin/install, i.e.
INSTALLDIR = /usr/ucb/install -d -m 755
INSTALL = /usr/ucb/install -s -m 755 dummy /home/sander/bin/dummy
INSTALLMAN = /usr/ucb/install -m 644 dummy /home/sander/man/manl/dummy
SETUPS FOR SUNOS:
----------------
In Makefile (top level):
BINDIR = /RW/esprit/users/sander/bin/
MANDIR = /RW/esprit/users/sander/man/manl/
MANEXT = l
VCGTOOL = xvcg
VCGCALL = $(BINDIR)/$(VCGTOOL)
CFLAGS = -c -O -finline-functions -pipe
DFLAGS =
CLINKFLAGS = -o
INCLUDES = -I/RW/esprit/X11R5/include/
LIBPATH = -L/RW/esprit/X11R5/lib/
LIBRARIES = -lXext -lX11 -lm
CC = /usr/local/bin/gcc
CCLINK = /usr/local/bin/gcc
CPP = $(CC) -E
INSTALLDIR = /bin/install -d -m 755
INSTALL = /bin/install -s -m 755 dummy /RW/esprit/users/sander/bin/dummy
INSTALLMAN = /bin/install -m 644 dummy /RW/esprit/users/sander/man/manl/dummy
BIGLATEX = /TeX/bin/big-latex
TRANSFIGPS = /RW/users/sander/PUBLIC/TEX/fig2dev
LEX = /usr/local/bin/flex
YACC = /usr/local/bin/bison -ydt
MAKE = /bin/make
DEPEND = /RW/users/sander/bin/makedepend
SED = /bin/sed
MV = /bin/mv
LN = /bin/ln
RM = /bin/rm
CD = cd
TOUCH = /bin/touch
In src/globals.h:
#define ANSI_C
#undef NO_STDINCLUDES
#define USR_SIGNAL
#undef OWN_QUICKSORT
#define X11
#define ALIGN 8
#define MEMBLOCKSIZE 1048576
#define VCG_DEFAULT_FONT "-*-courier-*-r-normal--16-*-*-*-*-*-*-*"
#define NOINPUTFOCUS
#undef DEBUG
#define CHECK_ASSERTIONS
#undef ASSERT_AVAIL
#undef CHECK_TIMING
In demo/demo/csh (We used a Monochromatic Screen):
set mvcgn = "/RW/esprit/users/sander/bin/xvcg"
set mycat = "/bin/cat"
set myrm = "/bin/rm"
set mysleep = "/bin/sleep"
set mysed = "/bin/sed"
set mywc = "/usr/ucb/wc"
set mygrep = "/bin/fgrep"
set myclear = "/usr/ucb/clear"
LIST OF SUBSTITUTES as produced by config
-----------------------------------------
CCNAME == /usr/local/bin/gcc
CATNAME == /bin/cat
WCNAME == /usr/ucb/wc
FGREPNAME == /bin/fgrep
MAKENAME == /bin/make
MVNAME == /bin/mv
LNNAME == /bin/ln
CLEARNAME == /usr/ucb/clear
SEDNAME == /bin/sed
SYNCNAME == /bin/sync
TOUCHNAME == /bin/touch
RMNAME == /bin/rm
CHMODNAME == /bin/chmod
SLEEPNAME == /bin/sleep
CCLINKNAME == /usr/local/bin/gcc
VCGNAME == xvcg
BIGLTEXNAME == /TeX/bin/big-latex
FIGTODEVNAME == /RW/users/sander/PUBLIC/TEX/fig2dev
WINDOWSYSTEMNAME == #define X11
FONTALIASNAME == -*-courier-*-r-normal--16-*-*-*-*-*-*-*
INPUTFOCUSNAME == #define NOINPUTFOCUS
ALIGNMENTNAME == 8
BLOCKSIZENAME == 1048576
MAKEDEPENDNAME == /RW/users/sander/bin/makedepend
BISONNAME == /usr/local/bin/bison -ydt
FLEXNAME == /usr/local/bin/flex
ANSINAME == #define ANSI_C
BINPATHNAME == /RW/esprit/users/sander/bin/
MANPATHNAME == /RW/esprit/users/sander/man/manl/
MANEXTNAME == l
CFLAGSNAME == -c -O -finline-functions -pipe
CLINKFLAGSNAME == -o
ADDINCLUDEPATHNAME == -I/RW/esprit/X11R5/include/
ADDLIBPATHNAME == -L/RW/esprit/X11R5/lib/
ADDLIBSNAME == -lXext -lX11 -lm
INSTALLDIRNAME == /bin/install -d -m 755
INSTALLBINNAME == /bin/install -s -m 755 dummy /RW/esprit/users/sander/bin/dummy
INSTALLMANNAME == /bin/install -m 644 dummy /RW/esprit/users/sander/man/manl/dummy
========== Setup for SunOS (Sparcstation, X11R5, g++ ) =================
PROBLEMS WITH SunOS:
--------------------
1) It might be the case that parsegen is not available.
Further, a tool called not_available might be called.
Both tools are not required, thus messages about the nonexisting
of both tools can be ignored.
2) In some module, variables are declared but never used. This depends
on the configuration. In other configurations, the same variables
might be used.
3) Linking with g++ -static causes strange effects: e.g. remote
xvcg -display ... does not work. (This is not anymore true for
g++ 2.6.3).
4) g++ reports some implicit declarations of some library functions.
Obviously, the library header files are not complete. But these
warnings are not fatal and can be ignored.
SETUPS FOR SUNOS:
----------------
In Makefile (top level):
BINDIR = /RW/esprit/users/sander/bin/
MANDIR = /RW/esprit/users/sander/man/manl/
MANEXT = l
VCGTOOL = xvcg
VCGCALL = $(BINDIR)/$(VCGTOOL)
CFLAGS = -c -O -finline-functions -pipe
DFLAGS =
CLINKFLAGS = -o
INCLUDES = -I/RW/esprit/X11R5/include/
LIBPATH = -L/RW/esprit/X11R5/lib/
LIBRARIES = -lXext -lX11 -lm
CC = /usr/local/bin/g++
CCLINK = /usr/local/bin/g++
CPP = $(CC) -E
INSTALLDIR = /bin/install -d -m 755
INSTALL = /bin/install -s -m 755 dummy /RW/esprit/users/sander/bin/dummy
INSTALLMAN = /bin/install -m 644 dummy /RW/esprit/users/sander/man/manl/dummy
BIGLATEX = /TeX/bin/big-latex
TRANSFIGPS = /RW/users/sander/PUBLIC/TEX/fig2dev
LEX = /usr/local/bin/flex
YACC = /usr/local/bin/bison -ydt
MAKE = /bin/make
DEPEND = /RW/users/sander/bin/makedepend
SED = /bin/sed
MV = /bin/mv
LN = /bin/ln
RM = /bin/rm
CD = cd
TOUCH = /bin/touch
In src/globals.h:
#define ANSI_C
#undef NO_STDINCLUDES
#define USR_SIGNAL
#undef OWN_QUICKSORT
#define X11
#define ALIGN 8
#define MEMBLOCKSIZE 1048576
#define VCG_DEFAULT_FONT "-*-courier-*-r-normal--16-*-*-*-*-*-*-*"
#define NOINPUTFOCUS
#undef DEBUG
#define CHECK_ASSERTIONS
#undef ASSERT_AVAIL
#undef CHECK_TIMING
In demo/demo/csh (We used a Monochromatic Screen):
set mvcgn = "/RW/esprit/users/sander/bin/xvcg"
set mycat = "/bin/cat"
set myrm = "/bin/rm"
set mysleep = "/bin/sleep"
set mysed = "/bin/sed"
set mywc = "/usr/ucb/wc"
set mygrep = "/bin/fgrep"
set myclear = "/usr/ucb/clear"
LIST OF SUBSTITUTES as produced by config
-----------------------------------------
CCNAME == /usr/local/bin/g++
CATNAME == /bin/cat
WCNAME == /usr/ucb/wc
FGREPNAME == /bin/fgrep
MAKENAME == /bin/make
MVNAME == /bin/mv
LNNAME == /bin/ln
CLEARNAME == /usr/ucb/clear
SEDNAME == /bin/sed
SYNCNAME == /bin/sync
TOUCHNAME == /bin/touch
RMNAME == /bin/rm
CHMODNAME == /bin/chmod
SLEEPNAME == /bin/sleep
CCLINKNAME == /usr/local/bin/g++
VCGNAME == xvcg
BIGLTEXNAME == /TeX/bin/big-latex
FIGTODEVNAME == /RW/users/sander/PUBLIC/TEX/fig2dev
WINDOWSYSTEMNAME == #define X11
FONTALIASNAME == -*-courier-*-r-normal--16-*-*-*-*-*-*-*
INPUTFOCUSNAME == #define NOINPUTFOCUS
ALIGNMENTNAME == 8
BLOCKSIZENAME == 1048576
MAKEDEPENDNAME == /RW/users/sander/bin/makedepend
BISONNAME == /usr/local/bin/bison -ydt
FLEXNAME == /usr/local/bin/flex
ANSINAME == #define ANSI_C
BINPATHNAME == /RW/esprit/users/sander/bin/
MANPATHNAME == /RW/esprit/users/sander/man/manl/
MANEXTNAME == l
CFLAGSNAME == -c -O -finline-functions -pipe
CLINKFLAGSNAME == -o
ADDINCLUDEPATHNAME == -I/RW/esprit/X11R5/include/
ADDLIBPATHNAME == -L/RW/esprit/X11R5/lib/
ADDLIBSNAME == -lXext -lX11 -lm
INSTALLDIRNAME == /bin/install -d -m 755
INSTALLBINNAME == /bin/install -s -m 755 dummy /RW/esprit/users/sander/bin/dummy
INSTALLMANNAME == /bin/install -m 644 dummy /RW/esprit/users/sander/man/manl/dummy
========== Setup for SunOS (Sparcstation, X11R5, cc ) =================
PROBLEMS WITH SunOS:
--------------------
1) It might be the case that parsegen is not available.
Further, a tool called not_available might be called.
Both tools are not required, thus messages about the nonexisting
of both tools can be ignored.
2) In some module, variables are declared but never used. This depends
on the configuration. In other configurations, the same variables
might be used.
3) The K&R CC reports some unreached statements after switches.
Uncritical Warnings, can be ignored.
SETUPS FOR SUNOS:
----------------
In Makefile (top level):
BINDIR = /RW/esprit/users/sander/bin/
MANDIR = /RW/esprit/users/sander/man/manl/
MANEXT = l
VCGTOOL = xvcg
VCGCALL = $(BINDIR)/$(VCGTOOL)
CFLAGS = -c -O
DFLAGS =
CLINKFLAGS = -Bstatic -o
INCLUDES = -I/RW/esprit/X11R5/include/
LIBPATH = -L/RW/esprit/X11R5/lib/
LIBRARIES = -lXext -lX11 -lm
CC = /bin/cc
CCLINK = /bin/cc
CPP = $(CC) -E
INSTALLDIR = /bin/install -d -m 755
INSTALL = /bin/install -s -m 755 dummy /RW/esprit/users/sander/bin/dummy
INSTALLMAN = /bin/install -m 644 dummy /RW/esprit/users/sander/man/manl/dummy
BIGLATEX = /TeX/bin/big-latex
TRANSFIGPS = /RW/users/sander/PUBLIC/TEX/fig2dev
LEX = /usr/local/bin/flex
YACC = /usr/local/bin/bison -ydt
MAKE = /bin/make
DEPEND = /RW/users/sander/bin/makedepend
SED = /bin/sed
MV = /bin/mv
LN = /bin/ln
RM = /bin/rm
CD = cd
TOUCH = /bin/touch
In src/globals.h:
#undef ANSI_C
#undef NO_STDINCLUDES
#define USR_SIGNAL
#undef OWN_QUICKSORT
#define X11
#define ALIGN 8
#define MEMBLOCKSIZE 1048576
#define VCG_DEFAULT_FONT "-*-courier-*-r-normal--16-*-*-*-*-*-*-*"
#define NOINPUTFOCUS
#undef DEBUG
#define CHECK_ASSERTIONS
#undef ASSERT_AVAIL
#undef CHECK_TIMING
In demo/demo/csh (We used a Monochromatic Screen):
set mvcgn = "/RW/esprit/users/sander/bin/xvcg"
set mycat = "/bin/cat"
set myrm = "/bin/rm"
set mysleep = "/bin/sleep"
set mysed = "/bin/sed"
set mywc = "/usr/ucb/wc"
set mygrep = "/bin/fgrep"
set myclear = "/usr/ucb/clear"
LIST OF SUBSTITUTES as produced by config
-----------------------------------------
CCNAME == /bin/cc
CATNAME == /bin/cat
WCNAME == /usr/ucb/wc
FGREPNAME == /bin/fgrep
MAKENAME == /bin/make
MVNAME == /bin/mv
LNNAME == /bin/ln
CLEARNAME == /usr/ucb/clear
SEDNAME == /bin/sed
SYNCNAME == /bin/sync
TOUCHNAME == /bin/touch
RMNAME == /bin/rm
CHMODNAME == /bin/chmod
SLEEPNAME == /bin/sleep
CCLINKNAME == /bin/cc
VCGNAME == xvcg
BIGLTEXNAME == /TeX/bin/big-latex
FIGTODEVNAME == /RW/users/sander/PUBLIC/TEX/fig2dev
WINDOWSYSTEMNAME == #define X11
FONTALIASNAME == -*-courier-*-r-normal--16-*-*-*-*-*-*-*
INPUTFOCUSNAME == #define NOINPUTFOCUS
ALIGNMENTNAME == 8
BLOCKSIZENAME == 1048576
MAKEDEPENDNAME == /RW/users/sander/bin/makedepend
BISONNAME == /usr/local/bin/bison -ydt
FLEXNAME == /usr/local/bin/flex
ANSINAME == #undef ANSI_C
BINPATHNAME == /RW/esprit/users/sander/bin/
MANPATHNAME == /RW/esprit/users/sander/man/manl/
MANEXTNAME == l
CFLAGSNAME == -c -O
CLINKFLAGSNAME == -Bstatic -o
ADDINCLUDEPATHNAME == -I/RW/esprit/X11R5/include/
ADDLIBPATHNAME == -L/RW/esprit/X11R5/lib/
ADDLIBSNAME == -lXext -lX11 -lm
INSTALLDIRNAME == /bin/install -d -m 755
INSTALLBINNAME == /bin/install -s -m 755 dummy /RW/esprit/users/sander/bin/dummy
================= Setup for IRIX (Silicon Graphics) =====================
PROBLEMS WITH IRIX:
-------------------
1) It might be the case that parsegen is not available.
Further, a tool called not_available might be called.
Both tools are not required, thus messages about the nonexisting
of both tools can be ignored.
2) In some module, variables are declared but never used. This depends
on the configuration. In other configurations, the same variables
might be used.
3) Globally, make sure that your default shell is sh.
Type "setenv SHELL /bin/sh", if necessary.
This is necessary, because make uses the shell which is
found in the variable SHELL.
SHELL = /bin/sh
4) On some MIPS ucode CC, characters are unsigned as default. Here,
the C option -signed must be used.
5) The MIPS ucode CC reports some unreached statements after switches.
Uncritical Warnings.
6) The MIPS ucode CC is unable to optimze certain functions. Messages
like the following are uncritical:
uopt: Warning: myisochar: this procedure not optimized because it
exceeds size threshold;
SETUPS FOR IRIX:
----------------
In Makefile (top level):
BINDIR = /usr/people/sander/bin/
MANDIR = /usr/people/sander/man/manl/
MANEXT = l
VCGTOOL = xvcg
VCGCALL = $(BINDIR)/$(VCGTOOL)
CFLAGS = -c -O -D__STDC__ -signed
DFLAGS =
CLINKFLAGS = -o
INCLUDES = -I/usr/local/include/
LIBPATH = -L/usr/local/lib/
LIBRARIES = -lXext -lX11 -lm
CC = /usr/bin/cc
CCLINK = /usr/bin/cc
CPP = $(CC) -E
INSTALLDIR = /bin/echo
INSTALL = /etc/install -s -m 755 -f /usr/people/sander/bin dummy
INSTALLMAN = /etc/install -m 644 -f /usr/people/sander/man/manl dummy
MAKE = /bin/make
SED = /bin/sed
MV = /bin/mv
LN = /bin/ln
RM = /bin/rm
CD = cd
TOUCH = /bin/touch
In src/globals.h:
#define ANSI_C
#undef NO_STDINCLUDES
#define USR_SIGNAL
#undef OWN_QUICKSORT
#define X11
#define ALIGN 8
#define MEMBLOCKSIZE 1048576
#define VCG_DEFAULT_FONT "-sgi-terminal-bold-r-normal--17-120-100-100-c-100-iso8859-1"
#define NOINPUTFOCUS
#undef DEBUG
#define CHECK_ASSERTIONS
#undef ASSERT_AVAIL
#undef CHECK_TIMING
In demo/demo/csh (We used a Color Screen):
set mvcgn = "/usr/people/sander/bin/xvcg"
set mycat = "/bin/cat"
set myrm = "/bin/rm"
set mysleep = "/bin/sleep"
set mysed = "/bin/sed"
set mywc = "/bin/wc"
set mygrep = "/usr/bin/fgrep"
set myclear = "/usr/bsd/clear"
LIST OF SUBSTITUTES as produced by config
-----------------------------------------
CCNAME == /usr/bin/cc
CATNAME == /bin/cat
WCNAME == /bin/wc
FGREPNAME == /usr/bin/fgrep
MAKENAME == /bin/make
MVNAME == /bin/mv
LNNAME == /bin/ln
CLEARNAME == /usr/bsd/clear
SEDNAME == /bin/sed
SYNCNAME == /bin/sync
TOUCHNAME == /bin/touch
RMNAME == /bin/rm
CHMODNAME == /bin/chmod
SLEEPNAME == /bin/sleep
CCLINKNAME == /usr/bin/cc
VCGNAME == xvcg
WINDOWSYSTEMNAME == #define X11
FONTALIASNAME == -sgi-terminal-bold-r-normal--17-120-100-100-c-100-iso8859-1
INPUTFOCUSNAME == #define NOINPUTFOCUS
ALIGNMENTNAME == 8
BLOCKSIZENAME == 1048576
ANSINAME == #define ANSI_C
BINPATHNAME == /usr/people/sander/bin/
MANPATHNAME == /usr/people/sander/man/manl/
MANEXTNAME == l
CFLAGSNAME == -c -O -D__STDC__ -signed
CLINKFLAGSNAME == -o
ADDINCLUDEPATHNAME == -I/usr/local/include/
ADDLIBPATHNAME == -L/usr/local/lib/
ADDLIBSNAME == -lXext -lX11 -lm
INSTALLDIRNAME == /bin/echo
INSTALLBINNAME == /etc/install -s -m 755 -f /usr/people/sander/bin dummy
INSTALLMANNAME == /etc/install -m 644 -f /usr/people/sander/man/manl dummy
================= Setup for AIX (IBM R6000, cc) =====================
PROBLEMS WITH AIX:
------------------
1) LaTeX was not available thus make fails to make the documentation.
2) The XL C compiler does not understand the keyword "const". The code
is already adapted, if -DAIXCC is used, but this is really ugly.
3) There are two install commands. We assume to get /bin/install.
The config file is not updated for /usr/bsd/install and may fail,
if /usr/bsd/install is taken.
SETUPS FOR AIX:
----------------
In Makefile (top level):
BINDIR = /usr/local/bin/
MANDIR = /usr/local/man/manl/
MANEXT = l
VCGTOOL = xvcg
VCGCALL = $(BINDIR)/$(VCGTOOL)
CFLAGS = -c -O -DAIXCC -DAIX
DFLAGS =
CLINKFLAGS = -o
INCLUDES = -I/usr/local/include/
LIBPATH = -L/usr/local/lib/
LIBRARIES = -lXext -lX11 -lm
CC = /bin/cc
CCLINK = /bin/cc
CPP = $(CC) -E
INSTALLDIR = /bin/echo
INSTALL = /bin/install -s -S -M 755 -f /usr/local/bin dummy
INSTALLMAN = /bin/install -s -M 644 -f /usr/local/man/manl dummy
MAKE = /bin/make
SED = /bin/sed
MV = /bin/mv
LN = /bin/ln
RM = /bin/rm
CD = cd
TOUCH = /bin/touch
In src/globals.h:
#define ANSI_C
#undef NO_STDINCLUDES
#define USR_SIGNAL
#undef OWN_QUICKSORT
#define X11
#define ALIGN 8
#define MEMBLOCKSIZE 1048576
#define VCG_DEFAULT_FONT "-misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso8859-1"
#define NOINPUTFOCUS
#undef DEBUG
#define CHECK_ASSERTIONS
#undef ASSERT_AVAIL
#undef CHECK_TIMING
In demo/demo/csh (We used a Color Screen):
set mvcgn = "/usr/local/bin/xvcg"
set mycat = "/bin/cat"
set myrm = "/bin/rm"
set mysleep = "/bin/sleep"
set mysed = "/bin/sed"
set mywc = "/bin/wc"
set mygrep = "/bin/fgrep"
set myclear = "/bin/clear"
LIST OF SUBSTITUTES as produced by config
-----------------------------------------
CCNAME == /bin/cc
CATNAME == /bin/cat
WCNAME == /bin/wc
FGREPNAME == /bin/fgrep
MAKENAME == /bin/make
MVNAME == /bin/mv
LNNAME == /bin/ln
CLEARNAME == /bin/clear
SEDNAME == /bin/sed
SYNCNAME == /bin/sync
TOUCHNAME == /bin/touch
RMNAME == /bin/rm
CHMODNAME == /bin/chmod
SLEEPNAME == /bin/sleep
CCLINKNAME == /bin/cc
VCGNAME == xvcg
WINDOWSYSTEMNAME == #define X11
FONTALIASNAME == -misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso8859-1
INPUTFOCUSNAME == #define NOINPUTFOCUS
ALIGNMENTNAME == 8
BLOCKSIZENAME == 1048576
ANSINAME == #define ANSI_C
BINPATHNAME == /usr/local/bin/
MANPATHNAME == /usr/local/man/manl/
MANEXTNAME == l
CFLAGSNAME == -c -O -DAIXCC -DAIX
CLINKFLAGSNAME == -o
ADDINCLUDEPATHNAME == -I/usr/local/include/
ADDLIBPATHNAME == -L/usr/local/lib/
ADDLIBSNAME == -lXext -lX11 -lm
INSTALLDIRNAME == /bin/echo
INSTALLBINNAME == /bin/install -s -S -M 755 -f /usr/local/bin dummy
INSTALLMANNAME == /bin/install -s -M 644 -f /usr/local/man/manl dummy
===================== Setup for Linux (PC, intel 486, gcc ) ===============
The Linux check was done by Christian Ferdinand (ferdi@cs.uni-sb.de).
I have no information about the release/version of his Linux.
PROBLEMS WITH Linux:
--------------------
0) For your information: uname -srmv reports
Linux 0.99.13 i486 #5 Mon Sep 20 13:12:48 CDT 1993
1) Some targets of make result in a infinite loop. These are
make clean
make targetclean
make veryclean
make install
To my surprise, make install works properly, except the fact that
it installs infinitely often.
The reason is probably the incompatible behaviour of gnu-make 3.68.
2) MAXINT and MININT are defined in math. This may yield to preprocessor
warnings: "MAXINT redefined in math.h", etc.
Dito with MINLONG and MAXLONG.
3) The include files in Linux/gcc seem to be different than expected
for ANSI C. Thus, the gcc option -Wall reports a lot of nonsense.
Do not use this option.
4) /bin/echo does not exist. Thus, demo.csh must be changed by hand:
All occurrences of /bin/echo replaced by /usr/bin/echo.
5) Linking with gcc -static causes strange effects: e.g. remote
xvcg -display ... does not work.
6) The echo command does not display leading blancs of a line.
Thus, the demo dequence "make test" looks rather ugly.
7) I got a floating point exception for "xvcg expl/forms.vcg". The edges
cannot be drawn.
Since it is an i486, it is not the pentium bug ! But I currently
don't know the reason. All other examples and tests work well.
SETUPS FOR Linux:
-----------------
In Makefile (top level):
BINDIR = /home/sander/bin/
MANDIR = /home/sander/man/manl/
MANEXT = l
VCGTOOL = xvcg
VCGCALL = $(BINDIR)/$(VCGTOOL)
CFLAGS = -c -O -finline-functions -pipe
DFLAGS =
CLINKFLAGS = -o
INCLUDES = -I/usr/local/include/
LIBPATH = -L/usr/local/lib/
LIBRARIES = -lXext -lX11 -lm
CC = gcc
CCLINK = gcc
CPP = $(CC) -E
INSTALLDIR = /bin/install -d -m 755
INSTALL = /bin/install -s -m 755 dummy $(BINDIR)/dummy
INSTALLMAN = /bin/install -m 644 dummy $(MANDIR)/dummy
MAKE = /usr/bin/make (Gnu-make)
SED = /usr/bin/sed
MV = /bin/mv
LN = /bin/ln
RM = /bin/rm
CD = cd
TOUCH = /bin/touch
In src/globals.h:
#define ANSI_C
#undef NO_STDINCLUDES
#define USR_SIGNAL
#undef OWN_QUICKSORT
#define X11
#define ALIGN 8
#define MEMBLOCKSIZE 1048576
#define VCG_DEFAULT_FONT "-*-courier-*-r-normal--16-*-*-*-*-*-*-*"
#define NOINPUTFOCUS
#undef DEBUG
#define CHECK_ASSERTIONS
#undef ASSERT_AVAIL
#undef CHECK_TIMING
In demo/demo/csh (We used a Color Screen):
alias OUTP /usr/bin/echo
set mvcgn = "/home/sander/bin/xvcg"
set mycat = "/bin/cat"
set myrm = "/bin/rm"
set mysleep = "/usr/bin/sleep"
set mysed = "/usr/bin/sed"
set mywc = "/usr/bin/wc"
set mygrep = "/usr/bin/fgrep"
set myclear = "/usr/bin/clear"
LIST OF SUBSTITUTES as produced by config
-----------------------------------------
CCNAME == gcc
CATNAME == /bin/cat
WCNAME == /usr/bin/wc
FGREPNAME == /usr/bin/fgrep
MAKENAME == /usr/bin/make
MVNAME == /bin/mv
LNNAME == /bin/ln
CLEARNAME == /usr/bin/clear
SEDNAME == /usr/bin/sed
SYNCNAME == /bin/sync
TOUCHNAME == /bin/touch
RMNAME == /bin/rm
CHMODNAME == /usr/bin/chmod
SLEEPNAME == /usr/bin/sleep
CCLINKNAME == gcc
VCGNAME == xvcg
WINDOWSYSTEMNAME == #define X11
FONTALIASNAME == -*-courier-*-*-*--14-*-*-*-*-*-*-*
INPUTFOCUSNAME == #define NOINPUTFOCUS
ALIGNMENTNAME == 8
BLOCKSIZENAME == 1048576
ANSINAME == #define ANSI_C
BINPATHNAME == /home/sander/bin/
MANPATHNAME == /home/sander/man/manl/
MANEXTNAME == l
CFLAGSNAME == -c -O -finline-functions -pipe
CLINKFLAGSNAME == -o
ADDINCLUDEPATHNAME == -I/usr/local/include/
ADDLIBPATHNAME == -L/usr/local/lib/
ADDLIBSNAME == -lXext -lX11 -lm
INSTALLDIRNAME = /bin/install -d -m 755
INSTALLBINNAME = /bin/install -s -m 755 dummy $(BINDIR)/dummy
INSTALLMANNAME = /bin/install -m 644 dummy $(MANDIR)/dummy
================= Setup for HP-UX (IBM 9000/730, cc) ======================
The HP-UX check was done with support by E. Schoemer and Prof. G. Hotz
of the Universitaet des Saarlandes. I don't have a HP-UX maschine, but
they have one. Many thanks to them.
PROBLEMS WITH HP-UX:
-------------------
1) It might be the case that parsegen is not available.
Further, a tool called not_available might be called.
Both tools are not required, thus messages about the nonexisting
of both tools can be ignored.
2) In some module, variables are declared but never used. This depends
on the configuration. In other configurations, the same variables
might be used.
3) With X11R4, missing include files are reported. I don't know why.
X11R5 works.
4) The compiler might warn about _INCLUDE_POSIX_SOURCE redefined.
The compiler complains about a undefined escape sequence.
These are not fatal.
5) Some source files are very large. The compiler dops the optimization
in these cases.
SETUPS FOR HP-UX:
----------------
In Makefile (top level):
BINDIR = /usr/local/bin/
MANDIR = /usr/local/man/manl/
MANEXT = l
VCGTOOL = xvcg
VCGCALL = $(BINDIR)/$(VCGTOOL)
CFLAGS = -c -O -DHPUX -D_INCLUDE_POSIX_SOURCE
DFLAGS =
CLINKFLAGS = -o
INCLUDES = -I/usr/local/X11R5/include/
LIBPATH = -L/usr/local/X11R5/lib/
LIBRARIES = -lXext -lX11 -lm
CC = /bin/cc
CCLINK = /bin/cc
CPP = $(CC) -E
INSTALLDIR = /bin/echo
INSTALL = /etc/install -s -m 755 -f $(BINDIR) dummy
INSTALLMAN = /etc/install -m 644 -f $(MANDIR) dummy
MAKE = /bin/make
SED = /bin/sed
MV = /bin/mv
LN = /bin/ln
RM = /bin/rm
CD = cd
TOUCH = /bin/touch
Note: flex, bison, parsegen, latex, big-latex, fig2dev etc. were not available
on the HP-UX.
In src/globals.h:
#undef ANSI_C
#undef NO_STDINCLUDES
#define USR_SIGNAL
#undef OWN_QUICKSORT
#define X11
#define ALIGN 8
#define MEMBLOCKSIZE 1048576
#define VCG_DEFAULT_FONT "-*-courier-*-*-*--14-*-*-*-*-*-*-*"
#define NOINPUTFOCUS
#undef DEBUG
#define CHECK_ASSERTIONS
#undef ASSERT_AVAIL
#undef CHECK_TIMING
In demo/demo/csh (We used a Color Screen):
set mvcgn = "/usr/local/bin/xvcg"
set mycat = "/bin/cat"
set myrm = "/bin/rm"
set mysleep = "/bin/sleep"
set mysed = "/bin/sed"
set mywc = "/bin/wc"
set mygrep = "/bin/fgrep"
set myclear = "/usr/bin/clear"
LIST OF SUBSTITUTES as produced by config
-----------------------------------------
CCNAME == /bin/cc
CATNAME == /bin/cat
WCNAME == /bin/wc
FGREPNAME == /bin/fgrep
MAKENAME == /bin/make
MVNAME == /bin/mv
LNNAME == /bin/ln
CLEARNAME == /usr/bin/clear
SEDNAME == /bin/sed
SYNCNAME == /bin/sync
TOUCHNAME == /bin/touch
RMNAME == /bin/rm
CHMODNAME == /bin/chmod
SLEEPNAME == /bin/sleep
CCLINKNAME == /bin/cc
VCGNAME == xvcg
WINDOWSYSTEMNAME == #define X11
FONTALIASNAME == -*-courier-*-*-*--14-*-*-*-*-*-*-*
INPUTFOCUSNAME == #define NOINPUTFOCUS
ALIGNMENTNAME == 8
BLOCKSIZENAME == 1048576
ANSINAME == #undef ANSI_C
BINPATHNAME == /usr/local/bin/
MANPATHNAME == /usr/local/man/manl/
MANEXTNAME == l
CFLAGSNAME == -c -O -DHPUX -D_INCLUDE_POSIX_SOURCE
CLINKFLAGSNAME == -o
ADDINCLUDEPATHNAME == -I/usr/local/X11R5/include/
ADDLIBPATHNAME == -L/usr/local/X11R5/lib/
ADDLIBSNAME == -lXext -lX11 -lm
INSTALLDIRNAME == /bin/echo
INSTALLBINNAME == /etc/install -s -m 755 -f $(BINDIR) dummy
INSTALLMANNAME == /etc/install -m 644 -f $(MANDIR) dummy
================= Setup for HP-UX (IBM 9000/730, c89) =====================
The HP-UX check was done with support by E. Schoemer and Prof. G. Hotz
of the Universitaet des Saarlandes. I don't have a HP-UX maschine, but
they have one. Many thanks to them.
PROBLEMS WITH HP-UX:
-------------------
1) It might be the case that parsegen is not available.
Further, a tool called not_available might be called.
Both tools are not required, thus messages about the nonexisting
of both tools can be ignored.
2) In some module, variables are declared but never used. This depends
on the configuration. In other configurations, the same variables
might be used.
3) With X11R4, missing include files are reported. I don't know why.
X11R5 works.
4) Some source files are very large. The compiler dops the optimization
in these cases.
5) The compiler did not found the declarations of timeval and timezone.
I added these in the file timelim.c. But now, it might happen that
these declarations are superfluous and compiler on other HP-UX
systems might complain about it.
6) atof is buggy. All specifications that use floats woun't work.
But we can live without floats.
SETUPS FOR HP-UX:
----------------
In Makefile (top level):
BINDIR = /usr/local/bin/
MANDIR = /usr/local/man/manl/
MANEXT = l
VCGTOOL = xvcg
VCGCALL = $(BINDIR)/$(VCGTOOL)
CFLAGS = -c -O -DHPUX -D_INCLUDE_POSIX_SOURCE
DFLAGS =
CLINKFLAGS = -o
INCLUDES = -I/usr/local/X11R5/include/
LIBPATH = -L/usr/local/X11R5/lib/
LIBRARIES = -lXext -lX11 -lm
CC = /bin/c89
CCLINK = /bin/c89
CPP = $(CC) -E
INSTALLDIR = /bin/echo
INSTALL = /etc/install -s -m 755 -f $(BINDIR) dummy
INSTALLMAN = /etc/install -m 644 -f $(MANDIR) dummy
MAKE = /bin/make
SED = /bin/sed
MV = /bin/mv
LN = /bin/ln
RM = /bin/rm
CD = cd
TOUCH = /bin/touch
In src/globals.h:
#define ANSI_C
#undef NO_STDINCLUDES
#define USR_SIGNAL
#undef OWN_QUICKSORT
#define X11
#define ALIGN 8
#define MEMBLOCKSIZE 1048576
#define VCG_DEFAULT_FONT "-*-courier-*-*-*--14-*-*-*-*-*-*-*"
#define NOINPUTFOCUS
#undef DEBUG
#define CHECK_ASSERTIONS
#undef ASSERT_AVAIL
#undef CHECK_TIMING
In demo/demo/csh (We used a Color Screen):
set mvcgn = "/usr/local/bin/xvcg"
set mycat = "/bin/cat"
set myrm = "/bin/rm"
set mysleep = "/bin/sleep"
set mysed = "/bin/sed"
set mywc = "/bin/wc"
set mygrep = "/bin/fgrep"
set myclear = "/usr/bin/clear"
LIST OF SUBSTITUTES as produced by config
-----------------------------------------
CCNAME == /bin/c89
CATNAME == /bin/cat
WCNAME == /bin/wc
FGREPNAME == /bin/fgrep
MAKENAME == /bin/make
MVNAME == /bin/mv
LNNAME == /bin/ln
CLEARNAME == /usr/bin/clear
SEDNAME == /bin/sed
SYNCNAME == /bin/sync
TOUCHNAME == /bin/touch
RMNAME == /bin/rm
CHMODNAME == /bin/chmod
SLEEPNAME == /bin/sleep
CCLINKNAME == /bin/c89
VCGNAME == xvcg
WINDOWSYSTEMNAME == #define X11
FONTALIASNAME == -*-courier-*-*-*--14-*-*-*-*-*-*-*
INPUTFOCUSNAME == #define NOINPUTFOCUS
ALIGNMENTNAME == 8
BLOCKSIZENAME == 1048576
ANSINAME == #define ANSI_C
BINPATHNAME == /usr/local/bin/
MANPATHNAME == /usr/local/man/manl/
MANEXTNAME == l
CFLAGSNAME == -c -O -DHPUX -D_INCLUDE_POSIX_SOURCE
CLINKFLAGSNAME == -o
ADDINCLUDEPATHNAME == -I/usr/local/X11R5/include/
ADDLIBPATHNAME == -L/usr/local/X11R5/lib/
ADDLIBSNAME == -lXext -lX11 -lm
INSTALLDIRNAME == /bin/echo
INSTALLBINNAME == /etc/install -s -m 755 -f $(BINDIR) dummy
INSTALLMANNAME == /etc/install -m 644 -f $(MANDIR) dummy
================= Setup for HP-UX (IBM 9000/730, gcc) =====================
The HP-UX check was done with support by E. Schoemer and Prof. G. Hotz
of the Universitaet des Saarlandes. I don't have a HP-UX maschine, but
they have one. Many thanks to them.
PROBLEMS WITH HP-UX:
-------------------
1) It might be the case that parsegen is not available.
Further, a tool called not_available might be called.
Both tools are not required, thus messages about the nonexisting
of both tools can be ignored.
2) In some module, variables are declared but never used. This depends
on the configuration. In other configurations, the same variables
might be used.
3) With X11R4, missing include files are reported. I don't know why.
X11R5 works.
SETUPS FOR HP-UX:
----------------
In Makefile (top level):
BINDIR = /usr/local/bin/
MANDIR = /usr/local/man/manl/
MANEXT = l
VCGTOOL = xvcg
VCGCALL = $(BINDIR)/$(VCGTOOL)
CFLAGS = -c -O
DFLAGS =
CLINKFLAGS = -o
INCLUDES = -I/usr/local/X11R5/include/
LIBPATH = -L/usr/local/X11R5/lib/
LIBRARIES = -lXext -lX11 -lm
CC = /bin/gcc
CCLINK = /bin/gcc
CPP = $(CC) -E
INSTALLDIR = /bin/echo
INSTALL = /etc/install -s -m 755 -f $(BINDIR) dummy
INSTALLMAN = /etc/install -m 644 -f $(MANDIR) dummy
MAKE = /bin/make
SED = /bin/sed
MV = /bin/mv
LN = /bin/ln
RM = /bin/rm
CD = cd
TOUCH = /bin/touch
In src/globals.h:
#define ANSI_C
#undef NO_STDINCLUDES
#define USR_SIGNAL
#undef OWN_QUICKSORT
#define X11
#define ALIGN 8
#define MEMBLOCKSIZE 1048576
#define VCG_DEFAULT_FONT "-*-courier-*-*-*--14-*-*-*-*-*-*-*"
#define NOINPUTFOCUS
#undef DEBUG
#define CHECK_ASSERTIONS
#undef ASSERT_AVAIL
#undef CHECK_TIMING
In demo/demo/csh (We used a Color Screen):
set mvcgn = "/usr/local/bin/xvcg"
set mycat = "/bin/cat"
set myrm = "/bin/rm"
set mysleep = "/bin/sleep"
set mysed = "/bin/sed"
set mywc = "/bin/wc"
set mygrep = "/bin/fgrep"
set myclear = "/usr/bin/clear"
LIST OF SUBSTITUTES as produced by config
-----------------------------------------
CCNAME == /bin/gcc
CATNAME == /bin/cat
WCNAME == /bin/wc
FGREPNAME == /bin/fgrep
MAKENAME == /bin/make
MVNAME == /bin/mv
LNNAME == /bin/ln
CLEARNAME == /usr/bin/clear
SEDNAME == /bin/sed
SYNCNAME == /bin/sync
TOUCHNAME == /bin/touch
RMNAME == /bin/rm
CHMODNAME == /bin/chmod
SLEEPNAME == /bin/sleep
CCLINKNAME == /bin/gcc
VCGNAME == xvcg
WINDOWSYSTEMNAME == #define X11
FONTALIASNAME == -*-courier-*-*-*--14-*-*-*-*-*-*-*
INPUTFOCUSNAME == #define NOINPUTFOCUS
ALIGNMENTNAME == 8
BLOCKSIZENAME == 1048576
ANSINAME == #define ANSI_C
BINPATHNAME == /usr/local/bin/
MANPATHNAME == /usr/local/man/manl/
MANEXTNAME == l
CFLAGSNAME == -c -O
CLINKFLAGSNAME == -o
ADDINCLUDEPATHNAME == -I/usr/local/X11R5/include/
ADDLIBPATHNAME == -L/usr/local/X11R5/lib/
ADDLIBSNAME == -lXext -lX11 -lm
INSTALLDIRNAME == /bin/echo
INSTALLBINNAME == /etc/install -s -m 755 -f $(BINDIR) dummy
INSTALLMANNAME == /etc/install -m 644 -f $(MANDIR) dummy
========== Setup for ULTRIX (DecStation, X11R5, gcc ) =================
The first installation on a DecStation (ULTRIX) was done by A. Ertl
at the TU Wien. I don't have a DecStation. Many thanks to him.
PROBLEMS WITH ULTRIX:
--------------------
1) The script config runs only with sh5 instead of sh.
2) During "make xvcg" (or "make vcg") the files grammar.y,
grammar.l and grammar.h are not found. This seems to
be a path problem during make. As temporary solution,
there is a shell script "ultrixpreconf", which must
be started in the directory src before "make xvcg".
SETUPS FOR ULTRIX:
-----------------
In Makefile (top level):
BINDIR = /usr/local/bin/
MANDIR = /usr/local/man/man1/
MANEXT = 1
VCGTOOL = xvcg
VCGCALL = $(BINDIR)/$(VCGTOOL)
CFLAGS = -c -O -DULTRIX
DFLAGS =
CLINKFLAGS = -o
INCLUDES =
LIBPATH =
LIBRARIES = -lXext -lX11 -lm
CC = /usr/local/bin/gcc
CCLINK = /usr/local/bin/gcc
CPP = $(CC) -E
INSTALLDIR = /usr/bin/install -d -m 755
INSTALL = /usr/bin/install -s -m 755 dummy /usr/local/bin/dummy
INSTALLMAN = /usr/bin/install -m 644 dummy /usr/local/man/man1/dummy
BIGLATEX = big-latex
TRANSFIGPS = fig2dev
LEX = flex
YACC = bison -ydt
MAKE = /bin/make
DEPEND = makedepend
SED = /bin/sed
MV = /bin/mv
LN = /bin/ln
RM = /bin/rm
CD = cd
TOUCH = /usr/bin/touch
In src/globals.h:
#define ANSI_C
#undef NO_STDINCLUDES
#define USR_SIGNAL
#undef OWN_QUICKSORT
#define X11
#define ALIGN 8
#define MEMBLOCKSIZE 1048576
#define VCG_DEFAULT_FONT "*-fixed-bold-r-*--13-*iso8859-1"
#define NOINPUTFOCUS
#undef DEBUG
#define CHECK_ASSERTIONS
#undef ASSERT_AVAIL
#undef CHECK_TIMING
In demo/demo/csh:
set mvcgn = "/usr/local/bin/xvcg"
set mycat = "/bin/cat"
set myrm = "/bin/rm"
set mysleep = "/usr/bin/sleep"
set mysed = "/bin/sed"
set mywc = "/usr/ucb/wc"
set mygrep = "/usr/bin/fgrep"
set myclear = "/usr/ucb/clear"
LIST OF SUBSTITUTES as produced by config
-----------------------------------------
(Sorry, but I don't have this information for a DecStation, ULTRIX.
Please, simply try it.)
|