On 8/30/08, DEWI BENING <[EMAIL PROTECTED]> wrote:
>
> CUKUP DENGAN MENDAFTAR SEBAGAI UPGRADE MEMBER.
> MEMBAYAR BIAYA PENDAFTARAN 37 RIBU RUPIAH SAJA
> AJAK 2 ORANG UNTUK IKUTAN PROGRAMINI
> SUDAH SELESAI TUGAS ANDA
>
> BONUS 500 JUTA LEBIH SIAP ANDA AMBIL.
>
> TEMUKAN INFO LENGKAPNYA DI:
>
> http://www.muslimpromo.com/?ref=1147
>
>
> --
>
>
>
>
>
> Isi Pulsa Dari HP Sendiri Bisa Bikin Kaya. Temukan Caranya Di:
> http://klikvnet.org/?id=aan
--
Isi Pulsa Dari HP Sendiri Bisa Bikin Kaya. Temukan Caranya Di:
http://klikvnet.org/?id=aan
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sexykerala" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.coompiler:
cc='gcc', ccflags='-U__STRICT_ANSI__ -pipe -I/usr/local/include
-DHASATTRIBUTE_CONST -DHASATTRIBUTE_DEPRECATED -DHASATTRIBUTE_MALLOC
-DHASATTRIBUTE_NONNULL -DHASATTRIBUTE_NORETURN -DHASATTRIBUTE_PURE
-DHASATTRIBUTE_UNUSED -DHASATTRIBUTE_WARN_UNUSED_RESULT
-falign-functions=16 -maccumulate-outgoing-args -W -Wall
-Waggregate-return -Wcast-align -Wcast-qual -Wchar-subscripts -Wcomment
-Wdisabled-optimization -Wendif-labels -Wextra -Wformat
-Wformat-extra-args -Wformat-nonliteral -Wformat-security -Wformat-y2k
-Wimplicit -Wimport -Winit-self -Winline -Winvalid-pch -Wmissing-braces
-Wno-missing-format-attribute -Wpacked -Wparentheses -Wpointer-arith
-Wreturn-type -Wsequence-point -Wno-shadow -Wsign-compare
-Wstrict-aliasing -Wstrict-aliasing=2 -Wswitch -Wswitch-default
-Wtrigraphs -Wundef -Wunknown-pragmas -Wno-unused -Wwrite-strings
-Wbad-function-cast -Wdeclaration-after-statement
-Wimplicit-function-declaration -Wimplicit-int -Wmain
-Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wnonnull
-DDISABLE_GC_DEBUG=1 -DNDEBUG -O3 -DHAS_GETTEXT',
Linker and Libraries:
ld='gcc', ldflags=' -Wl,--enable-auto-import
-Wl,--export-all-symbols -Wl,--stack,8388608 -Wl,--enable-auto-image-base ',
cc_ldflags='',
libs='-L/usr/local/lib -lcrypt -lgmp -lreadline -lpcre -lglut32
-lglu32 -lopengl32 -lcrypto -lintl'
Dynamic Linking:
share_ext='.dll', ld_share_flags='-shared',
load_ext='.dll', ld_load_flags='-shared'
Types:
iv=long, intvalsize=4, intsize=4, opcode_t=long, opcode_t_size=4,
ptrsize=4, ptr_alignment=1 byteorder=1234,
nv=double, numvalsize=8, doublesize=8
Locally applied patches:
[perl #39742] [BUG] installed conflict
[perl #51944] [DOCS] Cygwin Readme
[perl #56544] [PATCH] install_files.pl
[perl #56998] [PATCH] rename cygwin dll to cygparrot$MAJ_$MIN_$P.dll
[perl #57006] [PATCH] add cygwin opengl config quirks
[perl #56554] [TODO] make install -C languages
[perl #58034] [TODO] config_args
---
Environment:
CYGWIN =server
HOME =/home/rurban
LANG (unset)
LANGUAGE (unset)
LD_LIBRARY_PATH (unset)
LOGDIR (unset)
PATH
=~/bin:/usr/bin:/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/usr/bin:/cygdrive/c/WINDOWS/System32/Wbem:/cygdrive/c/Programme/ATI
Technologies/ATI.ACE/Core-Static:/usr/local/bin:/usr/lib/gstreamer-0.8:/usr/lib/lapack
SHELL (unset)
Index: src/library.c
===================================================================
--- src/library.c (revision 31031)
+++ src/library.c (working copy)
@@ -8,7 +8,7 @@
=head1 DESCRIPTION
-This file contains a C function to access Parrot's bytecode library functions.
+This file contains C functions to access Parrot's bytecode library functions.
=head2 Functions
@@ -407,7 +407,7 @@
return join;
}
-#define LOAD_EXT_CODE_LAST 3
+#define LOAD_EXT_CODE_LAST 2
static const char* load_ext_code[ LOAD_EXT_CODE_LAST + 1 ] = {
".pbc",
@@ -415,7 +415,6 @@
/* source level files */
".pasm",
- ".past",
".pir",
};
@@ -453,9 +452,9 @@
=item C<static STRING* try_bytecode_extensions>
-guess extensions, so that the user can drop the extensions
+Guess extensions, so that the user can drop the extensions
leaving it up to the build process/install whether or not
-a .pbc, .pasm, .past or a .pir file is used.
+a .pbc, .pasm, or a .pir file is used.
=cut
@@ -471,7 +470,7 @@
int guess;
/*
- first try the path without guessing the extension to ensure compatibility
+ First try the path without guessing the extension to ensure compatibility
with existing code.
*/
@@ -482,8 +481,8 @@
return result;
/*
- start guessing now. this version tries to find the lowest form of the
- code, starting with bytecode and working up to PIR. note the atypical
+ Start guessing now. This version tries to find the lowest form of the
+ code, starting with bytecode and working up to PIR. Note the atypical
loop control. This is so the array can easily be processed in reverse.
*/