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
|
------------------------------------------------------------------------
r13009 | airwin | 2014-02-12 14:43:39 -0800 (Wed, 12 Feb 2014) | 2 lines
Changed paths:
M /trunk/www/examples.php
One additional website tweak
------------------------------------------------------------------------
r13007 | airwin | 2014-02-12 14:06:04 -0800 (Wed, 12 Feb 2014) | 2 lines
Changed paths:
M /trunk/ChangeLog.release
Second try at committing the ChangeLog for the 5.9.10 release.
------------------------------------------------------------------------
r13006 | airwin | 2014-02-12 14:02:43 -0800 (Wed, 12 Feb 2014) | 2 lines
Changed paths:
M /trunk/README.Release_Manager_Cookbook
More version tweaks to release process procedure.
------------------------------------------------------------------------
r13005 | airwin | 2014-02-12 14:01:26 -0800 (Wed, 12 Feb 2014) | 4 lines
Changed paths:
M /trunk/scripts/htdocs-gen_plot-examples.sh
M /trunk/www/examples.php
Use ".txt" suffix rather than "-" since that appears to give
a better result with konqueror (which e.g., attempts to recognize
x00c.c- as C code which should be downloaded rather than simply viewed).
------------------------------------------------------------------------
r13003 | airwin | 2014-02-12 11:40:32 -0800 (Wed, 12 Feb 2014) | 2 lines
Changed paths:
M /trunk/ChangeLog.release
Commit the ChangeLog for the 5.9.10 release.
------------------------------------------------------------------------
r13002 | airwin | 2014-02-12 11:36:50 -0800 (Wed, 12 Feb 2014) | 3 lines
Changed paths:
M /trunk/README.Release_Manager_Cookbook
Update to reflect the change in version for this imminent release and
also the actual practices by the release manager for this release.
------------------------------------------------------------------------
r13001 | airwin | 2014-02-12 10:59:52 -0800 (Wed, 12 Feb 2014) | 2 lines
Changed paths:
M /trunk/doc/docbook/src/api-obsolete.xml
Implement documentation for deprecated plwid.
------------------------------------------------------------------------
r13000 | airwin | 2014-02-12 10:09:32 -0800 (Wed, 12 Feb 2014) | 2 lines
Changed paths:
M /trunk/doc/docbook/src/plplotdoc.xml.in
Correct version configuration.
------------------------------------------------------------------------
r12999 | airwin | 2014-02-12 08:29:06 -0800 (Wed, 12 Feb 2014) | 3 lines
Changed paths:
M /trunk/cmake/modules/plplot_version.cmake
M /trunk/www/examples.php
Update release date and version information for the 5.9.10
release that is about to happen.
------------------------------------------------------------------------
r12998 | airwin | 2014-02-12 08:03:35 -0800 (Wed, 12 Feb 2014) | 2 lines
Changed paths:
M /trunk/README.release
Update the description of Arjen's MinGW/MSYS test results.
------------------------------------------------------------------------
r12997 | arjenmarkus | 2014-02-12 00:55:30 -0800 (Wed, 12 Feb 2014) | 1 line
Changed paths:
M /trunk/cmake/epa_build/swig/CMakeLists.txt
Add the option --with-maximum-compile-warnings=no to avoid errors with gcc 4.8.1 on MinGW/MSYS while building the SWIG target in epa_build.
------------------------------------------------------------------------
r12996 | airwin | 2014-02-11 15:26:27 -0800 (Tue, 11 Feb 2014) | 2 lines
Changed paths:
M /trunk/cmake/epa_build/README.developers
Add some comments about the way foward for development of epa_build.
------------------------------------------------------------------------
r12995 | airwin | 2014-02-10 16:31:22 -0800 (Mon, 10 Feb 2014) | 2 lines
Changed paths:
M /trunk/cmake/epa_build/README
Update instructions with regard to setting NUMBER_PARALLEL_JOBS.
------------------------------------------------------------------------
r12994 | airwin | 2014-02-10 16:06:38 -0800 (Mon, 10 Feb 2014) | 2 lines
Changed paths:
M /trunk/README.release
Describe the exact status of the testing for this release.
------------------------------------------------------------------------
r12993 | airwin | 2014-02-10 13:36:35 -0800 (Mon, 10 Feb 2014) | 5 lines
Changed paths:
M /trunk/cmake/epa_build/README
Update instructions in light of the replacement of
ENABLE_COMPREHENSIVE_PLPLOT_TEST with either/both
COMPREHENSIVE_PLPLOT_TEST_INTERACTIVE and
COMPREHENSIVE_PLPLOT_TEST_NONINTERACTIVE.
------------------------------------------------------------------------
r12992 | airwin | 2014-02-10 13:19:43 -0800 (Mon, 10 Feb 2014) | 11 lines
Changed paths:
M /trunk/cmake/epa_build/CMakeLists.txt
M /trunk/cmake/epa_build/plplot/CMakeLists.txt
M /trunk/cmake/epa_build/plplot_lite/CMakeLists.txt
Replace ENABLE_COMPREHENSIVE_PLPLOT_TEST option with the
COMPREHENSIVE_PLPLOT_TEST_INTERACTIVE and
COMPREHENSIVE_PLPLOT_TEST_NONINTERACTIVE options.
This allows much more convenient testing where you split
off the comprehensive interactive tests (which require
hands-on interaction from the user) with the comprehensive
noninteractive tests which can be run as a background job
with no interaction required from the user.
------------------------------------------------------------------------
r12991 | airwin | 2014-02-10 13:15:26 -0800 (Mon, 10 Feb 2014) | 3 lines
Changed paths:
M /trunk/scripts/comprehensive_test.sh
Fix some PATH manipulation issues that occurred for the MinGW/MSYS
interactive test case.
------------------------------------------------------------------------
r12990 | airwin | 2014-02-09 12:52:02 -0800 (Sun, 09 Feb 2014) | 4 lines
Changed paths:
M /trunk/bindings/tk/plserver.c
Make some of the recently added debug output less intrusive by
using the DEBUG macro.
------------------------------------------------------------------------
r12989 | airwin | 2014-02-09 12:46:30 -0800 (Sun, 09 Feb 2014) | 3 lines
Changed paths:
M /trunk/cmake/epa_build/swig/CMakeLists.txt
Revert the recent CFLAGS change which has not been comprehensively
tested for this release.
------------------------------------------------------------------------
r12988 | airwin | 2014-02-09 12:41:00 -0800 (Sun, 09 Feb 2014) | 3 lines
Changed paths:
M /trunk/cmake/epa_build/cmake/CMakeLists.txt
Revert recent version change which was not comprehensively tested for
this release.
------------------------------------------------------------------------
r12987 | airwin | 2014-02-08 21:21:49 -0800 (Sat, 08 Feb 2014) | 4 lines
Changed paths:
M /trunk/cmake/epa_build/ExternalProject.cmake
M /trunk/cmake/epa_build/README
M /trunk/cmake/epa_build/README.developers
M /trunk/cmake/epa_build/ToDo
M /trunk/cmake/epa_build/add_packages.xml
M /trunk/cmake/epa_build/configure_epa.cmake
M /trunk/cmake/epa_build/configured_pango.patch
M /trunk/cmake/epa_build/download_check.cmake
M /trunk/cmake/epa_build/epa_CMakeLists.txt.in
M /trunk/cmake/epa_build/itk/autoreconf.patch
M /trunk/cmake/epa_build/itk/itk4_case.patch
M /trunk/cmake/epa_build/itk/itk4_header_list.patch
M /trunk/cmake/epa_build/itk3/autotools_backport.patch
M /trunk/cmake/epa_build/itstool/itstool-1.2.0-python-location-fixes.patch
M /trunk/cmake/epa_build/iwidgets/iwidgets4.1.patch
M /trunk/cmake/epa_build/iwidgets/iwidgets4_case.patch
M /trunk/cmake/epa_build/libharu/cmake.patch
M /trunk/cmake/epa_build/libharu/large_font.patch
M /trunk/cmake/epa_build/libharu/remove_configured.patch
M /trunk/cmake/epa_build/libharu/visibility.patch
M /trunk/cmake/epa_build/ndiff/README.ndiff
M /trunk/cmake/epa_build/ndiff/config.h.cmake
M /trunk/cmake/epa_build/patch_gtk_packages.xml
M /trunk/cmake/epa_build/setup/setup_mingw_makefiles
M /trunk/cmake/epa_build/setup/setup_mingw_msys_wine_toolchain
M /trunk/cmake/epa_build/setup/setup_msys_makefiles
M /trunk/cmake/epa_build/shapelib/README
M /trunk/cmake/epa_build/swig/octave-3.8.0.patch
M /trunk/cmake/epa_build/wildcard_remove.cmake
M /trunk/cmake/epa_build/xmlcatalog-wrapper/filter_arguments.cmake
M /trunk/cmake/epa_build/xmlcatalog-wrapper/xmlcatalog-wrapper.sh.in
Set svn:eol-style property to native for all files under version
control in cmake_epa_build directory tree. This only affects a subset
of the files because most of them had this property set already.
------------------------------------------------------------------------
r12986 | airwin | 2014-02-08 19:12:14 -0800 (Sat, 08 Feb 2014) | 2 lines
Changed paths:
M /trunk/cmake/epa_build/xmlcatalog-wrapper/xmlcatalog-wrapper.sh.in
svn:eol property fixup.
------------------------------------------------------------------------
r12985 | airwin | 2014-02-08 11:43:20 -0800 (Sat, 08 Feb 2014) | 3 lines
Changed paths:
M /trunk/cmake/epa_build/cairo/CMakeLists.txt
M /trunk/cmake/epa_build/cmake/CMakeLists.txt
M /trunk/cmake/epa_build/docbook-xml/CMakeLists.txt
M /trunk/cmake/epa_build/docbook-xsl/CMakeLists.txt
M /trunk/cmake/epa_build/fontconfig/CMakeLists.txt
M /trunk/cmake/epa_build/glib/CMakeLists.txt
M /trunk/cmake/epa_build/gobject-introspection/CMakeLists.txt
M /trunk/cmake/epa_build/gperf/CMakeLists.txt
M /trunk/cmake/epa_build/gtk-doc/CMakeLists.txt
M /trunk/cmake/epa_build/harfbuzz/CMakeLists.txt
M /trunk/cmake/epa_build/intltool/CMakeLists.txt
M /trunk/cmake/epa_build/itcl3/CMakeLists.txt
M /trunk/cmake/epa_build/itk/CMakeLists.txt
M /trunk/cmake/epa_build/itk3/CMakeLists.txt
M /trunk/cmake/epa_build/itstool/CMakeLists.txt
M /trunk/cmake/epa_build/iwidgets/CMakeLists.txt
M /trunk/cmake/epa_build/libagg/CMakeLists.txt
M /trunk/cmake/epa_build/libffi/CMakeLists.txt
M /trunk/cmake/epa_build/libharu/CMakeLists.txt
M /trunk/cmake/epa_build/libpcre/CMakeLists.txt
M /trunk/cmake/epa_build/libqhull/CMakeLists.txt
M /trunk/cmake/epa_build/libxml2/CMakeLists.txt
M /trunk/cmake/epa_build/libxslt/CMakeLists.txt
M /trunk/cmake/epa_build/ndiff/CMakeLists.txt
M /trunk/cmake/epa_build/pango/CMakeLists.txt
M /trunk/cmake/epa_build/pixman/CMakeLists.txt
M /trunk/cmake/epa_build/pkg-config/CMakeLists.txt
M /trunk/cmake/epa_build/plplot/CMakeLists.txt
M /trunk/cmake/epa_build/ragel/CMakeLists.txt
M /trunk/cmake/epa_build/shapelib/CMakeLists.txt
M /trunk/cmake/epa_build/subversion/CMakeLists.txt
M /trunk/cmake/epa_build/swig/CMakeLists.txt
M /trunk/cmake/epa_build/tcl/CMakeLists.txt
M /trunk/cmake/epa_build/tk/CMakeLists.txt
M /trunk/cmake/epa_build/wxwidgets/CMakeLists.txt
M /trunk/cmake/epa_build/xmlcatalog-wrapper/CMakeLists.txt
M /trunk/cmake/epa_build/yelp-tools/CMakeLists.txt
M /trunk/cmake/epa_build/yelp-xsl/CMakeLists.txt
Set correct native line endings property for all the CMakeLists.txt
files of the epa_build project.
------------------------------------------------------------------------
r12984 | arjenmarkus | 2014-02-08 11:09:26 -0800 (Sat, 08 Feb 2014) | 1 line
Changed paths:
M /trunk/cmake/epa_build/swig/CMakeLists.txt
Add two compile flags to avoid compile errors (regarding the off64_t type and regarding the struct for directory contents)
------------------------------------------------------------------------
r12983 | arjenmarkus | 2014-02-08 11:00:24 -0800 (Sat, 08 Feb 2014) | 1 line
Changed paths:
M /trunk/bindings/tcl/CMakeLists.txt
M /trunk/bindings/tk/plserver.c
M /trunk/cmake/epa_build/cmake/CMakeLists.txt
M /trunk/cmake/epa_build/swig/CMakeLists.txt
------------------------------------------------------------------------
r12982 | airwin | 2014-02-06 21:42:56 -0800 (Thu, 06 Feb 2014) | 3 lines
Changed paths:
M /trunk/cmake/epa_build/CMakeLists.txt
Do not allow a cmake build for the MSYS platform case for the
reasons mentioned in cmake/epa_build/README.
------------------------------------------------------------------------
r12981 | airwin | 2014-02-06 18:49:25 -0800 (Thu, 06 Feb 2014) | 6 lines
Changed paths:
M /trunk/README.release
Describe my tests for this release. Note the tough part of these are
already done (comprehensive noninteractive test on MinGW/MSYS) and I
am completely confident I can finish the rest, but if not these notes
will have to be revised.
------------------------------------------------------------------------
r12980 | airwin | 2014-02-06 00:05:34 -0800 (Thu, 06 Feb 2014) | 3 lines
Changed paths:
M /trunk/cmake/epa_build/README
Update directions to be consistent with my recent experience with
epa_build.
------------------------------------------------------------------------
r12979 | airwin | 2014-02-05 23:29:41 -0800 (Wed, 05 Feb 2014) | 10 lines
Changed paths:
M /trunk/cmake/epa_build/setup/setup_mingw_msys_wine_toolchain
If cmake is epa_built as one of the buildtools on MinGW/MSYS
platforms, ignore it in favor of the more powerful Windows binary
version you can download from kitware. This measure will be required
until the curl library and its dependencies (including openssl) are
configured as part of epa_build and made dependencies of the cmake
epa_build. Without access to an external curl, cmake drops back to its
internal curl library which does not allow downloads of "https" URLS
(essential for epa_build to work!).
------------------------------------------------------------------------
r12978 | airwin | 2014-02-05 21:14:46 -0800 (Wed, 05 Feb 2014) | 11 lines
Changed paths:
M /trunk/cmake/epa_build/plplot/CMakeLists.txt
M /trunk/cmake/epa_build/plplot_lite/CMakeLists.txt
Improve logic dealing with ENABLE_COMPREHENSIVE_PLPLOT_TEST choices.
This logic gives good test results (so far just the noninteractive
case has been tested) for the epa_build build_plplot_lite
target on Linux for -DENABLE_COMPREHENSIVE_PLPLOT_TEST=ON
A preliminary subset of those plplot_lite tests have been successfully
run on MinGW/MSYS/Wine, and a job with the same comprehensive test
conditions as above has been started on that platform.
------------------------------------------------------------------------
r12977 | airwin | 2014-02-05 21:06:07 -0800 (Wed, 05 Feb 2014) | 2 lines
Changed paths:
M /trunk/cmake/modules/pkg-config.cmake
Fix recently introduced regression in the Linux case for PKG_CONFIG_ENV.
------------------------------------------------------------------------
r12976 | airwin | 2014-02-05 21:04:19 -0800 (Wed, 05 Feb 2014) | 10 lines
Changed paths:
M /trunk/examples/CMakeLists.txt
Install Darwin-dmd.cmake (which is likely necessary for the
CMake-based build system for the installed D examples on Mac OS X).
Make CMake minimum version and policy for the installed examples
configuration consistent with the core configuration.
Output CMAKE_PLATFORM_INFO_DIR since there has sometimes been trouble
with that variable being defined.
------------------------------------------------------------------------
r12975 | airwin | 2014-02-05 14:23:38 -0800 (Wed, 05 Feb 2014) | 7 lines
Changed paths:
M /trunk/cmake/modules/pkg-config.cmake
M /trunk/cmake/modules/plplot_functions.cmake
M /trunk/src/CMakeLists.txt
Update the configuration of pkg-config files so that good results are
obtained on MinGW/MSYS.
Lightly tested on MinGW/MSYS/Wine using the traditional build of
some of the installed examples.
------------------------------------------------------------------------
r12974 | airwin | 2014-02-02 11:32:14 -0800 (Sun, 02 Feb 2014) | 2 lines
Changed paths:
M /trunk/README.release
Update what has been accomplished for this forthcoming release.
------------------------------------------------------------------------
r12973 | airwin | 2014-01-29 09:33:31 -0800 (Wed, 29 Jan 2014) | 2 lines
Changed paths:
M /trunk/README.Release_Manager_Cookbook
Rearrange into more logical order without numbers.
------------------------------------------------------------------------
r12972 | airwin | 2014-01-29 08:52:35 -0800 (Wed, 29 Jan 2014) | 13 lines
Changed paths:
M /trunk/doc/docbook/src/CMakeLists.txt
Adjust to new version of Hǎiliàng Wáng's check programme which now has
a -incdir argument to specify where the configured headers included by
plplot.h are located.
This change in "check" means it is no longer necessary to copy plplot.h from
the source to the build directory in order to get this
application to work.
Tested on Linux using the check_api_xml_consistency target which
still produces a clean result on the consistency of api.xml with
our API as defined by plplot.h.
------------------------------------------------------------------------
r12971 | airwin | 2014-01-28 18:27:57 -0800 (Tue, 28 Jan 2014) | 6 lines
Changed paths:
M /trunk/doc/docbook/src/api.xml
M /trunk/doc/docbook/src/plplotdoc.xml.in
Make remaining changes to bring api.xml into complete consistency with
plplot.h according to the new check_api_xml_consistency target that I
developed for our build system that was based on Hǎiliàng Wáng's
"check" application that was written in the Go language.
------------------------------------------------------------------------
r12970 | airwin | 2014-01-28 18:23:42 -0800 (Tue, 28 Jan 2014) | 2 lines
Changed paths:
M /trunk/scripts/comprehensive_test.sh
Tweak one of the messages.
------------------------------------------------------------------------
r12969 | airwin | 2014-01-28 18:20:43 -0800 (Tue, 28 Jan 2014) | 9 lines
Changed paths:
M /trunk/README.release
This change substantially reorganizes and simplifies the release
notes. This is possible because we are dropping the artificial
distinction between stable and development releases as discussed on
list.
ToDo. Add what has changed for this release and add notes
on the tests done for this release as those happen.
------------------------------------------------------------------------
r12968 | airwin | 2014-01-28 17:42:57 -0800 (Tue, 28 Jan 2014) | 5 lines
Changed paths:
M /trunk/include/plplot.h
M /trunk/src/plwind.c
Use better parameter names (xmin0, xmax0, ymin0, ymax0, zmin0, zmax0)
==> (xmin, xmax, ymin, ymax, zmin, zmax) for some of the plw3d
arguments.
------------------------------------------------------------------------
r12967 | airwin | 2014-01-28 16:29:24 -0800 (Tue, 28 Jan 2014) | 6 lines
Changed paths:
M /trunk/include/plplot.h
Change parameter names left, right, bottom, top ==> xmin, xmax, ymin,
ymax for plshade and plshade1 to be consistent with the argument
names for those functions in src/plshade.c and
also to be consistent with the names for the equivalent arguments
of plshades (both in include/plplot.h and src/plshade.c).
------------------------------------------------------------------------
r12966 | airwin | 2014-01-28 16:01:50 -0800 (Tue, 28 Jan 2014) | 6 lines
Changed paths:
M /trunk/include/plplot.h
M /trunk/src/plctrl.c
Finish the previous renaming of pos ==> intensity for the
plscmap1l and plscmap1la arguments in plplot.h by making the same change
in src/plctrl.c.
Change the argument name of plseed from s ==> seed.
------------------------------------------------------------------------
r12965 | arjenmarkus | 2014-01-28 12:23:52 -0800 (Tue, 28 Jan 2014) | 1 line
Changed paths:
M /trunk/bindings/tk/plframe.c
M /trunk/drivers/tk.c
M /trunk/drivers/wingcc.c
Small corrections (FALSE instead of 0, plFramePtr->tkwin instead of new and a few superfluous empty lines removed)
------------------------------------------------------------------------
r12964 | airwin | 2014-01-28 01:57:01 -0800 (Tue, 28 Jan 2014) | 12 lines
Changed paths:
M /trunk/doc/docbook/src/api.xml
Additional argument name and type mismatch fixups to reduce size
of report delivered by check_api_xml_consistency target, but not done yet.
Additional fixups done while I was dealing with the rest:
color map [01] ==> cmap[01]
Drop period from end of title for some 20 functions
to be consistent with the rest.
Some redacted form fixups.
------------------------------------------------------------------------
r12963 | airwin | 2014-01-27 22:46:00 -0800 (Mon, 27 Jan 2014) | 4 lines
Changed paths:
M /trunk/include/plplot.h
M /trunk/src/plctrl.c
Rename all alpha channel arguments in our public API from a to alpha.
Tested on Linux using the plplotd target.
------------------------------------------------------------------------
r12962 | airwin | 2014-01-27 00:07:41 -0800 (Mon, 27 Jan 2014) | 14 lines
Changed paths:
M /trunk/doc/docbook/src/api.xml
M /trunk/doc/docbook/src/plplotdoc.xml.in
M /trunk/include/plplot.h
M /trunk/src/plot3d.c
Document plot3dcl and plsurf3dl. Change the ixstart and ixn arguments
of these functions to indexxmin, and indexxmax in the code and
documentation to be consistent with the naming of the indexymin and
indexymax arguments.
Tested by Alan W. Irwin <airwin@users.sourceforge.net> on Linux using
the validate target and the check_api_xml_consistency target (which is
now available when the cmake option, ADD_SPECIAL_CONSISTENCY_CHECKING,
is set to ON). This last test showed there is no more missing
documentation of our public API in api.xml. However, that target also
shows there are still a lot of argument inconsistencies between
plplot.h and api.xml to sort out.
------------------------------------------------------------------------
r12961 | airwin | 2014-01-26 17:39:07 -0800 (Sun, 26 Jan 2014) | 15 lines
Changed paths:
M /trunk/cmake/modules/ocaml.cmake
M /trunk/cmake/modules/plplot.cmake
M /trunk/doc/docbook/src/CMakeLists.txt
Implement ADD_SPECIAL_CONSISTENCY_CHECKING build system option that
adds some custom check targets that ordinarily are not added to
a normal build because of the extra dependencies.
One of these targets is the already existing
check_plplot_h.inc target (to check consistency
of the octave binding).
Also implement the check_api_xml_consistency target which is an
additional target of this kind. That target uses Hǎiliàng Wang's
check application (written in Go and available from
https://github.com/hailiang/go-plplot/tree/master/c/check) to check
the consistency of api.xml with plplot.h.
------------------------------------------------------------------------
r12960 | airwin | 2014-01-26 17:30:31 -0800 (Sun, 26 Jan 2014) | 3 lines
Changed paths:
M /trunk/src/plctrl.c
Improve warnings when drawing mode setting/getting not supported by a
device.
------------------------------------------------------------------------
r12959 | airwin | 2014-01-25 18:50:33 -0800 (Sat, 25 Jan 2014) | 3 lines
Changed paths:
M /trunk/doc/docbook/README.developers
Add information concerning (good) rendering of UTF-8 symbols in api.xml by the "man"
command.
------------------------------------------------------------------------
r12958 | airwin | 2014-01-25 11:47:30 -0800 (Sat, 25 Jan 2014) | 2 lines
Changed paths:
M /trunk/doc/docbook/src/api.xml
M /trunk/doc/docbook/src/plplotdoc.xml.in
Document plgdrawmode and plsdrawmode.
------------------------------------------------------------------------
r12957 | airwin | 2014-01-24 00:34:51 -0800 (Fri, 24 Jan 2014) | 11 lines
Changed paths:
M /trunk/doc/docbook/src/api.xml
M /trunk/doc/docbook/src/plplotdoc.xml.in
Implement documentation for plgcmap1_range and plscmap1_range.
Thanks to Hǎiliàng Wang for writing the plplot.h/api.xml
consistency checker that discovered these functions in our
public API did not have any documentation in api.xml.
ToDo: There are still 4 more functions that are missing documentation
according to that checker report and also inconsistencies between
plplot.h and api.xml in the number and names of the function
arguments.
------------------------------------------------------------------------
r12956 | airwin | 2014-01-23 21:11:55 -0800 (Thu, 23 Jan 2014) | 6 lines
Changed paths:
M /trunk/doc/docbook/src/api.xml
M /trunk/doc/docbook/src/plplotdoc.xml.in
Implement long-overdue documentation for plbtime, plconfigtime, and
plctime. Thanks to Hǎiliàng Wang for writing the plplot.h/api.xml
consistency checker that discovered these (and 6 other functions in our
public API) were missing documentation.
------------------------------------------------------------------------
r12955 | arjenmarkus | 2014-01-23 06:07:07 -0800 (Thu, 23 Jan 2014) | 3 lines
Changed paths:
M /trunk/examples/tk/runAllDemos.tcl
(plplotbugs #142) First step to making the pausing more consistent. With this change the demos run via the runAllDemos.tcl program wait after each page, with a message at the bottom of what is expected.
The behaviour in the Pltk package is controlled via the -eopcmd/-bopcmd options to the plframe widget.
------------------------------------------------------------------------
r12954 | airwin | 2014-01-22 15:43:10 -0800 (Wed, 22 Jan 2014) | 3 lines
Changed paths:
M /trunk/include/plplot.h
Finish off the official deprecation of plrgb, plrgb1, plhls, and plwid
in a consistent way.
------------------------------------------------------------------------
r12953 | airwin | 2014-01-22 15:18:38 -0800 (Wed, 22 Jan 2014) | 2 lines
Changed paths:
M /trunk/src/pldeprecated.c
Document when plwid was officially deprecated.
------------------------------------------------------------------------
r12952 | airwin | 2014-01-22 15:09:31 -0800 (Wed, 22 Jan 2014) | 15 lines
Changed paths:
M /trunk/doc/docbook/src/api.xml
Make api.xml more consistent with the plplot.h header. These issues
were all discovered by a consistency checker written by Hǎiliàng Wang.
Tested by Alan W. Irwin <airwin@users.sourceforge.net> using the
"make validate" command.
ToDo: The checker found ~10 functions in the public API of PLplot that
are undocumented in api.xml. At least one of those (plwid) is
deprecated so some conditional programming using the PL_DEPRECATED
macro should be used to eliminate that function (and any other
officially deprecated function) from consideration by the consistency
checker. Also, some of those ~10 functions will actually need to be
documented in api.xml to provide a clean checker report.
------------------------------------------------------------------------
r12951 | airwin | 2014-01-22 14:55:21 -0800 (Wed, 22 Jan 2014) | 9 lines
Changed paths:
M /trunk/include/plplot.h
M /trunk/src/plcore.c
Change name of argument label ==> labels in the plcolorbar function prototype to make
it consistent with the name used and documented in the plcolorbar
function definition.
Change the name of the plgfci argument from pfci ==> p_fci
to make it consistent with the names of pointer arguments for
other PLplot routines.
------------------------------------------------------------------------
r12950 | airwin | 2014-01-22 12:22:02 -0800 (Wed, 22 Jan 2014) | 6 lines
Changed paths:
M /trunk/include/plplot.h
M /trunk/src/plbox.c
Change plbox3 argument names to be consistent with plbox argument names;
nsubx ==> nxsub
nsuby ==> nysub
nsubz ==> nzsub
------------------------------------------------------------------------
r12949 | airwin | 2014-01-22 11:15:08 -0800 (Wed, 22 Jan 2014) | 4 lines
Changed paths:
M /trunk/doc/docbook/src/api.xml
Correct misspelling of function name, plggriddata ==> plgriddata.
(Thanks to Hǎiliàng Wang for finding this).
------------------------------------------------------------------------
r12948 | airwin | 2014-01-22 01:06:22 -0800 (Wed, 22 Jan 2014) | 3 lines
Changed paths:
M /trunk/scripts/comprehensive_test.sh
Sort out some PATH issues for the "MinGW Makefiles" or "MSYS Makefiles" case.
------------------------------------------------------------------------
r12947 | airwin | 2014-01-22 01:03:05 -0800 (Wed, 22 Jan 2014) | 9 lines
Changed paths:
M /trunk/bindings/ada/CMakeLists.txt
For the MinGW case, install the *.o files that are created by the
plplotada library build. This installation is not required on Linux,
and even for the MinGW case gnatmake does not require these *.o files
to be installed in order to build the installed Ada examples, but when
those built examples are run, they immediately fail with a return code
of 3 unless these *.o files are installed. Therefore, I am pretty sure
this is a workaround for a MinGW gnatmake issue.
------------------------------------------------------------------------
r12946 | airwin | 2014-01-21 01:10:25 -0800 (Tue, 21 Jan 2014) | 5 lines
Changed paths:
M /trunk/scripts/comprehensive_test.sh
Make this script much more robust against errors.
Make the information messages from this more informative.
------------------------------------------------------------------------
r12945 | airwin | 2014-01-21 01:08:28 -0800 (Tue, 21 Jan 2014) | 3 lines
Changed paths:
M /trunk/cmake/epa_build/CMakeLists.txt
Implement NUMBER_PARALLEL_JOBS option with a default of 4 rather than
hard coding 4.
------------------------------------------------------------------------
r12944 | airwin | 2014-01-15 21:44:27 -0800 (Wed, 15 Jan 2014) | 2 lines
Changed paths:
M /trunk/examples/CMakeLists.txt
Remove (now-)redundant -geometry options from wish test targets.
------------------------------------------------------------------------
r12943 | airwin | 2014-01-15 15:13:47 -0800 (Wed, 15 Jan 2014) | 3 lines
Changed paths:
M /trunk/examples/tk/wish_standard_examples.in
Improve comments on examples that must be skipped because they don't
work properly with this TEA-based wish method.
------------------------------------------------------------------------
r12942 | arjenmarkus | 2014-01-15 13:04:39 -0800 (Wed, 15 Jan 2014) | 1 line
Changed paths:
A /trunk/bindings/tcl/plitclgen.tcl
Translation of the plitclgen script into Tcl code. Note that it is not yet used by the build scripts. That will be a next step.
------------------------------------------------------------------------
r12941 | arjenmarkus | 2014-01-15 12:16:36 -0800 (Wed, 15 Jan 2014) | 1 line
Changed paths:
M /trunk/bindings/tk/pkgIndex.tcl.in
Use the CMake variable plplottcltk_SOVERSION as the suffix for the Tcl/Tk library, so that the pkgIndex.tcl file is adjusted automatically.
------------------------------------------------------------------------
r12940 | airwin | 2014-01-14 18:32:38 -0800 (Tue, 14 Jan 2014) | 11 lines
Changed paths:
M /trunk/cmake/epa_build/swig/CMakeLists.txt
Apply patch to swig-2.0.11 to allow it to support octave-3.8.0.
Tested by Alan W. Irwin <airwin@users.sourceforge.net> on Linux by
building and installing the patched swig-2.0.11 using epa_build with
the -DBUILD_THE_BUILD_TOOLS=ON option. That installed result was
then tested (with an ordinary epa_build of plplot_lite). Good results
were obtained for a build and install of PLplot, and the test_diff_psc
target in the build tree generated good results for Java, Python,
Octave, and Lua (our 4 swig-generated bindings).
------------------------------------------------------------------------
r12939 | airwin | 2014-01-14 18:07:27 -0800 (Tue, 14 Jan 2014) | 13 lines
Changed paths:
A /trunk/cmake/epa_build/swig/octave-3.8.0.patch
Commit patch to update swig octave support to version 3.8.0.
This patch was implemented by the swig developer, Karl Wette, for the
pending release of swig-3.0.0. It was obtained using
wget https://github.com/swig/swig/commit/5b167cc12daf9ea275c17fedaefc975450613ab2.patch
and modified by commenting out the first file which is an update to
the swig-3.0.0 changelog. After that change, this swig-3.0.0 patch
does apply cleanly to swig 2.0.11, but has not been tested beyond that
yet for that version of swig.
------------------------------------------------------------------------
r12938 | airwin | 2014-01-12 19:27:10 -0800 (Sun, 12 Jan 2014) | 7 lines
Changed paths:
M /trunk/bindings/python/plplot_widgetmodule.c
M /trunk/bindings/tk/tcpip.c
M /trunk/plplot_config.h.in
For C source code replace use of the ENABLE_tk macro (defined only if
the CMake variable ENABLE_tk is true) by the more specifice ENABLE_tkX
macro (only defined if the CMake variables ENABLE_tk and X11_FOUND are
true). The reason for the change is both tcpip.c and
plplot_widgetmodule.c are only viable if X is available.
------------------------------------------------------------------------
r12937 | airwin | 2014-01-12 19:22:38 -0800 (Sun, 12 Jan 2014) | 12 lines
Changed paths:
M /trunk/bindings/tcl/pkgIndex.tcl.in
Update the TEA-based approach for accessing Pltcl under tclsh on
Windows platforms. I have dropped the old Windows method which was
completely broken and replaced it with a method which slightly adapts
the Unix way of accessing PLtcl by using the known different locations
for the dll's in the Windows case.
Tested by Alan W. Irwin <airwin@users.sourceforge.net> on
MinGW/MSYS/Wine by running the tclsh demo given by
examples/tcl/README.tcldemos by hand for a few examples and also by
running the test_tclsh_standard_examples target.
------------------------------------------------------------------------
r12936 | airwin | 2014-01-12 19:13:30 -0800 (Sun, 12 Jan 2014) | 3 lines
Changed paths:
M /trunk/examples/CMakeLists.txt
Choose ntk (if available) over wingcc as the device used for generic
interactive tests on Windows.
------------------------------------------------------------------------
r12935 | airwin | 2014-01-12 19:11:05 -0800 (Sun, 12 Jan 2014) | 2 lines
Changed paths:
M /trunk/cmake/epa_build/setup/setup_mingw_msys_wine_toolchain
Give access to version 3 of the Itcl and Itk libraries on MinGW/MSYS.
------------------------------------------------------------------------
r12934 | airwin | 2014-01-11 19:12:25 -0800 (Sat, 11 Jan 2014) | 23 lines
Changed paths:
M /trunk/bindings/python/CMakeLists.txt
M /trunk/bindings/tcl/CMakeLists.txt
M /trunk/bindings/tk/CMakeLists.txt
M /trunk/cmake/modules/tcl-related.cmake
M /trunk/cmake/modules/tk.cmake
M /trunk/examples/CMakeLists.txt
M /trunk/examples/plplot_configure.cmake_installed_examples.in
M /trunk/examples/python/CMakeLists.txt
M /trunk/examples/tcl/tclsh_standard_examples.in
M /trunk/examples/tk/CMakeLists.txt
M /trunk/examples/tk/CMakeLists.txt_installed_examples_tk
M /trunk/plplot_test/plplot-test-interactive.sh.in
Define and use ENABLE_tkX and ENABLE_itkX to help distingush cases
where X is present or not along with Tk and Itk.
Define and use generic_interactive_device, the device that
is to be used with generic interactive tests. Normally, this
device is xwin on Unix (with X) and wingcc on Windows (without X), but
for the test case where X has not been found on Unix, it is ntk.
Tested by Alan W. Irwin <airwin@users.sourceforge.net> on Linux where
the find for X11 was temporarily commented out so nothing X related
was defined, and the build-system logic normally used for the Windows
case could be tested (but with ntk as the generic interactive device).
ldd -r and nm --undefined-only showed no issues for -dev ntk, the
plplottcltk library, and the pltcl executable. The
test_pltcl_standard_examples and test_tclsh_standard_examples targets
completed without issues (after the ntk cmd array overflow bug found
by example 27 was fixed). Note all these tests were in the build tree
for the shared library/dynamic devices case so additional more
comprehensive testing of these widespread changes with
scripts/comprehensive_test.sh is recommended in the long term.
------------------------------------------------------------------------
r12933 | airwin | 2014-01-11 18:53:54 -0800 (Sat, 11 Jan 2014) | 2 lines
Changed paths:
M /trunk/bindings/tk/pltkd.h
M /trunk/bindings/tk/tcpip.c
Fix build errors on MinGW.
------------------------------------------------------------------------
r12932 | airwin | 2014-01-11 18:18:40 -0800 (Sat, 11 Jan 2014) | 2 lines
Changed paths:
M /trunk/drivers/ntk.c
Get rid of debugging "flush" output to stderr.
------------------------------------------------------------------------
r12931 | airwin | 2014-01-11 18:14:07 -0800 (Sat, 11 Jan 2014) | 2 lines
Changed paths:
M /trunk/drivers/ntk.c
Fix overflowed cmd buffer caused by example 27.
------------------------------------------------------------------------
r12930 | airwin | 2014-01-10 12:05:57 -0800 (Fri, 10 Jan 2014) | 11 lines
Changed paths:
M /trunk/bindings/tk/PLWin.itk
Follow the directions in bindings/tcl/plitclgen to run that perl
script in the bindings/tcl directory and replace the
methods listed near the end of bindings/tk/PLWin.itk with the
gen.itcl results that are generated by plitclgen.
It has been many years since this was done before so the effect of all
this is a fairly large number of additions to the methods listed in
PLWin.itk (because the PLplot API has expanded) and the removal of a
few methods that are no longer a part of the PLplot API.
------------------------------------------------------------------------
r12929 | airwin | 2014-01-09 23:43:02 -0800 (Thu, 09 Jan 2014) | 13 lines
Changed paths:
M /trunk/cmake/modules/tcl-related.cmake
Improve the reliability of determining the Tcl and Tk library version
numbers by only version parsing the library name rather the full path
of the library name. This change solved a bug where the library
version was being parsed from the wine (!) version number that I
happened to be using in my build tree prefix to keep track of various
results for various wine versions.
Add some additional names (with a compact numeric suffix and with no
numerical suffix at all) to search for the itcl and itk libraries.
This change solved a bug where epa_build creates itcl and itk
libraries with compact numerical suffixes on the MinGW/MSYS platform.
------------------------------------------------------------------------
r12928 | airwin | 2014-01-09 17:45:35 -0800 (Thu, 09 Jan 2014) | 2 lines
Changed paths:
M /trunk/bindings/tcl/CMakeLists.txt
Only link the pltcl executable to libitcl when appropriate.
------------------------------------------------------------------------
r12927 | airwin | 2014-01-09 17:44:07 -0800 (Thu, 09 Jan 2014) | 4 lines
Changed paths:
M /trunk/cmake/modules/tcl-related.cmake
Move setup of RPATH directory lists to better locations in the logic
where there has been complete success at finding the associated Tcl
extension package.
------------------------------------------------------------------------
r12926 | airwin | 2014-01-09 13:38:57 -0800 (Thu, 09 Jan 2014) | 10 lines
Changed paths:
M /trunk/cmake/epa_build/itk3/CMakeLists.txt
A /trunk/cmake/epa_build/itk3/autotools_backport.patch
Backport itk version 4 autotools build-system changes to itk version 3 to fix
internal error in the autotools-generated configure script that occurs
otherwise for the epa_build of itk3 on the MinGW/MSYS platform.
Tested by: Alan W. Irwin <airwin@users.sourceforge.net> on both Linux
and MinGW/MSYS/Wine platforms using the epa_build
-DBUILD_THE_BUILDTOOLS=ON cmake option and by running the resulting
build_itk3 target.
------------------------------------------------------------------------
r12925 | airwin | 2014-01-07 12:57:43 -0800 (Tue, 07 Jan 2014) | 15 lines
Changed paths:
M /trunk/cmake/epa_build/itk/CMakeLists.txt
A /trunk/cmake/epa_build/itk/autoreconf.patch
Update epa_build configuration so that itk (version 4.0.0) successfully builds on
MinGW/MSYS.
N.B. A patch corresponding to running "autoreconf -i" on Linux has
been applied rather than just running "autoreconf -i" on all platforms
because autoreconf is broken on MSYS. Note, this patch is not really
necessary for itk because the resulting changes to the configure
script are so small they don't make a practical difference. However,
I wanted to pioneer applying "autoreconf -i" this way since
configure.in for itk4 is not that different than for itk3, and the
equivalent patch for the itk3 case might make such a large change in
the itk3 configure script that it solves the internal error for that
script that is current stopping the itk3 epa_build.
------------------------------------------------------------------------
r12924 | airwin | 2014-01-06 13:18:18 -0800 (Mon, 06 Jan 2014) | 8 lines
Changed paths:
M /trunk/cmake/epa_build/README
Replace references to the "make" command by ${BUILD_COMMAND} (now
implemented by the setup files for each appropriate CMake generator
for maximum generality.
Other changes (such as the reference to the now working "MinGW Makefiles"
generator) to bring this documention up to date.
------------------------------------------------------------------------
r12923 | airwin | 2014-01-06 12:51:38 -0800 (Mon, 06 Jan 2014) | 8 lines
Changed paths:
M /trunk/cmake/epa_build/setup/setup_linux_makefiles
M /trunk/cmake/epa_build/setup/setup_mingw_makefiles
M /trunk/cmake/epa_build/setup/setup_msys_makefiles
Implement the BUILD_COMMAND variable which is a variable that
contains the name of the correct build command for the generator.
Drop MAKE_COMMAND if it has been implemented. I prefer the variable
name BUILD_COMMAND instead because some generators (e.g., ninja) use a
build command that has nothing to do with make.
------------------------------------------------------------------------
r12922 | airwin | 2014-01-06 12:41:54 -0800 (Mon, 06 Jan 2014) | 2 lines
Changed paths:
D /trunk/cmake/epa_build/setup/setup_linux
A /trunk/cmake/epa_build/setup/setup_linux_makefiles (from /trunk/cmake/epa_build/setup/setup_linux:12912)
Rename setup_linux ==> setup_linux_makefiles
------------------------------------------------------------------------
r12921 | arjenmarkus | 2014-01-06 01:35:54 -0800 (Mon, 06 Jan 2014) | 2 lines
Changed paths:
M /trunk/bindings/tcl/README.tclAPI
Updating information on the generation of the Tcl API. Just a minor update
------------------------------------------------------------------------
r12920 | airwin | 2014-01-05 15:04:10 -0800 (Sun, 05 Jan 2014) | 2 lines
Changed paths:
M /trunk/cmake/epa_build/itcl3/CMakeLists.txt
Update epa_build configuration of itcl3 so that it works on MinGW/MSYS.
------------------------------------------------------------------------
r12919 | airwin | 2014-01-05 12:14:19 -0800 (Sun, 05 Jan 2014) | 10 lines
Changed paths:
M /trunk/cmake/epa_build/tk/CMakeLists.txt
Update the epa_build configuration of tk so that it works on MinGW/MSYS.
Tested by: Alan W. Irwin <airwin@users.sourceforge.net> on
MinGW/MSYS/Wine-1.6.1 for the epa_build project with
-DBUILD_THE_BUILDTOOLS=ON using the build_tk target.
N.B. this test shows that Tk builds without issues on MinGW/MSYS
against the installed Tcl epa_build result, but the test
does not include run-time testing.
------------------------------------------------------------------------
r12918 | airwin | 2014-01-04 22:47:16 -0800 (Sat, 04 Jan 2014) | 2 lines
Changed paths:
M /trunk/cmake/epa_build/tcl/CMakeLists.txt
Update tcl epa_build configuration so that it works on MinGW/MSYS.
------------------------------------------------------------------------
r12917 | airwin | 2014-01-04 14:38:22 -0800 (Sat, 04 Jan 2014) | 6 lines
Changed paths:
A /trunk/cmake/epa_build/setup/setup_mingw_makefiles
M /trunk/cmake/epa_build/setup/setup_msys_makefiles
Add a setup for the "MinGW Makefiles" generator case.
Add the MAKE_COMMAND environment variable for the "MSYS Makefiles"
generator case.
------------------------------------------------------------------------
r12916 | airwin | 2013-12-31 10:06:30 -0800 (Tue, 31 Dec 2013) | 2 lines
Changed paths:
M /trunk/www/index.php
Replace "Fortran 77/90" ==> "Fortran 95".
------------------------------------------------------------------------
r12915 | airwin | 2013-12-31 09:39:32 -0800 (Tue, 31 Dec 2013) | 2 lines
Changed paths:
M /trunk/INSTALL
Replace g77 by gfortran in build instructions.
------------------------------------------------------------------------
r12914 | airwin | 2013-12-29 12:11:07 -0800 (Sun, 29 Dec 2013) | 15 lines
Changed paths:
M /trunk/CMakeLists.txt
D /trunk/config.h.in
M /trunk/doc/CMakeLists.txt
M /trunk/doc/Doxyfile.in
M /trunk/drivers/plplotcanvas-hacktext.c
M /trunk/include/plConfig.h.in
A /trunk/plplot_config.h.in (from /trunk/config.h.in:12912)
M /trunk/scripts/style_source.sh
Rename config.h to plplot_config.h to avoid name clashes with other
projects (such as octave) which have headers named config.h. This
change was comprehensive involving all files found by the following
command:
find . -type f |grep -v .svn |xargs grep config\\.h |grep -v epa_build \
|grep -vi changelog |grep -v plplot_config\\.h
Tested by: Alan W. Irwin <airwin@users.sourceforge.net> on Linux
using
scripts/make_tarball.sh -c -i /tmp/plplot_install
find /tmp/plplot* -name "*.out" |xargs grep -i error
------------------------------------------------------------------------
r12913 | airwin | 2013-12-28 18:13:54 -0800 (Sat, 28 Dec 2013) | 24 lines
Changed paths:
M /trunk/cmake/modules/tcl-related.cmake
Check Tcl/Tk version consistency by implementing the following:
* Determine Tcl version from tclsh
* Determine Tcl version from library name (if that is possible) and
WARN if it is not consistent with Tcl version from tclsh.
* Determine Tk version from wish and confirm it is the same
as the Tcl version from tclsh or else disable Tk.
* Determine Tcl version from wish and confirm it is the
same as the Tcl version from tclsh or else disable Tk.
* Determine Tk version from tclsh and confirm it is the
same as the Tk version from wish or else disable Tk.
* Determine Tk version from library name (if that is possible) and
confirm consistent with Tcl version from tclsh or else disable Tk.
Tested by: Alan W. Irwin <airwin@users.sourceforge.net> using various
runs of cmake with wrong results locally imposed to test all the WARNING
logic.
------------------------------------------------------------------------
r12912 | airwin | 2013-12-22 14:35:13 -0800 (Sun, 22 Dec 2013) | 2 lines
Changed paths:
M /trunk/README.release
Prepare release notes for the current (5.10.0) stable release cycle.
------------------------------------------------------------------------
r12911 | airwin | 2013-12-22 14:28:45 -0800 (Sun, 22 Dec 2013) | 3 lines
Changed paths:
M /trunk/OLD-README.release
Preserve the historical record of the 5.9.11 release notes by
prepending into OLD-README.release.
------------------------------------------------------------------------
r12910 | airwin | 2013-12-22 14:26:29 -0800 (Sun, 22 Dec 2013) | 3 lines
Changed paths:
M /trunk/README.Release_Manager_Cookbook
Tweak directions slightly for the changes I made in the procedure
at the last minute before release.
------------------------------------------------------------------------
r12908 | airwin | 2013-12-22 12:17:24 -0800 (Sun, 22 Dec 2013) | 2 lines
Changed paths:
M /trunk/ChangeLog.release
Commit ChangeLog for the duration of the 5.9.11 release cycle.
------------------------------------------------------------------------
r12907 | airwin | 2013-12-22 12:15:07 -0800 (Sun, 22 Dec 2013) | 2 lines
Changed paths:
M /trunk/README.Release_Manager_Cookbook
Update cookbook of release instructions to what was done for 5.9.11.
------------------------------------------------------------------------
|