Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Cleanup of package name in makefile comments |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f88271efe87338a565050f918a11573f |
User & Date: | kevin 2015-09-12 14:19:48 |
Context
2015-09-12
| ||
19:36 | More updates for Windows check-in: db756c7d84 user: kevin tags: trunk | |
14:19 | Cleanup of package name in makefile comments check-in: f88271efe8 user: kevin tags: trunk | |
02:52 | Revisions to Mac version check-in: 5dd4f0d884 user: kevin tags: trunk | |
Changes
Changes to customfont/Makefile.
1 2 | # Makefile.in -- # | | | 1 2 3 4 5 6 7 8 9 10 | # Makefile.in -- # # This file is a Makefile for customfont TEA Extension. If it has the name # "Makefile.in" then it is a template for a Makefile; to generate the # actual Makefile, run "./configure", which is a configuration script # generated by the "autoconf" program (constructs like "@foo@" will get # replaced in the actual Makefile. # # Copyright (c) 1999 Scriptics Corporation. # Copyright (c) 2002-2005 ActiveState Corporation. |
︙ | ︙ | |||
134 135 136 137 138 139 140 | WISH_ENV = TK_LIBRARY=`echo $(TK_SRC_DIR)/library` WISH_PROG = /usr/local/bin/wish8.6 WISH = $(PKG_ENV) $(TCLSH_ENV) $(WISH_ENV) $(WISH_PROG) SHARED_BUILD = 1 #INCLUDES = -I"/Library/Frameworks/Tcl.framework/Headers" | | | 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | WISH_ENV = TK_LIBRARY=`echo $(TK_SRC_DIR)/library` WISH_PROG = /usr/local/bin/wish8.6 WISH = $(PKG_ENV) $(TCLSH_ENV) $(WISH_ENV) $(WISH_PROG) SHARED_BUILD = 1 #INCLUDES = -I"/Library/Frameworks/Tcl.framework/Headers" INCLUDES = -I"/Library/Frameworks/Tcl.framework/Headers" -I"/Library/Frameworks/Tk.framework/Headers" PKG_CFLAGS = -std=gnu99 # TCL_DEFS is not strictly need here, but if you remove it, then you # must make sure that configure.in checks for the necessary components # that your library may use. TCL_DEFS can actually be a problem if # you do not compile with a similar machine setup as the Tcl core was |
︙ | ︙ | |||
190 191 192 193 194 195 196 | # and doc installs (see install-doc), which just install the docs on the # end user machine when building from source. #======================================================================== doc: @echo "If you have documentation to create, place the commands to" @echo "build the docs in the 'doc:' target. For example:" | | | | 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 | # and doc installs (see install-doc), which just install the docs on the # end user machine when building from source. #======================================================================== doc: @echo "If you have documentation to create, place the commands to" @echo "build the docs in the 'doc:' target. For example:" @echo " xml2nroff customfont.xml > customfont.n" @echo " xml2html customfont.xml > customfont.html" install: all install-binaries install-libraries install-binaries: binaries install-lib-binaries install-bin-binaries #======================================================================== # This rule installs platform-independent files, such as header files. |
︙ | ︙ | |||
261 262 263 264 265 266 267 | #======================================================================== # We need to enumerate the list of .c to .o lines here. # # In the following lines, $(srcdir) refers to the toplevel directory # containing your extension. If your sources are in a subdirectory, # you will have to modify the paths to reflect this: # | | | | 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 | #======================================================================== # We need to enumerate the list of .c to .o lines here. # # In the following lines, $(srcdir) refers to the toplevel directory # containing your extension. If your sources are in a subdirectory, # you will have to modify the paths to reflect this: # # customfont.$(OBJEXT): $(srcdir)/generic/customfont.c # $(COMPILE) -c `echo $(srcdir)/generic/customfont.c` -o $@ # # Setting the VPATH variable to a list of paths will cause the makefile # to look into these paths when resolving .c to .obj dependencies. # As necessary, add $(srcdir):$(srcdir)/compat:.... #======================================================================== VPATH = $(srcdir)/generic:$(srcdir)/unix:$(srcdir)/win:$(srcdir)/macosx |
︙ | ︙ |
Changes to customfont/Makefile.in.
1 2 | # Makefile.in -- # | | | 1 2 3 4 5 6 7 8 9 10 | # Makefile.in -- # # This file is a Makefile for customfont TEA Extension. If it has the name # "Makefile.in" then it is a template for a Makefile; to generate the # actual Makefile, run "./configure", which is a configuration script # generated by the "autoconf" program (constructs like "@foo@" will get # replaced in the actual Makefile. # # Copyright (c) 1999 Scriptics Corporation. # Copyright (c) 2002-2005 ActiveState Corporation. |
︙ | ︙ | |||
190 191 192 193 194 195 196 | # and doc installs (see install-doc), which just install the docs on the # end user machine when building from source. #======================================================================== doc: @echo "If you have documentation to create, place the commands to" @echo "build the docs in the 'doc:' target. For example:" | | | | 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 | # and doc installs (see install-doc), which just install the docs on the # end user machine when building from source. #======================================================================== doc: @echo "If you have documentation to create, place the commands to" @echo "build the docs in the 'doc:' target. For example:" @echo " xml2nroff customfont.xml > customfont.n" @echo " xml2html customfont.xml > customfont.html" install: all install-binaries install-libraries install-binaries: binaries install-lib-binaries install-bin-binaries #======================================================================== # This rule installs platform-independent files, such as header files. |
︙ | ︙ | |||
261 262 263 264 265 266 267 | #======================================================================== # We need to enumerate the list of .c to .o lines here. # # In the following lines, $(srcdir) refers to the toplevel directory # containing your extension. If your sources are in a subdirectory, # you will have to modify the paths to reflect this: # | | | | 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 | #======================================================================== # We need to enumerate the list of .c to .o lines here. # # In the following lines, $(srcdir) refers to the toplevel directory # containing your extension. If your sources are in a subdirectory, # you will have to modify the paths to reflect this: # # customfont.$(OBJEXT): $(srcdir)/generic/customfont.c # $(COMPILE) -c `@CYGPATH@ $(srcdir)/generic/customfont.c` -o $@ # # Setting the VPATH variable to a list of paths will cause the makefile # to look into these paths when resolving .c to .obj dependencies. # As necessary, add $(srcdir):$(srcdir)/compat:.... #======================================================================== VPATH = $(srcdir):$(srcdir)/generic:$(srcdir)/unix:$(srcdir)/win:$(srcdir)/macosx |
︙ | ︙ |
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: 177 tasks, 1030 threads, 4 processors Load average: 1.43, Mach factor: 2.56 /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 |
︙ | ︙ | |||
60 61 62 63 64 65 66 | PATH: //Users/kevin/Downloads/jruby-1.7.16/bin ## ----------- ## ## Core tests. ## ## ----------- ## | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | PATH: //Users/kevin/Downloads/jruby-1.7.16/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2251: checking for correct TEA configuration configure:2264: result: ok (TEA 3.7) configure:2396: checking for Tcl configuration configure:2518: result: found /Library/Frameworks/Tcl.framework/tclConfig.sh configure:2524: checking for existence of /Library/Frameworks/Tcl.framework/tclConfig.sh configure:2528: result: loading configure:2619: checking for Tk configuration configure:2741: result: found /Library/Frameworks/Tk.framework/tkConfig.sh configure:2747: checking for existence of /Library/Frameworks/Tk.framework/tkConfig.sh configure:2751: result: loading configure:2857: --exec-prefix defaulting to TCL_EXEC_PREFIX /usr/local configure:2889: checking for a BSD-compatible install configure:2957: result: /usr/bin/install -c configure:3026: checking for gcc configure:3042: found /usr/bin/gcc configure:3053: result: gcc configure:3282: checking for C compiler version configure:3291: gcc --version >&5 Apple LLVM version 6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn) Target: x86_64-apple-darwin14.4.0 Thread model: posix Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1 configure:3302: $? = 0 configure:3291: gcc -v >&5 Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1 Apple LLVM version 6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn) Target: x86_64-apple-darwin14.4.0 Thread model: posix configure:3302: $? = 0 configure:3291: gcc -V >&5 clang: error: argument to '-V' is missing (expected 1 value) clang: error: no input files configure:3302: $? = 1 configure:3291: gcc -qversion >&5 clang: error: unknown argument: '-qversion' clang: error: no input files configure:3302: $? = 1 configure:3322: checking whether the C compiler works configure:3344: gcc conftest.c >&5 configure:3348: $? = 0 configure:3396: result: yes configure:3399: checking for C compiler default output file name configure:3401: result: a.out configure:3407: checking for suffix of executables configure:3414: gcc -o conftest conftest.c >&5 configure:3418: $? = 0 configure:3440: result: configure:3462: checking whether we are cross compiling configure:3470: gcc -o conftest conftest.c >&5 configure:3474: $? = 0 configure:3481: ./conftest configure:3485: $? = 0 configure:3500: result: no configure:3505: checking for suffix of object files configure:3527: gcc -c conftest.c >&5 configure:3531: $? = 0 configure:3552: result: o configure:3556: checking whether we are using the GNU C compiler configure:3575: gcc -c conftest.c >&5 configure:3575: $? = 0 configure:3584: result: yes configure:3593: checking whether gcc accepts -g configure:3613: gcc -c -g conftest.c >&5 configure:3613: $? = 0 configure:3654: result: yes configure:3671: checking for gcc option to accept ISO C89 configure:3734: gcc -c conftest.c >&5 configure:3734: $? = 0 configure:3747: result: none needed configure:3772: checking how to run the C preprocessor configure:3803: gcc -E conftest.c configure:3803: $? = 0 configure:3817: gcc -E conftest.c conftest.c:10:10: fatal error: 'ac_nonexistent.h' file not found #include <ac_nonexistent.h> ^ 1 error generated. configure:3817: $? = 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 "" | #define PACKAGE_URL "" | #define MAC_OSX_TK 1 | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:3842: result: gcc -E configure:3862: gcc -E conftest.c configure:3862: $? = 0 configure:3876: gcc -E conftest.c conftest.c:10:10: fatal error: 'ac_nonexistent.h' file not found #include <ac_nonexistent.h> ^ 1 error generated. configure:3876: $? = 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 "" | #define PACKAGE_URL "" | #define MAC_OSX_TK 1 | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:3911: checking whether make sets $(MAKE) configure:3933: result: yes configure:3990: checking for ranlib configure:4006: found /usr/bin/ranlib configure:4017: result: ranlib configure:4049: checking for grep that handles long lines and -e configure:4107: result: /usr/bin/grep configure:4112: checking for egrep configure:4174: result: /usr/bin/grep -E configure:4179: checking for ANSI C header files configure:4199: gcc -c conftest.c >&5 configure:4199: $? = 0 configure:4272: gcc -o conftest conftest.c >&5 configure:4272: $? = 0 configure:4272: ./conftest configure:4272: $? = 0 configure:4283: result: yes configure:4296: checking for sys/types.h configure:4296: gcc -c conftest.c >&5 configure:4296: $? = 0 configure:4296: result: yes configure:4296: checking for sys/stat.h configure:4296: gcc -c conftest.c >&5 configure:4296: $? = 0 configure:4296: result: yes configure:4296: checking for stdlib.h configure:4296: gcc -c conftest.c >&5 configure:4296: $? = 0 configure:4296: result: yes configure:4296: checking for string.h configure:4296: gcc -c conftest.c >&5 configure:4296: $? = 0 configure:4296: result: yes configure:4296: checking for memory.h configure:4296: gcc -c conftest.c >&5 configure:4296: $? = 0 configure:4296: result: yes configure:4296: checking for strings.h configure:4296: gcc -c conftest.c >&5 configure:4296: $? = 0 configure:4296: result: yes configure:4296: checking for inttypes.h configure:4296: gcc -c conftest.c >&5 configure:4296: $? = 0 configure:4296: result: yes configure:4296: checking for stdint.h configure:4296: gcc -c conftest.c >&5 configure:4296: $? = 0 configure:4296: result: yes configure:4296: checking for unistd.h configure:4296: gcc -c conftest.c >&5 configure:4296: $? = 0 configure:4296: result: yes configure:4318: checking if the compiler understands -pipe configure:4336: gcc -c -pipe conftest.c >&5 configure:4336: $? = 0 configure:4344: result: yes configure:4355: checking whether byte ordering is bigendian configure:4370: gcc -c -pipe conftest.c >&5 configure:4370: $? = 0 configure:4415: gcc -c -pipe conftest.c >&5 configure:4415: $? = 0 configure:4433: gcc -c -pipe conftest.c >&5 conftest.c:27:4: error: use of undeclared identifier 'not' not big endian ^ 1 error generated. configure:4433: $? = 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 "" |
︙ | ︙ | |||
270 271 272 273 274 275 276 | | #if BYTE_ORDER != BIG_ENDIAN | not big endian | #endif | | ; | return 0; | } | | | | | | | | | | 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 | | #if BYTE_ORDER != BIG_ENDIAN | not big endian | #endif | | ; | return 0; | } configure:4561: result: no configure:4588: checking for sin configure:4588: gcc -o conftest -pipe conftest.c >&5 conftest.c:43:6: warning: incompatible redeclaration of library function 'sin' [-Wincompatible-library-redeclaration] char sin (); ^ conftest.c:43:6: note: 'sin' is a builtin with type 'double (double)' 1 warning generated. configure:4588: $? = 0 configure:4588: result: yes configure:4595: checking for main in -lieee configure:4614: gcc -o conftest -pipe conftest.c -lieee >&5 ld: library not found for -lieee clang: error: linker command failed with exit code 1 (use -v to see invocation) configure:4614: $? = 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 "" |
︙ | ︙ | |||
314 315 316 317 318 319 320 | | int | main () | { | return main (); | ; | return 0; | } | | | | | | 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 | | int | main () | { | return main (); | ; | return 0; | } configure:4623: result: no configure:4635: checking for main in -linet configure:4654: gcc -o conftest -pipe conftest.c -linet >&5 ld: library not found for -linet clang: error: linker command failed with exit code 1 (use -v to see invocation) configure:4654: $? = 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 "" |
︙ | ︙ | |||
349 350 351 352 353 354 355 | | int | main () | { | return main (); | ; | return 0; | } | | | | | | 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | | int | main () | { | return main (); | ; | return 0; | } configure:4663: result: no configure:4669: checking net/errno.h usability configure:4669: gcc -c -pipe conftest.c >&5 conftest.c:53:10: fatal error: 'net/errno.h' file not found #include <net/errno.h> ^ 1 error generated. configure:4669: $? = 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 "" |
︙ | ︙ | |||
411 412 413 414 415 416 417 | | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <net/errno.h> | | | | | | 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 | | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <net/errno.h> configure:4669: result: no configure:4669: checking net/errno.h presence configure:4669: gcc -E conftest.c conftest.c:20:10: fatal error: 'net/errno.h' file not found #include <net/errno.h> ^ 1 error generated. configure:4669: $? = 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 "" |
︙ | ︙ | |||
440 441 442 443 444 445 446 | | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #include <net/errno.h> | | | | | | | | | | | | | | | | | | > | < | | | | | | | | | | | | | | | | | | | | 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 | | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #include <net/errno.h> configure:4669: result: no configure:4669: checking for net/errno.h configure:4669: result: no configure:4698: checking for connect configure:4698: gcc -o conftest -pipe conftest.c >&5 configure:4698: $? = 0 configure:4698: result: yes configure:4766: checking for gethostbyname configure:4766: gcc -o conftest -pipe conftest.c >&5 configure:4766: $? = 0 configure:4766: result: yes configure:4821: checking dirent.h configure:4857: gcc -o conftest -pipe conftest.c >&5 configure:4857: $? = 0 configure:4865: result: yes configure:4875: checking errno.h usability configure:4875: gcc -c -pipe conftest.c >&5 configure:4875: $? = 0 configure:4875: result: yes configure:4875: checking errno.h presence configure:4875: gcc -E conftest.c configure:4875: $? = 0 configure:4875: result: yes configure:4875: checking for errno.h configure:4875: result: yes configure:4885: checking float.h usability configure:4885: gcc -c -pipe conftest.c >&5 configure:4885: $? = 0 configure:4885: result: yes configure:4885: checking float.h presence configure:4885: gcc -E conftest.c configure:4885: $? = 0 configure:4885: result: yes configure:4885: checking for float.h configure:4885: result: yes configure:4895: checking values.h usability configure:4895: gcc -c -pipe conftest.c >&5 conftest.c:53:10: fatal error: 'values.h' file not found #include <values.h> ^ 1 error generated. configure:4895: $? = 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 "" |
︙ | ︙ | |||
536 537 538 539 540 541 542 | | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <values.h> | | | | | | 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 | | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <values.h> configure:4895: result: no configure:4895: checking values.h presence configure:4895: gcc -E conftest.c conftest.c:20:10: fatal error: 'values.h' file not found #include <values.h> ^ 1 error generated. configure:4895: $? = 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 "" |
︙ | ︙ | |||
565 566 567 568 569 570 571 | | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #include <values.h> | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | < < | | | | | | | | | | | | | | > > > > > | > > | < | < < < < | < < | | | | | | | | | | | | | | | | | | 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 | | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #include <values.h> configure:4895: result: no configure:4895: checking for values.h configure:4895: result: no configure:4905: checking limits.h usability configure:4905: gcc -c -pipe conftest.c >&5 configure:4905: $? = 0 configure:4905: result: yes configure:4905: checking limits.h presence configure:4905: gcc -E conftest.c configure:4905: $? = 0 configure:4905: result: yes configure:4905: checking for limits.h configure:4905: result: yes configure:4917: checking for stdlib.h configure:4917: result: yes configure:4969: checking for string.h configure:4969: result: yes configure:5013: checking sys/wait.h usability configure:5013: gcc -c -pipe conftest.c >&5 configure:5013: $? = 0 configure:5013: result: yes configure:5013: checking sys/wait.h presence configure:5013: gcc -E conftest.c configure:5013: $? = 0 configure:5013: result: yes configure:5013: checking for sys/wait.h configure:5013: result: yes configure:5023: checking dlfcn.h usability configure:5023: gcc -c -pipe conftest.c >&5 configure:5023: $? = 0 configure:5023: result: yes configure:5023: checking dlfcn.h presence configure:5023: gcc -E conftest.c configure:5023: $? = 0 configure:5023: result: yes configure:5023: checking for dlfcn.h configure:5023: result: yes configure:5037: checking sys/param.h usability configure:5037: gcc -c -pipe conftest.c >&5 configure:5037: $? = 0 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:5505: checking for Tcl public headers configure:5576: result: /Library/Frameworks/Tcl.framework/Headers configure:5591: checking for Tk public headers configure:5665: result: /Library/Frameworks/Tk.framework/Headers configure:5679: checking for X11 header files configure:5686: result: /Library/Frameworks/Tk.framework/Headers configure:6062: checking for pthread_mutex_init in -lpthread configure:6087: gcc -o conftest -pipe conftest.c -lpthread >&5 configure:6087: $? = 0 configure:6096: result: yes configure:6305: checking for building with threads configure:6311: result: yes (default) configure:6352: checking how to build libraries configure:6370: result: shared configure:6395: checking if 64bit support is requested configure:6404: result: no configure:6409: checking if 64bit Sparc VIS support is requested configure:6418: result: no configure:6428: checking if compiler supports visibility "hidden" configure:6448: gcc -o conftest -pipe -Werror conftest.c >&5 configure:6448: $? = 0 configure:6457: result: yes configure:6469: checking if rpath support is requested configure:6478: result: yes configure:6503: checking system version configure:6534: result: Darwin-14.4.0 configure:6542: checking for dlopen in -ldl configure:6567: gcc -o conftest -pipe conftest.c -ldl >&5 configure:6567: $? = 0 configure:6576: result: yes configure:6621: checking for ar configure:6637: found /usr/bin/ar configure:6648: result: ar configure:7800: checking if ld accepts -single_module flag configure:7819: gcc -o conftest -pipe -dynamiclib -Wl,-single_module conftest.c >&5 configure:7819: $? = 0 configure:7828: result: yes configure:7849: checking if ld accepts -search_paths_first flag configure:7868: gcc -o conftest -pipe -prebind -headerpad_max_install_names -Wl,-search_paths_first conftest.c >&5 configure:7868: $? = 0 configure:7877: result: yes configure:8460: checking for required early compiler flags configure:8478: gcc -c -pipe conftest.c >&5 configure:8478: $? = 0 configure:8525: 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:8525: $? = 0 configure:8572: gcc -c -pipe conftest.c >&5 conftest.c:32:19: error: use of undeclared identifier 'open64' char *p = (char *)open64; ^ 1 error generated. configure:8572: $? = 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 "" |
︙ | ︙ | |||
709 710 711 712 713 714 715 | | 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:8587: gcc -c -pipe conftest.c >&5 conftest.c:33:19: error: use of undeclared identifier 'open64' char *p = (char *)open64; ^ 1 error generated. configure:8587: $? = 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 "" |
︙ | ︙ | |||
752 753 754 755 756 757 758 | | 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:8605: result: none configure:8613: checking for 64-bit integer type configure:8632: gcc -c -pipe conftest.c >&5 conftest.c:32:1: error: use of undeclared identifier '__int64' __int64 value = (__int64) 0; ^ 1 error generated. configure:8632: $? = 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 "" |
︙ | ︙ | |||
796 797 798 799 800 801 802 | | 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:8654: 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:8654: $? = 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 "" |
︙ | ︙ | |||
843 844 845 846 847 848 849 | | { | 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 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 | | { | switch (0) { | case 1: case (sizeof(long long)==sizeof(long)): ; | } | ; | return 0; | } configure:8664: result: using long configure:8808: checking for build with symbols configure:8821: result: no configure:8958: checking for tclsh configure:8985: result: /usr/local/bin/tclsh8.6 configure:8990: checking for wish configure:9017: result: /usr/local/bin/wish8.6 configure:9182: 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 CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on wordtechweb.com config.status:814: creating Makefile config.status:814: creating pkgIndex.tcl ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_c_bigendian=no ac_cv_c_compiler_gnu=yes |
︙ | ︙ | |||
1040 1041 1042 1043 1044 1045 1046 | TCL_SRC_DIR='/Users/kevin/tcl-tk-fossil/tcl' TCL_STUB_LIB_FILE='libtclstub8.6.a' TCL_STUB_LIB_FLAG='-ltclstub8.6' TCL_STUB_LIB_SPEC='-L/Library/Frameworks/Tcl.framework -ltclstub8.6' TCL_THREADS='1' TCL_VERSION='8.6' TK_BIN_DIR='/Library/Frameworks/Tk.framework' | | < < | 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 | TCL_SRC_DIR='/Users/kevin/tcl-tk-fossil/tcl' TCL_STUB_LIB_FILE='libtclstub8.6.a' TCL_STUB_LIB_FLAG='-ltclstub8.6' TCL_STUB_LIB_SPEC='-L/Library/Frameworks/Tcl.framework -ltclstub8.6' TCL_THREADS='1' TCL_VERSION='8.6' TK_BIN_DIR='/Library/Frameworks/Tk.framework' TK_INCLUDES='-I"/Library/Frameworks/Tk.framework/Headers"' TK_LIBS=' -lpthread -framework CoreFoundation -framework Cocoa -framework Carbon -framework IOKit -lz -lpthread -framework CoreFoundation ' TK_LIB_FILE='Tk' TK_LIB_FLAG='-framework Tk' TK_LIB_SPEC='-F/Library/Frameworks -framework Tk' TK_SRC_DIR='/Users/kevin/tcl-tk-fossil/tk' TK_STUB_LIB_FILE='libtkstub8.6.a' TK_STUB_LIB_FLAG='-ltkstub8.6' TK_STUB_LIB_SPEC='-L/Library/Frameworks/Tk.framework -ltkstub8.6' TK_VERSION='8.6' TK_XINCLUDES='' WISH_PROG='/usr/local/bin/wish8.6' XMKMF='' ac_ct_CC='gcc' ac_ct_CXX='' bindir='${exec_prefix}/bin' build_alias='' datadir='${datarootdir}' |
︙ | ︙ |
Changes to customfont/config.status.
︙ | ︙ | |||
605 606 607 608 609 610 611 | S["DL_LIBS"]="" S["LIBOBJS"]="" S["CELIB_DIR"]="" S["AR"]="ar" S["SHARED_BUILD"]="1" S["TCL_THREADS"]="1" S["XMKMF"]="" | < < | < < | 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 | S["DL_LIBS"]="" S["LIBOBJS"]="" S["CELIB_DIR"]="" S["AR"]="ar" S["SHARED_BUILD"]="1" S["TCL_THREADS"]="1" S["XMKMF"]="" S["TK_INCLUDES"]="-I\"/Library/Frameworks/Tk.framework/Headers\"" S["TCL_INCLUDES"]="-I\"/Library/Frameworks/Tcl.framework/Headers\"" S["CLEANFILES"]="pkgIndex.tcl" S["PKG_OBJECTS"]=" customfont.o" S["PKG_SOURCES"]=" macosx/customfont.c" S["ac_ct_CXX"]="" S["CXXFLAGS"]="" S["CXX"]="" |
︙ | ︙ |
Changes to customfont/configure.
︙ | ︙ | |||
640 641 642 643 644 645 646 | DL_LIBS LIBOBJS CELIB_DIR AR SHARED_BUILD TCL_THREADS XMKMF | < < | 640 641 642 643 644 645 646 647 648 649 650 651 652 653 | DL_LIBS LIBOBJS CELIB_DIR AR SHARED_BUILD TCL_THREADS XMKMF TK_INCLUDES TCL_INCLUDES CLEANFILES PKG_OBJECTS PKG_SOURCES ac_ct_CXX CXXFLAGS |
︙ | ︙ | |||
2235 2236 2237 2238 2239 2240 2241 | ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu | < < < < < | 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 | ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu #-------------------------------------------------------------------- # Call TEA_INIT as the first TEA_ macro to set up initial vars. # This will define a ${TEA_PLATFORM} variable == "unix" or "windows" # as well as PKG_LIB_FILE and PKG_STUB_LIB_FILE. #-------------------------------------------------------------------- |
︙ | ︙ | |||
5431 5432 5433 5434 5435 5436 5437 | i=`echo "$i" | sed -e 's/^\([^-].*\)\.lib$/-l\1/i'` fi PKG_LIBS="$PKG_LIBS $i" done | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 | i=`echo "$i" | sed -e 's/^\([^-].*\)\.lib$/-l\1/i'` fi PKG_LIBS="$PKG_LIBS $i" done CLEANFILES="pkgIndex.tcl *.lib *.dll *.exp *.ilk *.pdb vc*.pch" #TEA_ADD_SOURCES([win/winFile.c]) #TEA_ADD_INCLUDES([-I\"$(${CYGPATH} ${srcdir}/win)\"]) else CLEANFILES="pkgIndex.tcl" #TEA_ADD_SOURCES([unix/unixFile.c]) #TEA_ADD_LIBS([-lsuperfly]) |
︙ | ︙ | |||
5720 5721 5722 5723 5724 5725 5726 | TK_XINCLUDES=-I\"${INCLUDE_DIR_NATIVE}\" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${INCLUDE_DIR_NATIVE}" >&5 $as_echo "${INCLUDE_DIR_NATIVE}" >&6; } fi | | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 | TK_XINCLUDES=-I\"${INCLUDE_DIR_NATIVE}\" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${INCLUDE_DIR_NATIVE}" >&5 $as_echo "${INCLUDE_DIR_NATIVE}" >&6; } fi #TEA_PRIVATE_TK_HEADERS if test "${TEA_WINDOWINGSYSTEM}" = "x11" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for X" >&5 $as_echo_n "checking for X... " >&6; } |
︙ | ︙ |
Changes to customfont/configure.in.
︙ | ︙ | |||
12 13 14 15 16 17 18 | # This initializes the environment with PACKAGE_NAME and PACKAGE_VERSION # set as provided. These will also be added as -D defs in your Makefile # so you can encode the package version directly into the source files. #----------------------------------------------------------------------- AC_INIT([customfont], [1.1]) | < < < < < | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # This initializes the environment with PACKAGE_NAME and PACKAGE_VERSION # set as provided. These will also be added as -D defs in your Makefile # so you can encode the package version directly into the source files. #----------------------------------------------------------------------- AC_INIT([customfont], [1.1]) #-------------------------------------------------------------------- # Call TEA_INIT as the first TEA_ macro to set up initial vars. # This will define a ${TEA_PLATFORM} variable == "unix" or "windows" # as well as PKG_LIB_FILE and PKG_STUB_LIB_FILE. #-------------------------------------------------------------------- TEA_INIT([3.7]) |
︙ | ︙ | |||
87 88 89 90 91 92 93 | # Windows creates a few extra files that need to be cleaned up. # You can add more files to clean if your extension creates any extra # files. # # TEA_ADD_* any platform specific compiler/build info here. #-------------------------------------------------------------------- if test "${TEA_PLATFORM}" = "windows" ; then | | < < < < < < < < | 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | # Windows creates a few extra files that need to be cleaned up. # You can add more files to clean if your extension creates any extra # files. # # TEA_ADD_* any platform specific compiler/build info here. #-------------------------------------------------------------------- if test "${TEA_PLATFORM}" = "windows" ; then TEA_ADD_CFLAGS([-DUNICODE -D_UNICODE]) TEA_ADD_SOURCES([win/customfont_win.c]) TEA_ADD_LIBS(kernel32.lib user32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib gdi32.lib) CLEANFILES="pkgIndex.tcl *.lib *.dll *.exp *.ilk *.pdb vc*.pch" #TEA_ADD_SOURCES([win/winFile.c]) #TEA_ADD_INCLUDES([-I\"$(${CYGPATH} ${srcdir}/win)\"]) else CLEANFILES="pkgIndex.tcl" #TEA_ADD_SOURCES([unix/unixFile.c]) #TEA_ADD_LIBS([-lsuperfly]) |
︙ | ︙ | |||
131 132 133 134 135 136 137 | # This MUST be called after TEA_LOAD_TCLCONFIG / TEA_LOAD_TKCONFIG #-------------------------------------------------------------------- TEA_PUBLIC_TCL_HEADERS #TEA_PRIVATE_TCL_HEADERS TEA_PUBLIC_TK_HEADERS | | | 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | # This MUST be called after TEA_LOAD_TCLCONFIG / TEA_LOAD_TKCONFIG #-------------------------------------------------------------------- TEA_PUBLIC_TCL_HEADERS #TEA_PRIVATE_TCL_HEADERS TEA_PUBLIC_TK_HEADERS #TEA_PRIVATE_TK_HEADERS TEA_PATH_X #-------------------------------------------------------------------- # Check whether --enable-threads or --disable-threads was given. # This auto-enables if Tcl was compiled threaded. #-------------------------------------------------------------------- |
︙ | ︙ |