Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix Windows naming conflicts |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
697de03bc7b7991f59d1f3a9cac3f0b2 |
User & Date: | kevin 2015-09-13 12:08:53 |
Context
2015-09-13
| ||
16:24 | Re-add Windows file check-in: e1359d0b72 user: kevin tags: trunk | |
12:08 | Fix Windows naming conflicts check-in: 697de03bc7 user: kevin tags: trunk | |
2015-09-12
| ||
22:18 | more updates for windows check-in: 000cda35a5 user: kevin tags: trunk | |
Changes
Changes to customfont/config.log.
︙ | ︙ | |||
26 27 28 29 30 31 32 | Darwin Kernel Version 14.4.0: Thu May 28 11:35:04 PDT 2015; root:xnu-2782.30.5~1/RELEASE_X86_64 Kernel configured for up to 4 processors. 2 processors are physically available. 4 processors are logically available. Processor type: x86_64h (Intel x86-64h Haswell) Processors active: 0 1 2 3 Primary memory available: 8.00 gigabytes | | | | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | Darwin Kernel Version 14.4.0: Thu May 28 11:35:04 PDT 2015; root:xnu-2782.30.5~1/RELEASE_X86_64 Kernel configured for up to 4 processors. 2 processors are physically available. 4 processors are logically available. Processor type: x86_64h (Intel x86-64h Haswell) Processors active: 0 1 2 3 Primary memory available: 8.00 gigabytes Default processor set: 193 tasks, 1169 threads, 4 processors Load average: 1.75, Mach factor: 2.24 /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /Library/Frameworks/Python.framework/Versions/Current/bin PATH: /Library/Frameworks/Python.framework/Versions/Current/bin PATH: /usr/local/bin |
︙ | ︙ | |||
612 613 614 615 616 617 618 | configure:5037: result: yes configure:5037: checking sys/param.h presence configure:5037: gcc -E conftest.c configure:5037: $? = 0 configure:5037: result: yes configure:5037: checking for sys/param.h configure:5037: result: yes | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | configure:5037: result: yes configure:5037: checking sys/param.h presence configure:5037: gcc -E conftest.c configure:5037: $? = 0 configure:5037: result: yes configure:5037: checking for sys/param.h configure:5037: result: yes configure:5541: checking for Tcl public headers configure:5612: result: /Library/Frameworks/Tcl.framework/Headers configure:5627: checking for Tk public headers configure:5701: result: /Library/Frameworks/Tk.framework/Headers configure:5715: checking for X11 header files configure:5722: result: /Library/Frameworks/Tk.framework/Headers configure:6098: checking for pthread_mutex_init in -lpthread configure:6123: gcc -o conftest -pipe conftest.c -lpthread >&5 configure:6123: $? = 0 configure:6132: result: yes configure:6341: checking for building with threads configure:6347: result: yes (default) configure:6388: checking how to build libraries configure:6406: result: shared configure:6431: checking if 64bit support is requested configure:6440: result: no configure:6445: checking if 64bit Sparc VIS support is requested configure:6454: result: no configure:6464: checking if compiler supports visibility "hidden" configure:6484: gcc -o conftest -pipe -Werror conftest.c >&5 configure:6484: $? = 0 configure:6493: result: yes configure:6505: checking if rpath support is requested configure:6514: result: yes configure:6539: checking system version configure:6570: result: Darwin-14.4.0 configure:6578: checking for dlopen in -ldl configure:6603: gcc -o conftest -pipe conftest.c -ldl >&5 configure:6603: $? = 0 configure:6612: result: yes configure:6657: checking for ar configure:6673: found /usr/bin/ar configure:6684: result: ar configure:7836: checking if ld accepts -single_module flag configure:7855: gcc -o conftest -pipe -dynamiclib -Wl,-single_module conftest.c >&5 configure:7855: $? = 0 configure:7864: result: yes configure:7885: checking if ld accepts -search_paths_first flag configure:7904: gcc -o conftest -pipe -prebind -headerpad_max_install_names -Wl,-search_paths_first conftest.c >&5 configure:7904: $? = 0 configure:7913: result: yes configure:8496: checking for required early compiler flags configure:8514: gcc -c -pipe conftest.c >&5 configure:8514: $? = 0 configure:8561: gcc -c -pipe conftest.c >&5 conftest.c:32:28: warning: 'stat64' is deprecated: first deprecated in OS X 10.6 [-Wdeprecated-declarations] struct stat64 buf; int i = stat64("/", &buf); ^ /usr/include/sys/stat.h:391:5: note: 'stat64' has been explicitly marked deprecated here int stat64(const char *, struct stat64 *) __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_5,__MAC_10_6,__IPHONE_NA,__IPHONE_NA); ^ 1 warning generated. configure:8561: $? = 0 configure:8608: gcc -c -pipe conftest.c >&5 conftest.c:32:19: error: use of undeclared identifier 'open64' char *p = (char *)open64; ^ 1 error generated. configure:8608: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "customfont" | #define PACKAGE_TARNAME "customfont" | #define PACKAGE_VERSION "1.1" | #define PACKAGE_STRING "customfont 1.1" | #define PACKAGE_BUGREPORT "" |
︙ | ︙ | |||
707 708 709 710 711 712 713 | | int | main () | { | char *p = (char *)open64; | ; | return 0; | } | | | | 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 | | int | main () | { | char *p = (char *)open64; | ; | return 0; | } configure:8623: gcc -c -pipe conftest.c >&5 conftest.c:33:19: error: use of undeclared identifier 'open64' char *p = (char *)open64; ^ 1 error generated. configure:8623: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "customfont" | #define PACKAGE_TARNAME "customfont" | #define PACKAGE_VERSION "1.1" | #define PACKAGE_STRING "customfont 1.1" | #define PACKAGE_BUGREPORT "" |
︙ | ︙ | |||
750 751 752 753 754 755 756 | | int | main () | { | char *p = (char *)open64; | ; | return 0; | } | | | | | | 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 | | int | main () | { | char *p = (char *)open64; | ; | return 0; | } configure:8641: result: none configure:8649: checking for 64-bit integer type configure:8668: gcc -c -pipe conftest.c >&5 conftest.c:32:1: error: use of undeclared identifier '__int64' __int64 value = (__int64) 0; ^ 1 error generated. configure:8668: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "customfont" | #define PACKAGE_TARNAME "customfont" | #define PACKAGE_VERSION "1.1" | #define PACKAGE_STRING "customfont 1.1" | #define PACKAGE_BUGREPORT "" |
︙ | ︙ | |||
794 795 796 797 798 799 800 | | int | main () | { | __int64 value = (__int64) 0; | ; | return 0; | } | | | | 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 | | int | main () | { | __int64 value = (__int64) 0; | ; | return 0; | } configure:8690: gcc -c -pipe conftest.c >&5 conftest.c:33:26: error: duplicate case value '1' case 1: case (sizeof(long long)==sizeof(long)): ; ^ conftest.c:33:18: note: previous case defined here case 1: case (sizeof(long long)==sizeof(long)): ; ^ 1 error generated. configure:8690: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "customfont" | #define PACKAGE_TARNAME "customfont" | #define PACKAGE_VERSION "1.1" | #define PACKAGE_STRING "customfont 1.1" | #define PACKAGE_BUGREPORT "" |
︙ | ︙ | |||
841 842 843 844 845 846 847 | | { | switch (0) { | case 1: case (sizeof(long long)==sizeof(long)): ; | } | ; | return 0; | } | | | | | | | | | | 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 | | { | switch (0) { | case 1: case (sizeof(long long)==sizeof(long)): ; | } | ; | return 0; | } configure:8700: result: using long configure:8844: checking for build with symbols configure:8857: result: no configure:8994: checking for tclsh configure:9021: result: /usr/local/bin/tclsh8.6 configure:9026: checking for wish configure:9053: result: /usr/local/bin/wish8.6 configure:9218: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by customfont config.status 1.1, which was generated by GNU Autoconf 2.69. Invocation command line was |
︙ | ︙ |