Changeset 40
- Timestamp:
- 08/11/05 11:26:47 (6 years ago)
- Location:
- NEWT0/trunk
- Files:
-
- 1 added
- 12 edited
-
Makefile.in (modified) (1 diff)
-
configure (modified) (8 diffs)
-
configure.in (modified) (6 diffs)
-
configure_ipod (added)
-
ext.xcode/gnue.mode1 (modified) (2 diffs)
-
ext.xcode/gnue.pbxuser (modified) (2 diffs)
-
newt.xcode/gnue.mode1 (modified) (24 diffs)
-
newt.xcode/gnue.pbxuser (modified) (32 diffs)
-
src/config.h.in (modified) (1 diff)
-
src/newt_core/NewtFile.c (modified) (9 diffs)
-
src/newt_core/NewtVM.c (modified) (1 diff)
-
src/newt_core/incs/darwin/config.h (modified) (2 diffs)
-
src/version.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
NEWT0/trunk/Makefile.in
r37 r40 69 69 ### all 70 70 71 all: newt ext71 all: newt @MAKE_EXT@ 72 72 73 73 -
NEWT0/trunk/configure
r36 r40 312 312 #endif" 313 313 314 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT YACC LEX LEXLIB LEX_OUTPUT_ROOT build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os CPP EGREP LIBOBJS LIBREGEX NEWT_LDIMPORT NEWT_LDFLAGS LIBNEWT_LDSHARED LINK_NEWT_APP_ DLEXT LTLIBOBJS'314 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT YACC LEX LEXLIB LEX_OUTPUT_ROOT build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os CPP EGREP LIBOBJS LIBREGEX NEWT_LDIMPORT NEWT_LDFLAGS LIBNEWT_LDSHARED LINK_NEWT_APP_ DLEXT MAKE_EXT LTLIBOBJS' 315 315 ac_subst_files='' 316 316 … … 2737 2737 conftest$ac_exeext conftest.$ac_ext 2738 2738 2739 cat >conftest.$ac_ext <<_ACEOF 2740 /* confdefs.h. */ 2741 _ACEOF 2742 cat confdefs.h >>conftest.$ac_ext 2743 cat >>conftest.$ac_ext <<_ACEOF 2744 /* end confdefs.h. */ 2745 2746 #include <dlfcn.h> 2747 2748 int 2749 main () 2750 { 2751 2752 void * install_call; 2753 void * lib; 2754 2755 lib = dlopen("", RTLD_LAZY); 2756 install_call = dlsym(lib, ""); 2757 dlclose(lib); 2758 2759 ; 2760 return 0; 2761 } 2762 _ACEOF 2763 rm -f conftest.$ac_objext conftest$ac_exeext 2764 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 2765 (eval $ac_link) 2>conftest.er1 2766 ac_status=$? 2767 grep -v '^ *+' conftest.er1 >conftest.err 2768 rm -f conftest.er1 2769 cat conftest.err >&5 2770 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2771 (exit $ac_status); } && 2772 { ac_try='test -z "$ac_c_werror_flag" 2773 || test ! -s conftest.err' 2774 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2775 (eval $ac_try) 2>&5 2776 ac_status=$? 2777 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2778 (exit $ac_status); }; } && 2779 { ac_try='test -s conftest$ac_exeext' 2780 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2781 (eval $ac_try) 2>&5 2782 ac_status=$? 2783 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2784 (exit $ac_status); }; }; then 2785 HAVE_DLOPEN='yes' 2786 else 2787 echo "$as_me: failed program was:" >&5 2788 sed 's/^/| /' conftest.$ac_ext >&5 2789 2790 SAVE_LIBS="$LIBS" 2791 LIBS="$LIBS -ldl" 2792 cat >conftest.$ac_ext <<_ACEOF 2793 /* confdefs.h. */ 2794 _ACEOF 2795 cat confdefs.h >>conftest.$ac_ext 2796 cat >>conftest.$ac_ext <<_ACEOF 2797 /* end confdefs.h. */ 2798 2799 #include <dlfcn.h> 2800 2801 int 2802 main () 2803 { 2804 2805 void * install_call; 2806 void * lib; 2807 2808 lib = dlopen("", RTLD_LAZY); 2809 install_call = dlsym(lib, ""); 2810 dlclose(lib); 2811 2812 ; 2813 return 0; 2814 } 2815 _ACEOF 2816 rm -f conftest.$ac_objext conftest$ac_exeext 2817 if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 2818 (eval $ac_link) 2>conftest.er1 2819 ac_status=$? 2820 grep -v '^ *+' conftest.er1 >conftest.err 2821 rm -f conftest.er1 2822 cat conftest.err >&5 2823 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2824 (exit $ac_status); } && 2825 { ac_try='test -z "$ac_c_werror_flag" 2826 || test ! -s conftest.err' 2827 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2828 (eval $ac_try) 2>&5 2829 ac_status=$? 2830 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2831 (exit $ac_status); }; } && 2832 { ac_try='test -s conftest$ac_exeext' 2833 { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 2834 (eval $ac_try) 2>&5 2835 ac_status=$? 2836 echo "$as_me:$LINENO: \$? = $ac_status" >&5 2837 (exit $ac_status); }; }; then 2838 HAVE_DLOPEN='yes' 2839 LIBDL=" -ldl" 2840 else 2841 echo "$as_me: failed program was:" >&5 2842 sed 's/^/| /' conftest.$ac_ext >&5 2843 2844 fi 2845 rm -f conftest.err conftest.$ac_objext \ 2846 conftest$ac_exeext conftest.$ac_ext 2847 LIBS="$SAVE_LIBS" 2848 fi 2849 rm -f conftest.err conftest.$ac_objext \ 2850 conftest$ac_exeext conftest.$ac_ext 2851 2852 2739 2853 # Checks for header files. 2740 2854 ac_ext=c … … 4585 4699 _ACEOF 4586 4700 4701 HAVE_DLOPEN='yes' 4587 4702 NEWT_LDIMPORT='$(build)/libnewt.a' 4588 4703 NEWT_LDFLAGS='-Wl,--export-all-symbols,--out-implib=$(LDIMPORT)' … … 4592 4707 ;; 4593 4708 linux*) 4594 NEWT_LDFLAGS='-ldl -rdynamic' 4709 # NEWT_LDFLAGS='-ldl -rdynamic' 4710 NEWT_LDFLAGS='-rdynamic' 4595 4711 LIBNEWT_LDSHARED='$(CC) -shared' 4596 4712 DLEXT='so' … … 4602 4718 ;; 4603 4719 beos*) 4604 NEWT_LDFLAGS='-ldl'4720 # NEWT_LDFLAGS='-ldl' 4605 4721 LIBNEWT_LDSHARED='$(CC) -nostart $(build)/_APP_' 4606 4722 LINK_NEWT_APP_='cd $@; ln -s newt _APP_' … … 4615 4731 4616 4732 4733 case "$target_vendor" in 4734 *ipod*) 4735 cat >>confdefs.h <<\_ACEOF 4736 #define __IPOD__ 1 4737 _ACEOF 4738 4739 NEWT_LDFLAGS= 4740 ;; 4741 esac 4742 4743 4744 case "$HAVE_DLOPEN" in 4745 yes) 4746 cat >>confdefs.h <<\_ACEOF 4747 #define HAVE_DLOPEN 1 4748 _ACEOF 4749 4750 MAKE_EXT='ext' 4751 ;; 4752 esac 4753 4754 4755 NEWT_LDFLAGS="$NEWT_LDFLAGS $LIBDL" 4756 4617 4757 cat >>confdefs.h <<_ACEOF 4618 4758 #define __PLATFORM__ "$target_os" … … 4622 4762 #define __DYLIBSUFFIX__ ".$DLEXT" 4623 4763 _ACEOF 4764 4765 4624 4766 4625 4767 … … 5278 5420 s,@LINK_NEWT_APP_@,$LINK_NEWT_APP_,;t t 5279 5421 s,@DLEXT@,$DLEXT,;t t 5422 s,@MAKE_EXT@,$MAKE_EXT,;t t 5280 5423 s,@LTLIBOBJS@,$LTLIBOBJS,;t t 5281 5424 CEOF -
NEWT0/trunk/configure.in
r36 r40 40 40 LIBS="$SAVE_LIBS") 41 41 42 AC_TRY_LINK([ 43 #include <dlfcn.h> 44 ], [ 45 void * install_call; 46 void * lib; 47 48 lib = dlopen("", RTLD_LAZY); 49 install_call = dlsym(lib, ""); 50 dlclose(lib); 51 ], 52 HAVE_DLOPEN='yes', 53 54 SAVE_LIBS="$LIBS" 55 LIBS="$LIBS -ldl" 56 AC_TRY_LINK([ 57 #include <dlfcn.h> 58 ], [ 59 void * install_call; 60 void * lib; 61 62 lib = dlopen("", RTLD_LAZY); 63 install_call = dlsym(lib, ""); 64 dlclose(lib); 65 ], 66 HAVE_DLOPEN='yes' 67 LIBDL=" -ldl") 68 LIBS="$SAVE_LIBS") 69 70 42 71 # Checks for header files. 43 72 AC_HEADER_STDC … … 67 96 cygwin*|mingw*) 68 97 AC_DEFINE(__WIN32__) 98 HAVE_DLOPEN='yes' 69 99 NEWT_LDIMPORT='$(build)/libnewt.a' 70 100 NEWT_LDFLAGS='-Wl,--export-all-symbols,--out-implib=$(LDIMPORT)' … … 74 104 ;; 75 105 linux*) 76 NEWT_LDFLAGS='-ldl -rdynamic' 106 # NEWT_LDFLAGS='-ldl -rdynamic' 107 NEWT_LDFLAGS='-rdynamic' 77 108 LIBNEWT_LDSHARED='$(CC) -shared' 78 109 DLEXT='so' … … 84 115 ;; 85 116 beos*) 86 NEWT_LDFLAGS='-ldl'117 # NEWT_LDFLAGS='-ldl' 87 118 LIBNEWT_LDSHARED='$(CC) -nostart $(build)/_APP_' 88 119 LINK_NEWT_APP_='cd $@; ln -s newt _APP_' … … 97 128 98 129 130 case "$target_vendor" in 131 *ipod*) 132 AC_DEFINE(__IPOD__) 133 NEWT_LDFLAGS= 134 ;; 135 esac 136 137 138 case "$HAVE_DLOPEN" in 139 yes) 140 AC_DEFINE(HAVE_DLOPEN) 141 MAKE_EXT='ext' 142 ;; 143 esac 144 145 146 NEWT_LDFLAGS="$NEWT_LDFLAGS $LIBDL" 147 99 148 AC_DEFINE_UNQUOTED(__PLATFORM__, "$target_os") 100 149 AC_DEFINE_UNQUOTED(__DYLIBSUFFIX__, ".$DLEXT") 150 101 151 102 152 AC_SUBST(LIBREGEX) … … 106 156 AC_SUBST(LINK_NEWT_APP_) 107 157 AC_SUBST(DLEXT) 158 AC_SUBST(MAKE_EXT) 108 159 109 160 -
NEWT0/trunk/ext.xcode/gnue.mode1
r36 r40 368 368 <key>TableOfContents</key> 369 369 <array> 370 <string>F5 9B846C0867E55200683824</string>370 <string>F5C2E8DC08AAE52A00C9B596</string> 371 371 <string>1CE0B1FE06471DED0097A5F4</string> 372 <string>F5 9B846D0867E55200683824</string>372 <string>F5C2E8DD08AAE52A00C9B596</string> 373 373 <string>1CE0B20306471E060097A5F4</string> 374 374 <string>1CE0B20506471E060097A5F4</string> … … 504 504 <key>WindowOrderList</key> 505 505 <array> 506 <string>/ Volumes/Pawn/User/Development/Newt/NEWT0/ext.xcode</string>506 <string>/Users/gnue/Desktop/NEWT0_ipod/ext.xcode</string> 507 507 </array> 508 508 <key>WindowString</key> -
NEWT0/trunk/ext.xcode/gnue.pbxuser
r36 r40 120 120 ); 121 121 }; 122 PBXPerProjectTemplateStateSaveDate = 14 1026618;122 PBXPerProjectTemplateStateSaveDate = 145417511; 123 123 PBXPrepackagedSmartGroups_v2 = ( 124 124 { … … 544 544 RubberWindowFrame = "238 139 776 607 0 0 1024 746 "; 545 545 }; 546 PBXWorkspaceStateSaveDate = 14 1026618;546 PBXWorkspaceStateSaveDate = 145417511; 547 547 }; 548 548 sourceControlManager = F53BDA5B06784447005AE1FA; -
NEWT0/trunk/newt.xcode/gnue.mode1
r39 r40 186 186 <array/> 187 187 <key>OpenEditors</key> 188 <array> 189 <dict> 190 <key>Content</key> 191 <dict> 192 <key>PBXProjectModuleGUID</key> 193 <string>F5CD89570897FAC900C4CA85</string> 194 <key>PBXProjectModuleLabel</key> 195 <string>newt.l</string> 196 <key>PBXSplitModuleInNavigatorKey</key> 197 <dict> 198 <key>Split0</key> 199 <dict> 200 <key>PBXProjectModuleGUID</key> 201 <string>F5CD89580897FAC900C4CA85</string> 202 <key>PBXProjectModuleLabel</key> 203 <string>newt.l</string> 204 <key>_historyCapacity</key> 205 <integer>0</integer> 206 <key>bookmark</key> 207 <string>F5CD89E3089800DC00C4CA85</string> 208 <key>history</key> 209 <array> 210 <string>F5CD89590897FAC900C4CA85</string> 211 </array> 212 </dict> 213 <key>SplitCount</key> 214 <string>1</string> 215 </dict> 216 <key>StatusBarVisibility</key> 217 <true/> 218 </dict> 219 <key>Geometry</key> 220 <dict> 221 <key>Frame</key> 222 <string>{{0, 20}, {750, 461}}</string> 223 <key>PBXModuleWindowStatusBarHidden2</key> 224 <false/> 225 <key>RubberWindowFrame</key> 226 <string>130 134 750 502 0 0 1024 746 </string> 227 </dict> 228 </dict> 229 </array> 188 <array/> 230 189 <key>PerspectiveWidths</key> 231 190 <array> … … 316 275 </array> 317 276 <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key> 318 <string>{{0, 496}, {186, 506}}</string>277 <string>{{0, 633}, {186, 506}}</string> 319 278 </dict> 320 279 <key>PBXTopSmartGroupGIDs</key> … … 335 294 </array> 336 295 <key>RubberWindowFrame</key> 337 <string> 174 162815 565 0 0 1024 746 </string>296 <string>289 144 815 565 0 0 1024 746 </string> 338 297 </dict> 339 298 <key>Module</key> … … 365 324 <integer>0</integer> 366 325 <key>bookmark</key> 367 <string>F5C D89E2089800DC00C4CA85</string>326 <string>F5C2E8EC08AAE54500C9B596</string> 368 327 <key>history</key> 369 328 <array> 370 329 <string>F5547480088A7A9B001E9DDF</string> 371 330 <string>F5547481088A7A9B001E9DDF</string> 372 <string>F5547482088A7A9B001E9DDF</string>373 331 <string>F5547483088A7A9B001E9DDF</string> 374 332 <string>F5547484088A7A9B001E9DDF</string> … … 376 334 <string>F554750C088A7E98001E9DDF</string> 377 335 <string>F5547563088A81DE001E9DDF</string> 378 <string>F5547564088A81DE001E9DDF</string>379 336 <string>F5547565088A81DE001E9DDF</string> 380 337 <string>F5547566088A81DE001E9DDF</string> … … 383 340 <string>F5CD88C10897ED1600C4CA85</string> 384 341 <string>F5CD890F0897F45600C4CA85</string> 385 <string>F5CD89520897FAC900C4CA85</string>386 342 <string>F5CD89BC0897FF6700C4CA85</string> 387 <string>F5CD89BD0897FF6700C4CA85</string>388 343 <string>F5CD89D70898008600C4CA85</string> 389 <string>F5CD89D80898008600C4CA85</string> 344 <string>F532AA3C08AADBB500EE12BF</string> 345 <string>F532AA3D08AADBB500EE12BF</string> 346 <string>F532AA6D08AADC9500EE12BF</string> 347 <string>F5C2E8E408AAE54000C9B596</string> 348 <string>F5C2E8E508AAE54000C9B596</string> 390 349 </array> 391 350 <key>prevStack</key> … … 409 368 <string>F5CD89550897FAC900C4CA85</string> 410 369 <string>F5CD89BE0897FF6700C4CA85</string> 411 <string>F5CD89BF0897FF6700C4CA85</string> 412 <string>F5CD89D90898008600C4CA85</string> 370 <string>F5C2E8E608AAE54000C9B596</string> 413 371 </array> 414 372 </dict> … … 424 382 <string>{{0, 0}, {607, 363}}</string> 425 383 <key>RubberWindowFrame</key> 426 <string> 174 162815 565 0 0 1024 746 </string>384 <string>289 144 815 565 0 0 1024 746 </string> 427 385 </dict> 428 386 <key>Module</key> … … 444 402 <string>{{0, 368}, {607, 156}}</string> 445 403 <key>RubberWindowFrame</key> 446 <string> 174 162815 565 0 0 1024 746 </string>404 <string>289 144 815 565 0 0 1024 746 </string> 447 405 </dict> 448 406 <key>Module</key> … … 468 426 <key>TableOfContents</key> 469 427 <array> 470 <string>F5C D89C10897FF6700C4CA85</string>428 <string>F5C2E8E808AAE54000C9B596</string> 471 429 <string>1CE0B1FE06471DED0097A5F4</string> 472 <string>F5C D89C20897FF6700C4CA85</string>430 <string>F5C2E8E908AAE54000C9B596</string> 473 431 <string>1CE0B20306471E060097A5F4</string> 474 432 <string>1CE0B20506471E060097A5F4</string> … … 604 562 <key>WindowOrderList</key> 605 563 <array> 606 <string>F5AE5683082409020043A79D</string> 607 <string>1C530D57069F1CE1000CFCEE</string> 608 <string>1C0AD2B3069F1EA900FABCE6</string> 609 <string>F5CD89570897FAC900C4CA85</string> 610 <string>/Volumes/Pawn/User/Development/Newt/NEWT0/newt.xcode</string> 564 <string>/Users/gnue/Desktop/NEWT0_ipod/newt.xcode</string> 611 565 </array> 612 566 <key>WindowString</key> 613 <string> 174 162815 565 0 0 1024 746 </string>567 <string>289 144 815 565 0 0 1024 746 </string> 614 568 <key>WindowTools</key> 615 569 <array> … … 627 581 <array> 628 582 <dict> 629 <key>BecomeActive</key>630 <true/>631 583 <key>ContentConfiguration</key> 632 584 <dict> … … 634 586 <string>1CD0528F0623707200166675</string> 635 587 <key>PBXProjectModuleLabel</key> 636 <string>Newt Env.c</string>588 <string>NewtFile.c</string> 637 589 <key>StatusBarVisibility</key> 638 590 <true/> … … 651 603 </dict> 652 604 <dict> 605 <key>BecomeActive</key> 606 <true/> 653 607 <key>ContentConfiguration</key> 654 608 <dict> … … 690 644 <array> 691 645 <string>F5AE5683082409020043A79D</string> 692 <string>F5 CD89BA0897FF6600C4CA85</string>646 <string>F532AA2B08AADB6500EE12BF</string> 693 647 <string>1CD0528F0623707200166675</string> 694 648 <string>XCMainBuildResultsModuleGUID</string> … … 701 655 <string>F5AE5683082409020043A79D</string> 702 656 <key>WindowToolIsVisible</key> 703 < false/>657 <true/> 704 658 </dict> 705 659 <dict> … … 821 775 <array> 822 776 <dict> 823 <key>BecomeActive</key>824 <true/>825 777 <key>ContentConfiguration</key> 826 778 <dict> … … 828 780 <string>1CDD528C0622207200134675</string> 829 781 <key>PBXProjectModuleLabel</key> 830 <string>Newt Obj.h</string>782 <string>NewtFile.c</string> 831 783 <key>StatusBarVisibility</key> 832 784 <true/> … … 837 789 <string>{{0, 0}, {788, 401}}</string> 838 790 <key>RubberWindowFrame</key> 839 <string> 214 87788 659 0 0 1024 746 </string>791 <string>488 83 788 659 0 0 1024 746 </string> 840 792 </dict> 841 793 <key>Module</key> … … 849 801 </dict> 850 802 <dict> 803 <key>BecomeActive</key> 804 <true/> 851 805 <key>ContentConfiguration</key> 852 806 <dict> … … 861 815 <string>{{0, 406}, {788, 212}}</string> 862 816 <key>RubberWindowFrame</key> 863 <string> 214 87788 659 0 0 1024 746 </string>817 <string>488 83 788 659 0 0 1024 746 </string> 864 818 </dict> 865 819 <key>Module</key> … … 884 838 <array> 885 839 <string>1C530D57069F1CE1000CFCEE</string> 886 <string>F5C D897F0897FC1000C4CA85</string>887 <string>F5C D89800897FC1000C4CA85</string>840 <string>F5C2E8BE08AAE43C00C9B596</string> 841 <string>F5C2E8BF08AAE43C00C9B596</string> 888 842 <string>1CDD528C0622207200134675</string> 889 843 <string>1CD0528E0623707200166675</string> 890 844 </array> 891 845 <key>WindowString</key> 892 <string> 214 87788 659 0 0 1024 746 </string>846 <string>488 83 788 659 0 0 1024 746 </string> 893 847 <key>WindowToolGUID</key> 894 848 <string>1C530D57069F1CE1000CFCEE</string> … … 1037 991 <array> 1038 992 <string>1C0AD2B3069F1EA900FABCE6</string> 1039 <string>F5C D896A0897FB6600C4CA85</string>993 <string>F5C2E8C008AAE43C00C9B596</string> 1040 994 <string>1CD0528B0623707200166675</string> 1041 <string>F5C D896B0897FB6600C4CA85</string>995 <string>F5C2E8C108AAE43C00C9B596</string> 1042 996 </array> 1043 997 <key>ToolbarConfiguration</key> … … 1048 1002 <string>1C0AD2B3069F1EA900FABCE6</string> 1049 1003 <key>WindowToolIsVisible</key> 1050 < true/>1004 <false/> 1051 1005 </dict> 1052 1006 <dict> -
NEWT0/trunk/newt.xcode/gnue.pbxuser
r39 r40 150 150 ); 151 151 }; 152 PBXPerProjectTemplateStateSaveDate = 14 4177871;152 PBXPerProjectTemplateStateSaveDate = 145417515; 153 153 PBXPrepackagedSmartGroups_v2 = ( 154 154 { … … 829 829 RubberWindowFrame = "374 174 745 468 0 0 1024 746 "; 830 830 }; 831 PBXWorkspaceStateSaveDate = 14 4177871;831 PBXWorkspaceStateSaveDate = 145417515; 832 832 }; 833 833 perUserProjectItems = { 834 F532AA3C08AADBB500EE12BF = F532AA3C08AADBB500EE12BF; 835 F532AA3D08AADBB500EE12BF = F532AA3D08AADBB500EE12BF; 836 F532AA6D08AADC9500EE12BF = F532AA6D08AADC9500EE12BF; 834 837 F5547480088A7A9B001E9DDF = F5547480088A7A9B001E9DDF; 835 838 F5547481088A7A9B001E9DDF = F5547481088A7A9B001E9DDF; 836 F5547482088A7A9B001E9DDF = F5547482088A7A9B001E9DDF;837 839 F5547483088A7A9B001E9DDF = F5547483088A7A9B001E9DDF; 838 840 F5547484088A7A9B001E9DDF = F5547484088A7A9B001E9DDF; … … 850 852 F5547519088A7E98001E9DDF = F5547519088A7E98001E9DDF; 851 853 F5547563088A81DE001E9DDF = F5547563088A81DE001E9DDF; 852 F5547564088A81DE001E9DDF = F5547564088A81DE001E9DDF;853 854 F5547565088A81DE001E9DDF = F5547565088A81DE001E9DDF; 854 855 F5547566088A81DE001E9DDF = F5547566088A81DE001E9DDF; … … 857 858 F55475A0088A8347001E9DDF = F55475A0088A8347001E9DDF; 858 859 F55475AA088A83B6001E9DDF = F55475AA088A83B6001E9DDF; 860 F5C2E8E408AAE54000C9B596 = F5C2E8E408AAE54000C9B596; 861 F5C2E8E508AAE54000C9B596 = F5C2E8E508AAE54000C9B596; 862 F5C2E8E608AAE54000C9B596 = F5C2E8E608AAE54000C9B596; 863 F5C2E8EC08AAE54500C9B596 = F5C2E8EC08AAE54500C9B596; 859 864 F5CD88C10897ED1600C4CA85 = F5CD88C10897ED1600C4CA85; 860 865 F5CD88C20897ED1600C4CA85 = F5CD88C20897ED1600C4CA85; … … 862 867 F5CD890F0897F45600C4CA85 = F5CD890F0897F45600C4CA85; 863 868 F5CD89110897F45600C4CA85 = F5CD89110897F45600C4CA85; 864 F5CD89520897FAC900C4CA85 = F5CD89520897FAC900C4CA85;865 869 F5CD89540897FAC900C4CA85 = F5CD89540897FAC900C4CA85; 866 870 F5CD89550897FAC900C4CA85 = F5CD89550897FAC900C4CA85; 867 F5CD89590897FAC900C4CA85 = F5CD89590897FAC900C4CA85;868 871 F5CD89BC0897FF6700C4CA85 = F5CD89BC0897FF6700C4CA85; 869 F5CD89BD0897FF6700C4CA85 = F5CD89BD0897FF6700C4CA85;870 872 F5CD89BE0897FF6700C4CA85 = F5CD89BE0897FF6700C4CA85; 871 F5CD89BF0897FF6700C4CA85 = F5CD89BF0897FF6700C4CA85;872 873 F5CD89D70898008600C4CA85 = F5CD89D70898008600C4CA85; 873 F5CD89D80898008600C4CA85 = F5CD89D80898008600C4CA85;874 F5CD89D90898008600C4CA85 = F5CD89D90898008600C4CA85;875 F5CD89E2089800DC00C4CA85 = F5CD89E2089800DC00C4CA85;876 F5CD89E3089800DC00C4CA85 = F5CD89E3089800DC00C4CA85;877 874 }; 878 875 sourceControlManager = F5AFECA0055CDC00002C8506; … … 895 892 F503AC6B0851DFD9009BA497 = { 896 893 uiCtxt = { 897 sepNavIntBoundsRect = "{{0, 0}, { 566, 1386}}";898 sepNavSelRange = "{ 243, 6}";899 sepNavVisRect = "{{0, 0}, {566, 397}}";894 sepNavIntBoundsRect = "{{0, 0}, {747, 1386}}"; 895 sepNavSelRange = "{395, 23}"; 896 sepNavVisRect = "{{0, 187}, {747, 369}}"; 900 897 }; 901 898 }; … … 930 927 }; 931 928 }; 929 F532AA3C08AADBB500EE12BF = { 930 fRef = F5DE1345082AD4A500BB42A5; 931 isa = PBXTextBookmark; 932 name = efine; 933 rLen = 6; 934 rLoc = 416; 935 rType = 0; 936 vrLen = 316; 937 vrLoc = 208; 938 }; 939 F532AA3D08AADBB500EE12BF = { 940 fRef = F5ACB06A06412D4900DB6CF9; 941 isa = PBXTextBookmark; 942 name = NewtRefFunctionType; 943 rLen = 19; 944 rLoc = 37025; 945 rType = 0; 946 vrLen = 499; 947 vrLoc = 36832; 948 }; 949 F532AA6D08AADC9500EE12BF = { 950 fRef = F5ACB06306412D4900DB6CF9; 951 isa = PBXTextBookmark; 952 name = NewtConf; 953 rLen = 8; 954 rLoc = 313; 955 rType = 0; 956 vrLen = 374; 957 vrLoc = 0; 958 }; 932 959 F53BCC6C0670CDBD0013103E = { 933 960 uiCtxt = { … … 989 1016 vrLoc = 0; 990 1017 }; 991 F5547482088A7A9B001E9DDF = {992 fRef = F5ACB06306412D4900DB6CF9;993 isa = PBXTextBookmark;994 name = "NewtFile.c: 625";995 rLen = 0;996 rLoc = 10394;997 rType = 0;998 vrLen = 454;999 vrLoc = 10318;1000 };1001 1018 F5547483088A7A9B001E9DDF = { 1002 1019 fRef = F53BCC700670CDF00013103E; … … 1064 1081 name = "NewtFile.c: 625"; 1065 1082 rLen = 0; 1066 rLoc = 10 394;1083 rLoc = 10654; 1067 1084 rType = 0; 1068 1085 vrLen = 454; … … 1148 1165 vrLen = 465; 1149 1166 vrLoc = 0; 1150 };1151 F5547564088A81DE001E9DDF = {1152 fRef = F5DE1345082AD4A500BB42A5;1153 isa = PBXTextBookmark;1154 name = "config.h: CONFIG_H";1155 rLen = 0;1156 rLoc = 297;1157 rType = 0;1158 vrLen = 334;1159 vrLoc = 141;1160 1167 }; 1161 1168 F5547565088A81DE001E9DDF = { … … 1298 1305 F5ACB05406412D4900DB6CF9 = { 1299 1306 uiCtxt = { 1300 sepNavIntBoundsRect = "{{0, 0}, { 586, 718}}";1301 sepNavSelRange = "{ 1079, 21}";1302 sepNavVisRect = "{{0, 345}, {566, 331}}";1307 sepNavIntBoundsRect = "{{0, 0}, {747, 715}}"; 1308 sepNavSelRange = "{94, 6}"; 1309 sepNavVisRect = "{{0, 0}, {747, 369}}"; 1303 1310 sepNavWindowFrame = "{{61, 141}, {750, 558}}"; 1304 1311 }; … … 1322 1329 F5ACB05706412D4900DB6CF9 = { 1323 1330 uiCtxt = { 1324 sepNavIntBoundsRect = "{{0, 0}, {7 47, 1875}}";1325 sepNavSelRange = "{ 2249, 15}";1326 sepNavVisRect = "{{0, 588}, {747, 369}}";1331 sepNavIntBoundsRect = "{{0, 0}, {711, 1878}}"; 1332 sepNavSelRange = "{6011, 0}"; 1333 sepNavVisRect = "{{0, 1446}, {711, 429}}"; 1327 1334 sepNavWindowFrame = "{{38, 162}, {750, 558}}"; 1328 1335 }; … … 1330 1337 F5ACB05806412D4900DB6CF9 = { 1331 1338 uiCtxt = { 1332 sepNavIntBoundsRect = "{{0, 0}, { 566, 1022}}";1333 sepNavSelRange = "{ 876, 0}";1334 sepNavVisRect = "{{0, 332}, {566, 331}}";1339 sepNavIntBoundsRect = "{{0, 0}, {747, 1022}}"; 1340 sepNavSelRange = "{1234, 9}"; 1341 sepNavVisRect = "{{0, 537}, {747, 369}}"; 1335 1342 sepNavWindowFrame = "{{107, 99}, {750, 558}}"; 1336 1343 }; … … 1339 1346 uiCtxt = { 1340 1347 sepNavIntBoundsRect = "{{0, 0}, {747, 2273}}"; 1341 sepNavSelRange = "{ 6718, 0}";1342 sepNavVisRect = "{{0, 1904}, {747, 369}}";1348 sepNavSelRange = "{729, 7}"; 1349 sepNavVisRect = "{{0, 395}, {747, 369}}"; 1343 1350 sepNavWindowFrame = "{{290, 81}, {750, 558}}"; 1344 1351 }; … … 1363 1370 uiCtxt = { 1364 1371 sepNavIntBoundsRect = "{{0, 0}, {792, 3680}}"; 1365 sepNavSelRange = "{ 3641, 16}";1366 sepNavVisRect = "{{0, 1081}, {747, 369}}";1372 sepNavSelRange = "{10886, 0}"; 1373 sepNavVisRect = "{{0, 3311}, {747, 369}}"; 1367 1374 sepNavWindowFrame = "{{15, 183}, {750, 558}}"; 1368 1375 }; … … 1371 1378 uiCtxt = { 1372 1379 sepNavIntBoundsRect = "{{0, 0}, {788, 3739}}"; 1373 sepNavSelRange = "{ 1409, 0}";1374 sepNavVisRect = "{{0, 530}, {566, 331}}";1380 sepNavSelRange = "{349, 0}"; 1381 sepNavVisRect = "{{0, 140}, {566, 331}}"; 1375 1382 sepNavWindowFrame = "{{15, 183}, {750, 558}}"; 1376 1383 }; … … 1387 1394 uiCtxt = { 1388 1395 sepNavIntBoundsRect = "{{0, 0}, {747, 2098}}"; 1389 sepNavSelRange = "{4 30, 21}";1390 sepNavVisRect = "{{0, 2 36}, {747, 369}}";1396 sepNavSelRange = "{444, 6}"; 1397 sepNavVisRect = "{{0, 257}, {747, 369}}"; 1391 1398 sepNavWindowFrame = "{{107, 99}, {750, 558}}"; 1392 1399 }; … … 1395 1402 uiCtxt = { 1396 1403 sepNavIntBoundsRect = "{{0, 0}, {747, 1782}}"; 1397 sepNavSelRange = "{2 849, 0}";1398 sepNavVisRect = "{{0, 1 413}, {747, 369}}";1404 sepNavSelRange = "{2128, 5}"; 1405 sepNavVisRect = "{{0, 1292}, {747, 369}}"; 1399 1406 sepNavWindowFrame = "{{532, 81}, {750, 558}}"; 1400 1407 }; … … 1402 1409 F5ACB06106412D4900DB6CF9 = { 1403 1410 uiCtxt = { 1404 sepNavIntBoundsRect = "{{0, 0}, {770, 3765 7}}";1405 sepNavSelRange = "{ 32208, 0}";1406 sepNavVisRect = "{{0, 18963}, {711, 429}}";1411 sepNavIntBoundsRect = "{{0, 0}, {770, 37654}}"; 1412 sepNavSelRange = "{60653, 0}"; 1413 sepNavVisRect = "{{0, 37285}, {747, 369}}"; 1407 1414 sepNavWindowFrame = "{{184, 166}, {750, 558}}"; 1408 1415 }; … … 1418 1425 F5ACB06306412D4900DB6CF9 = { 1419 1426 uiCtxt = { 1420 sepNavIntBoundsRect = "{{0, 0}, { 614, 10052}}";1421 sepNavSelRange = "{ 10394, 0}";1422 sepNavVisRect = "{{0, 8685}, {566, 331}}";1427 sepNavIntBoundsRect = "{{0, 0}, {747, 10346}}"; 1428 sepNavSelRange = "{327, 0}"; 1429 sepNavVisRect = "{{0, 117}, {747, 369}}"; 1423 1430 sepNavWindowFrame = "{{247, 132}, {788, 603}}"; 1424 1431 }; … … 1426 1433 F5ACB06406412D4900DB6CF9 = { 1427 1434 uiCtxt = { 1428 sepNavIntBoundsRect = "{{0, 0}, { 566, 28392}}";1429 sepNavSelRange = "{ 25307, 17}";1430 sepNavVisRect = "{{0, 18170}, {566, 397}}";1435 sepNavIntBoundsRect = "{{0, 0}, {747, 28756}}"; 1436 sepNavSelRange = "{4183, 7}"; 1437 sepNavVisRect = "{{0, 2693}, {747, 369}}"; 1431 1438 sepNavWindowFrame = "{{204, 188}, {750, 558}}"; 1432 1439 }; … … 1450 1457 F5ACB06706412D4900DB6CF9 = { 1451 1458 uiCtxt = { 1452 sepNavIntBoundsRect = "{{0, 0}, {7 28, 56445}}";1453 sepNavSelRange = "{ 8366, 8}";1454 sepNavVisRect = "{{0, 4690}, {566, 331}}";1459 sepNavIntBoundsRect = "{{0, 0}, {747, 56445}}"; 1460 sepNavSelRange = "{37226, 0}"; 1461 sepNavVisRect = "{{0, 26301}, {747, 369}}"; 1455 1462 sepNavWindowFrame = "{{355, 125}, {750, 558}}"; 1456 1463 }; … … 1474 1481 F5ACB06A06412D4900DB6CF9 = { 1475 1482 uiCtxt = { 1476 sepNavIntBoundsRect = "{{0, 0}, {747, 545 24}}";1477 sepNavSelRange = "{6 4445, 4}";1478 sepNavVisRect = "{{0, 47 224}, {747, 369}}";1483 sepNavIntBoundsRect = "{{0, 0}, {747, 54580}}"; 1484 sepNavSelRange = "{65398, 0}"; 1485 sepNavVisRect = "{{0, 47403}, {747, 369}}"; 1479 1486 sepNavWindowFrame = "{{223, 175}, {750, 558}}"; 1480 1487 }; … … 1532 1539 activeExec = 0; 1533 1540 }; 1541 F5C2E8E408AAE54000C9B596 = { 1542 fRef = F5ACB05D06412D4900DB6CF9; 1543 isa = PBXTextBookmark; 1544 name = "NewtParser.h: 21"; 1545 rLen = 0; 1546 rLoc = 349; 1547 rType = 0; 1548 vrLen = 677; 1549 vrLoc = 228; 1550 }; 1551 F5C2E8E508AAE54000C9B596 = { 1552 fRef = F5E14ADB057984FA009742A2; 1553 isa = PBXTextBookmark; 1554 name = "version.h: 7"; 1555 rLen = 0; 1556 rLoc = 154; 1557 rType = 0; 1558 vrLen = 620; 1559 vrLoc = 0; 1560 }; 1561 F5C2E8E608AAE54000C9B596 = { 1562 fRef = F5ACB05D06412D4900DB6CF9; 1563 isa = PBXTextBookmark; 1564 name = "NewtParser.h: 21"; 1565 rLen = 0; 1566 rLoc = 349; 1567 rType = 0; 1568 vrLen = 677; 1569 vrLoc = 228; 1570 }; 1571 F5C2E8EC08AAE54500C9B596 = { 1572 fRef = F5E14ADB057984FA009742A2; 1573 isa = PBXTextBookmark; 1574 name = "version.h: NEWT_BUILD"; 1575 rLen = 0; 1576 rLoc = 526; 1577 rType = 0; 1578 vrLen = 620; 1579 vrLoc = 0; 1580 }; 1534 1581 F5CD88C10897ED1600C4CA85 = { 1535 1582 fRef = F5E14B0C05798559009742A2; … … 1582 1629 vrLoc = 49467; 1583 1630 }; 1584 F5CD895 20897FAC900C4CA85 = {1631 F5CD89540897FAC900C4CA85 = { 1585 1632 fRef = F5ACB06A06412D4900DB6CF9; 1586 1633 isa = PBXTextBookmark; … … 1592 1639 vrLoc = 36832; 1593 1640 }; 1594 F5CD89540897FAC900C4CA85 = {1595 fRef = F5ACB06A06412D4900DB6CF9;1596 isa = PBXTextBookmark;1597 name = NewtRefFunctionType;1598 rLen = 19;1599 rLoc = 37025;1600 rType = 0;1601 vrLen = 499;1602 vrLoc = 36832;1603 };1604 1641 F5CD89550897FAC900C4CA85 = { 1605 1642 fRef = F5ACB05D06412D4900DB6CF9; … … 1612 1649 vrLoc = 4429; 1613 1650 }; 1614 F5CD89590897FAC900C4CA85 = {1615 fRef = F5E14B0B05798559009742A2;1616 isa = PBXTextBookmark;1617 name = kANDOP;1618 rLen = 0;1619 rLoc = 10859;1620 rType = 0;1621 vrLen = 609;1622 vrLoc = 10559;1623 };1624 1651 F5CD89BC0897FF6700C4CA85 = { 1625 1652 fRef = F5E14B0B05798559009742A2; … … 1632 1659 vrLoc = 10586; 1633 1660 }; 1634 F5CD89BD0897FF6700C4CA85 = {1635 fRef = F5ACB05D06412D4900DB6CF9;1636 isa = PBXTextBookmark;1637 name = "NewtParser.h: 56";1638 rLen = 0;1639 rLoc = 1409;1640 rType = 0;1641 vrLen = 597;1642 vrLoc = 1075;1643 };1644 1661 F5CD89BE0897FF6700C4CA85 = { 1645 1662 fRef = F5E14B0B05798559009742A2; … … 1651 1668 vrLen = 566; 1652 1669 vrLoc = 10586; 1653 };1654 F5CD89BF0897FF6700C4CA85 = {1655 fRef = F5ACB05D06412D4900DB6CF9;1656 isa = PBXTextBookmark;1657 name = "NewtParser.h: 56";1658 rLen = 0;1659 rLoc = 1409;1660 rType = 0;1661 vrLen = 597;1662 vrLoc = 1075;1663 1670 }; 1664 1671 F5CD89D70898008600C4CA85 = { … … 1672 1679 vrLoc = 1290; 1673 1680 }; 1674 F5CD89D80898008600C4CA85 = {1675 fRef = F5E14ADB057984FA009742A2;1676 isa = PBXTextBookmark;1677 name = "version.h: 16";1678 rLen = 0;1679 rLoc = 284;1680 rType = 0;1681 vrLen = 620;1682 vrLoc = 0;1683 };1684 F5CD89D90898008600C4CA85 = {1685 fRef = F5ACB06206412D4900DB6CF9;1686 isa = PBXTextBookmark;1687 name = "{";1688 rLen = 2;1689 rLoc = 1574;1690 rType = 0;1691 vrLen = 389;1692 vrLoc = 1290;1693 };1694 F5CD89E2089800DC00C4CA85 = {1695 fRef = F5E14ADB057984FA009742A2;1696 isa = PBXTextBookmark;1697 name = "version.h: NEWT_VERSION";1698 rLen = 0;1699 rLoc = 392;1700 rType = 0;1701 vrLen = 620;1702 vrLoc = 0;1703 };1704 F5CD89E3089800DC00C4CA85 = {1705 fRef = F5E14B0B05798559009742A2;1706 isa = PBXTextBookmark;1707 name = "newt.l: 510";1708 rLen = 0;1709 rLoc = 10859;1710 rType = 0;1711 vrLen = 603;1712 vrLoc = 10531;1713 };1714 1681 F5DE1345082AD4A500BB42A5 = { 1715 1682 uiCtxt = { 1716 sepNavIntBoundsRect = "{{0, 0}, { 566, 406}}";1717 sepNavSelRange = "{ 297, 0}";1718 sepNavVisRect = "{{0, 61}, {566, 331}}";1683 sepNavIntBoundsRect = "{{0, 0}, {747, 448}}"; 1684 sepNavSelRange = "{7, 8}"; 1685 sepNavVisRect = "{{0, 0}, {747, 369}}"; 1719 1686 sepNavWindowFrame = "{{15, 183}, {750, 558}}"; 1720 1687 }; … … 1731 1698 uiCtxt = { 1732 1699 sepNavIntBoundsRect = "{{0, 0}, {566, 725}}"; 1733 sepNavSelRange = "{ 392, 0}";1700 sepNavSelRange = "{526, 0}"; 1734 1701 sepNavVisRect = "{{0, 0}, {566, 331}}"; 1735 1702 sepNavWindowFrame = "{{377, 154}, {750, 558}}"; … … 1778 1745 F5F69C0107E8F36E0086BCEA = { 1779 1746 uiCtxt = { 1780 sepNavIntBoundsRect = "{{0, 0}, { 566, 448}}";1781 sepNavSelRange = "{2 71, 0}";1782 sepNavVisRect = "{{0, 108}, {566, 331}}";1747 sepNavIntBoundsRect = "{{0, 0}, {747, 448}}"; 1748 sepNavSelRange = "{297, 8}"; 1749 sepNavVisRect = "{{0, 0}, {747, 369}}"; 1783 1750 sepNavWindowFrame = "{{356, 131}, {750, 558}}"; 1784 1751 }; -
NEWT0/trunk/src/config.h.in
r36 r40 20 20 21 21 #undef HAVE_LIBICONV 22 #undef HAVE_DLOPEN 22 23 23 24 #undef __PLATFORM__ 24 25 #undef __DYLIBSUFFIX__ 25 26 27 #undef __IPOD__ 28 26 29 27 30 #endif /* CONFIG_H */ -
NEWT0/trunk/src/newt_core/NewtFile.c
r23 r40 16 16 #include <unistd.h> 17 17 18 #ifdef __WIN32__ 18 #include "NewtType.h" 19 20 21 #if defined(__WIN32__) 19 22 #include "win/dlfcn.h" 20 #el se23 #elif defined(HAVE_DLOPEN) 21 24 #include <dlfcn.h> 25 #endif 26 27 #ifndef __WIN32__ 22 28 #include <pwd.h> 23 29 #endif 30 24 31 25 32 #include "NewtCore.h" … … 47 54 48 55 56 #ifdef HAVE_DLOPEN 49 57 /*------------------------------------------------------------------------*/ 50 58 /** ®ICuðCXg[·é … … 77 85 return lib; 78 86 } 87 88 #endif /* HAVE_DLOPEN */ 79 89 80 90 … … 400 410 */ 401 411 412 #ifdef HAVE_DLOPEN 413 402 414 newtRef NsLoadLib(newtRefArg rcvr, newtRefArg r) 403 415 { … … 430 442 } 431 443 444 #endif /* HAVE_DLOPEN */ 445 446 432 447 433 448 /*------------------------------------------------------------------------*/ … … 500 515 newtRefVar initObj[] = {kNewtRefUnbind, kNewtRefUnbind}; 501 516 file_ext_t lib_exts[] = { 517 518 #ifdef HAVE_DLOPEN 502 519 /* 503 520 {NSSTR(".dylib"), typeDylib}, … … 506 523 */ 507 524 {NSSTR(__DYLIBSUFFIX__), typeDylib}, 525 #endif /* HAVE_DLOPEN */ 526 508 527 {NSSTR(".newt"), typeScript}, 509 528 }; … … 543 562 if (NewtFileExists(NewtRefToString(path))) 544 563 { 564 #ifdef HAVE_DLOPEN 545 565 if (lib_exts[j].type == typeDylib) 546 566 { … … 549 569 } 550 570 else 571 #endif /* HAVE_DLOPEN */ 551 572 { 552 573 NcSetSlot(requires, sym, path); -
NEWT0/trunk/src/newt_core/NewtVM.c
r39 r40 3488 3488 3489 3489 NewtDefGlobalFunc(NSSYM(CompileFile),NsCompileFile, 1, "CompileFile(file)"); 3490 3491 #ifdef HAVE_DLOPEN 3490 3492 NewtDefGlobalFunc(NSSYM(LoadLib), NsLoadLib, 1, "LoadLib(file)"); 3493 #endif /* HAVE_DLOPEN */ 3494 3491 3495 NewtDefGlobalFunc(NSSYM(Load), NsLoad, 1, "Load(file)"); 3492 3496 NewtDefGlobalFunc(NSSYM(Require), NsRequire, 1, "Require(str)"); -
NEWT0/trunk/src/newt_core/incs/darwin/config.h
r36 r40 1 /* config.h. Generated by configure. */1 /* src/config.h. Generated by configure. */ 2 2 /*------------------------------------------------------------------------*/ 3 3 /** … … 21 21 22 22 #define HAVE_LIBICONV 1 23 #define HAVE_DLOPEN 1 23 24 24 25 #define __PLATFORM__ "darwin" 25 26 #define __DYLIBSUFFIX__ ".dylib" 26 27 28 /* #undef __IPOD__ */ 29 27 30 28 31 #endif /* CONFIG_H */ -
NEWT0/trunk/src/version.h
r39 r40 19 19 #define NEWT_VERSION "0.1.1" ///< o[W 20 20 #define NEWT_COPYRIGHT "Copyright (C) 2003-2005 Makoto Nukui" ///< Rs[Cg 21 #define NEWT_BUILD "2005-0 7-28-1" ///< rhÔ21 #define NEWT_BUILD "2005-08-11-1" ///< rhÔ 22 22 #define NEWT_PARAMS "[switches] [--] [programfile]" ///< ø 23 23
Note: See TracChangeset
for help on using the changeset viewer.
