1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479
|
2024-01-27 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.46.4
2023-12-11 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Don't fail if warning_level=everything
2023-07-11 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Remove AUTHORS, HACKING, README.SUN; add info to README.md
See gtkmm#140
2023-07-11 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Update pangomm.doap
2023-06-27 Chun-wei Fan <fanchunwei@src.gnome.org>
README.win32.md: Some more updates
Some needed info are missing, so make up for them. Also, remove the
`test` target for NMake, since it does not exist for the package.
2023-06-27 Chun-wei Fan <fanchunwei@src.gnome.org>
README.win32: Convert to MarkDown
Convert to MarkDown format so that the formatting is easier on the eye, and
switch to UNIX line endings.
Also update the info in there so that the actual build situation is better
refleted, especially in regards to Visual Studio builds. Re-organize items
for the Meson builds to be under their respective headers for MinGW and Visual
Studio.
2023-05-04 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Coverage: Don't use deprecated pango_coverage_ref/unref()
They are deprecated since pango 1.52.0. It has been possible
to use g_object_ref/unref() since pango 1.44.0.
2023-05-04 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Doxyfile.in: Remove obsolete entries
2023-03-25 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Simplify if-file-exists test
2023-03-25 Kjell Ahlstedt <kjellahlstedt@gmail.com>
README.md: meson -> meson setup
2023-03-25 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Doxyfile.in: Don't hide undocumented classes
Might make the inheritance diagrams less incomplete when Doxygen's
tag files are not perfect.
2023-01-04 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Simplify lookup of python command
See libsigcplusplus PR#83
2023-01-04 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Fix the evaluation of is_git_build on Windows
See gtkmm#131
2023-01-04 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: Don't copy files with configure_file()
It's deprecated from Meson 0.64. The replacement, fs.copyfile(),
is not useful here. It only copies from the source directory to
the build directory.
2022-09-27 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Detect if we build from a git subtree
See gtkmm!72 (William Roy)
2022-09-21 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.46.3
2022-09-12 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Convert README to README.md
2022-05-24 Chun-wei Fan <fanchunwei@src.gnome.org>
meson/MSVC: Re-organize warning-related compiler flags
Add a short description for each of the warning-related compiler flags that we
apply globally.
Also, apply '/wd4267' only when we are building a 64-bit build, as that warning
should only be related to 64-bit builds.
2022-05-23 Chun-wei Fan <fanchunwei@src.gnome.org>
Meson: Apply /wd4828 for building gendef.exe only
...as that warning is only generated when building gendef.exe. Also, only
build gendef.exe when glibmm's gmmproc is unable to produce pangomm headers
that can export pangomm symbols via compiler directives.
Move the '/utf-8' check to be with the other compiler flags.
2022-05-20 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Avoid configuration warnings
2022-02-27 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Check if Perl is required for building documentation
New versions of mm-common use the Python scripts doc_postprocess.py
and doc_install.py instead of the Perl scripts doc-postprocess.pl and
doc-install.pl when documentation is built.
2022-02-22 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Context::get_font_map(): Fix reference count
pango_context_get_font_map() returns "(transfer none)".
See https://mail.gnome.org/archives/gtkmm-list/2022-February/msg00031.html
2022-02-15 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Specify 'check' option in run_command()
The default value will be changed in future Meson releases.
Don't use deprecated python3.path().
Let import('python').find_installation() always find the python
installation used to run Meson.
2021-12-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.46.2
2021-11-12 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Fix header installation
...when the release tarball is built with `meson dist`, as we did not correctly
copy the *_p.h headers from untracked\pango\pangomm\private.
2021-11-10 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Correct VS2019 toolset number
It should be 142, not 141, due to a mishap in the previous commit.
2021-11-10 Chun-wei Fan <fanchunwei@src.gnome.org>
build: Support Visual Studio 2022 builds
Make these builds distinct from the Visual Studio 2019 builds.
2021-09-07 Kjell Ahlstedt <kjellahlstedt@gmail.com>
docs/reference/Doxyfile.in: Remove obsolete entry
2021-08-25 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Don't include individual pango headers, part 2
2021-08-25 Matthias Clasen <mclasen@redhat.com>
Don't include individual pango headers
As in every gnome library, you are only supposed
to include the main pango.h header from the outside.
This was causing build failures after some recent
pango header rearrangements.
2021-07-31 Matthias Clasen <mclasen@redhat.com>
Use pango from the main branch
Change the Pango subproject to use the main branch.
This depends on
https://gitlab.gnome.org/GNOME/pango/-/merge_requests/379
2021-05-21 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.46.1
2021-05-19 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Documentation: Let links point to pangomm-1.4 versions
2021-05-18 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Add dependencies to Doxygen tag files in subprojects
Doxygen in a main project shall not be called before tag files have been
created or updated in subprojects.
2021-05-14 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Fix build as subproject without building documentation
* meson.build: If mm-common-get is not found in maintainer-mode
with 'required: false', try with 'required: true'.
Don't try to use tag_file, if documentation is not built.
* docs/reference/meson.build: Don't use variables from modules
that don't define doxytagfile. These are subprojects that don't build
their documentation.
2021-05-11 Chun-wei Fan <fanchunwei@src.gnome.org>
Visual Studio builds: Clean up build files
glibmm will be updated to be clear of classes that export items making the
built binaries dependent on the exact compiler version and the STL version,
which will eliminate the need to ignore warnings C4251, C4273 and C4275.
We will also use the /EHsc compiler flag so that we can also drop the
ignore on warning C4530.
2021-05-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Subprojects can use meson.add_dist_script() if meson.version() >= 0.58.0
Call add_dist_script() in a subproject, if meson.version() >= 0.58.0.
2021-04-08 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: No implicit_include_directories
2021-03-26 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: Make it possible to use pangomm as a subproject
pango, cairomm and glibmm can be subprojects of pangomm.
2021-03-09 Chun-wei Fan <fanchunwei@src.gnome.org>
pangommconfig.h.*: Don't dllimport on MinGW
This will fix warnings when building items using pangomm with MinGW/GCC.
Please see: https://gitlab.gnome.org/GNOME/gtkmm/-/issues/90
2021-02-25 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: Use relative paths to untracked/
The paths to the source code in untracked/ shall be relative to the
meson.build file, when library files are built from a tarball.
With absolute paths Meson may generate too long file names.
See merge request gtkmm!61
2021-01-27 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.46.0
2021-01-17 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Fix build-deprecated-api=false
* pango/src/layout.ccg: The wrong get_iter() overload was deprecated.
2021-01-17 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Coverage: Deprecate create(bytes, n_bytes), max(), to_bytes()
The corresponding C functions are deprecated in pango.
2021-01-17 Kjell Ahlstedt <kjellahlstedt@gmail.com>
LayoutRun: Make most methods public
They became private by mistake 12 years ago in
commit d5781fecebf7eeb5bafbfb875027f6f1707a2bf1.
Fixes #11
2021-01-17 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Layout: Add get_const_line() and get_const_lines()
Fixes #10
2021-01-17 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Layout: Speed up get_log_attrs()
Call pango_layout_get_log_attrs_readonly() instead of
pango_layout_get_log_attrs(). The PangoLogAttr structs
will then be copied once instead of twice.
2021-01-16 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Add Layout::set/get_line_spacing()
See #9
2021-01-16 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Wrap pango_shape_with_flags()
* pango/src/glyphstring.[ccg|hg]: Add constructor
GlyphString(const Glib::ustring& item_text,
const Glib::ustring& paragraph_text, const Analysis& analysis,
ShapeFlags flags = SHAPE_NONE).
* pango/src/item.[ccg|hg]: Add enum ShapeFlags and
shape(const Glib::ustring& item_text, const Glib::ustring& paragraph_text,
ShapeFlags flags = SHAPE_NONE).
* tools/m4/convert_pango.m4: Add conversions for ShapeFlags.
See #9
2021-01-16 Kjell Ahlstedt <kjellahlstedt@gmail.com>
LayoutRun: Fix a memory leak in split()
2021-01-16 Kjell Ahlstedt <kjellahlstedt@gmail.com>
LayoutIter: Fix get_run()
get_run() shall call pango_layout_iter_get_run_readonly() and
take a copy of the returned PangoLayoutRun.
2021-01-16 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Renderer: Document get_matrix()
2021-01-16 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Font, FontFace, FontFamily, FontMetrics: Add new methods
2021-01-15 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Attribute: Add Overline and ShowFlags enums and some create*() methods
See #9
2021-01-15 Kjell Ahlstedt <kjellahlstedt@gmail.com>
FontMap, FontFamily: Add TODO comments
2021-01-15 Kjell Ahlstedt <kjellahlstedt@gmail.com>
FontMap: Remove obsolete _IGNORE()
2021-01-15 Kjell Ahlstedt <kjellahlstedt@gmail.com>
docs/reference/Doxyfile.in: Remove obsolete entries
2021-01-15 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Regenerate docs.xml and .defs files
Regenerated while the pango-1-46 branch was checked out from pango.
2020-12-13 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.42.2
2020-12-13 Kjell Ahlstedt <kjellahlstedt@gmail.com>
pango/pangomm.h: Show how to use pangomm when building with Meson
2020-10-01 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: Fix versioning on macOS
See libsigcplusplus, pull request 65
2020-08-31 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Fix gendef invocation
We ought to pass in the DLL filename with the '.dll' extension to gendef, not
just the .lib filename.
2020-07-23 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Use Meson-style DLL and .lib naming if requested
To make things more consistent and less prone to confusion, if 'USE_MESON_LIBS'
is specified in the NMake command line, build the DLLs and .lib's that are
named like the Meson counterparts. Binaries built with Meson+Visual Studio
and the ones that are built via NMake using 'USE_MESON_LIBS' are
interchangeable, provided that they are built with the same Visual Studio
version.
2020-07-22 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Fix generating pangomm[config.h|.rc]
The previous additions to generate those files accidentally made the build
attempt to generate them, even if done from a release tarball that is done by
the autotools builds.
This will fix this situation, and improve the situation that if pangomm.rc or
pangommconfig.h needs to be generated, these files will be generated
automatically
2020-07-08 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Fix headers search
We ought to look in $(PREFIX)\include\harfbuzz and $(PREFIX)\include, as the
HarfBuzz and Cairo headers can be found in these respective locations.
2020-07-08 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Support ARM64 Windows builds
This will make the NMake Makefiles capable of building ARM64 binaries of
pangomm, which can be used on Windows 10 on ARM systems.
2020-06-30 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Fix previous commit
We should also account for Visual Studio 2015 when we use 'USE_MESON_LIBS' with
'USE_COMPAT_LIBS' as well...
2020-06-30 Chun-wei Fan <fanchunwei@src.gnome.org>
README.win32: Update Meson build info
It is now possible to build Pango directly from a GIT checkout on Visual Studio
builds for a while, so let people know about this.
Also note that glibmm and cairomm should be built with Meson in order to use the
Meson build files for pangomm, and one should also use the same compiler to
build pangomm, glibmm and cairomm.
2020-06-30 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Use the /utf-8 compiler flag
This makes it easier to build pangomm on non-Western locales, without requiring
to change the "Locale settings for non-Unicode programs" to English, which will
require a restart, since warning (error) C4819 can be otherwise triggered, which
can indicate broken builds due to Unicode handling issues in the compiler.
2020-06-30 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Apply toolset version for Meson-built deps
As the Meson build files for Visual Studio apply the toolset version in the
.lib filenames by default, apply the toolset version in the Meson-built -mm
.lib files that we link in, just as we did when we we link in the -mm .lib
files that was built with NMake, by default.
The option 'USE_COMPAT_LIBS' will also mean that we will use the former
behavior when we link in the Meson-built -mm .lib's, just as we did when we
link in the NMake-built -mm .lib's.
2020-06-29 Kjell Ahlstedt <kjellahlstedt@gmail.com>
docs/reference/: Update for Doxygen >= 1.8.16
* docs/reference/meson.build: Doxygen 1.8.16 and later does not store
tag file names in the html files. This requires changes in meson.build
and in doc-install.pl (in mm-common). Otherwise references to other modules
won't be updated in the html files when they are installed.
* docs/reference/Doxyfile.in: Remove PERL_PATH and MSCGEN_PATH.
Doxygen since version 1.8.0 does not use them.
2020-06-29 Chun-wei Fan <fanchunwei@src.gnome.org>
Meson/Visual Studio builds: Include toolset version by default
This makes the built DLL and .lib's contain the toolset version if the build is
carried out using Visual Studio 2015 or later, unless the
'msvc14x-parallel-installable' option is set to be false during configuration.
The reasoning behind this change is that there can be subtle problems when, for
instance, one tries to link to a Visual Studio 2015-built pangomm when building
items dependening on pangomm with Visual Studio 2017 or 2019. This is
unfortunate as Microsoft did try hard to make interoperating between binaries
built with Visual Studio 2015, 2017 and 2019 as easy as possible in terms of ABI
and API, but unfortunately this can hit the corner cases where this
compatibility does not work.
As the name suggests, this attempts to make Visual Studio 2015, 2017 and 2019
builds share a single set of underlying C DLLs easier, while avoiding breakages
caused by such subtle differences.
2020-06-29 Chun-wei Fan <fanchunwei@src.gnome.org>
Meson: Use pkg-config to find glibmm and cairomm for all builds
Stop manually looking for glibmm and cairomm for better consistency, as:
-Items that depended on glibmm which added Meson build support after glibmm,
such as gtkmm and libxml++ also required glibmm to be found via pkg-config
files, and they still had NMake Makefile support for Visual Studio builds.
For items that use cairomm directly, this will be the case as well.
-There could be corner cases on the glibmm and cairomm libraries that pangomm
links to in terms of ABI compatibility between Visual Studio 2015, 2017 and
2019.
2020-06-16 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Distinguish between MSVC 2015, 2017 and 2019
It was found that we cannot rely on the fact that Visual Studio
2015~2019 tried very hard to be binary compatible, as there can be
corner cases when linking against pangomm built with Visual Studio 2015
with builds done by Visual Studio 2017 and 2019 where the code will fail to
link and the DLLs are therefore not ABI-compatible. Note that the
libsigc++ DLLs, however, are ABI compatible between these 3 Visual
Studio versions.
As a result, for the DLL and LIB names, use 'vc140' for Visual Studio
2015 builds, 'vc141' for Visual Studio 2017 builds and 'vc142' for
Visual Studio 2019 builds, according to the toolset versions as defined
by Microsoft.
For people that may have previously built pangomm with Visual Studio 2017
or 2019, which had 'vc140' in the built .lib and DLL, an NMake option
'USE_COMPAT_LIBS' is added to make building such binaries with 'vc140'
easier, if needed.
2020-05-05 Chun-wei Fan <fanchunwei@src.gnome.org>
meson: Clean up Visual Studio bits
Streamline how we look for the dependencies manually, by using the
'has_headers:' attribute of cpp_compiler.find_library(), so that we can
check for the presence of the headers at the same time as looking for
the glibmm, cairomm and/or libsigc++ headers.
2020-05-05 Chun-wei Fan <fanchunwei@src.gnome.org>
Meson: Ignore warning C4275 on Visual Studio
Since we are basically using __declspec(dllimport) from dependent
-mm libraries that are on the same CRT, we could just disregard this
warning.
2020-05-05 Chun-wei Fan <fanchunwei@src.gnome.org>
Meson/Visual Studio: Support cairomm lookup using pkg-config
cairomm recently received Meson build support, which will generate the
pkg-config files for us, so try to look for cairomm first using
pkg-config, before looking for it manually.
Since cairomm's pkg-config file also pulls in libsigc++, we can also
skip looking for libsigc++ if we found cairomm via pkg-config.
2020-05-05 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Support Meson-built cairomm
Allow linking directly to Meson-built cairomm when using the
USE_MESON_LIBS option when running NMake.
2020-04-28 Kjell Ahlstedt <kjellahlstedt@gmail.com>
pango/meson.build: Minor fix of pangomm-1.4.pc
libdir=${exec_prefix}/lib, as when it's generated with Autotools.
2020-04-11 Chun-wei Fan <fanchunwei@src.gnome.org>
pango/src/fontdescription.hg: Mark operators with PANGOMM_API
We are using a _WRAP_EQUAL here which generates operator== and
operator!= overloads that actually need to be exported. So, pass in a
function decorator to _WRAP_EQUAL
2020-04-07 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: If not maintainer-mode, check that generate-binding.py exists
Trying to build with maintainer-mode=false from a tarball generated with
Autotools will fail with a proper error message.
Fixes #6
2020-04-07 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: Set default value of the 'warnings' option to 'min'
And add 'dist-warnings' with default value 'fatal'. It's used when a
tarball is tested by 'ninja dist' or 'meson dist'.
https://mail.gnome.org/archives/gtkmm-list/2020-March/msg00025.html
Add a better error message if mm-common-get is required but not found.
2020-04-07 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: Avoid some recompilations, and other changes
* MSVC_NMake/filelist.am: Remove pangomm/copy-pangommconfig-h.py.
* MSVC_NMake/pangomm/copy-pangommconfig-h.py: Removed file.
* MSVC_NMake/pangomm/meson.build: Copy pangommconfig.h with configure_file().
* Makefile.am: Distribute tools/dummy-header.py instead of tools/dist-cmd.py.
* docs/reference/meson.build: Rename a variable.
* meson.build: Rename some variables. Always set gmmproc_dir.
In maintainer-mode, show its value in the summary.
* pango/meson.build: Set pangommconfig_h.
* pango/pangomm/meson.build: Create dummy_header.h, depending on all
generated headers. It guarantees that all generated headers are built
before pangomm_library is built, at the same time avoiding unnecessary
recompilations.
* tools/dist-cmd.py: Removed file. It's not necessary in add_dist_script()
when the first parameter is python3.path().
* tools/dummy-header.py: New file.
* untracked/README: Mention check-dllexport-usage.py.
2020-04-04 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Detect whether we can use __declspec(dllexport)
The generated pangomm headers must be generated with a recent gmmproc so
that we may ensure that all the needed classes, functions and methods
are marked with PANGOMM_API, so that we can build pangomm without using
gendef.exe.
If the headers are generated with an older gmmproc, then we build
pangomm using gendef.exe, as we did before.
2020-04-04 Chun-wei Fan <fanchunwei@src.gnome.org>
meson.build: Build pangomm as a shared lib if possible
Make the build files directly build pangomm as a shared library on:
-All non-Visual Studio builds, as we did initially.
-Visual Studio builds that have the headers generated from their .hg
counterparts with gmmproc 2.64.3 or later. gmmproc 2.64.3 has the
updates that are necessary to have the generated headers contain build
macros that could be used to export symbols using compiler directives.
If it is found that an older gmmproc is being used, fall back to use
gendef.exe, as we did before, by defining PANGOMM_USE_GENDEF.
2020-04-02 Chun-wei Fan <fanchunwei@src.gnome.org>
pango/src/*.hg: Mark _WRAP_ENUM with decl_prefix
This way, with the updated gmmproc, we can export the template<> classes
using PANGOMM_API as well.
2020-04-02 Chun-wei Fan <fanchunwei@src.gnome.org>
pango/pangomm/*.h: Decorate APIs with PANGOMM_API
This prepares for the export of symbols using compiler directives rather
than using gendef.exe.
2020-04-02 Chun-wei Fan <fanchunwei@src.gnome.org>
pango/src/*.hg: Decorate classes and functions with PANGOMM_API
This prepares for using compiler directives to export symbols rather
than using gendef.exe.
2020-04-02 Chun-wei Fan <fanchunwei@src.gnome.org>
pango/pangommconfig.h.*: Add PANGOMM_API
This prepares for decoration of the various APIs in pangomm so that we
can export symbols at least on Visual Studio buids using compiler
directives, without the need of gendef.exe, if the headers were
generated from their respective *.hg counterparts with gmmproc 2.64.0 or
later.
2020-03-30 Chun-wei Fan <fanchunwei@src.gnome.org>
meson.build: Use /utf-8 in Visual Studio builds
...if it is available. Also disable warning C4828 as we will get that warning
when building gendef.exe with /utf-8.
2020-03-30 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Silence warnings with latest glibmm stable
The glibmm headers (and pangomm headers in the near future) use compiler
directives to control symbol export, so we can safely ignore warnings
C4251 and C4275 as we are certain that we are indeed using these
compiler directives to import (and later, export) symbols in our builds.
2020-03-30 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Look also for headers in untracked/
This way, we fix the NMake builds from Meson-generated dist tarballs.
2020-03-30 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Fix build instruction info display
Make up the missing escape carats...
2020-03-21 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.42.1
2020-03-21 Kjell Ahlstedt <kjellahlstedt@gmail.com>
README: Describe building with Meson and Autotools
2020-03-12 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Support Meson-built glibmm
Add the correct naming for the DLLs and .lib's for glibmm that is built
with Meson.
2020-03-10 Chun-wei Fan <fanchunwei@src.gnome.org>
meson: Ignore warning C4251 on MSVC builds
We might be building against glibmm that is built with
__declspec(dllexport), meaning that warning C4251 will be generated as
we are now in-turn using __declspec(dllimport). We can just ignore this
compiler warning, since we are pretty sure what we are doing at this
point.
2020-03-10 Chun-wei Fan <fanchunwei@src.gnome.org>
meson.build: Look for glibmm with pkg-config on MSVC too
glibmm gained Meson build support for Visual Studio, so we can first
try to look for glibmm with pkg-config first, and then fall back to
manual searching if that cannot be found.
Note that libsigc++ also has a Meson build system as well, but either we
look for it via glibmm's pkg-config files, or we look for both glibmm
and libsigc++ manually.
Also support looking for Meson-built libsigc++ .lib's as well if glibmm
is to be looked for manually.
2020-03-10 Chun-wei Fan <fanchunwei@src.gnome.org>
meson: Build generate_extra_defs with Visual Studio too
The NMake Makefiles in glibmm now builds glibmm_generate_extra_defs-2.x.lib,
so we can make use of it to build generate_extra_defs on Visual Studio too.
2020-03-10 Chun-wei Fan <fanchunwei@src.gnome.org>
Meson: Allow maintainer builds on Visual Studio too
glibmm recently gained the ability to build with Visual Studio from a GIT
checkout and to install the PERL scripts used to generate the C++ sources from
the respective templates, so enable this support for pangomm as well as the
needed infrastructure are largely in place.
Note that a new configuration option has been added for Visual Studio builds
to specify the directory for gmmproc, since there is not yet Meson build
support for building glibmm, meaning glibmm built with Visual Studio does not
support generating pkg-config files.
Since some portions that we use for non-maintainer builds can be used for
maintainer builds as well, make them shared to keep additions minimal.
2020-03-10 Chun-wei Fan <fanchunwei@src.gnome.org>
pango/src/color.hg: Fix call to _CLASS_BOXEDTYPE_STATIC
Remove all the parameters after the second one, they were originally ignored
as _CLASS_BOXEDTYPE_STATIC accepted 2 arguments and will cause issues with
the new api_decoration stuff that was recently added to glibmm, which was the
third argument
2020-02-27 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Support using Meson-built dependencies
Add NMake commandline option to use Meson-built libraries so that one will not
need to update the Makefiles to use them.
2020-02-27 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Also install the m4 files
This way other projects may make use of these to generate the sources
2020-02-27 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Separate outdir and intdir by toolset version
This reduces the chances of builds by different Visual Studio versions become
mixed up with other versions, and makes the build tree cleaner. Note that
Visaul Studio 2015 through 2019 are treated as the same toolset version since
they link to the same CRT.
2020-02-27 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Allow builds from a GIT checkout
...or a Meson-generated release tarball.
Add targets to the NMake Makefiles which will allow:
-Generating MSVC_NMake/pangomm/pangommconfig.h and
MSVC_NMake/pangomm/pangomm.rc, needed for GIT checkouts and
Meson-generated release tarballs
-Generating the sources that need to be generated with gmmproc and
generate_wrap_init.pl, needed for GIT checkouts, and fix installation
accordingly.
-Look for sources also in $(srcroot)/untracked, which will be the case
for Meson-generated release tarballs.
2020-02-27 Chun-wei Fan <fanchunwei@src.gnome.org>
NMake Makefiles: Add rules to generate pre-configured items
This will generate the pangomm.rc and pangommconfig.h files, which are needed
for a Visual Studio build. This will make builds from a GIT checkout
easier with NMake.
2020-01-13 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Meson build: Improve internal dependencies
* docs/reference/meson.build: Less difference between maintainer-mode and
not maintainer-mode.
* pango/pangomm/meson.build: Make separate lists of built .h files and
built .cc files.
2020-01-02 Kjell Ahlstedt <kjellahlstedt@gmail.com>
docs/reference/meson.build: Check if perl is found
Don't use perl.path() when configuring Doxyfile, if perl is not found.
Perl is not required, if build-documentation=false.
See https://github.com/libsigcplusplus/libsigcplusplus/issues/53
2019-12-27 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build: Check if .git is a directory or file
In a git worktree, .git is a regular file.
See MR !8 (Ting-Wei Lan)
2019-11-09 Kjell Ahlstedt <kjellahlstedt@gmail.com>
meson.build files: Fix references to other modules
* docs/reference/meson.build: Use tag files from sigc++-2.0, glibmm-2.4
and cairomm-1.0.
* tools/extra_defs_gen/meson.build: Use the generate_extra_defs library
from glibmm-2.4.
These files had been copied from the master branch but not enough modified.
See https://mail.gnome.org/archives/gtkmm-list/2019-November/msg00001.html
2019-11-04 Chun-wei Fan <fanchunwei@src.gnome.org>
README.win32: Update info on MSVC builds
C++11 versions of pangomm support Visual Studio 2013 or later, so ensure
the right info is conveyed here. Note that Meson does not have a
project generator backend for Visual Studio 2013, but does have project
generator backends for 2015, 2017 and 2019.
2019-11-04 Chun-wei Fan <fanchunwei@src.gnome.org>
meson: Relax Visual Studio check to 2013
We are able to build the C++-11 version of pangomm on Visual Studio 2013
or later, so check for that.
However, since the C++-11 support in Visual Studio is made complete in
VS 2015, display a warning message to configure the build without
warnings being fatal, as 2013 builds will spew compiler warnings.
Also, for the C++-11 versions of glibmm, cairomm and sigc++, we don't
distinguish between whether they are built by Visual Studio 2015, 2017
nor 2019, so we assume that they will all link to the same .lib's for
glibmm, cairomm and sigc++, since they should all be compatible in this
case. In this case, Meson will warn about C++11 is not supported, but
it is safe to ignore this warning.
2019-11-03 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Add support for building pangomm with Meson
pangomm-1.4 can be built with either Autotools or Meson.
New and modified files have been copied from the master branch.
Version info in meson.build, README.win32 and untracked/README has been
updated to fit pangomm-1.4.
See MR !7
2019-07-28 Kjell Ahlstedt <kjellahlstedt@gmail.com>
tools: Remove obsolete files
* tools/Makefile.am: Don't distribute README.
* tools/Makefile_list_of_sources.am_fragment: Remove, not used.
* tools/README:
* tools/TODO: Remove, once copied from glibmm, don't belong to pangomm.
2019-07-22 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Layout::get_lines(): Fix ownership of the GSList
Change Glib::OWNERSHIP_SHALLOW -> NONE
2019-07-22 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Coverage: Ignore deprecations
pango_coverage_from_bytes(), pango_coverage_to_bytes() and
pango_coverage_max() are deprecated in pango 1.43, but not in pangomm 2.42.
Suppress deprecation warnings to make it possible to build pangomm 2.42
with the newest version of pango.
2018-12-30 Kjell Ahlstedt <kjellahlstedt@gmail.com>
tools/gen_scripts: Update for non-source-dir builds
Most modules (e.g. pango) can be built in a directory separated from the
source directory. Update the scripts that generate .defs and doc.xml files
to handle that.
The environment variable JHBUILD_SOURCES is not used any more.
Instead the environment variables GMMPROC_GEN_SOURCE_DIR and
GMMPROC_GEN_BUILD_DIR are read. See comments in init_generate.sh.
2018-11-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.42.0
2018-11-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
FontDescription: Add set/get_variations()
2018-11-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Attribute: Add several create_attr_*() methods
* pango/src/attributes.[ccg|hg]: Add create_attr_size_absolute(),
create_attr_underline_color(), create_attr_strikethrough_color(),
create_attr_fallback(), create_attr_letter_spacing(),
create_attr_gravity(), create_attr_gravity_hint(),
create_attr_font_features(). Fixes #2
2018-11-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Regenerate .defs and docs.xml files
2018-11-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Add tools/gen_scripts/generate_all.sh
2018-11-05 Kjell Ahlstedt <kjellahlstedt@gmail.com>
2.40.2
2018-10-29 Chun-wei Fan <fanchunwei@src.gnome.org>
Update .gitignore
The Visual Studio build files is now under MSVC_NMake, not MSVC_201x.
2018-10-26 Chun-wei Fan <fanchunwei@src.gnome.org>
build: Remove Visual Studio 2013 projects
Since they have been superseded by the NMake Makefiles, it is time to
remove them.
2018-10-26 Chun-wei Fan <fanchunwei@src.gnome.org>
build: Add NMake Makefiles
This adds a set of NMake Makefiles, which will replace the Visual Studio
2013 projects so that the Visual Studio build files are more flexible
and easier to maintain.
Note that since this is the C++-11 version of pangomm, for Visual Studio
2015 and 2017, since they both link to the v140 Windows C/C++ runtime
DLLs, the pangomm DLL and .lib are named as pangomm-vc140-1_4.[dll|lib]
or pangomm-vc140-d-1_4.[dll|lib], since these builds can interop.
2018-10-26 Chun-wei Fan <fanchunwei@src.gnome.org>
build: Split out automake'isms out from filelist.am's
This is so that the NMake Makefiles can consume them as well.
2018-10-26 Kjell Ahlstedt <kjellahlstedt@gmail.com>
configure.ac: Update bug report address
2018-09-07 Chun-wei Fan <fanchunwei@src.gnome.org>
builds: Rename MSVC_Net2013 to MSVC_NMake
This is to prepare the transition of the Visual Studio build files
to NMake Makeflies.
2017-09-13 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Update .gitignore
2017-09-13 Kjell Ahlstedt <kjellahlstedt@gmail.com>
GlyphString: Remove some functions from _IGNORE()
2017-09-13 Kjell Ahlstedt <kjellahlstedt@gmail.com>
Add PangoCoverage to pango_extra_objects.defs
2017-09-13 Kjell Ahlstedt <kjellahlstedt@gmail.com>
tools/gen_scripts/: Update for pango built with meson
When pango is built with meson instead of autotools, generated .h and .c
files are stored in pango/build/pango. Files in that directory shall be read
when pango_docs.xml and the .defs files are generated.
Don't read private and internal .h files.
2017-01-04 Chun-wei Fan <fanchunwei@src.gnome.org>
Visual Studio builds: "Install" .pdb files
Since we already generate the .pdb files during the build, make better use
of them so that we could debug easier. Also clean up the property sheet
by removing extra blank lines.
2016-08-19 Murray Cumming <murrayc@murrayc.com>
2.40.1
2016-07-19 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Build: Fix silent builds
* configure.ac: Pass yes to AM_SILENT_RULES, thus enabling silent builds.
Replace MM_AX_CXX_COMPILE_STDCXX_11 by MM_AX_CXX_COMPILE_STDCXX (not necessary
for silent builds).
* docs/reference/Doxyfile.in: Set QUIET=YES.
Update for doxygen 1.8.11 (not necessary for silent builds).
Bug #768797
2016-04-10 Murray Cumming <murrayc@murrayc.com>
C++11: AttrIter, AttrList, Color: Make operator bool() explicit.
See https://bugzilla.gnome.org/show_bug.cgi?id=626858#c4
2016-03-28 Murray Cumming <murrayc@murrayc.com>
2.40
2016-03-28 Murray Cumming <murrayc@murrayc.com>
Regenerate docs.xml files.
2016-03-28 Murray Cumming <murrayc@murrayc.com>
Regenerate .defs.
2016-03-28 Murray Cumming <murrayc@murrayc.com>
Depend on latest glibmm-2.4
To use the latest gmmproc.
2015-11-29 Murray Cumming <murrayc@murrayc.com>
2.39.1
2015-11-29 Murray Cumming <murrayc@murrayc.com>
Depend on a recent glibmm
To use the latest gmmproc.
2015-11-29 Murray Cumming <murrayc@murrayc.com>
Renderer: Add get/set_alpha().
Wrapping pango_renderer_get/set_alpha(), which is new API
in pango 1.38.
2015-11-29 Murray Cumming <murrayc@murrayc.com>
Attributes: Add create_attr_foreground/background_alpha().
Wrapping new API in pango.
2015-11-29 Murray Cumming <murrayc@murrayc.com>
Regenerate docs.xml file.
2015-11-29 Murray Cumming <murrayc@murrayc.com>
Regenerate .defs files.
2015-10-27 Murray Cumming <murrayc@murrayc.com>
--enable-warnings=fatal: Use the same warnings as glibmm and gtkmm.
2015-09-23 Murray Cumming <murrayc@murrayc.com>
Reduce the cairomm dependency back to 1.2.2.
Because it probably works, and this is kinder.
Bug #755460 (Daniel Stone)
2015-09-22 Murray Cumming <murrayc@murrayc.com>
2.38.1
2015-09-21 Murray Cumming <murrayc@murrayc.com>
2.38.0
2015-09-17 Chun-wei Fan <fanchunwei@src.gnome.org>
Update .gitignore for MSVC-specific Items
2015-09-10 Chun-wei Fan <fanchunwei@src.gnome.org>
MSVC Builds: Improve Build Speed and Debugging Experience
Use multiprocessor compilation, which can cut down build times by quite a
bit, and use /d2Zi+ to put more useful info into the .pdb's in release
builds.
2015-09-10 Chun-wei Fan <fanchunwei@src.gnome.org>
MSVC Builds: Support only Visual Studio 2013 (and later)
The current pangomm code base now requires C++-11 support, which is only
supported well enough by Visual Studio 2013 and later, so:
-Update the Visaul Studio 2010 projects to be in 2013 format, and rename
things as needed.
-Remove the Visual Studio 2005/2008 projects
-Update the README.win32 file to reflect on these changes.
2015-09-03 Murray Cumming <murrayc@murrayc.com>
2.37.2
2015-08-22 Murray Cumming <murrayc@murrayc.com>
configure.ac: Require the latest glibmm.
To use the latest gmmproc, which generates more move operations,
and to have the latest Glib::Object/ObjectBase/Interface which have
move operations that those generated move operations call.
2015-08-22 Murray Cumming <murrayc@murrayc.com>
C++11: Mark all _CLASS_OPAQUE_REFCOUNTED classes as final.
Because _CLASS_OPAQUE_REFCOUNTED already generates a comment
telling us not to derive from them, presumably because they can
only be instantiated by reinterpret_cast<>ing a base C struct.
Ideally, _CLASS_OPAQUE_REFCOUNTED would add the final keyword,
but the class line is is not generated, so that would be a little
difficult.
2015-07-15 Murray Cumming <murrayc@murrayc.com>
2.37.1
2015-07-15 Murray Cumming <murrayc@murrayc.com>
Regenerate pango_docs.xml
2015-07-15 Murray Cumming <murrayc@murrayc.com>
Regenerate pango_methods.defs.
2015-07-15 Murray Cumming <murrayc@murrayc.com>
Regenerate pango_enums.defs
2015-07-15 Murray Cumming <murrayc@murrayc.com>
Require the latest glibmm.
For the latest gmmproc.
2015-07-15 Murray Cumming <murrayc@murrayc.com>
configure.ac: Use MM_AX_CXX_COMPILE_STDCXX_11() from mm-common.
Instead of a copy of AX_CXX_COMPILE_STDCXX_11().
2015-07-11 Murray Cumming <murrayc@murrayc.com>
Require C++11.
configure.ac: Use AX_CXX_COMPILE_STDCXX_11 to check for compiler
support for C++11 and use it (--std=c++11 for current versions of
g++).
Among other reasons, this is because glibmm now requires C++11,
and its gmmrpoc generates C++11 code.
2015-06-30 Maks Naumov <maksqwe1@ukr.net>
Attribute: fix operator!=
Bug #751531
2015-03-24 Murray Cumming <murrayc@murrayc.com>
2.36.0
2015-02-04 Murray Cumming <murrayc@murrayc.com>
1.35.1
2015-02-04 Murray Cumming <murrayc@murrayc.com>
FontMap: Added get_serial().
2015-02-04 Murray Cumming <murrayc@murrayc.com>
Context: Add get_serial().
2015-02-04 Murray Cumming <murrayc@murrayc.com>
Layout: Add get_character_count() and get_serial().
2015-02-04 Murray Cumming <murrayc@murrayc.com>
Doxyfile: Make this more like the latest Doxyfile.in in gtkmm.
Just to make sure that we are consistent.
2015-02-04 Murray Cumming <murrayc@murrayc.com>
Doxyfile: Remove obsolete (according to doxygen warnings) lines.
2015-02-04 Murray Cumming <murrayc@murrayc.com>
Regenerate _docs.xml file.
2015-02-04 Murray Cumming <murrayc@murrayc.com>
Regenerate methods .defs file.
2015-02-04 Murray Cumming <murrayc@murrayc.com>
Regenerate enums .defs file.
2015-02-04 Murray Cumming <murrayc@murrayc.com>
tools/: Add gen_scripts/, as in glibmm and gtkmm.
This makes it easier to regenerate the .defs and _docs.xml files.
2014-09-22 Chun-wei Fan <fanchunwei@src.gnome.org>
MSVC 2008/2010 Projects: Add "Install" Projects
This adds "install" projects for Visual Studio 2008/2010 builds so that the
build results can be copied to a common directory together with the
dependencies, so that testing and packaging will be made easier.
* MSVC_Net2008/pangomm-install.vsprops:
* MSVC_Net2008/install.vcproj:
* MSVC_Net2010/pangomm-install.props:
* MSVC_Net2010/install.vcxproj: Add MSVC projects and property sheets to
copy build results to a common directory under the root build directory.
* MSVC_Net2008/pangomm.sln:
* MSVC_Net2010/pangomm.sln: Include the "install" project in the build
process.
* MSVC_Net2008/filelist.am:
* MSVC_Net2010/filelist.am: Include the added projects and property sheets
in dist.
2014-09-18 Chun-wei Fan <fanchunwei@src.gnome.org>
Overhaul The Visual Studio 2010 Projects
Give the Visual Studio 2010 Projects an overhaul, by using property sheets
to consolidate commonly-used items, and moving all the projects to
MSVC_Net2010. Also stop using the /vd2 compile-time option, as it is more
harm than help here, since it causes weird crashes.
* MSVC_Net2010/pangomm-build-defines.props:
* MSVC_Net2010/pangomm-version-paths.props: Add property sheet
sheets to consolidate commonly-used items items so that projects
can refer to them, which will help to simplify future
maintenance.
* MSVC_Net2010/gendef/gendef.vcxproj:
* MSVC_Net2010/gendef/gendef.vcxproj.filters:
* MSVC_Net2010/gendef/pangomm.vcxproj:
* MSVC_Net2010/gendef/pangomm.vcxproj.filters: Move to
MSVC_Net2010/, and clean up using the property sheets. Adjust
the source file paths accordingly, and remove the /vd2 compile-
time option as it brings more trouble than help. Add
PlatformToolset tags so to ease future move to Visual Studio
2012/2013.
* MSVC_Net2010/filelist.am:
* MSVC_Net2010/pangomm.sln: Update file paths accordingly.
2014-09-17 Chun-wei Fan <fanchunwei@src.gnome.org>
Overhaul the Visual Studio 2008 Projects
Give the Visual Studio 2008 Projects an overhaul, and clean them up in the
process by consolidating commonly-used items in property sheets, so to ease
future maintenance.
* MSVC_Net2008/pangomm-build-defines.vsprops:
* MSVC_Net2008/pangomm-version-paths.vsprops: Add property sheets
to group together commonly-used items so that the projects can
refer to them, so to ease future maintenance.
* MSVC_Net2008/pangomm/pangomm.vcproj:
* MSVC_Net2008/gendef/gendef.vcproj: Move to MSVC_Net2008/ and
clean up using the property sheets, and update the file paths
accordingly. Stop building blank.cpp, as the IDE recognize the
.cc sources, and stop using the /vd2 option, as it is a source
of weird crashes.
* MSVC_Net2008/pangomm.sln:
MSVC_Net2008/filelist.am: Update file paths accordingly.
2014-08-01 Andre Klapper <a9016009@gmx.de>
doap: add <programming-language>
2014-07-30 Olav Vitters <olav@vitters.nl>
doap category core
2013-09-09 Chun-wei Fan <fanchunwei@src.gnome.org>
Update the MSVC Project Files
* MSVC_Net2005/gendef/gendef.vcproj:
MSVC_Net2008/gendef/gendef.vcproj:
MSVC_Net2010/gendef/gendef.vcxproj:
MSVC_Net2005/pangomm/pangomm.vcproj:
MSVC_Net2008/pangomm/pangomm.vcproj:
MSVC_Net2010/pangomm/pangomm.vcxproj: Clean up the project files by
purging unneeded entries, macros and whitespace.
Also improve on the project files by adding to the
AdditionalIncludeDirectories and AdditionalLibraryDirectories so that
they can find and use the deps from a local build directory instead
of using builds in the global include and libs path. This is useful when
we are building an unstable release as unstable releases usually require
the latest unstable releases of their respective deps, which we do not
usually want to place where they are used globally.
2013-09-09 Chun-wei Fan <fanchunwei@src.gnome.org>
MSVC Solution Files: Use DOS Line Endings
* MSVC_Net2010/pangomm.sln: Use DOS/Windows line endings as Visual
Studio expects .sln files to have DOS/Windows line endings in order to
determine the Visual Studio version to use to open the .sln files.
2013-07-03 José Alburquerque <jaalburquerque@gmail.com>
Move to a generated ChangeLog.
2013-07-02 José Alburquerque <jaalburquerque@gmail.com>
Auto-generate the ChangeLog from the git log for 'make dist'.
* Makefile.am: Include the dist-changelog.am file copied in build/
from mm-common so that the ChangeLog is automatically generated from
the git commit messages on 'make dist'.
2013-04-24 Murray Cumming <murrayc@murrayc.com>
2.34.0
2012-10-26 José Alburquerque <jaalburqu@svn.gnome.org>
Remove the use of g_type_init() because it has been deprecated.
* tools/extra_defs_gen/generate_defs_pango.cc: The docs for the
function says that the GType system is initialized automatically now
as of glib-2.36.
2011-10-26 Murray Cumming <murrayc@murrayc.com>
2.28.4
2011-10-25 Murray Cumming <murrayc@murrayc.com>
Add #includes needed with the latest glibmm.
* pango/src/attributes.ccg:
* pango/src/attributes.hg:
* pango/src/color.hg:
* pango/src/fontdescription.hg:
* pango/src/fontface.hg:
* pango/src/fontmetrics.hg:
* pango/src/fontset.ccg:
* pango/src/item.hg:
* pango/src/language.hg:
* pango/src/layoutline.hg: Add individual includes now that gmmproc does not
add #include glibmm.h at the top of every generated header.
2011-09-27 Murray Cumming <murrayc@murrayc.com>
2.28.3
2011-09-22 Krzesimir Nowak <qdlacz@gmail.com>
Don't use obsolete macros.
* autogen.sh: Warn about everything during autoreconf.
* configure.ac: Replaced obsolete macros with their modern counterparts.
2011-08-31 Frédéric Péters <fpeters@0d.be>
ship convert_pangomm.m4 in tarballs
https://bugzilla.gnome.org/show_bug.cgi?id=657817
2011-05-24 Olav Vitters <olav@vitters.nl>
Use tar-ustar instead of tar-pax to ensure OpenBSD compatibility
2011-03-30 Murray Cumming <murrayc@murrayc.com>
2.28.2
2011-03-30 Murray Cumming <murrayc@murrayc.com>
Use the latest mm-common.
* configure.ac: Require the latest version.
* doc/Makefile.am: Don't specify the mm-common .pl files to distribute
because mm-common now does this automatically.
2011-03-26 Kalev Lember <kalev@smartlink.ee>
Install the m4 files without --enable-maintainer-mode
* Makefile.am: Install the convert.m4 files even if we aren't in
maintainer mode; this makes sure distro packages pick up the files.
2011-03-25 Murray Cumming <murrayc@murrayc.com>
2.28.1
2011-03-25 Murray Cumming <murrayc@murrayc.com>
Avoid a tarball dependency on mm-common.
* configure.ac: Add a call to MM_CONFIG_DOCTOOL_DIR() telling it to
copy the files locally and use them from there.
* docs/Makefile.am: Dist the copied files, so that the build does not
try to use the versions installed by mm-common.
2011-03-23 Murray Cumming <murrayc@murrayc.com>
2.28.0
2011-01-08 Murray Cumming <murrayc@murrayc.com>
2.27.1
|