./babl-0.1.0-i686/0000755000000000000000000000000011272023137011733 5ustar rootroot./babl-0.1.0-i686/usr/0000755000000000000000000000000011272022141012536 5ustar rootroot./babl-0.1.0-i686/usr/include/0000755000000000000000000000000011272022141014161 5ustar rootroot./babl-0.1.0-i686/usr/include/babl-0.0/0000755000000000000000000000000011272022141015354 5ustar rootroot./babl-0.1.0-i686/usr/include/babl-0.0/babl/0000755000000000000000000000000011272022141016254 5ustar rootroot./babl-0.1.0-i686/usr/include/babl-0.0/babl/babl.h0000644000000000000000000001450711272022114017334 0ustar rootroot/* babl - dynamically extendable universal pixel conversion library. * Copyright (C) 2005-2008, Øyvind Kolås. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General * Public License along with this library; if not, see * . */ #ifndef _BABL_H #define _BABL_H #ifdef __cplusplus extern "C" { #endif #define BABL_INSIDE_BABL_H #include #include #include #undef BABL_INSIDE_BABL_H /** * Initializes the babl library. */ void babl_init (void); /** * Deinitializes the babl library and frees any resources used when * matched with the number of calls to babl_init(). */ void babl_exit (void); /** * Returns the babl object representing the data type given by @name * such as for example "u8", "u16" or "float". */ Babl * babl_type (const char *name); /** * Returns the babl object representing the @horizontal and @vertical * sampling such as for example 2, 2 for the chroma components in * YCbCr. */ Babl * babl_sampling (int horizontal, int vertical); /** * Returns the babl object representing the color component given by * @name such as for example "R", "cyan" or "CIE L". */ Babl * babl_component (const char *name); /** * Returns the babl object representing the color model given by @name * such as for example "RGB", "CMYK" or "CIE Lab". */ Babl * babl_model (const char *name); /** * Returns the babl object representing the color format given by * @name such as for example "RGB u8", "CMYK float" or "CIE Lab u16". */ Babl * babl_format (const char *name); /* Create a babl fish capable of converting from source_format to * destination_format, source and destination can be either strings * with the names of the formats or Babl-format objects. */ Babl * babl_fish (const void *source_format, const void *destination_format); /** Process n pixels from source to destination using babl_fish, * returns number of pixels converted. */ long babl_process (Babl *babl_fish, void *source, void *destination, long n); /** * Returns a string decsribing a Babl object. */ const char * babl_get_name (const Babl *babl); /** * Returns whether the @format has an alpha channel. */ int babl_format_has_alpha (const Babl *format); /** * Returns the bytes per pixel for a babl color format. */ int babl_format_get_bytes_per_pixel (const Babl *format); /** * Returns the number of components for the given @format. */ int babl_format_get_n_components (const Babl *format); /** * Returns the type in the given @format for the given * @component_index. */ Babl * babl_format_get_type (const Babl *format, int component_index); /** * Defines a new data type in babl. A data type that babl can have in * its buffers requires conversions to and from "double" to be * registered before passing sanity. * * babl_type_new (const char *name, * "bits", int bits, * ["min_val", double min_val,] * ["max_val", double max_val,] * NULL); */ Babl * babl_type_new (void *first_arg, ...) BABL_ARG_NULL_TERMINATED; /** * Defines a new color component with babl. * * babl_component_new (const char *name, * NULL); */ Babl * babl_component_new (void *first_arg, ...) BABL_ARG_NULL_TERMINATED; /** * Defines a new color model in babl. If no name is provided a name is * generated by concatenating the name of all the involved components. * * babl_model_new (["name", const char *name,] * BablComponent *component1, * [BablComponent *componentN, ...] * NULL); */ Babl * babl_model_new (void *first_arg, ...) BABL_ARG_NULL_TERMINATED; /** * Defines a new color format in babl. Provided BablType and|or * BablSampling is valid for the following components as well. If no * name is provided a (long) descriptive name is used. * * babl_format_new (["name", const char *name,] * BablModel *model, * [BablType *type,] * [BablSampling, *sampling,] * BablComponent *component1, * [[BablType *type,] * [BablSampling *sampling,] * BablComponent *componentN, * ...] * ["planar",] * NULL); */ Babl * babl_format_new (void *first_arg, ...) BABL_ARG_NULL_TERMINATED; /** * Defines a new conversion between either two formats, two models or * two types in babl. * * babl_conversion_new (, * <"linear"|"planar">, conv_func, * NULL); */ Babl * babl_conversion_new (void *first_arg, ...) BABL_ARG_NULL_TERMINATED; /* * Backwards compatibility stuff * * NOTE: will most likely be removed in the first stable release! */ #ifndef BABL_DISABLE_DEPRECATED #define babl_destroy babl_exit #endif #ifdef __cplusplus } #endif #endif ./babl-0.1.0-i686/usr/include/babl-0.0/babl/babl-macros.h0000644000000000000000000000211611272022114020607 0ustar rootroot/* babl - dynamically extendable universal pixel conversion library. * Copyright (C) 2005-2008, Øyvind Kolås and others. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General * Public License along with this library; if not, see * . */ #ifndef _BABL_MACROS_H #define _BABL_MACROS_H #ifndef BABL_INSIDE_BABL_H #error "babl-version.h must not be included directly, include babl.h instead." #endif #if __GNUC__ >= 4 #define BABL_ARG_NULL_TERMINATED __attribute__((__sentinel__)) #else #define BABL_ARG_NULL_TERMINATED #endif #endif ./babl-0.1.0-i686/usr/include/babl-0.0/babl/babl-types.h0000644000000000000000000000330411272022114020467 0ustar rootroot/* babl - dynamically extendable universal pixel conversion library. * Copyright (C) 2005-2008, Øyvind Kolås and others. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General * Public License along with this library; if not, see * . */ #ifndef _BABL_TYPES_H #define _BABL_TYPES_H #ifndef BABL_INSIDE_BABL_H #error "babl-version.h must not be included directly, include babl.h instead." #endif /** * The babl API is based around polymorphism and almost everything is * a Babl object. */ typedef union _Babl Babl; /* Conversion function between linear data of a either a data types or * color formats. */ typedef long (*BablFuncLinear) (char *src, char *dst, long n); /* TypePlanar,ModelPlanar and FormatPlanar */ typedef long (*BablFuncPlanar) (int src_bands, char *src[], int src_pitch[], int dst_bands, char *dst[], int dst_pitch[], long n); #endif ./babl-0.1.0-i686/usr/include/babl-0.0/babl/babl-version.h0000644000000000000000000000260611272022114021014 0ustar rootroot/* babl - dynamically extendable universal pixel conversion library. * Copyright (C) 2005-2008, Øyvind Kolås and others. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General * Public License along with this library; if not, see * . */ #ifndef _BABL_VERSION_H #define _BABL_VERSION_H #ifndef BABL_INSIDE_BABL_H #error "babl-version.h must not be included directly, include babl.h instead." #endif /*** * babl version information * * These macros tell the version of babl you are compiling against. * babl's version number consists of three parts: major, minor and * micro. */ #define BABL_MAJOR_VERSION 0 #define BABL_MINOR_VERSION 1 #define BABL_MICRO_VERSION 0 /** Get the version information on the babl library */ void babl_get_version (int *major, int *minor, int *micro); #endif ./babl-0.1.0-i686/usr/lib/0000755000000000000000000000000011272022165013312 5ustar rootroot./babl-0.1.0-i686/usr/lib/pkgconfig/0000755000000000000000000000000011272022165015261 5ustar rootroot./babl-0.1.0-i686/usr/lib/pkgconfig/babl.pc0000644000000000000000000000037011272022135016502 0ustar rootrootprefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include Name: babl Description: Dynamic, any to any, pixel format conversion library Version: 0.1.0 Cflags: -I${includedir}/babl-0.0 Libs: -L${libdir} -lbabl-0.0 -lm ./babl-0.1.0-i686/usr/lib/libbabl-0.0.la0000755000000000000000000000146011272022112015506 0ustar rootroot# libbabl-0.0.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='libbabl-0.0.so.0' # Names of this library. library_names='libbabl-0.0.so.0.100.0 libbabl-0.0.so.0 libbabl-0.0.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' -lm -ldl' # Version information for libbabl-0.0. current=100 age=100 revision=0 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=no # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib' ./babl-0.1.0-i686/usr/lib/libbabl-0.0.so.0.100.00000755000000000000000000040577111272022141016345 0ustar rootrootELF`044 ( GQtd3e-fA6tC,~]KPQyI1a5ruORqh{pB XGT8&*4M|zb:;Vls ) ( 90>?+E2/D7L< S.[c\#kHm%YWNw_v'Zd`gx"nJ $!ijUo=^}@F J y * ( *y6 / 1`v ]te4  x 1e 7 b M t} va ) ߮ # \H   :fW  % H5 F >F v0 T ݩ) e4o (o y  ] CL IF- T 0  ZF e w 8  eF  0 F e , ,  r|  D x y @h# 8  ~ v q )  j '&   #S }]] R3 - 1X~ *$D 4 x / 901 p* [ { 4 \ 6Zp Z  4JLF O [`64 R 7! l" h 2 <k ] L- CQ  J _ FK Y L4 5- IN _ v !N hfy 4 W $ x Q6 = { m - <a  T7y YHF2[1 YB> >I[4   Z 5 M\F _D F > " $K P$ /    JW # {e ,. M > )eK 3 ZB4 ,k > Mg B e rj Kl My Z3  :L 0 ,d7 Z  \2 m-GX }[ Q[ 0H ? ,n 4 x  "`t Lz 6F @  8- C S h' 88&0__gmon_start___fini__cxa_finalize_Jv_RegisterClassesbabl_initbabl_cpu_accel_set_usebabl_internal_initbabl_type_class_initbabl_sampling_class_initbabl_component_class_initbabl_model_class_initbabl_format_class_initbabl_conversion_class_initbabl_core_initbabl_sanitybabl_extension_basebabl_extension_class_initbabl_fish_class_initbabl_exitgetenvfopenbabl_fish_statsfclosebabl_extension_class_destroybabl_fish_class_destroybabl_conversion_class_destroybabl_format_class_destroybabl_model_class_destroybabl_component_class_destroybabl_sampling_class_destroybabl_type_class_destroybabl_internal_destroybabl_memory_sanitybabl_freestrlenbabl_mallocstrcpybabl_component_newstrcmpbabl_diebabl_db_existbabl_db_insertbabl_extenderbabl_extension_quiet_logstdoutvfprintffputcfflushbabl_db_initbabl_db_eachbabl_db_destroybabl_component_class_for_eachbabl_componentbabl_hmpf_on_name_lookupsbabl_db_exist_by_namebabl_component_from_idbabl_db_exist_by_id__assert_failbabl_class_namebabl_model_from_idbabl_format_from_idbabl_type_from_idbabl_format_with_model_as_typebabl_conversion_newsnprintfbabl_list_init_with_sizebabl_list_insert_lastmemcpybabl_conversion_processsrandombabl_conversion_costbabl_conversion_errorbabl_typebabl_modelbabl_format_newbabl_fish_referencebabl_callocbabl_processbabl_ticksbabl_fish_simplebabl_rel_avg_errorbabl_process_costbabl_conversion_class_for_eachbabl_conversionbabl_conversion_from_idbabl_type_newbabl_model_newbabl_cpu_accel_get_supportlongjmp_setjmpsignalbabl_hash_by_strbabl_hash_by_intbabl_hash_table_initbabl_list_initbabl_hash_table_destroybabl_list_destroybabl_db_findbabl_hash_table_findbabl_db_countbabl_hash_table_insertbabl_list_eachbabl_set_extenderbabl_base_initdlopendlerrordlsymdlcloseopendirbabl_strcatstrrchrreaddirclosedirbabl_strdupbabl_extension_class_for_eachbabl_extensionbabl_extension_from_idatofatoibabl_list_sizebabl_list_copybabl_list_remove_lastbabl_fish_pathbabl_fish_dbbabl_fish_get_idbabl_fish_path_processbabl_list_get_firstbabl_list_get_lastbabl_conversion_findbabl_image_newbabl_fishbabl_fish_reference_processbabl_image_from_linearbabl_formats_countfwritebabl_format_lossbabl_format_class_for_eachbabl_formatbabl_fish_processbabl_fish_class_for_eachsprintfbabl_samplingbabl_format_has_alphababl_format_get_n_componentsbabl_format_get_bytes_per_pixelbabl_format_get_typebabl_hash_table_sizememsetbabl_image_class_destroybabl_image_class_initbabl_backtrackgetpidsystembabl_total_usecsbabl_set_mallocbabl_set_freebabl_get_namebabl_introspectbabl_type_class_for_eachbabl_sampling_class_for_eachbabl_model_class_for_eachbabl_reallocbabl_dupbabl_sizeofbabl_model_is_symmetricbabl_type_is_symmetricgettimeofdaybabl_get_versionbabl_formats_initbabl_base_destroybabl_base_type_floatbabl_base_type_u8babl_base_type_u16babl_base_type_u32babl_base_model_rgbbabl_base_model_graybabl_base_model_ycbcrrintpowlibm.so.6libdl.so.2libc.so.6__xstat_edata__bss_start_endlibbabl-0.0.so.0GLIBC_2.1GLIBC_2.0GLIBC_2.1.3 0ii # ii -   ii -  si 7 ii # ii -  $(,048<@DHLPTX\`dht>p>Vl  $(,048 < @ D H LPTX\`dhlptx| "#$%'()*,-./0ı1ȱ3̱5б6Ա7ر8ܱ9:;<=?ABCDEF GHIJK L$M(O,P0Q4R8S<T@UDWHYLZP[T\X]\^``dahblcpdtexf|ghijklmnpqrsvwxyz{IJ|Ȳ~̲вԲزܲ  $(,048<@DHLPTX\`dhlptx|US[̊tr HX[] hhhhh h($h0(h8p,h@`0hHP4hP@8hX0<h` @hhDhpHhxLhPhThXh\h`hdhhhplh`phPth@xh0|h hhhhhhhh h(h0h8ph@`hHPhP@hX0h` hhhphxhhhhhhhhph`hPh@h0h hhh hhhhh  h($h0(h8p,h@`0hHP4hP@8hX0<h` @hhDhpHhxLhPhThXh\h`hdhhhplh`phPth@xh0|h hhhhhhhh h(h0h8ph@`hHPhP@hX0h` hhhphxhhhhhhhhph`hPh@h0h hhh hhhhh  h($h0(h8p,h@`0hHP4hP@8hX0<h` @hhDhpHhxLhPhThXh\h`hdhhhplh`phPth@xh0|h hUS[äp uBt% P3ҋuƃp ]Í'US[4tt P҃]ÐUgt u ǁt ]USC$jx x x uKF D[]UWVS,Ix x x P$@tE}ۍ]󤍃[D$Eۉ$VE}tE$E$.j,[^_]Ë $Ë$ÐU~| u ǁ| ]US\~E$C[]US$4~E${$0EEPEP EP ED$$EUE BUEBUEBUEBE$[]USD!ò}EEEEEEE EUBEЋE}}tE=~E=ƍD$E$uUBEЋE뛍D$E$u EvD$E$]u EQD$E$8u E,ED$ED$D$ tD$D$kľ$[E| D$ED$$zE}tEEEUED$ED$ ED$ED$$E䋓| ED$$EE؋E؃D[]US$V{E;Et^t&P T$վD$ $ED$E D$ ED$D$$EEUT$ED$ $D$$ $$[]US{| u J| []USYz| D$T$$| $[]USäz| U T$UT$$[]US4pzt;ED$D$D$ D$D$ľ$0| UT$$fE}u@ED$D$D$ D$D$ľ$E4[]US4ðy| UT$$E}u@ED$(D$?D$ (D$D$ľ$^4E4[]ÐU8y u ǁ ]USyE$[]UVS0VxEEE9tbhD$ XD$D$/$EE9t*XD$ D$/D$Ŀ$bE$1$lEEP0EP EP ED$$}tE UEB$2}tE UEB$} tE UE B$EE}}4}t}tEE$D$D$ XD$D$O$[V} E$D$D$ XD$D$T$ }E$KD$DD$ XD$D$\$@E$ D$kD$ XD$D$d${vUE BUEBUEBE݃XE@EE@,E@(E= E@=EEEp$^9u4$^E$i‹E@T$$EyEp$9u4$i‹E@T$$PE$E/|D$ XD$D$$B=D$ED$ D$ED$E$BEXE0[^]US${ uE;Et^t&P T$D$ $ED$E D$ ED$D$$EEUT$ED$ $D$$ $$[]USDh9$SǍ;$CE=$2E?$!EA$`ƍH$D$|$UT$UT$ UT$t$$E]EE}u ]E@݃uzE@]E@EE@EED$E$EED$E$nEED$E$YEE;EuEX]E@=t;E@=t.E@it#E@itE=u E=t E݃XE̋E@,D$$EЋE@,D$$EԋE@,D$$E܋E@,D$$E؋E@,D$$vED$ EЉD$ẺD$E$EċE$D$ EԉD$EЉD$$zED$ E܉D$EЉD$E$D$ ED$E܉D$E$D$ E؉D$EԉD$E$dD$ED$E؉$]E@ PEP E@ PEP E@ PEP E@$EP$E@$EP$E@$EP$EЉ$YEԉ$NE؉$CE܉$8E$-Ẻ$"EEXEȉD$Eĉ$‹EPE]EČ[^_]USVd u  []US)úd D$T$$ $~[]UStd U T$UT$$[]US4@dt;ED$MD$]D$ MD$D$/$ UT$$6E}u@ED$MD$mD$ MD$D$/$}E4[]US4Àc UT$$E}u@ED$D$D$ D$D$/$ E4[]ÐUsc u ǁ ]USOb}@uH}@uBEPHD$ED$E $EE&U EEE EEm}uEEE[]USgbED$ED$E $}E[]UWVS<.bD$D$@D$ D$iD$$D$D$D$ D$'D$$D$D$D$ D$'D$$D$D$D$ D$'D$$RD$D$ D$'D$$ D$ D$*'D$$$'E$'$'$'D$UT$t$|$ D$D$$@$'D$'6E$''E$'E$ii${D$ |$UT$UT$UT$t$ D$D$$$i$iD$D$ D$t$$$$D$D$ D$t$$t<[^_]USH_t ~EEE[]U_}]UVS0`^X5 PXEME;Eu EމEuMU}u EU؋EE؃‹EE؃‹EED$E؉$u EaD$E؉$u E<D$E؉$u E+D$E؉$gu E8D$E؉$Bu EED$E؉$tRD$E؉$u E_D$E؉$u EmlD$E؉$u EKyD$E؉$u E )D$E؉$yu E EEԃ0[^]UV$EމEuMUE%u EDEE%tM0E%tMEtMEE؋E؃$^]UV$mEމEuMU}wEE>މEuMUEyM@E%@tM EE؋E؃$^]UV$EމEuMU}wEEQމEuMUE%tMEyM@E%tM EE؋E؃$^]UV$^EމEuMU}tEECމEuMUE%tME%tM EE؋E؃$^]US0ZD$ $USÙZ $]t E43D$$ WD$$EE[]US/Z&E}w9EE&EEEEE%t$ueE[]USéYt EMEE[]UhY, u ǁ, ]US@YU E@ T$$u EEE[]UEPE 9u EEEUSAXE @ D$E$o[]USåXE @D$E$[]US$xXD$$ &ED$"$‹ED$O$‹EP‹EPE$[]USiW}uZD$ D$D$I$j}u*D$ D$ID$$E$OE@$AE@$E$X[]US$NW;EC;Et^)t& P T$D$ $/ED$E D$ ED$D$$EEUT$ED$ $\D$$ 4$$[]US~VEE D$$‹EE D$T$ $[]UE@]US+VE @tEPE D$$^EE D$$JEPE D$$‹E PE []US*ûUEPED$E D$$1[]USÇUE t5U E@T$$m‹EHE D$T$ $E1EED$$‹EED$T$ $EE[]USnTU E@T$$‹EHE D$T$ $A[]US&÷TEE D$$U‹EE D$T$ $[]ÐUtT0 u ǁ0 ]UMT4 t 4 EEEUTE4 ]US$pTE$H$EEPEP EP ED$$E@EUE BUEBE$[]USÇS8 t 8 E-D$D$$A8 8 EE[]US$*SEE0 u O0 ED$ED$ $EE$0 ED$$EE;Et E$EE$[E$[]US~R{$/[]USUR8 $9ǃ8 []US%R}tD$E$$[]US4RQEEEED$E$E}uFHD$&D$ D$D$;$nE$6ERLD$E$rE}uOED$TD$ D$D$;$ E$mE$ED$E$EED$ED$E$EE${EЅtLED$D$ D$D$;$uE$E$2EQ0 ED$$10 ED$$;Eu$EEE$EE4[]US$gOE;Et^t&P T$D$ $ED$E D$ ED$D$$EEUT$ED$ $D$$ $$[]US%OE$|E}E@ <.EED$E$2ED$E$EE D$E$EED$E$M E D$.$GE}t$D$E$u E$cE$?E$E}-E$Ą[]US~N$#E}u EE[]US$CMEEEkE~t.$E}t@ED$E$E)"fEEEED$E$EEEuE$[]US45MEE$UEEEEEpEE؃}t}:t =EE$EE$E$EEEEEEEEE}tE$4[]U_$1USdLE@tE@ЋE@tE@$E$![]USL0 u E0 hh[]USJK0 D$T$$0 $A[]USÐK0 U T$UT$$[]US4\Kt;ED$$D$3D$ $D$D$};$ 0 UT$$RE}u@ED$$D$CD$ $D$D$};$E4[]US4 ÜJ0 UT$$ E}u@ED$WD$nD$ WD$D$};$9 E4[]ÐU$JP u ǁP ]US$kI݃X uz ݃X ]I$E}tEtE$CݛX ݃hݛX ݃X ]E$[]US$yI` t ` Eh$xE}tE$` ǃ` ` ~ ǃ` `  ǃ` ` EE$[]USTPHE ;E}  *9E]]]E-*PE$E]ȃE*$諾;EE]GEsE*EȉD$ EЉD$E؉D$$U EEw|*@,EwEs|*EX,|*EX|*@<*D$$BE@E}E@<EkEPEEE@EE@x*tP.$.$.$.$ݶ.$϶ǃx*[]US$*û=EEx*u>E$ @EE$虳@EED$E$ǃx*肸E싃..D$ D$T$E$E$`E$UE$JE$?E܉$4E؉$)EEԋEԃ@[^]ÐU胯.2u ǁ2]UE@ ]US$T-E}tE=~ E=~rD$ D$D$".$E}tE=~ E=~*D$ D$".D$D$@E$AEm‹ED$$|E}t EEE$]1$EEEPE@T$$N‹EPEP0EP EP ED$$uEPEPEPEPE@ E@$UEB,EX裩‹ED$$BEEE$[]US$训?,,E4;Et^t&P T$D$ $ ED$E D$ ED$D$$EEUT$ED$ $MD$$ %$٤$[]ÐU۬p+2u ǁ2]UWVS<赬F+E EEE苃333Ẻ}̉׋3ܣẺ}̉E̋E9u-2D$ D$D$4$ѦED$E$:E}uZTD$ D$D$.u$J}u*D$ D$.uD$$GEEЁ}}t} kE@<$YEԋE@ ~ E E؋2EԉD$ E؉D$D$$2D$ D$D$$裥EP E@ 2T$ D$D$ $藥E@ ~fE@(2D$@D$$kE@ 2D$hD$$IE@$2D$D$$'2D$ D$D$$ߤ2D$ D$D$$跤2D$ D$D$$菤2D$ D$/D$$g2D$ D$0D$$?2D$ D$D$I$E2D$ D$D$$E@2D$ D$D$$2D$ D$D$$2D$ D$ D$$ơwE@ ~ E E܋2E܉D$ D$$褡2D$ D$D$$\EP E@ 2T$ D$TD$ $PE@ ~fE@(2D$@D$$$E@ 2D$hD$$E@$2D$D$$2D$ D$D$$蘠2D$ D$ D$$p!E@ ~ E E2ED$D$$M2D$ D$D$$EP E@ 2T$ D$D$ $E@,@ 2D$D$$ԟE@,$趡2D$(D$$誟E@,$輡2\$PD$$耟E@ ~fE@(2D$@D$$TE@ 2D$hD$$2E@$2D$D$$2D$ D$D$$Ȟ2D$ D$ D$$蠞TvD$ D$D$u$7D$ D$uD$$:<[^_]US$蘣)"E;Et^t&P T$D$ $ ED$E D$ ED$D$$۝EEUT$ED$ $7D$$ $Ú$[]US$ŢV!E@ EEqE tHE&EEnEEbEEsEEpEE;EEEEEEEEEu2D$ D$D$$衜2D$D$$蟜2ED$D$$耜E@ 2D$D$$^2D$ D$D$!$E@,2D$(D$$E@(@ 2D$HD$$E$褕2\$bD$$ț2D$ D$,D$|$耛ENEPEH EPE@ 2L$ D$D$$MEE@;E2D$ D$D$$2D$ D$D$$Κ2D$ D$ D$$覚ED$$!2D$ D$D$$i33$[]US$觟8݃3uz ݃3]I$-E}tEtE$ݛ3 ݃ݛ3݃3]E$[]USD$õE@=t E E$ћ]E$蓛P$d$]'EwLE@ 2D$(D$$f2D$ D$$D$T$"E@ 2D$yD$$EP,E@(2T$D$E\$E\$D$ $2D$ D$D$$蘘EED[]USt2D$ D$D$$ND$?$82D$ D$D$$[]USeE22D$ D$D$ $Ǘ2D$ D$D$$蟗2D$ D$#D$$w2D$ D$'D$$O2D$ D$`D$$'D$$衙2D$ D$D$$2D$ D$ D$X$42D$ D$D$y$蔖[]ÐU|3u ǁ3]UE EEPE@9EPE@9E= uUEBE@ PEP IE=uUEE@ PEP $E= uUEBE@ PEP E@ u EEEUE EEPE@9u>EPE@9u.EPE@9uE= uUEBEEEUE EEPE9uUEEEEUS$bE EEPED$D$$`E;E u EEEE$[]UEU )ЉE}uEEUSy3u 謑33[]UWVS\賙DEE}uZD$ D$D$$A}u*D$ D$D$$ȏ} uZD$ D$D$$} u*D$ D$D$$h}tE=~E=EE؃}uE$裍E؃}uDE D$ED$(D$ D$D$$;E$} tE =~E =E E܃}uE $!E܃}uDE D$ED$LD$ D$D$$E}E؉EЋE܉E耓@EE܉D$E؉$討D$E$)EE;Eu*U䍃cBED$ED$E$iU䍃BED$ED$E$?Et EEEȅE܉D$E؉$ E}t EEuEE$ȏ-D$$%EE E܉D$E؉$跍‹EPEP,EP EP ED$$ޏUE؉BUE܉B7‹ED$$֎EątEĉEE܉D$E؉$腍EE\[^_]US$"ó蠒E訍;Et^莒t&腒P T$wD$ $蔐ED$E D$ ED$D$$eEEUT$ED$ $D$$ 虐$M$[]UVS QEE- FE= ufEPE@9u.E@@,ED$E D$E$軍EE-UM ED$ T$L$E$PEE=u(ED$ ED$E D$E$輐EE=E@,= u-Mu E@,‹ED$ L$t$$ED$ D$D$@$D$ D$@D$$tD$ D$D$E$EE [^]US褓5E=uE@<$轊E$[]USb3u &3[]US53D$T$$؍3$芌[]USÀ3U T$UT$$薍[]U軒P3u ǁ3]US藒(E@tE@$貉E$[]USDWEEE/EEEHE9u E EE;E|Ƀ}uYEEH EPE@ L$D$D$ D$D$B$EE@;ENE$j‹E‹E‹E‹E‹EA$EE@E@‹EPE@‹E‹EPE@‹E‹EP$E@$‹E‹EP EUE BEP ED$$UEB(UEBE‹EHT$ED$ $NE‹EHT$E$D$ $,E‹EH$T$E D$ $ UEB0E@,E-EH,EE$@PHEP,EE;E|ˋE݃X4E@<E@ ED[]US$軏L9EA;Et^'t&P T$!D$ $-ED$E D$ ED$4D$$EEUT$ED$ $ZD$$ 2$$[]UWVSEP E@ T$D$D$ QD$D$$EEE$0D$D$ QD$D$$bUD$$uUЍBEЉЋEET$$uUЍBEЉЋEET$$輇u E_ET$$蚇u E=ED$ED$ D$ QD$D$$$UЍBEЉЋE}tF}u)PD$ PD$ED$E$ E3ED$E؉D$$蚆Eԃ}t EԉHfPD$D$PD$ED$ED$ E܉D$E؉D$E$%Eԋ3EԉD$$EԉHH[]USL3$豅[]US$&÷E$~EE&EPE@t EEE;E|EE$[]UE=u E@,EEEUE=u E@EEEUE=u(} x"E@;E ~EPE EEEUWVS|%öEUEHEDȃEE@;E؋EDEEUMu}܋E؉EEԉEEЉEẺEEȉED$0ED$,T$(L$$t$ |$ED$ED$ED$ED$ ED$E D$E${|[^_]UVS J$(1豁$ ՂEE&Eu{P$d$݃E}~ыE [^]UWVSlنj]|$zǍ~$zE$zE$zE$}ƍ$&D$|$UT$UT$ UT$t$$yzEE@4݃uzE@4]EEED$E$H}EED$E$3}EE̋E@,D$$"EЋE@,D$$ EԋE@,D$$E؋E@,D$$ׁED$ EЉD$ẺD$E$c~D$ EԉD$EЉD$E$B~D$ E؉D$EԉD$E$!~D$ E܉D$E؉D$E$~D$ẺD$Eԉ$&{]E@ PEP E@ PEP E@$EP$E@$EP$EЉ$|Eԉ$ |E؉$|E܉${Ẻ${EEX4E]El[^_]US;3u {3[]USß3D$T$$~3$c}[]USȃY3U T$UT$$o~[]US4蔃%t;ED$D$D$ D$D$$3UT$$~E}u@ED$D$D$ D$D$$'b~E4[]US4Ԃe3UT$$wE}u@ED$D$D$ D$D$$}E4[]U[3u ǁ3]UE"E EE E EE1EE uԋEEE 1EEEE@#EUEE!E EE EE1E} EEv׋EEE 1EEEE@#EUS$qD$$}EEE@E@PEPE@ EPEPEPEPE@tlE${D$$B}‹EE$z$t|‹EPE$z‹E@T$D$$vE*EEEED$E$R}EE$sz;EƋEPEPE$wE@$wEEEPEPE$w$[]UE@]US$~}uZD$ D$D$2$}u*D$ D$2D$D$v} uZLD$ D$D$2$_} u*D$ D$2D$n$uD$$l{E}uZtD$ D$D$2$}u*D$ D$2D$$9uEE@E@E@ UEBUE BE@tlE${xD$$z‹EE$Yx$y‹EPE$:x‹E@T$D$$ tE$[]US$}}jzEru;Et^Xzt&OzP T$D$ $^xED$E D$ ED$D$$/xEEUT$ED$ $yD$$ cx$u$[]US}í}uZtD$ D$D$2$}u*D$ D$2D$$?sE$2tE@$$tE$t[]US~|}uZtD$ D$D$2$P}u*D$ D$2D$$r} tE =~ E =~rD$ D$D$2$} tE =~ E =~*D$ D$2D$$rE$u‹E@ 9} E$E D$E$[]UEPE D$E$҉EEEuEE‹E EEE@;E~EEuًEE‹E EEEPEEEEEPEE}uߋEPE‹EE@ PEP US$Iz}uZtD$ D$D$2$}u*D$ D$2D$$lpE EEEE}u EYEPED$E$҅tEE8EPEE}tEEEEE$[]ÐUKy3u ǁ3]US$'yøUE‹E‹E‹E‹E4$tEE4‹EPE@‹E‹EP$E@$‹E‹EP E@ ‹E‹EP(E@(‹E‹EP,E@,‹E‹EP0EE@UB UEBUE BUEBE‹EHT$ED$ $pE‹EH T$ED$ $pE‹EH(T$E D$ $pE‹EH,T$E$D$ $ipE‹EH0T$E(D$ $GpE$[]UVSPewEEEE} uZD$ D$D$W$} u*D$ D$WD$ $lmE =txE =tlD$ D$D$Y$E =t6E =t*D$ D$YD$x$lE tmE @EE @ tpE @ EE @ E>EP(E‹EEE PE@PHEEE;E|EE @(EE‹E @T$D$`$KnE‹E @$T$D$$&nE‹E @T$D$`$nEE싄`@PHEEE;E|EJUE􉄕`EDŽUEEE싄`@PHEEE;E| E EE @EEEEE;E|E‹E@T$D$`$$mE~uD$$tju$ii`UE􉄕`EDŽUEEE싄`@PHEEE;Ev*D$ D$D$$E ;Et E DžD$ `D$D$`D$D$`D$ ED$ED$$EEP[^]US$rÐ}oEj;Et^kot&boP T$D$ $qmED$E D$ ED$D$$BmEEUT$ED$ $nD$$ vm$*j$[]UST,rýEEEEEE EE}O}t|E=~pE=dEEE=uEEXE$hD$D$ D$D$$vDž.E$eEUE􉄕\EDŽEDŽ\MU܍BE܉ЋMU܍BE܉Ћ\MU܍BE܉ЋE}~2D$ D$ D$D$$U܍BE܉ЋED$ \D$D$\D$D$\D$ ED$ED$E$EET[]U]U]Up(3u ǁ(3]UoE-]USojdD$QEd9thD$ D$D$n$Ed9t*D$ D$nD$$EGE@$RLEE@D$ED$E$NIp3p3\3\3$[]US$PP}E=E=EE}t2}twE@E}thE@ u^UEB EEE@ t6E@ `E@ $ҋ`3`3E@ }txEd9t/hD$ [D$D$n$J\E`E$ҋ`3`3$[]US4NÎE}uE $JE_Ed9thD$ D$D$n$AEd9t*D$ D$nD$$D} uE$EEE$K;E r EEE$K;E sQE $IEE$KD$ED$E$FE$bEh3h3EEJ}u=E D$ED$D$ D$D$n$,HEE4[]US4cMEE $HE}u=E D$ED$D$ D$D$n$HEE D$D$E$Bl3l3\3\3E4[]USLHEd9thD$ D$D$n$Ed9t*D$ D$nD$$BE@[]US$LéE$D$GE}u1ED$D$ D$D$n$jED$E$ Ed3d3\3\3E$[]US$}K} u EE?E $DDE}u.E$FEE D$E$DEEEd9th D$ D$D$=n$Ed9t*D$ D$=nD$8$1AE$CEEEE$"H‹EE9s6E$HEeEE;EwED$E$DEEUE D$$CEEE$[]UWVS,Já\3d3‹l3‹`39d3\3‹l3‹`3)Nj`3E싓d3\3‹l34|$UT$t$D$D$ |D$D$Yn$ EEE,[^_]ÐU;I4u ǁ4]USIèE@tE@$2@E$w@[]US$HhpE}t6EEAE@ D$E$$@?EE6Eu8P$d$݃݃݃E}~E [^]UWVS,C,4$7Ǎ$7E荃$7E썃$p7E$:ƍ$;D$|$UT$UT$ UT$t$$2744,[^_]UWVS BeEUE@Eu썃$:@EE$UEHE@EEE@;EыEDŽ@EE艅UMu܋}؋EԉEЉẺEȉEĉEEEEEEEEEEEEEEEEE|xtplhd `\XTP L$H(D,@0DŽ$$$$$$$$$$$$D$|D$xD$tD$pD$lD$hD$dD$`D$\D$XD$TD$PD$LD$HD$DD$@D$iEEEE$EED$E$5EED$E$5EE@ D$$:ED$@$:EЋE@ D$$:ED$@$y:ED$ ẺD$EȉD$E$7D$ EЉD$ẺD$E$6D$ EԉD$EЉD$E$6D$ E؉D$EԉD$E$6E@ PEP E@ PEP E@$EP$E@$EP$EE#EPEEEEEE݃w}uEEE}~}}E@ D$D$ D$D$1 $UȃEUȃEUȃEEE\$(\$ \$\$ D$ D$D$5 $(UЃEUЃEUЃEEE\$(\$ \$\$0D$ D$D$9 $U؃EU؃EU؃EEE\$(\$ \$\$TD$ D$D$= $0EE}Ẻ$2EЉ$2Eԉ$|2E؉$q2Eȉ$f2E܃t[]US:Y4u 24[]US:,4D$L8T$$>54$3[]USU:4U T$UT$$4[]US4!:òt;ED$wD$D$ wD$D$K $4UT$$4E}u@ED$wD$D$ wD$D$K $4E4[]US4a94UT$$_.E}u@ED$D$D$ D$D$K $ v4E4[]ÐU8|04u ǁ04]US$8T} ~7} 1}~+}%E PE P4E?E D$ED$D$ D$D$)-$EE$[]US$,8ý4E/;Et^4t&4P T$=D$ $2ED$E D$ ED$PD$$o2EEUT$ED$ $3D$$ 2$W/$[]US\7E@tE@$w.[]US$'7øESE@EPEEEP4‹E D$$EЅuE}~E}~$[]US6>D$J$3[]UVS~6EEEPEEEP4ET4ET4ЍPEEX4ЍPEuEPP4H \4 uE0P4ЃH EP4Ѓ@ :uE0P4ЃH EP4Ѓ@ E}E}[^]U?5ԳP6u ǁP6]U]UVS05áEE@E}tRE9EPE$($i*9u EEE$);E}u>ǃT6E@ D$lD$ `D$D$<$ 0[^]US$F4ײ0E+;Et^0t&0P T$D$ $.ED$E D$ ED$D$$.EEUT$ED$ $/D$$ .$q+$[]UVS0u3EE@E}tRE9EPE$$*9u EEE$';E}u>ǃT6E@ D$D$ D$D$]$q0[^]U]US22ǃT6D$N$*D$N$+D$N$H,D$N$b/D$RL$\*D$HL$v/D$HL$*D$M$+D$HL$.D$HL$N+T6[]UE@]ÐU1$p6u ǁp6]USk1E@tE@$(E$([]US$+1ü}uZ4D$ (D$D$.Z$}u*(D$ D$.ZD$f$N'Et^pD$ (D$D$/Z$Et*(D$ D$/ZD$$&E$;))$+EEP(EP EUE BEP ED$$j)UEBE@E$[]US$/zg,Eo';Et^U,t&L,P T$D$ $[*ED$E D$ ED$D$$,*EEUT$ED$ $+D$$ `*$'$[]USd/êEEEEE]]EEE EċUčBEĉЋE}}tE=~E=ƍD$E$+uUčBEĉЋE뛍D$E$i+u)UčBEĉЋEEMԸEYD$E$'+uUčBEĉЋE+D$E$*uUčBEĉЋED$E$*uUčBEĉЋED$E$*uUčBEĉ]D$E$o*uUčBEĉ]sED$ED$D$ D$D$Z$ (1Ep6D$ẺD$$)Eȃ}tEȉE7UEԉD$ẺD$$Eȋp6EȉD$$&%EȉEEd[]US$,#EEE EEE؋EE(!EE݃]EeE]EE]E$[]UVS01,ªEEE EEE؋EE$(1&E uE\$E$Kݜ6E}~׃0[^]UWVS+Qt6uL($ƍ*$ #Ǎ($;$D$ t$|$$t6t6[^_]UVS`I+کE݃\$$UE($;ƍ($#D$ t$ED$$EED$E$"EED$E$"EE@PH D$$&ED$$&EԋE@PH D$$&ED$$&ED$ EЉD$6D$E$!#D$ EԉD$EЉD$E$#D$ E؉D$EԉD$E$"D$ E܉D$E؉D$E$"E@ PEP E@ PEP E@$EP$E@$EP$EEEEEE݃wx}EtbEEEEE݄Ð6ʋE@ \$$\$\$D$HD$ 1D$D$Z$EE}MEЉ$+ Eԉ$ E؉$ E܉$ Ẽ`[^]USk(p6u / p6[]US>(Ϧp6D$OT$$"p6$![]US'Ép6U T$UT$$"[]US4'Ut;ED$WD$aD$ WD$D$Z$p6UT$$K"E}u@ED$WD$qD$ WD$D$Z$)"E4[]US4'Õp6UT$$E}u@ED$D$D$ D$D$Z$"E4[]U& Fu ǁF]USg&Fu ǃFD$F$P[]US%&öD$F$FF)i@BF‹F)ȃ[]UUE )щʉ]U%:]E&EEEE E]EE;E|E݁s EE]]EÐU/%ģFu ǁF]U}t E} t E }t E]ÐUS$hP(OxP[]U]US$>"[]USY$M []ÐUWVS|*$û$'$'s$'a$'O$i$D$|$T$T$ T$t$$$'$'$'$'$h $D$|$T$T$ T$t$$5$'Y$'K$'9$''$fu$D$|$T$T$ T$t$$$'$'$'$'$e$D$|$T$T$ T$t$$ $'1$!'#$ '$'$hM$_D$|$T$T$ T$t$$y$'$!'$ '}$'k$f$D$|$T$T$ T$t$$$' $!'$ '$'$e%$7D$|$T$T$ T$t$$Q$'u$'c$'Q$h$D$T$T$ t$|$$$'$'$'$f+$=D$T$T$ t$|$$a$'$'s$'a$e$D$T$T$ t$|$$$' $'$hM$_D$T$ t$|$$$' $'$h$D$ T$ t$|$$1$'U$h$D$ t$|$$$'$'$fU$gD$T$ t$|$$$'$'$f$ D$T$ t$|$$9$']$f$D$ t$|$$$'$' $e]$oD$T$ t$|$$$'$'$e$D$T$ t$|$$A$'e$e$D$ t$|$$$)'%$(' $le$$'($kA$SD$ |$ T$$T$(T$t$ D$D$$Y$)'}$('o,$h0$'K4$h$D$|$,T$0T$ 4T$t$$$'$)'8$('<$h@$'D$h$D$|$8T$E$'/E$f $ D$|$UT$UT$ UT$t$$ $'$'E$'E$'E$e $ D$|$UT$UT$ UT$t$$3 $'WE$'HE$'9$h $ D$UT$UT$ t$|$$ $'E$'E$'$f $1 D$UT$UT$ t$|$$[ $'E$'pE$'a$e $ D$UT$UT$ t$|$$$'E$'$hV $h D$UT$ t$|$$$'E$'$h $ D$UT$ t$|$$C$'g$h $ D$ t$|$$$''E$'$fj $| D$UT$ t$|$$$' E$' $f $& D$UT$ t$|$$W$'{ $f$ D$ t$|$$$'; E$', $e~$ D$UĉT$ t$|$$$' E$' $e($: D$UȉT$ t$|$$k$' $e$D$ t$|$$+$)'O $('A E$lE$'# E$kt$D$ |$ỦT$UЉT$UԉT$t$ D$D$$$)' $(' E$hE$' E$h$D$|$U؉T$U܉T$ UT$t$$$'7 $)') E$(' E$hkE$' E$hM$_D$|$UT$UT$UT$ UT$t$${|[^_]UU E]EEE EEm}uڋEUU EEE EEm}uE]UVS ^D$D$ D$ D$hD$$$iJ$h<D$kqD$ D$t$$ $h$iD$8qD$ D$t$$ [^]ÐUFu ǁF]US4\U MED$(ED$$ED$ T$L$D$D$\$$4[]U(UMEEE EEEEEU܈MyE EE;E~E]HE;E}E]7U܋E)P$d$UE܉)P$d$EeE]E$EE,E$E(E m0}0yE0US4 IU MED$(ED$$ED$ T$L$D$D$\$$4[]USD] UMEEE EEE؋EE܈UԈME ]EEw EԈE`EEw EЈEGEeEeUEԉ)P$d$EP$d$$ ],EȈEU$EE(E E,E$m0}0^E0D[]US,w U MED$(ED$$ED$ T$L$D$D$\$$,[]US4 íU MED$(ED$$ED$ T$L$D$D$\$$j4[]US, RU MED$(ED$$ED$ T$L$D$D$\$$,[]US4f U MED$(ED$$ED$ T$L$D$D$\$$4[]UVSP ÛD$D$D$ D$eD$$SD$D$D$ D$kD$$D$D݃H\$< D$8݃P\$0D$,D$(D$$D$ D$D$D$#D$,D$ D$lD$4$$i$eD$rD$ >D$t$$[$eo$iaD$sD$ >D$t$$$i+$kD$tD$ >D$t$$$k$iD$GuD$ >D$t$$$i$lD$uD$ >D$t$$K$l_$iQD$uD$ >D$t$$P[^]UKFu ǁF]US4'øU MED$(ED$$ED$ T$L$D$D$\$$4[]U(UMEEE EEEEEfUfMyE EE;E~E]HE;E}E]7U܋E)P$d$UE܉)P$d$EeE]E$EE,E$E(E m0}0yE0US4ãU MED$(ED$$ED$ T$L$D$D$\$$4[]USDHUMEEE EEE؋EEfUfME ]EEw EfEbEEw EfEHEeEeUEԉ)P$d$EP$d$$ ],EfEU$EfE,E$E(E m0}0ZE0D[]UVS [D$D$XD$ D$f]D$`$$iG$f9D$vE E}*"D$ D$D$$}*"D$ D$D$$} u*"D$ D$D$$E u*"D$ D$D$$g}u*"D$ D$D$$7Eu*"D$ D$D$$}*"D$ D$D$$E%"D$ D$D$ $E*EEƋEE $E}~class_type == destination->class_type`babl-conversion.csource->class_type == destination->class_typelinear conversions not supported for %splanar conversions not supported for %splane conversions not supported for %s%s unexpectedneither source nor destination model is RGBA (requirement might be temporary)linearWhen loading %s: %s:%i %s() planar Eeeek! plane %s : %s%s to %s%s %s to %sbabl_conversion_new(((void *)0)==(source)?0 :( ((((Babl*)(source))->class_type)>=BABL_INSTANCE ) && ((((Babl*)(source))->class_type)<=BABL_SKY) ?1:0 ) )(((void *)0)==(destination)?0 :( ((((Babl*)(destination))->class_type)>=BABL_INSTANCE ) && ((((Babl*)(destination))->class_type)<=BABL_SKY) ?1:0 ) )idalready got a conversion func planeplanarunhandled argument '%s'sourcedestinationbabl_conversion_processEeeeek! Assertion failed: `BABL_IS_BABL (conversion)`(((void *)0)==(conversion)?0 :( ((((Babl*)(conversion))->class_type)>=BABL_INSTANCE ) && ((((Babl*)(conversion))->class_type)<=BABL_SKY) ?1:0 ) )Eeeeek! Assertion failed: `BABL_IS_BABL (source)`Eeeeek! Assertion failed: `BABL_IS_BABL (destination)`args=(%s, %p, %p, %li) unhandled conversion type: %sABGRdoubleRGBAbabl_conversion%s("%s"): hmpf!%s("%s"): not foundbabl_conversion_from_id%s(%i): not foundA%?bitsiddoublechromalumaRGBalphaAPADplanelinearGenuineIntelAuthenticAMDCentaurHaulsCyrixInsteadGeode by NSCGenuineTMx86TransmetaCPUNexGenDrivenRiseRiseRiseUMC UMC UMC SiS SiS SiS  babl_db_destroyEeeeek! Assertion failed: `db`babl-db.cdbWhen loading %s: %s:%i %s() BablBasebabl_extension_loaddlopen() failed: %sbabl-extension.cinit int babl_extension_init() function not found in extension '%s'destroybabl_extension_init() in extension '%s' failed (return!=0)When loading %s: %s:%i %s() /.soBABL_PATH/usr/lib/babl-0.0HOME?babl_extension%s("%s"): hmpf!%s("%s"): not foundbabl_extension_from_id%s(%i): not foundBABL_TOLERANCEBABL_PATH_LENGTH%s %p %pbabl_fish_path_processEeeeek! Assertion failed: `source`babl-fish-path.csourceEeeeek! Assertion failed: `destination`destinationWhen loading %s: %s:%i %s() ABGRdoubleRGBAư>>AAassert_conversion_findfailed, abortingbabl-fish-reference.cWhen loading %s: %s:%i %s() ref %s %p %pbabl_fish_referenceEeeeek! Assertion failed: `BABL_IS_BABL (source)`(((void *)0)==(source)?0 :( ((((Babl*)(source))->class_type)>=BABL_INSTANCE ) && ((((Babl*)(source))->class_type)<=BABL_SKY) ?1:0 ) )Eeeeek! Assertion failed: `BABL_IS_BABL (destination)`(((void *)0)==(destination)?0 :( ((((Babl*)(destination))->class_type)>=BABL_INSTANCE ) && ((((Babl*)(destination))->class_type)<=BABL_SKY) ?1:0 ) )Eeeeek! Assertion failed: `source->class_type == BABL_FORMAT`source->class_type == BABL_FORMATEeeeek! Assertion failed: `destination->class_type == BABL_FORMAT`destination->class_type == BABL_FORMATprocess_same_modelargs=(%p, %p, %p, %li): trying to handle BablImage (unconfirmed code)babl_fish_reference_processoopsbabl_fish_simpleEeeeek! Assertion failed: `BABL_IS_BABL (conversion)`babl-fish-simple.c(((void *)0)==(conversion)?0 :( ((((Babl*)(conversion))->class_type)>=BABL_INSTANCE ) && ((((Babl*)(conversion))->class_type)<=BABL_SKY) ?1:0 ) )When loading %s: %s:%i %s() ·▁▂▃▄▅▆▇█table_destination_each Eeeeek! Assertion failed: `fish`babl-fish-stats.cfish style='background-color: #69f'%s

path %s to %s

usecs:%li
Processings:%i
Pixels:%li
conversioncosterror
%s%li%etotal%3.0f%e
style='background-color: #f99' 

Reference %s to %s

·

Simple %s to %s

%s
cost: %li
error: %e
Eeeeek! Assertion failed: `0`0When loading %s: %s:%i %s()
%s

%s

bytes/pixel
%i
model
%s
loss
%f
components
%s%s
BABL_TOLERANCE
%s
%s
error: %f cost: %4.0f processings: %i pixels: %li

Conversions

BablFishPath introspection

BablFishPath introspection

Instrumentation and pathlengths.

ư>babl_fishEeeeek! Assertion failed: `source`babl-fish.csourceEeeeek! Assertion failed: `destination`destinationargs=(%p, %p) source format invalidargs=(%p, %p) destination format invalidXWhen loading %s: %s:%i %s() babl_fish_processEeeeek! Assertion failed: `0`0NYIformat_newmatching source component for %s in model %s not foundbabl-format.cWhen loading %s: %s:%i %s() %s (%s as %s) babl_format_newno model specified before component %smaximum number of components (%i) exceeded for %sargs=(%s): model %s already requested%s unexpectedidnamepackedplanarunhandled argument '%s' for format '%s' ABGRdoubleRGBAbabl_format%s("%s"): hmpf!%s("%s"): not foundbabl_format_from_id%s(%i): not foundAbabl_hash_table_initEeeeek! Assertion failed: `hfunc`babl-hash-table.chfuncEeeeek! Assertion failed: `ffunc`ffuncEeeeek! Assertion failed: `htab`htabWhen loading %s: %s:%i %s() babl_hash_table_destroybabl_hash_table_insertEeeeek! Assertion failed: `BABL_IS_BABL(item)`(((void *)0)==(item)?0 :( ((((Babl*)(item))->class_type)>=BABL_INSTANCE ) && ((((Babl*)(item))->class_type)<=BABL_SKY) ?1:0 ) )babl_hash_table_findslaritbartfastbabl_image_from_linearEeeeek! Assertion failed: `format`babl-image.cformatEeeeek! Assertion failed: `format->class_type == BABL_FORMAT || format->class_type == BABL_MODEL`format->class_type == BABL_FORMAT || format->class_type == BABL_MODELEeeek!When loading %s: %s:%i %s() babl_image_new%s unexpectedmaximum number of components (%i) exceededBablInstanceBablTypeBablTypeIntegerBablTypeFloatBablSamplingBablComponentBablModelBablFormatBablConversionBablConversionLinearBablConversionPlaneBablConversionPlanarBablFishBablFishReferenceBablFishSimpleBablFishPathBablImageBablExtenstionBablSkyecho bt>/tmp/babl.gdb;gdb -q --batch -x /tmp/babl.gdb --pid=%i 2>/dev/nullbabl_processEeeeek! Assertion failed: `babl`babl-internal.cbablEeeeek! Assertion failed: `source`sourceEeeeek! Assertion failed: `destination`destinationEeeeek! Assertion failed: `BABL_IS_BABL (babl)`(((void *)0)==(babl)?0 :( ((((Babl*)(babl))->class_type)>=BABL_INSTANCE ) && ((((Babl*)(babl))->class_type)<=BABL_SKY) ?1:0 ) )Eeeeek! Assertion failed: `n > 0`n > 0eekWhen loading %s: %s:%i %s() babl_get_namebabl_introspectIntrospection reportbabl-introspect.c====================================================Data Types:Sampling (chroma subsampling) factors:Components:Models (of components):Pixel formats:conversions:extensions:fishesWhen loading %s: %s:%i %s() item_conversions_introspect conversions from %s: %i '%s'model_introspect components=%i index[%i] = "%s"type_introspect bits=%isampling_introspect horizontal = %i vertical = %iformat_introspect model="%s" planar=%i band[%i] type="%s" sampling="%s" component="%s"conversion_introspect processings:%i pixels:%li error: %ffish_introspecteach_introspect "%s" %i %sS!!!!!k!!!!!!!!!babl_list_init_with_sizeEeeeek! Assertion failed: `list`babl-list.clistWhen loading %s: %s:%i %s() babl_list_destroybabl_list_sizebabl_list_insert_lastEeeeek! Assertion failed: `BABL_IS_BABL(item)`(((void *)0)==(item)?0 :( ((((Babl*)(item))->class_type)>=BABL_INSTANCE ) && ((((Babl*)(item))->class_type)<=BABL_SKY) ?1:0 ) )Eeeeek! Assertion failed: `new_items`new_itemsbabl_list_remove_lastEeeeek! Assertion failed: `list->count > 0`list->count > 0babl_list_get_firstbabl_list_get_lastbabl_list_copyEeeeek! Assertion failed: `from`fromEeeeek! Assertion failed: `to`tobabl_list_eachEeeeek! Assertion failed: `each_fun`each_funSo long and thanks for all the fish.mallocs:%i callocs:%i strdups:%i dups:%i allocs:%i frees:%i reallocs:%i |functions_sanitybabl memory function(s) attempted switched on the flybabl-memory.cWhen loading %s: %s:%i %s() babl_mallocEeeeek! Assertion failed: `size`sizeargs=(%i): failedbabl_dupEeeeek! Assertion failed: `IS_BAI (ptr)`(((BablAllocInfo *) *((void **) ptr - 1))->signature == signature)babl_freememory not allocated by babl allocatorbabl_reallocargs=(%p, %i): failedbabl_callocargs=(%i, %i): failedbabl_sizeofbabl_strdupargs=(%s): failedbabl_strcatEeeeek! Assertion failed: `IS_BAI (dest)`(((BablAllocInfo *) *((void **) dest - 1))->signature == signature)babl_memory_sanitymemory usage does not add up! %s balance: %i-%i=%i babl_model_newmaximum number of components (%i) exceeded for %sbabl-model.csubmodels not handled yet%s unexpectedidnameunhandled argument '%s' for babl_model '%s':::::^:::::::::::::When loading %s: %s:%i %s() ABGRdoubleRGBAbabl_model_is_symmetric%s test: %2.3f %2.3f %2.3f %2.3f clipped: %2.3f %2.3f %2.3f %2.3f trnsfrmd: %2.3f %2.3f %2.3f %2.3fbabl_model%s("%s"): hmpf!%s("%s"): not foundbabl_model_from_id%s(%i): not foundAffffff??MbP?babl_samplingbabl_samping(%i,%i): arguments out of boundsbabl-sampling.cWhen loading %s: %s:%i %s() type_sanitylack of sanity! type '%s' has no conversion to doublebabl-sanity.cWhen loading %s: %s:%i %s() model_sanitylack of sanity! model '%s' has no conversion to 'rgba'id_sanitytype_newEeeeek! Assertion failed: `bits != 0`babl-type.cbits != 0Eeeeek! Assertion failed: `bits % 8 == 0`bits % 8 == 0When loading %s: %s:%i %s() babl_type_newidbitsintegerminmaxmin_valmax_valunhandled argument '%s' for format '%s'Ydoublebabl_type_is_symmetric%s: %f %f %f)babl_type%s("%s"): hmpf!%s("%s"): not foundbabl_type_from_id%s(%i): not foundAf@& .>ư>Y'CbCr u8namebitsidfloatplanebitsidu8u8-lumamax_valmin_valmaxminunsignedintegeru8-chromaplane?bitsidu16planebitsidu32planealphachromalumaidRaGaBaR'G'B'R'aG'aB'acopy_strip_1model-rgb.csrc_bands>0dst_bands>0src*srcdst*dstn>0*src_pitchg3_gamma_2_2g3_inv_gamma_2_2non_premultiplied_to_premultipliedpremultiplied_to_non_premultipliedplanarlinearh??G?(?@ )@ ?@33@Wz>lumaidYYaY'Y'argb_to_gray_2_2model-gray.csrc_bands>0dst_bands>0src*srcdst*dstn>0*src_pitchgray_2_2_to_rgbgray_alpha_premultiplied_to_rgbasrc_bands == 2dst_bands == 4rgba_to_gray_alpha_premultipliedsrc_bands == 4dst_bands == 2non_premultiplied_to_premultipliedpremultiplied_to_non_premultipliedplanarlinearA`"?bX9?v/?h??G?(?@ )@ ?@33@Wz>chromaidCbCrlinearplanarY'CbCr u8nameA`"?bX9?v/?4($ſm3տ?ɑڿܸдh??G?(?@ )@;On?XSֿx=>'1Z? ?@33@    8& 4o C H!Xo`ooo ~&&&&&&&&&''.'>'N'^'n'~'''''''''((.(>(N(^(n(~((((((((()).)>)N)^)n)~)))))))))**.*>*N*^*n*~*********++.+>+N+^+n+~+++++++++,,.,>,N,^,n,~,,,,,,,,,--.->-N-^-n-~---------....>.N.^.n.~.........//./>/N/^/n/~/////////00.0>0N0 ~ ~ ~~~~~!~%~)~@MVftȔܔ (2AĜGCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.comment !  )C 1o|>o``M XV H!H! _8&8&/Zh&h& e`0`0>k4o4oq`o`oX: y$ H= >&  #*`0 @OV0 bo | n  1$ 2$ 2( 2 o 5 p -8p 7$ F7( chp |8 ; <z 5r ZB) B7 B s )hGp 5]u Nu N$ g$Ny }N7 [WE R -T T~ 2U U CV( kVj -V 8ĵCW H.W MW RW W$W <W$ \WD lX* z2X- _X- v Y @\$ D]z H^) ^0 ^B dR )"w B!_  a Va nb; |0c c d 4x gx `f$ hg pg #h 4>KIs djV nrr x Lm nw  )o hpo #2KR^nt$ y ue iu 9vm z y- {- w| 9~ L| $   e| ń $ ~ (e-~   ێ ! ̒ OA ~ $  sf ٗ8   5 Q ? XϞB $$ oܟ@       a )(p   А     ̦ ($  v    5 ʑ N  g 4 s  ,($ L Ӓ t  8T$ L   r 8 <,$  H   t ^ / D K  d  u И L   " T    %  > V N Й g c l q v { { @$ e$         '  `$ 9 lB pI d[ hk tu l} p t x |    6  '     k  N   ž     )   B   [  8$ t \@ s  ؟  )V $       - 2n 7 @$  <`G H5 `4$ cX  gp  b   d-    '    $ @ c8  HB  أ -` 8Ap BLx aA zg    $  B D $  , ' H"3 {"* #$ #[ "$ ;$[ M% f%[ }W&[ &[  '[ (*$ L*[ * a+[ + -$ -[ 3. M.[ `/ z0R >3 E H@ ӥ  65~ %  7 S:r 2 : ~=r +`# D= g# @ SC C D /E zK Kv b eM M *4 CvN 7Qr S lQ PTr |Tm /Ul ! U ! X   # D[ $`# <^ =` _ar zf| f tl* m( Vg* hr h j  kr |k n" n" {2 2 `H!8&h& `0 4o `o  !J :y N* c*v6 / 1v te4   e  ,b> M Mt} \a o) ߮  \H  :W   )5 F A>F Y0 rݩ) 4o o y ]CL I- $ 5 CZF P w cv  eF 0 F ,   | D /x ?y Reh# v8  v )  j '&   $#S .}]] GR3 Zk- X~ D4 / 01 p* { 4 #\ 56HZp WZ e4vJLF O `64 R 7!  "h 2 +k 8] LL- gQ  ~J _F Y L4 5- N _ v +!;N Jhfy a4 { $ x Q6 {  - <a  T7y $Y7FK2]1 gB> {I[4  Z5 M\F D F " +<P$ L_ m }W # e . M > )eK 3 B4  # 5 k A Mg W  l e rj Kl My Z3  L ! !d7 1!Z  ?!\2 M!T!-h!GX }!}[ ![ !0H !? !!,! !4 "  ""9"I"Lz f"6F "@ " "8- "C "h' "8&"0__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxdbhack_hackref_counteach_babl_component_destroycomponent_new__PRETTY_FUNCTION__.4430real_babl_log__PRETTY_FUNCTION__.4497__PRETTY_FUNCTION__.4511each_babl_conversion_destroy__PRETTY_FUNCTION__.4413conversion_newbufcreate_name__PRETTY_FUNCTION__.4544babl_conversion_linear_processbabl_conversion_plane_processbabl_conversion_planar_process__PRETTY_FUNCTION__.4687test_create__PRETTY_FUNCTION__.4928__PRETTY_FUNCTION__.4942convert_double_doublergba_to_rgbause_cpu_accelcpu_accelarch_get_vendorarch_accel_intelarch_accel_amdarch_accel_centaurarch_accel_cyrixsigill_handlersigill_returnarch_accel_sse_os_supportarch_accelaccel.2705.L85.L84.L86.L87.L88db_find_by_namedb_find_by_iddb_hash_by_namedb_hash_by_id__PRETTY_FUNCTION__.4448babl_extension_current_extenderextension_newbabl_quietinit_hookdestroy_hookload_failedeach_babl_extension_destroy__PRETTY_FUNCTION__.5189babl_extension_loadbabl_extension_load_dirbabl_dir_listexpand_pathbabl_extension_load_dir_listdynamic_init_hook__PRETTY_FUNCTION__.5334__PRETTY_FUNCTION__.5348error.4429legal_errormax_length.4446max_path_lengthget_conversion_pathto_formatcurrent_pathget_path_instrumentationfish_pathdestroy_path_instrumentation__PRETTY_FUNCTION__.4593process_conversion_pathtest.4660fmt_rgba_doubletestinit_instrumentation_doneinit_path_instrumentationfish_rgba_to_sourcefish_referencefish_destination_to_rgbasourcedestinationref_destinationdestination_rgba_doubleref_destination_rgba_doublereference_cost__PRETTY_FUNCTION__.4402assert_conversion_find__PRETTY_FUNCTION__.4427convert_to_doubleconvert_from_double__PRETTY_FUNCTION__.4664process_same_model__PRETTY_FUNCTION__.4749__PRETTY_FUNCTION__.4407output_filequxutf8_bartable_destination_eachsource_notable_source_eacherror.4627each_convconversionsfind_fish_pathfind_memcpy_fishmatch_conversion__PRETTY_FUNCTION__.4526C.18.4546__PRETTY_FUNCTION__.4614each_babl_fish_destroyeach_babl_format_destroy__PRETTY_FUNCTION__.4424format_new__PRETTY_FUNCTION__.4600__PRETTY_FUNCTION__.4870__PRETTY_FUNCTION__.4884.L59.L60.L61.L62.L63hash_rehash__PRETTY_FUNCTION__.4556__PRETTY_FUNCTION__.4592__PRETTY_FUNCTION__.4603hash_insert__PRETTY_FUNCTION__.4635image_new__PRETTY_FUNCTION__.4494__PRETTY_FUNCTION__.4619class_names__PRETTY_FUNCTION__.4940__PRETTY_FUNCTION__.5014__PRETTY_FUNCTION__.4412each_introspectitem_conversions_introspect__PRETTY_FUNCTION__.4444model_introspect__PRETTY_FUNCTION__.4461type_introspect__PRETTY_FUNCTION__.4466sampling_introspect__PRETTY_FUNCTION__.4473format_introspect__PRETTY_FUNCTION__.4506conversion_introspect__PRETTY_FUNCTION__.4518fish_introspect__PRETTY_FUNCTION__.4525.L44.L43.L45.L47.L48.L49.L50__PRETTY_FUNCTION__.4428__PRETTY_FUNCTION__.4437__PRETTY_FUNCTION__.4501__PRETTY_FUNCTION__.4517__PRETTY_FUNCTION__.4534__PRETTY_FUNCTION__.4558__PRETTY_FUNCTION__.4594malloc_ffree_ffirst_malloc_usedfirst_free_usedsignaturemallocsfreesstrdupsreallocscallocsdupsbuf.4421mem_stats__PRETTY_FUNCTION__.4440functions_sanity__PRETTY_FUNCTION__.4460__PRETTY_FUNCTION__.4644__PRETTY_FUNCTION__.4659__PRETTY_FUNCTION__.4686__PRETTY_FUNCTION__.4705__PRETTY_FUNCTION__.4754each_babl_model_destroymodel_new__PRETTY_FUNCTION__.4467self.4558reference_formatconstruct_double_format__PRETTY_FUNCTION__.4657__PRETTY_FUNCTION__.4801__PRETTY_FUNCTION__.4815.L26.L27.L28sampling_dbeach_babl_sampling_destroyfoo__PRETTY_FUNCTION__.4416type_sanitybabl_conversion_destinationOK__PRETTY_FUNCTION__.4446model_sanity__PRETTY_FUNCTION__.4469id_sanityeach_babl_type_destroytype_new__PRETTY_FUNCTION__.4449r_intervaltest_initself.4549double_vector_format__PRETTY_FUNCTION__.4573__PRETTY_FUNCTION__.4656__PRETTY_FUNCTION__.4670done.4542init_ticksstart_timemeasure_timetypesmodelsconvert_double_floatconvert_float_doubleconvert_u8_doubleconvert_u8_double_scaledconvert_double_u8convert_double_u8_scaledconvert_u8_luma_doubleconvert_double_u8_lumaconvert_u8_chroma_doubleconvert_double_u8_chromaconvert_u16_doubleconvert_u16_double_scaledconvert_double_u16convert_double_u16_scaledconvert_u32_doubleconvert_u32_double_scaledconvert_double_u32convert_double_u32_scaledcomponentsformats__PRETTY_FUNCTION__.3653copy_strip_1__PRETTY_FUNCTION__.3749g3_gamma_2_2linear_to_gamma_2_2__PRETTY_FUNCTION__.3859g3_inv_gamma_2_2gamma_2_2_to_linear__PRETTY_FUNCTION__.3978non_premultiplied_to_premultiplied__PRETTY_FUNCTION__.4088premultiplied_to_non_premultipliedrgba2rgba_gamma_2_2_premultipliedrgba_gamma_2_2_premultiplied2rgbargba2rgba_gamma_2_2rgba_gamma_2_22rgbargba_to_grayargba_to_gray__PRETTY_FUNCTION__.3698rgb_to_gray_2_2__PRETTY_FUNCTION__.3804gray_2_2_to_rgbgraya_to_rgbagray_to_rgba__PRETTY_FUNCTION__.3954gray_alpha_premultiplied_to_rgba__PRETTY_FUNCTION__.4054rgba_to_gray_alpha_premultiplied__PRETTY_FUNCTION__.4158__PRETTY_FUNCTION__.4267rgba2gray_gamma_2_2_premultipliedgray_gamma_2_2_premultiplied2rgbargba_to_ycbcrargba_to_ycbcrycbcra_to_rgbaycbcr_to_rgba_GLOBAL_OFFSET_TABLE___statstat__dso_handle__i686.get_pc_thunk.cx__i686.get_pc_thunk.bx_DYNAMICbabl_image_class_destroybabl_format_from_idbabl_hash_table_findsprintf@@GLIBC_2.0babl_componentbabl_format_newgetpid@@GLIBC_2.0babl_internal_destroybabl_extension_class_for_eachbabl_format_lossbabl_fish_reference_processbabl_hash_by_intbabl_list_get_lastrandom@@GLIBC_2.0babl_base_initbabl_list_sizebabl_memory_sanitybabl_type_is_symmetricbabl_formatbabl_list_get_firstbabl_db_exist_by_idbabl_list_copysignal@@GLIBC_2.0__xstat@@GLIBC_2.0babl_hash_table_destroy__gmon_start___Jv_RegisterClassesbabl_type_class_destroybabl_fish_class_destroybabl_list_init_with_sizebabl_format_get_n_componentsgetenv@@GLIBC_2.0_finibabl_type_from_idsystem@@GLIBC_2.0pow@@GLIBC_2.0dlclose@@GLIBC_2.0babl_conversionmemset@@GLIBC_2.0babl_fish_class_initbabl_fish_simplebabl_samplingbabl_db_findbabl_rel_avg_errorstrrchr@@GLIBC_2.0babl_list_insert_lastbabl_format_class_destroy__assert_fail@@GLIBC_2.0babl_base_model_rgbbabl_format_get_typebabl_base_type_u16babl_base_destroybabl_fish_statsbabl_formats_initbabl_class_namebabl_model_from_idreaddir@@GLIBC_2.0babl_fish_get_idgettimeofday@@GLIBC_2.0babl_sanitybabl_list_destroyfree@@GLIBC_2.0babl_fish_referencebabl_format_get_bytes_per_pixelbabl_image_from_linearbabl_formats_countbabl_typebabl_freebabl_extension_quiet_logbabl_component_newdlsym@@GLIBC_2.0babl_model_class_initbabl_db_initfflush@@GLIBC_2.0opendir@@GLIBC_2.0babl_fish_class_for_eachbabl_base_type_u32babl_initbabl_list_eachbabl_type_class_for_eachfclose@@GLIBC_2.1babl_set_extender_setjmp@@GLIBC_2.0babl_db_insertbabl_type_newbabl_total_usecsbabl_conversion_class_destroybabl_image_class_initbabl_component_class_for_eachbabl_modelmemcpy@@GLIBC_2.0babl_fish_processstrlen@@GLIBC_2.0fopen@@GLIBC_2.1babl_get_versionbabl_processbabl_extension_basebabl_conversion_class_initbabl_cpu_accel_set_usebabl_base_model_graystrcpy@@GLIBC_2.0dlopen@@GLIBC_2.1longjmp@@GLIBC_2.0babl_db_destroybabl_conversion_class_for_eachbabl_component_class_initbabl_ticksbabl_reallocatoi@@GLIBC_2.0babl_core_initbabl_extension_from_idbabl_model_class_for_eachbabl_list_initbabl_hash_table_sizeatof@@GLIBC_2.0babl_cpu_accel_get_supportbabl_get_namebabl_type_class_initbabl_hash_by_strbabl_model_newbabl_component_from_idsrandom@@GLIBC_2.0closedir@@GLIBC_2.0fwrite@@GLIBC_2.0babl_exitbabl_conversion_newfprintf@@GLIBC_2.0babl_db_eachbabl_list_remove_last__bss_startmalloc@@GLIBC_2.0babl_dupbabl_db_exist_by_namebabl_image_newbabl_model_class_destroybabl_base_type_floatfputc@@GLIBC_2.0babl_introspectdlerror@@GLIBC_2.0babl_set_freebabl_set_mallocbabl_conversion_findbabl_diebabl_extensionbabl_sampling_class_destroybabl_backtrackbabl_mallocbabl_extension_class_destroybabl_fish_dbbabl_internal_init_endstdout@@GLIBC_2.0babl_strcatbabl_format_has_alphababl_hash_table_initbabl_base_model_ycbcrbabl_fish_pathbabl_fish_path_processbabl_conversion_from_idvfprintf@@GLIBC_2.0babl_model_is_symmetricbabl_format_with_model_as_typebabl_callocbabl_extension_class_initbabl_db_countbabl_extender_edatasnprintf@@GLIBC_2.0babl_conversion_costbabl_db_existbabl_strdupbabl_conversion_errorbabl_hash_table_insertrint@@GLIBC_2.0strcmp@@GLIBC_2.0babl_fishbabl_format_class_for_eachbabl_process_cost__cxa_finalize@@GLIBC_2.1.3exit@@GLIBC_2.0babl_sampling_class_for_eachbabl_component_class_destroybabl_sampling_class_initbabl_sizeofbabl_format_class_initbabl_conversion_processbabl_base_type_u8_initbabl_hmpf_on_name_lookups./babl-0.1.0-i686/usr/lib/babl-0.0/0000755000000000000000000000000011272022167014507 5ustar rootroot./babl-0.1.0-i686/usr/lib/babl-0.0/gimp-8bit.la0000755000000000000000000000150011272022125016616 0ustar rootroot# gimp-8bit.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='gimp-8bit.so.0' # Names of this library. library_names='gimp-8bit.so.0.0.0 gimp-8bit.so.0 gimp-8bit.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /usr/lib/libbabl-0.0.la -ldl -lm' # Version information for gimp-8bit. current=0 age=0 revision=0 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' ./babl-0.1.0-i686/usr/lib/babl-0.0/gimp-8bit.so0000777000000000000000000000000011272022167021444 2gimp-8bit.so.0.0.0ustar rootroot./babl-0.1.0-i686/usr/lib/babl-0.0/sse-fixups.so.0.0.00000755000000000000000000001442711272022147017623 0ustar rootrootELF4p4 ($ $ $ $$048 88Qtd  ?c +   NXs6TX|4 T"__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassesbabl_componentbabl_typebabl_modelbabl_format_newbabl_cpu_accel_get_supportbabl_conversion_newrintlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endsse-fixups.so.0GLIBC_2.1.3GLIBC_2.0 si ii LP(,048<@ DHUS[t?"]X[] hhhhh h($h0(h8p,h@`US[@8uBt% 0P4ҋ4uƃ8]Í'US[tt P҃]ÐUWVSLÒ$Ǎ$Eč$yEȍ$hE̍$ƍ$D$|$UĉT$UȉT$ ỦT$t$$*E荃$ Ǎ$EЍ$Eԍ$E؍$ƍ$D$|$UЉT$UԉT$ U؉T$t$$E썃$xǍ$hE܍$WE$vƍ$vD$|$U܉T$ UT$t$$ EX%tjJ%t\D$(D$ D$ED$E$#D$D$ D$ED$E$L[^_]US]EE؋EEEsE݃ɃE$ݝH,HE}x}NEWƅWE WE E݃ɃE$LݝX,XE}x}NEgƅgE gE E݃ɃE$ݝh,hE}x}NEwƅwE wE E݃ɃE$ݝx,xE}x}NEEEE UE m}EEE(()E(YE)EE()E(M(E])EW)E(M(E_)E-EEoEEUE E UE E (M(E)E-EEoEEUE E UE E m}?wE[]USEE؋E6EEE݃ɃE$ݝX,XE}x}NEgƅgE gE E݃ɃE$ݝh,hE}x}NEwƅwE wE E݃ɃE$Yݝx,xE}x}NEEEE UE Em}EEE(()E(YE)EE()E(M(E])EW)E(M(E_)E-EEoEEUE E UE E (M(E)E-EEoEEUE E m}LwEĴ[]Ë$ÐUVS[Ò P@t֍ЋFu[^]ÐUS[LZ[]ABGRfloatRGBAu8RGBlinearo@CCCC     H(oHoo&o8>N^n~L0GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.commentX!   ) 1o&&">oHH@M (V H _/Z((ek q @y $$ ,, 44 88  0LLTTTZ) $,4* @TOPV@ b(o0|  4  D ,  L p  #8 &H(     $,48LT,;K Z n  t~6TX|4 T"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxconv_rgbaF_linear_rgb8_linearconv_rgbaF_linear_rgba8_linear_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finibabl_typebabl_modelbabl_cpu_accel_get_supportbabl_conversion_new__bss_start_endinit_edatarint@@GLIBC_2.0__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/usr/lib/babl-0.0/naive-CMYK.la0000755000000000000000000000150611272022125016667 0ustar rootroot# naive-CMYK.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='naive-CMYK.so.0' # Names of this library. library_names='naive-CMYK.so.0.0.0 naive-CMYK.so.0 naive-CMYK.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /usr/lib/libbabl-0.0.la -ldl -lm' # Version information for naive-CMYK. current=0 age=0 revision=0 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' ./babl-0.1.0-i686/usr/lib/babl-0.0/CIE-Lab.so.00000777000000000000000000000000011272022166020371 2CIE-Lab.so.0.0.0ustar rootroot./babl-0.1.0-i686/usr/lib/babl-0.0/gggl-lies.so.00000777000000000000000000000000011272022166021725 2gggl-lies.so.0.0.0ustar rootroot./babl-0.1.0-i686/usr/lib/babl-0.0/CIE-Lab.so.0.0.00000755000000000000000000003354411272022145016610 0ustar rootrootELF4'4 (%%%55@< %55Qtd    R + # ?pa{6?& 6"__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassesbabl_component_newbabl_componentbabl_model_newbabl_modelbabl_conversion_newbabl_typebabl_format_newrintbabl_type_newpowcbrtlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endCIE-Lab.so.0GLIBC_2.1.3GLIBC_2.0 si ii 66x6|666666666 6 6 6 6 66US[ô1t?fX[] hhhhh h($h0(h8p,h@`0hHP4hP@8hX0<h` US[Ø0\uBt% @PDҋDuƃ\]Í'US[(0tt P҃]ÐUDUS/D$\$D$bD$i$jD$bD$o$J[]UWVS,LV/o$ƍi$Ǎ\$D$t$|$ D$uD$}$$hǍo$XEi$Gƍ\$7D$|$UT$t$ D$D$}$,[^_]UXrE]E]E]EЉD$ E؉D$ED$E\$E\$E$jE EE EE EE E m}uEUSd-|E]E]E]EȉD$ EЉD$E؉D$E\$E\$E$KE EE EE EE EE m}vEd[]UhE]E]E]E]EȉD$ EЉD$E؉D$E\$E\$E$,E EE EE EE EE E m}jEUhE]E]E]E]EȉD$ EЉD$E؉D$E\$E\$E$E EE EE EE EE E m}jEUVS +u$ƍ$D$D$ D$t$$$ƍu$D$ D$ D$t$$}$Oƍ$?D$D$ D$t$$5$ƍ$D$ZD$ D$t$$ [^]UWVS\ó*o$Ǎi$E\$Eč$=ƍu$]D$|$UT$UĉT$t$ D$D$}$$Ǎo$Eȍi$tE̍\$cEЍ$ƍ$D$ |$UȉT$ỦT$UЉT$t$ D$D$}$o$ƍ$3Ǎi$Eԍ$E؍\$E܍$Eu$D$$t$ |$UԉT$U؉T$U܉T$UT$ D$D$}$Wo$9ƍ$yǍi$E䍃$XE荃\$E썃$6Eu$UD$$t$ |$UT$UT$UT$UT$ D$D$}$\[^_]US4'ED$(ED$$ED$ E D$ED$D$D$݃\$$4[]U(UMEEE EEEEEU܈MyE EE;E~E]HE;E}E]7U܋E)P$d$UE܉)P$d$EeE]E$EE,E$E(E m0}0yE0US4&ED$(ED$$ED$ E D$ED$D$D$݃\$$4[]USDyÃ&UMEEE EEE؋EE܈UԈME ]EEw EԈE`EEw EЈEGEeEeUEԉ)P$d$EP$d$$],EȈEU$EE(E E,E$m0}0^E0D[]US,Ý%ED$(ED$$ED$ E D$ED$D$D$݃\$݃$,[]US40:%ED$(ED$$ED$ E D$ED$D$D$݃\$݃$Z4[]UVS0$D$,݃\$$ D$ \$D$D$D$ !D$*D$$`D$,݃\$$ D$ ݃\$D$D$D$ !D$*D$$$ƍ$D$D$ 2D$t$$$ƍ$vD$D$ 2D$t$$$>ƍ$.D$WD$ 2D$t$$T$ƍ$D$D$ 2D$t$$ 0[^]US4"ED$(ED$$ED$ E D$ED$D$D$݃\$$4[]U(UMEEE EEEEEfUfMyE EE;E~E]HE;E}E]7U܋E)P$d$UE܉)P$d$EeE]E$EE,E$E(E m0}0yE0US4!ED$(ED$$ED$ E D$ED$D$D$݃\$$4[]USDWa!UMEEE EEE؋EEfUfME ]EEw EfEbEEw EfEHEeEeUEԉ)P$d$EP$d$$],EfEU$EfE,E$E(E m0}0ZE0D[]US,k u ED$(ED$$ED$ E D$ED$D$D$݃\$݃$,[]US4  ED$(ED$$ED$ E D$ED$D$D$݃\$݃$T4[]UVS@ îD$,݃\$$ D$ \$D$D$D$ !D$*D$$8D$4݃\$, D$(݃\$ D$D$D$!D$*D$ D$8D$$$ƍ$D$D$ 2D$t$$$Jƍ$:D$4D$ 2D$t$$`$ƍ$D$D$ 2D$t$$$ƍ$D$D$ 2D$t$$@[^]UUVS0 ÊEEE EE(uEكE\$$ݜE}~σ0[^]U ,E@E0@ɋE@E0@E E@E0@ɋE@E0@E XE@E@ɋE@E@E XU E@E0ɋEE0@U EE0@ɋE@E0ZU E@EɋEE@ZU 0EE0@ɋE@E0U 0E@E0ɋEE0@ZU 0EE@ɋE@EZEE ɋE@E E@E 0]Es EE uE E @uE XE @uE XU E uU E @uZU E @uZU 0E 0uU 0E 0@uZU 0E 0@uZEEUSË$݃l݃tݛ݃l݃t݃tݛ݃<]݃L]݃\]݃D]݃T]݃d]݃<݃D]݃L݃T]݃\݃d]؍PD$E$݅P݃݅X݅`݃]݅h݃݅p݅x݃]E݃EE݃]EMݛEMݛEMݛEMݛEMݛEMݛEMݛEMݛEMݛD$$[]U E]E ]E]݁M݁ M݁ ME݁ M݁ M݁$ ME ݁, M݁4 M݁< MEU E]E ]E]݁M݁M݁ME݁M݁M݁ME ݁M݁M݁MEUSTzÄE]E ]E]EwCE݃w E$݃݃]E݃]]E$e]݃E$Oe݃]݃E$.E݃]ЋEEE EEET[]US$ÓEEE EE݃wE$#]E݃݃]E$[]UST)3E]E ]E]݃|Ew,E݃݃]E]EME]$E݃]E݃݃]E݃E]E$P݃]E݃E]E$)݃]ЋEEE EEET[]U/=EEE EE݁wEMM]E݁݁]EUS|u4ǃ|[]U(EEE EEEEEEEEEED$ED$E$TED$ED$E$EE EE$EE(USd2<EEE EEEEEEEEEED$ED$E$ED$ED$E$"Ew]"Ew]E]E]E]Ew]"Ew]E]E]E]Ew]"Ew]E]E]E]EE EE$EE(d[]Ë $Ë$ÐUVS[ P@t֍ЋFu[^]ÐUS[ôZ[]CIE LchromaCIE aCIE bCIE LabnameACIE Lab alphaRGBAlinearfloatCIE Lab floatdoubleCIE Lab alpha floatCIE u8 abCIE u8 LCIE Lab u8CIE u16 abCIE u16 LCIE Lab u16max_valmin_valbitsunsignedintegerplaneid@z?`?@33?@33?@33?Q?`}? ?@Y@_@`I@IC@#?]@0@`f:@@@i@`%@`?i@x{?  #T % 6h\4(oooo5 *:JZjz65GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.comment! TTP)%1o*>o@M 44(V \\h _/Zek##q##y%%5%5%5%5%x6x& 6&@6&6& &Z&'+Z 2555* @6O6VP b5o5|% 5#  n   ?  !v  <": 8  '  4!1 A_ U n_  c >c  _  _  ,c Bfc X b$ f$ j$ n$ r$ v$ z$ ~$ % `  7M  77 ?H?H ]  ` E  $E@$ƍF$D$|$|T$UT$ UT$t$$KEč8$*Ǎ:$E<$ E>$EK$'ƍF$'D$|$UT$UT$ UT$t$$Eȍ8$ǍN$EQ$xET$gEK$ƍW$D$|$UT$UT$ UT$t$$)E̍:$Ǎ<$E>$E@$ƍ_$D$|$UT$ UT$t$$EЍ:$Ǎ<$E>$nEK$ƍ_$D$|$UT$ UT$t$$7EԍN$ǍQ$ET$EK$$ƍc$$D$|$UT$ UT$t$$E؍8$Ǎj$E@$ƍl$D$|$ UT$t$$]E܍8$<Ǎj$,EK$[ƍl$[D$|$ UT$t$$E8$Ǎo$EK$ƍr$D$|$ UT$t$$E䍃j$zƍ@$Ǎj$D$ t$|$$RE荃j$1ƍK$aǍj$aD$ t$|$$ E썃o$ƍK$Ǎo$D$ t$|$$ED$D$ vD$EĉD$Eȉ$D$D$ vD$EĉD$Ẻ$D$D$ vD$EЉD$Eԉ$~D$D$ vD$EЉD$E؉$PD$D$ vD$EĉD$Eԉ$"D$~D$ vD$EĉD$E؉$D$XD$ vD$E܉D$E$D$D$ vD$E܉D$E$D$jD$ vD$EĉD$E$jD$D$ vD$EĉD$E$o00@M pp(V H _/Zedkq00xy         0(!(!@!0!  0!Z!\&> <+%   * @@!O,!V  b o |   \l `!r `%(  &* C* c  v P& h b  m$ 1$ Mw iw . hz "K K  (! 6 M  0p   0       (!@!Veu   0!`):. 0!"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxtables_initlut_lineargamma_2_2_to_linearlut_gamma_2_2conv_rgba8_linear_rgbaF_linearconv_rgba8_gamma_2_2_rgbaF_linearconv_rgb8_linear_rgbF_linearconv_rgb8_gamma_2_2_rgbF_linearconv_rgb8_linear_rgbaF_linearconv_rgb8_gamma_2_2_rgbaF_linearconv_ga8_linear_gaF_linearconv_ga8_gamma_2_2_gaF_linearconv_ga8_linear_rgbaF_linearconv_ga8_gamma_2_2_rgbaF_linearconv_g8_linear_gF_linearconv_g8_gamma_2_2_gF_linearconv_g8_linear_rgbaF_linearconv_g8_gamma_2_2_rgbaF_linearconv_rgbaF_linear_rgb8_linearconv_rgbaF_linear_rgba8_linearu8_gamma_2_2_to_float_linearu8_linear_to_float_linear_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.cx__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finipow@@GLIBC_2.0babl_typebabl_modelbabl_conversion_new__bss_start_endinit_edatarint@@GLIBC_2.0__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/usr/lib/babl-0.0/gggl.so.0.0.00000755000000000000000000005175411272022146016440 0ustar rootrootELF4\B4 (d?d?@@@@@@@Qtd   Dh + = S]x@AE @A?"__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassesrintbabl_componentbabl_typebabl_modelbabl_format_newbabl_conversion_newlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endgggl.so.0GLIBC_2.1.3GLIBC_2.0 si ii (A,A@@@AA AAAAA AUS[0=t?9X[] hhhhh h($h0(h8pUS[l<HuBt% 0P4ҋ4uƃH]Í'US[;tt P҃]ÐUSDq8;h4ǃhEEE݃]EٜE}~EEE݃]EٜE}~ظEfEfEEs EfEXEs EfE=E݃$D],EEE݃$&],EfEEE鈄EEfSEfEEfQD[]UEEEUWVS<6L:0$<Ǎ2$,5$8$;$ ƍB$ D$|$T$T$ T$t$$E0$Ǎ2$5$u8$aJ$}ƍB$}D$|$T$T$ T$t$$E0$Ǎ2$5$8$P$ƍB$D$|$T$T$ T$t$$tE0$SǍ2$C 5$/8$T$7ƍB$7D$|$ T$T$ T$t$$E0$ǍW$[$_$x J$ƍc$D$|$T$T$ T$t$$.E0$ ǍW$$[$(_$,P$ƍc$D$|$$T$(T$ ,T$t$$E0$jǍW$Z0[$F4_$28T$Nƍc$ND$|$0T$4T$ 8T$t$$E2$Ǎ5$<8$@J$ƍn$D$|$D$UD$ D$ED$E$D$D$ D$ED$E$D$D$ D$EĉD$E܉$D$D$ D$EȉD$E$D$D$ D$ẺD$E$XD$D$ D$ED$E$*D$D$ D$ED$E$D$BD$ D$ED$E$D$D$ D$EĉD$EЉ$D$D$ D$EȉD$Eԉ$rD$D$ D$ẺD$E؉$DD$UD$ D$ED$E$D$yD$ D$ED$E$D$D$ D$EȉD$Eĉ$D$SD$ D$EĉD$Eȉ$D$D$ D$ED$E$^D$D$ D$ED$E$0D$D$ D$ẺD$Eĉ$D$D$ D$ẺD$Eȉ$D$]D$ D$ED$E$D$]D$ D$ED$E$xD$D$ D$EĉD$Ẻ$JD$D$ D$EȉD$Ẻ$D$D$ D$ẺD$E$D$eD$ D$ED$Ẻ$D$D$ D$EĉD$E$D$xD$ D$ED$Eĉ$dD$D$ D$EȉD$E$6D$xD$ D$ED$Eȉ$D$D$ D$ED$E$D$0D$ D$ED$E$D$UD$ D$ED$E$~D$D$ D$EĉD$E܉$PD$D$ D$EȉD$E$"D$GD$ D$ED$E$D$hD$ D$ED$E$D$iD$ D$ED$E$D$xD$ D$ED$Eȉ$jD$D$ D$ED$E$EE U EU EE EE m}uEUlEE:E'U E݁],EfE EE}~ӃEm}uEU EEVEEEE]EE}~E݁݁ ],E‹E E Em}uEUVEEEM EЉ)։EEЙ}EEfE HEЉ)։EEЙ}EEfE HEЉ)։EEЙ}EEfE PEfE Em}E^]UEEEE E Em}uԋE[]UED$E D$E$EU UЉD$E D$E$nEU UЉD$E D$E$EU ED$E D$E$EU ED$E D$E$EUUЉD$E D$E$&EUUЉD$E D$E${EUUЉD$E D$E$EEVUUUEmыE)‰UUЉD$E D$E$EUED$E D$E$eEUED$E D$E$EUED$E D$E$PHUED$E D$E$rEË $Ë$ÐUVS[> P@t֍ЋFu[^]ÐUS[tZ[]`}? ?@AB'G'R'doubleR'G'B'Afloatu16u8B'aG'aR'aR'aG'aB'aAR'G'B'Y'Y'AY'aY'aACrCbu8-chromau8-lumaY'CbCrY'CbCr u8nameY'CbCrAlinearo@@A`"?bX9?v/?j+ſJ4տ?sڿU0*д@A@_8? m9?Uy?@@;On?JOcֿ|~!<'1Z?  = @@|T(oooo@"2BRbr(A @j?3l?GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.commentT! )1o >o@M TT(V ||@ _/Zet9k==q>>Py`?`?@@@@@@@@@@ @@,(A(A@A@A@ @AZAlFo LN@@@* @@AO,AV b@o @|`? @= `A,Z AEEE > > 0A8A > }=( +M=0 <%=( N<( `<* o<E ~d<* :<* <( ;( ;* ;* p;& ;^ :. :Y e:& :a &9& 49Y >_9& L)96 VM8 gq7 x"6O 4O 4 3 B2 2& 17 1M K1M 0W 03 U0l # 0H //n <]/B I. Xp.T g- w(- ?, `+ a* )~ )b &)[ %( 'R D' & /& A% R$( c\$( t$5 }$/ @(A= = @T|  = > `? @@@@@@(A@A  "= (2=Q@A]Eb g@An~"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxtable_initedtable_inittable_8_Ftable_16_Ftable_F_8table_F_16gggl_float_to_index16lxnlynxnnznnLRAMPconv_rgbaF_rgba8conv_rgba8_rgbaFconv_rgbaF_rgba16conv_rgba16_rgbaFconv_rgbF_rgb8conv_rgb8_rgbFconv_rgbF_rgb16conv_rgb16_rgbFconv_rgba8_rgba16conv_rgba16_rgba8conv_rgb8_rgb16conv_rgb16_rgb8conv_gaF_ga8conv_F_8conv_ga8_gaFconv_8_Fconv_gaF_ga16conv_F_16conv_ga16_gaFconv_16_Fconv_ga16_ga8conv_16_8conv_rgbaF_rgbAFconv_rgbAF_rgbaFconv_yuv8_rgb8conv_rgb8_yuv8conv_yuvF_rgbFconv_rgbF_yuvFconv_yuvaF_rgbaFconv_ga8_ga16conv_8_16conv_gaF_gAFconv_gAF_gaFconv_rgbaF_rgbFconv_gaF_gFconv_rgbF_rgbaFconv_gF_gaFconv_rgbF_gFconv_gF_rgbFconv_rgbaF_gaFconv_gaF_rgbaFconv_rgbaF_rgb8conv_rgbA8_rgbaFconv_rgbA8_rgba8conv_rgba8_rgbA8conv_rgbA16_rgba16conv_rgbaF_g8conv_rgbaF_rgb16conv_rgb8_rgba8conv_rgbA8_rgb8conv_rgba8_rgb8conv_rgbaF_rgbA8conv_rgbaF_rgbA16conv_rgbA16_rgbaFconv_rgbaF_yuvaFconv_rgbaF_rgbaDconv_rgbaD_rgbaFconv_D_Fconv_F_D_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.cx__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finibabl_typebabl_modelbabl_conversion_new__bss_start_endinit_edatarint@@GLIBC_2.0__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/usr/lib/babl-0.0/gimp-8bit.so.00000777000000000000000000000000011272022167021602 2gimp-8bit.so.0.0.0ustar rootroot./babl-0.1.0-i686/usr/lib/babl-0.0/gggl.so.00000777000000000000000000000000011272022167020042 2gggl.so.0.0.0ustar rootroot./babl-0.1.0-i686/usr/lib/babl-0.0/gggl-lies.la0000755000000000000000000000150011272022124016667 0ustar rootroot# gggl-lies.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='gggl-lies.so.0' # Names of this library. library_names='gggl-lies.so.0.0.0 gggl-lies.so.0 gggl-lies.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /usr/lib/libbabl-0.0.la -ldl -lm' # Version information for gggl-lies. current=0 age=0 revision=0 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' ./babl-0.1.0-i686/usr/lib/babl-0.0/CIE-Lab.so0000777000000000000000000000000011272022166020233 2CIE-Lab.so.0.0.0ustar rootroot./babl-0.1.0-i686/usr/lib/babl-0.0/gegl-fixups.so0000777000000000000000000000000011272022166022527 2gegl-fixups.so.0.0.0ustar rootroot./babl-0.1.0-i686/usr/lib/babl-0.0/sse-fixups.so0000777000000000000000000000000011272022167022260 2sse-fixups.so.0.0.0ustar rootroot./babl-0.1.0-i686/usr/lib/babl-0.0/gggl.la0000755000000000000000000000144211272022124015742 0ustar rootroot# gggl.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='gggl.so.0' # Names of this library. library_names='gggl.so.0.0.0 gggl.so.0 gggl.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /usr/lib/libbabl-0.0.la -ldl -lm' # Version information for gggl. current=0 age=0 revision=0 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' ./babl-0.1.0-i686/usr/lib/babl-0.0/sse-fixups.so.00000777000000000000000000000000011272022167022416 2sse-fixups.so.0.0.0ustar rootroot./babl-0.1.0-i686/usr/lib/babl-0.0/gegl-fixups.la0000755000000000000000000000151411272022123017253 0ustar rootroot# gegl-fixups.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='gegl-fixups.so.0' # Names of this library. library_names='gegl-fixups.so.0.0.0 gegl-fixups.so.0 gegl-fixups.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /usr/lib/libbabl-0.0.la -ldl -lm' # Version information for gegl-fixups. current=0 age=0 revision=0 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' ./babl-0.1.0-i686/usr/lib/babl-0.0/gggl.so0000777000000000000000000000000011272022167017704 2gggl.so.0.0.0ustar rootroot./babl-0.1.0-i686/usr/lib/babl-0.0/sse-fixups.la0000755000000000000000000000150611272022126017133 0ustar rootroot# sse-fixups.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='sse-fixups.so.0' # Names of this library. library_names='sse-fixups.so.0.0.0 sse-fixups.so.0 sse-fixups.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /usr/lib/libbabl-0.0.la -ldl -lm' # Version information for sse-fixups. current=0 age=0 revision=0 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' ./babl-0.1.0-i686/usr/lib/babl-0.0/gegl-fixups.so.0.0.00000755000000000000000000002701111272022145017736 0ustar rootrootELF4L"4 ( 0    Qtd  Hl +  DWa|0!) - 0!?"__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassesrintpowbabl_componentbabl_typebabl_modelbabl_format_newbabl_conversion_newlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endgegl-fixups.so.0GLIBC_2.1.3GLIBC_2.0 si ii (!,!   !! !!!!! !$!US[t?&X[] hhhhh h($h0(h8p,h@`US[,HuBt% 0P4ҋ4uƃH]Í'US[ütt P҃]ÐUVS@,h ǃhE:E݃]UE䉄uE$]EٜE}~EfEfEEs EE]Es EEDE݃$U],EEE$݃$/],EȈEEEꈄEE누EރfEEfO@[^]US$8EEE EE݃w*E݃݃݃\$$J]E݃]E$[]US$sEEE EE݃w*݃\$E$݃݃]E݃]E$[]UEEEUS$ ?EE܋E EEEE܃ EE{EE܋EE݃w EEu$wE} EE!}~ EE EUEE}{EEEEUEEEEm}#E$[]UVS /EEE EEEbE$EuE$uE$eEEm}uE[^]UVS$? ÒEEE EEEE EE݃wEEEku]EM$EuEM$uEM$~EEm}IE$[^]U(EEE EEEEE}t/EЉ)щEE؉Й}؉E؋E؈EEEU߈MM}t/EЉ)щEE؉Й}؉E؋E؈EEUMEE}t,EЉ)щEE؉Й}؉E؋E؈EEUMUEEEm}EUEEE EEEQE EEMEUEMUEMU EEEm}uEU EEE EEErE Eu]E݁wEEMEUEMUEMU EEEm}uEUVS$ bEEE EEEE Eu]E݃w)MUEE~EM$EuEM$buEM$?uE$$EEm}E$[^]UWVSI$aǍ$QE$@E$/E $^ƍ&$^D$|$UT$UT$ UT$t$$E؍$Ǎ+$E.$E1$E $ƍ4$D$|$UT$UT$ UT$t$$`E܍$?Ǎ$/E$E$ E<$<ƍ&$E䍃$ǍP$ ET$EX$E<$ƍ\$D$ |$UT$UT$UT$t$ D$gD$u$E荃?$xǍB$hEE$WEč<$ƍz$D$|$UT$ UĉT$t$$ E썃$ǍE$EȍB$E̍?$EЍ<$ƍz$D$ |$UȉT$ỦT$UЉT$t$ D$D$u${ED$qD$ D$E܉D$E؉$D$D$ D$E؉D$E܉$gD$D$ D$ED$E܉$9D$D$ D$E؉D$E$ D$D$ D$E܉D$E$D$D$ D$E؉D$E$D$D$ D$ED$E؉$D$D$ D$ED$E؉$SD$aD$ D$ED$E܉$%D$D$ D$ED$E܉$D$LD$ D$ED$E$Ĝ[^_]US! EE|E]E$E EE E]E$xE EE E]E$PE EE Em}vE[]Uu EEtU EE EU EE EU EE EU EE Em}uEU EEeU EE EU EE EU EE EU ?E m}uEË $Ë$ÐUVS[> P@t֍ЋFu[^]ÐUS[ Z[]ABGRfloatRGBABaGaRaRaGaBaAu8B'G'R'R'G'B'AR'aG'aB'aR'aG'aB'aAB'aG'aR'aA u8nameR'G'B'PADB'aG'aR'aPAD u8linearo@ ?(?G?@33@@ )@h??Wz>     Ht(o4ooo *:JZjz(! GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.commentX!   )1o">o44@M tt(V H _/Ze4kqy         0(!(!@!0!@ 0!Z!\&;  +   * @@!O,!V0 b o |   `!lH !r %&r ) ) , = NY  ^D % oi z      x   (!  %  4t          (!@!.=M \ p v0!) - 0!"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxtable_initedtable_inittable_8_Fgamma_2_2_to_lineartable_8g_Flinear_to_gamma_2_2table_F_8table_F_8ggggl_float_to_index16conv_rgbAF_sdl32conv_rgbaF_sdl32conv_rgbAF_rgb8conv_bgrA8_rgba8conv_rgbaF_rgbAFconv_rgbAF_rgbaFconv_rgbAF_lrgba8conv_rgb8_rgbaFconv_rgba8_rgbaFconv_rgbaF_rgb8_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.cx__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finipow@@GLIBC_2.0babl_typebabl_modelbabl_conversion_new__bss_start_endinit_edatarint@@GLIBC_2.0__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/usr/lib/babl-0.0/naive-CMYK.so0000777000000000000000000000000011272022167021552 2naive-CMYK.so.0.0.0ustar rootroot./babl-0.1.0-i686/usr/lib/babl-0.0/gggl-lies.so0000777000000000000000000000000011272022167021570 2gggl-lies.so.0.0.0ustar rootroot./babl-0.1.0-i686/usr/lib/babl-0.0/gegl-fixups.so.00000777000000000000000000000000011272022166022665 2gegl-fixups.so.0.0.0ustar rootroot./babl-0.1.0-i686/usr/lib/babl-0.0/CIE-Lab.la0000755000000000000000000000146411272022122016120 0ustar rootroot# CIE-Lab.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='CIE-Lab.so.0' # Names of this library. library_names='CIE-Lab.so.0.0.0 CIE-Lab.so.0 CIE-Lab.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /usr/lib/libbabl-0.0.la -ldl -lm' # Version information for CIE-Lab. current=0 age=0 revision=0 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' ./babl-0.1.0-i686/usr/lib/babl-0.0/naive-CMYK.so.00000777000000000000000000000000011272022167021710 2naive-CMYK.so.0.0.0ustar rootroot./babl-0.1.0-i686/usr/lib/babl-0.0/naive-CMYK.so.0.0.00000755000000000000000000001304211272022146017347 0ustar rootrootELF4 4 (4 4 4 4404H HHQtd    R +   ?pa{dhL d"__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassesbabl_component_newbabl_componentbabl_model_newbabl_modelbabl_conversion_newbabl_typebabl_format_newlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endnaive-CMYK.so.0GLIBC_2.1.3si \` $(8<@DHLP T XUS[Pt?X[] hhhhh h($h0(h8p,h@`US[À8uBt% 0P4ҋ4uƃ8]Í'US[tt P҃]ÐUWVS<$D$$D$$D$$D$$$JǍ$:E䍃$)ƍ$D$|$UT$t$ D$D$$F$(ƍ$D$=D$ D$t$$$ƍ$D$jD$ D$t$$$HǍ$8E荃$'E썃$E$5ƍ$ED$ |$UT$UT$UT$t$ D$D$$<[^_]U@E]E]ȋE]]e]e]e]]EEwE]EEwE]EEwE]EM]Ew2Eee]Eee]Eee]]]]E EE EE EE EE E m}EU@E]ȋE]ЋE]؋E]Ew,eME]eME]eME]]E]E]e]e]e]E EE EE EE E E m}7EË $Ë$ÐUVS[Ò P@t֍ЋFu[^]ÐUS[LZ[]cyanyellowmagentakeyCMYKnameRGBAlinearfloatCMYK float     ,H`(o@oooH&6FVfv\@GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.commentX!   )1o">o@@ M ``(V H _/Ze4k q ?y0 0 44 << DD HH   ,, 0\\ dd d Z * 04<D* @dO`V b8o@|0  D  i-  ,\z  ~  H @`    0  4<DH ,\d /? N b  hrdhL d"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxrgba_to_cmykcmyk_to_rgba_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.cx__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finibabl_typebabl_component_newbabl_modelbabl_model_newbabl_conversion_new__bss_start_endinit_edata__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/usr/lib/babl-0.0/gggl-lies.so.0.0.00000755000000000000000000005175411272022146017372 0ustar rootrootELF4\B4 (==@@@@@@@Qtd   Dh + T< S]x@AEe @A?"__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassesrintbabl_componentbabl_typebabl_modelbabl_format_newbabl_conversion_newlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endgggl-lies.so.0GLIBC_2.1.3GLIBC_2.0 si ii (A,A@@@AA AAAAA AUS[,=t? %8X[] hhhhh h($h0(h8pUS[l<HuBt% 0P4ҋ4uƃH]Í'US[;tt P҃]ÐUSD6;h4ǃhEEE݃]EٜE}~EEE݃ ]EٜE}~ظEfEEEfEEs EfEXEs EfE=E݃$@],EEE݃ $"],EfEEE鈄EEfSE}RD[]UEEEUWVS<^5L:$@Ǎ$0$$$$ƍ$$D$|$T$T$ T$t$$E$Ǎ$$y$e$ƍ$D$|$T$T$ T$t$$E$Ǎ$$$$ƍ$D$|$T$T$ T$t$$xE$WǍ$G $3$$;ƍ$;D$|$ T$T$ T$t$$E$Ǎ$$$| $ƍ$D$|$T$T$ T$t$$2E$Ǎ$$$($,$ƍ$D$|$$T$(T$ ,T$t$$E$nǍ$^0$J4$68$Rƍ$RD$|$0T$4T$ 8T$t$$E$Ǎ$<$@$ƍ$D$|$ƍ$>D$|$DT$ HT$t$$E$Ǎ$L$P$ƍ$D$|$LT$ PT$t$$]E$<Ǎ$,T$Hƍ$HD$|$ TT$t$$Eč$Ǎ$X$ƍ$D$|$ XT$t$$Eȍ$nƍ$Ǎ$D$ t$|$$FE̍$%Ǎ$\$1ƍ$1D$|$ \T$t$$EЍ$Ǎ$`$ƍ$D$|$ `T$t$$xEԍ$Wƍ$wǍ$wD$ t$|$$/E؍$Ǎ$d$ƍ$D$|$ dT$t$$E܍$Ǎ$h$ƍ$D$|$ hT$t$$aE$@ƍ$`Ǎ$`D$ t$|$$E䍃$Ǎ$l$p$t$ƍ$D$ |$lT$pT$tT$t$ D$D$$aE荃$@Ǎ$0x$L|$E$'ƍ$'D$|$xT$|T$ UT$t$$E썃$ƍ$Ǎ$E$E$aE$E$D$t$|$UT$UT$ UT$UT$$ED$D$ D$ED$E$*D$ZD$ D$ED$E$D$2D$ D$ED$E$D$ D$ D$ED$E$D$D$ D$ED$E$rD$D$ D$ED$E$DD$2D$ D$ED$E$D$ D$ D$ED$E$D$D$ D$ED$E$D$D$ D$ED$E$D$D$ D$ED$E$^D$fD$ D$ED$E$0D$EE U EU EE EE m}uEU9+EE:E'U E݁ ],EfE EE}~ӃEm}uEUEEVEEEE]EE}~E݁݁p],E‹E E Em}uEUVEEEM EЉ)։EEЙ}EEfE HEЉ)։EEЙ}EEfE HEЉ)։EEЙ}EEfE PEfE Em}E^]UEEEEUED$E D$E$EUED$E D$E$EUEEU E]EE Em}uދEUED$E D$E$EUEEU EE Em}uEË $Ë$ÐUVS[ P@t֍ЋFu[^]ÐUS[ØZ[]`}? ?@ABGRfloatRGBAu16doubleu8BaGaRaRaGaBaARGBYYAYaYaACrCbu8-chromaY'u8-lumaY'CbCrY'CbCr u8nameY'CbCrAlinearo@@A`"?bX9?v/?j+ſJ4տ?sڿU0*д@A@@@;On?JOcֿ|~!<'1Z?  T< @@X(oooo@&6FVfv(A @j?3l?GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.commentT! )1o >o@M XX(V @ _/Ze7kT<T<qp<p<(y==@@@@@@@@@@ @@,(A(A@A@A@ @AZAlFo LN@@@* @@AO,AV b@o @|= @< `A,Z AEEE p< x< 0A8A< ;( +R;( <*;( M;( ^:( p:( :* ^:* 4:*  :* 9( 9( 9* f9* @9& 8^ 8& 'c8Y 0=8& >7a H7& V]7Y `77& n76 x%6 I5 3O 2O 1 0 0 /& /7 p/M #/M .W ).3 5-.l E-H Qw-n ^5-B k,z zg,T ,c i+ * ) ( $(~ 'b g'[ 'R &R .4& ?% Q% c$ tz;5 };/ @(A<  < @X  T< p< = @@@@@@(A@A  "T< (2=Q@A]Ebe g@An~"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxtable_initedtable_inittable_8_Ftable_16_Ftable_F_8table_F_16gggl_float_to_index16lxnlynxnnznnLRAMPconv_rgbaF_rgbaDconv_rgbaD_rgbaFconv_rgbaF_rgba8conv_rgba8_rgbaFconv_rgbaF_rgba16conv_rgba16_rgbaFconv_rgbF_rgb8conv_rgb8_rgbFconv_rgbF_rgb16conv_rgb16_rgbFconv_rgba8_rgba16conv_rgba16_rgba8conv_rgb8_rgb16conv_rgb16_rgb8conv_gaF_ga8conv_F_8conv_ga8_gaFconv_8_Fconv_gaF_ga16conv_F_16conv_ga16_gaFconv_16_Fconv_ga16_ga8conv_16_8conv_rgbaF_rgbAFconv_rgbAF_rgbaFconv_yuv8_rgb8conv_rgb8_yuv8conv_yuvF_rgbFconv_rgbF_yuvFconv_yuvaF_rgbaFconv_ga8_ga16conv_8_16conv_gaF_gAFconv_gAF_gaFconv_rgbaF_rgbFconv_gaF_gFconv_rgbF_rgbaFconv_gF_gaFconv_rgbF_gFconv_gF_rgbFconv_rgbaF_gaFconv_gaF_rgbaFconv_rgbaF_rgb8conv_rgbA8_rgbaFconv_rgbA8_rgba8conv_rgba8_rgbA8conv_rgbA16_rgba16conv_rgbaF_g8conv_rgbaF_rgb16conv_rgb8_rgba8conv_rgbP8_rgb8conv_rgba8_rgb8conv_rgbaF_rgbA8conv_rgbaF_rgbA16conv_rgbA16_rgbaFconv_rgbaF_yuvaFconv_D_Fconv_F_D_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.cx__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finibabl_typebabl_modelbabl_conversion_new__bss_start_endinit_edatarint@@GLIBC_2.0__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/usr/lib/libbabl-0.0.so.00000777000000000000000000000000011272022165020712 2libbabl-0.0.so.0.100.0ustar rootroot./babl-0.1.0-i686/usr/lib/libbabl-0.0.so0000777000000000000000000000000011272022165020554 2libbabl-0.0.so.0.100.0ustar rootroot./babl-0.1.0-i686/babl-0.1.0-i686.pet.specs0000644000000000000000000000006511272023252015604 0ustar rootrootPETMENUDESCR='' PETOFFICIALDEPS='' PETREGISTER='yes' ./babl-0.1.0-i686/root/0000755000000000000000000000000011272022140012707 5ustar rootroot./babl-0.1.0-i686/root/Desktop/0000755000000000000000000000000011272022140014320 5ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/0000755000000000000000000000000011272022147015661 5ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/0000755000000000000000000000000011272022203017014 5ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/babl-html-dump0000755000000000000000000001224511272022130021552 0ustar rootroot#! /bin/sh # babl-html-dump - temporary wrapper script for .libs/babl-html-dump # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # The babl-html-dump program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='/bin/sed -e 1s/^X//' sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command="(cd /root/Desktop/babl-0.1.0/tests; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=\"/usr/lib/qt/lib:./:/lib:/usr/lib:/usr/local/lib:/usr/X11R7/lib:/root/my-applications/lib:/opt/qt4/lib:/opt/mozilla.org/lib:/usr/lib/seamonkey:/opt/samba/lib\"; export LD_LIBRARY_PATH; PATH=\"./:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R7/bin:/root/my-applications/bin:/opt/qt4/bin:/opt/mozilla.org/bin:/opt/samba/bin:/usr/lib/qt/bin\"; export PATH; gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -o \$progdir/\$file babl-html-dump.o ../babl/.libs/libbabl-0.0.so -lm -ldl -Wl,--rpath -Wl,/root/Desktop/babl-0.1.0/babl/.libs ) " # This environment variable determines our operation mode. if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then # install mode needs the following variable: notinst_deplibs=' ../babl/libbabl-0.0.la' else # When we are sourced in execute mode, $file and $echo are already set. if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then echo="echo" file="$0" # Make sure echo works. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec /bin/sh "$0" --no-reexec ${1+"$@"} fi fi # Find the directory that this script lives in. thisdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "x$thisdir" = "x$file" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'` while test -n "$file"; do destdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` # If there was a directory component, then change thisdir. if test "x$destdir" != "x$file"; then case "$destdir" in [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; *) thisdir="$thisdir/$destdir" ;; esac fi file=`$echo "X$file" | $Xsed -e 's%^.*/%%'` file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'` done # Try to get the absolute directory name. absdir=`cd "$thisdir" && pwd` test -n "$absdir" && thisdir="$absdir" program=lt-'babl-html-dump' progdir="$thisdir/.libs" if test ! -f "$progdir/$program" || \ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \ test "X$file" != "X$progdir/$program"; }; then file="$$-$program" if test ! -d "$progdir"; then mkdir "$progdir" else rm -f "$progdir/$file" fi # relink executable if necessary if test -n "$relink_command"; then if relink_command_output=`eval $relink_command 2>&1`; then : else echo "$relink_command_output" >&2 rm -f "$progdir/$file" exit 1 fi fi mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || { rm -f "$progdir/$program"; mv -f "$progdir/$file" "$progdir/$program"; } rm -f "$progdir/$file" fi if test -f "$progdir/$program"; then if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then # Run the actual program with our arguments. exec "$progdir/$program" ${1+"$@"} $echo "$0: cannot exec $program $*" exit 1 fi else # The program doesn't exist. $echo "$0: error: \`$progdir/$program' does not exist" 1>&2 $echo "This script is just a wrapper for $program." 1>&2 echo "See the libtool documentation for more information." 1>&2 exit 1 fi fi ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/rgb_to_ycbcr0000755000000000000000000001223311272022133021403 0ustar rootroot#! /bin/sh # rgb_to_ycbcr - temporary wrapper script for .libs/rgb_to_ycbcr # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # The rgb_to_ycbcr program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='/bin/sed -e 1s/^X//' sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command="(cd /root/Desktop/babl-0.1.0/tests; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=\"/usr/lib/qt/lib:./:/lib:/usr/lib:/usr/local/lib:/usr/X11R7/lib:/root/my-applications/lib:/opt/qt4/lib:/opt/mozilla.org/lib:/usr/lib/seamonkey:/opt/samba/lib\"; export LD_LIBRARY_PATH; PATH=\"./:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R7/bin:/root/my-applications/bin:/opt/qt4/bin:/opt/mozilla.org/bin:/opt/samba/bin:/usr/lib/qt/bin\"; export PATH; gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -o \$progdir/\$file rgb_to_ycbcr.o ../babl/.libs/libbabl-0.0.so -lm -ldl -Wl,--rpath -Wl,/root/Desktop/babl-0.1.0/babl/.libs ) " # This environment variable determines our operation mode. if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then # install mode needs the following variable: notinst_deplibs=' ../babl/libbabl-0.0.la' else # When we are sourced in execute mode, $file and $echo are already set. if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then echo="echo" file="$0" # Make sure echo works. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec /bin/sh "$0" --no-reexec ${1+"$@"} fi fi # Find the directory that this script lives in. thisdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "x$thisdir" = "x$file" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'` while test -n "$file"; do destdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` # If there was a directory component, then change thisdir. if test "x$destdir" != "x$file"; then case "$destdir" in [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; *) thisdir="$thisdir/$destdir" ;; esac fi file=`$echo "X$file" | $Xsed -e 's%^.*/%%'` file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'` done # Try to get the absolute directory name. absdir=`cd "$thisdir" && pwd` test -n "$absdir" && thisdir="$absdir" program=lt-'rgb_to_ycbcr' progdir="$thisdir/.libs" if test ! -f "$progdir/$program" || \ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \ test "X$file" != "X$progdir/$program"; }; then file="$$-$program" if test ! -d "$progdir"; then mkdir "$progdir" else rm -f "$progdir/$file" fi # relink executable if necessary if test -n "$relink_command"; then if relink_command_output=`eval $relink_command 2>&1`; then : else echo "$relink_command_output" >&2 rm -f "$progdir/$file" exit 1 fi fi mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || { rm -f "$progdir/$program"; mv -f "$progdir/$file" "$progdir/$program"; } rm -f "$progdir/$file" fi if test -f "$progdir/$program"; then if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then # Run the actual program with our arguments. exec "$progdir/$program" ${1+"$@"} $echo "$0: cannot exec $program $*" exit 1 fi else # The program doesn't exist. $echo "$0: error: \`$progdir/$program' does not exist" 1>&2 $echo "This script is just a wrapper for $program." 1>&2 echo "See the libtool documentation for more information." 1>&2 exit 1 fi fi ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/sanity0000755000000000000000000001217511272022134020262 0ustar rootroot#! /bin/sh # sanity - temporary wrapper script for .libs/sanity # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # The sanity program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='/bin/sed -e 1s/^X//' sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command="(cd /root/Desktop/babl-0.1.0/tests; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=\"/usr/lib/qt/lib:./:/lib:/usr/lib:/usr/local/lib:/usr/X11R7/lib:/root/my-applications/lib:/opt/qt4/lib:/opt/mozilla.org/lib:/usr/lib/seamonkey:/opt/samba/lib\"; export LD_LIBRARY_PATH; PATH=\"./:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R7/bin:/root/my-applications/bin:/opt/qt4/bin:/opt/mozilla.org/bin:/opt/samba/bin:/usr/lib/qt/bin\"; export PATH; gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -o \$progdir/\$file sanity.o ../babl/.libs/libbabl-0.0.so -lm -ldl -Wl,--rpath -Wl,/root/Desktop/babl-0.1.0/babl/.libs ) " # This environment variable determines our operation mode. if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then # install mode needs the following variable: notinst_deplibs=' ../babl/libbabl-0.0.la' else # When we are sourced in execute mode, $file and $echo are already set. if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then echo="echo" file="$0" # Make sure echo works. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec /bin/sh "$0" --no-reexec ${1+"$@"} fi fi # Find the directory that this script lives in. thisdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "x$thisdir" = "x$file" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'` while test -n "$file"; do destdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` # If there was a directory component, then change thisdir. if test "x$destdir" != "x$file"; then case "$destdir" in [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; *) thisdir="$thisdir/$destdir" ;; esac fi file=`$echo "X$file" | $Xsed -e 's%^.*/%%'` file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'` done # Try to get the absolute directory name. absdir=`cd "$thisdir" && pwd` test -n "$absdir" && thisdir="$absdir" program=lt-'sanity' progdir="$thisdir/.libs" if test ! -f "$progdir/$program" || \ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \ test "X$file" != "X$progdir/$program"; }; then file="$$-$program" if test ! -d "$progdir"; then mkdir "$progdir" else rm -f "$progdir/$file" fi # relink executable if necessary if test -n "$relink_command"; then if relink_command_output=`eval $relink_command 2>&1`; then : else echo "$relink_command_output" >&2 rm -f "$progdir/$file" exit 1 fi fi mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || { rm -f "$progdir/$program"; mv -f "$progdir/$file" "$progdir/$program"; } rm -f "$progdir/$file" fi if test -f "$progdir/$program"; then if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then # Run the actual program with our arguments. exec "$progdir/$program" ${1+"$@"} $echo "$0: cannot exec $program $*" exit 1 fi else # The program doesn't exist. $echo "$0: error: \`$progdir/$program' does not exist" 1>&2 $echo "This script is just a wrapper for $program." 1>&2 echo "See the libtool documentation for more information." 1>&2 exit 1 fi fi ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/conversions0000755000000000000000000001222611272022130021314 0ustar rootroot#! /bin/sh # conversions - temporary wrapper script for .libs/conversions # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # The conversions program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='/bin/sed -e 1s/^X//' sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command="(cd /root/Desktop/babl-0.1.0/tests; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=\"/usr/lib/qt/lib:./:/lib:/usr/lib:/usr/local/lib:/usr/X11R7/lib:/root/my-applications/lib:/opt/qt4/lib:/opt/mozilla.org/lib:/usr/lib/seamonkey:/opt/samba/lib\"; export LD_LIBRARY_PATH; PATH=\"./:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R7/bin:/root/my-applications/bin:/opt/qt4/bin:/opt/mozilla.org/bin:/opt/samba/bin:/usr/lib/qt/bin\"; export PATH; gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -o \$progdir/\$file conversions.o ../babl/.libs/libbabl-0.0.so -lm -ldl -Wl,--rpath -Wl,/root/Desktop/babl-0.1.0/babl/.libs ) " # This environment variable determines our operation mode. if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then # install mode needs the following variable: notinst_deplibs=' ../babl/libbabl-0.0.la' else # When we are sourced in execute mode, $file and $echo are already set. if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then echo="echo" file="$0" # Make sure echo works. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec /bin/sh "$0" --no-reexec ${1+"$@"} fi fi # Find the directory that this script lives in. thisdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "x$thisdir" = "x$file" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'` while test -n "$file"; do destdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` # If there was a directory component, then change thisdir. if test "x$destdir" != "x$file"; then case "$destdir" in [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; *) thisdir="$thisdir/$destdir" ;; esac fi file=`$echo "X$file" | $Xsed -e 's%^.*/%%'` file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'` done # Try to get the absolute directory name. absdir=`cd "$thisdir" && pwd` test -n "$absdir" && thisdir="$absdir" program=lt-'conversions' progdir="$thisdir/.libs" if test ! -f "$progdir/$program" || \ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \ test "X$file" != "X$progdir/$program"; }; then file="$$-$program" if test ! -d "$progdir"; then mkdir "$progdir" else rm -f "$progdir/$file" fi # relink executable if necessary if test -n "$relink_command"; then if relink_command_output=`eval $relink_command 2>&1`; then : else echo "$relink_command_output" >&2 rm -f "$progdir/$file" exit 1 fi fi mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || { rm -f "$progdir/$program"; mv -f "$progdir/$file" "$progdir/$program"; } rm -f "$progdir/$file" fi if test -f "$progdir/$program"; then if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then # Run the actual program with our arguments. exec "$progdir/$program" ${1+"$@"} $echo "$0: cannot exec $program $*" exit 1 fi else # The program doesn't exist. $echo "$0: error: \`$progdir/$program' does not exist" 1>&2 $echo "This script is just a wrapper for $program." 1>&2 echo "See the libtool documentation for more information." 1>&2 exit 1 fi fi ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/types0000755000000000000000000001217011272022135020113 0ustar rootroot#! /bin/sh # types - temporary wrapper script for .libs/types # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # The types program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='/bin/sed -e 1s/^X//' sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command="(cd /root/Desktop/babl-0.1.0/tests; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=\"/usr/lib/qt/lib:./:/lib:/usr/lib:/usr/local/lib:/usr/X11R7/lib:/root/my-applications/lib:/opt/qt4/lib:/opt/mozilla.org/lib:/usr/lib/seamonkey:/opt/samba/lib\"; export LD_LIBRARY_PATH; PATH=\"./:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R7/bin:/root/my-applications/bin:/opt/qt4/bin:/opt/mozilla.org/bin:/opt/samba/bin:/usr/lib/qt/bin\"; export PATH; gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -o \$progdir/\$file types.o ../babl/.libs/libbabl-0.0.so -lm -ldl -Wl,--rpath -Wl,/root/Desktop/babl-0.1.0/babl/.libs ) " # This environment variable determines our operation mode. if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then # install mode needs the following variable: notinst_deplibs=' ../babl/libbabl-0.0.la' else # When we are sourced in execute mode, $file and $echo are already set. if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then echo="echo" file="$0" # Make sure echo works. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec /bin/sh "$0" --no-reexec ${1+"$@"} fi fi # Find the directory that this script lives in. thisdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "x$thisdir" = "x$file" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'` while test -n "$file"; do destdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` # If there was a directory component, then change thisdir. if test "x$destdir" != "x$file"; then case "$destdir" in [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; *) thisdir="$thisdir/$destdir" ;; esac fi file=`$echo "X$file" | $Xsed -e 's%^.*/%%'` file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'` done # Try to get the absolute directory name. absdir=`cd "$thisdir" && pwd` test -n "$absdir" && thisdir="$absdir" program=lt-'types' progdir="$thisdir/.libs" if test ! -f "$progdir/$program" || \ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \ test "X$file" != "X$progdir/$program"; }; then file="$$-$program" if test ! -d "$progdir"; then mkdir "$progdir" else rm -f "$progdir/$file" fi # relink executable if necessary if test -n "$relink_command"; then if relink_command_output=`eval $relink_command 2>&1`; then : else echo "$relink_command_output" >&2 rm -f "$progdir/$file" exit 1 fi fi mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || { rm -f "$progdir/$program"; mv -f "$progdir/$file" "$progdir/$program"; } rm -f "$progdir/$file" fi if test -f "$progdir/$program"; then if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then # Run the actual program with our arguments. exec "$progdir/$program" ${1+"$@"} $echo "$0: cannot exec $program $*" exit 1 fi else # The program doesn't exist. $echo "$0: error: \`$progdir/$program' does not exist" 1>&2 $echo "This script is just a wrapper for $program." 1>&2 echo "See the libtool documentation for more information." 1>&2 exit 1 fi fi ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/srgb_to_lab_u80000755000000000000000000001224511272022133021641 0ustar rootroot#! /bin/sh # srgb_to_lab_u8 - temporary wrapper script for .libs/srgb_to_lab_u8 # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # The srgb_to_lab_u8 program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='/bin/sed -e 1s/^X//' sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command="(cd /root/Desktop/babl-0.1.0/tests; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=\"/usr/lib/qt/lib:./:/lib:/usr/lib:/usr/local/lib:/usr/X11R7/lib:/root/my-applications/lib:/opt/qt4/lib:/opt/mozilla.org/lib:/usr/lib/seamonkey:/opt/samba/lib\"; export LD_LIBRARY_PATH; PATH=\"./:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R7/bin:/root/my-applications/bin:/opt/qt4/bin:/opt/mozilla.org/bin:/opt/samba/bin:/usr/lib/qt/bin\"; export PATH; gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -o \$progdir/\$file srgb_to_lab_u8.o ../babl/.libs/libbabl-0.0.so -lm -ldl -Wl,--rpath -Wl,/root/Desktop/babl-0.1.0/babl/.libs ) " # This environment variable determines our operation mode. if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then # install mode needs the following variable: notinst_deplibs=' ../babl/libbabl-0.0.la' else # When we are sourced in execute mode, $file and $echo are already set. if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then echo="echo" file="$0" # Make sure echo works. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec /bin/sh "$0" --no-reexec ${1+"$@"} fi fi # Find the directory that this script lives in. thisdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "x$thisdir" = "x$file" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'` while test -n "$file"; do destdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` # If there was a directory component, then change thisdir. if test "x$destdir" != "x$file"; then case "$destdir" in [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; *) thisdir="$thisdir/$destdir" ;; esac fi file=`$echo "X$file" | $Xsed -e 's%^.*/%%'` file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'` done # Try to get the absolute directory name. absdir=`cd "$thisdir" && pwd` test -n "$absdir" && thisdir="$absdir" program=lt-'srgb_to_lab_u8' progdir="$thisdir/.libs" if test ! -f "$progdir/$program" || \ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \ test "X$file" != "X$progdir/$program"; }; then file="$$-$program" if test ! -d "$progdir"; then mkdir "$progdir" else rm -f "$progdir/$file" fi # relink executable if necessary if test -n "$relink_command"; then if relink_command_output=`eval $relink_command 2>&1`; then : else echo "$relink_command_output" >&2 rm -f "$progdir/$file" exit 1 fi fi mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || { rm -f "$progdir/$program"; mv -f "$progdir/$file" "$progdir/$program"; } rm -f "$progdir/$file" fi if test -f "$progdir/$program"; then if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then # Run the actual program with our arguments. exec "$progdir/$program" ${1+"$@"} $echo "$0: cannot exec $program $*" exit 1 fi else # The program doesn't exist. $echo "$0: error: \`$progdir/$program' does not exist" 1>&2 $echo "This script is just a wrapper for $program." 1>&2 echo "See the libtool documentation for more information." 1>&2 exit 1 fi fi ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/formats0000755000000000000000000001220211272022131020412 0ustar rootroot#! /bin/sh # formats - temporary wrapper script for .libs/formats # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # The formats program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='/bin/sed -e 1s/^X//' sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command="(cd /root/Desktop/babl-0.1.0/tests; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=\"/usr/lib/qt/lib:./:/lib:/usr/lib:/usr/local/lib:/usr/X11R7/lib:/root/my-applications/lib:/opt/qt4/lib:/opt/mozilla.org/lib:/usr/lib/seamonkey:/opt/samba/lib\"; export LD_LIBRARY_PATH; PATH=\"./:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R7/bin:/root/my-applications/bin:/opt/qt4/bin:/opt/mozilla.org/bin:/opt/samba/bin:/usr/lib/qt/bin\"; export PATH; gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -o \$progdir/\$file formats.o ../babl/.libs/libbabl-0.0.so -lm -ldl -Wl,--rpath -Wl,/root/Desktop/babl-0.1.0/babl/.libs ) " # This environment variable determines our operation mode. if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then # install mode needs the following variable: notinst_deplibs=' ../babl/libbabl-0.0.la' else # When we are sourced in execute mode, $file and $echo are already set. if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then echo="echo" file="$0" # Make sure echo works. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec /bin/sh "$0" --no-reexec ${1+"$@"} fi fi # Find the directory that this script lives in. thisdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "x$thisdir" = "x$file" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'` while test -n "$file"; do destdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` # If there was a directory component, then change thisdir. if test "x$destdir" != "x$file"; then case "$destdir" in [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; *) thisdir="$thisdir/$destdir" ;; esac fi file=`$echo "X$file" | $Xsed -e 's%^.*/%%'` file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'` done # Try to get the absolute directory name. absdir=`cd "$thisdir" && pwd` test -n "$absdir" && thisdir="$absdir" program=lt-'formats' progdir="$thisdir/.libs" if test ! -f "$progdir/$program" || \ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \ test "X$file" != "X$progdir/$program"; }; then file="$$-$program" if test ! -d "$progdir"; then mkdir "$progdir" else rm -f "$progdir/$file" fi # relink executable if necessary if test -n "$relink_command"; then if relink_command_output=`eval $relink_command 2>&1`; then : else echo "$relink_command_output" >&2 rm -f "$progdir/$file" exit 1 fi fi mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || { rm -f "$progdir/$program"; mv -f "$progdir/$file" "$progdir/$program"; } rm -f "$progdir/$file" fi if test -f "$progdir/$program"; then if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then # Run the actual program with our arguments. exec "$progdir/$program" ${1+"$@"} $echo "$0: cannot exec $program $*" exit 1 fi else # The program doesn't exist. $echo "$0: error: \`$progdir/$program' does not exist" 1>&2 $echo "This script is just a wrapper for $program." 1>&2 echo "See the libtool documentation for more information." 1>&2 exit 1 fi fi ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/grayscale_to_rgb0000755000000000000000000001225711272022132022260 0ustar rootroot#! /bin/sh # grayscale_to_rgb - temporary wrapper script for .libs/grayscale_to_rgb # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # The grayscale_to_rgb program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='/bin/sed -e 1s/^X//' sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command="(cd /root/Desktop/babl-0.1.0/tests; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=\"/usr/lib/qt/lib:./:/lib:/usr/lib:/usr/local/lib:/usr/X11R7/lib:/root/my-applications/lib:/opt/qt4/lib:/opt/mozilla.org/lib:/usr/lib/seamonkey:/opt/samba/lib\"; export LD_LIBRARY_PATH; PATH=\"./:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R7/bin:/root/my-applications/bin:/opt/qt4/bin:/opt/mozilla.org/bin:/opt/samba/bin:/usr/lib/qt/bin\"; export PATH; gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -o \$progdir/\$file grayscale_to_rgb.o ../babl/.libs/libbabl-0.0.so -lm -ldl -Wl,--rpath -Wl,/root/Desktop/babl-0.1.0/babl/.libs ) " # This environment variable determines our operation mode. if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then # install mode needs the following variable: notinst_deplibs=' ../babl/libbabl-0.0.la' else # When we are sourced in execute mode, $file and $echo are already set. if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then echo="echo" file="$0" # Make sure echo works. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec /bin/sh "$0" --no-reexec ${1+"$@"} fi fi # Find the directory that this script lives in. thisdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "x$thisdir" = "x$file" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'` while test -n "$file"; do destdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` # If there was a directory component, then change thisdir. if test "x$destdir" != "x$file"; then case "$destdir" in [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; *) thisdir="$thisdir/$destdir" ;; esac fi file=`$echo "X$file" | $Xsed -e 's%^.*/%%'` file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'` done # Try to get the absolute directory name. absdir=`cd "$thisdir" && pwd` test -n "$absdir" && thisdir="$absdir" program=lt-'grayscale_to_rgb' progdir="$thisdir/.libs" if test ! -f "$progdir/$program" || \ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \ test "X$file" != "X$progdir/$program"; }; then file="$$-$program" if test ! -d "$progdir"; then mkdir "$progdir" else rm -f "$progdir/$file" fi # relink executable if necessary if test -n "$relink_command"; then if relink_command_output=`eval $relink_command 2>&1`; then : else echo "$relink_command_output" >&2 rm -f "$progdir/$file" exit 1 fi fi mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || { rm -f "$progdir/$program"; mv -f "$progdir/$file" "$progdir/$program"; } rm -f "$progdir/$file" fi if test -f "$progdir/$program"; then if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then # Run the actual program with our arguments. exec "$progdir/$program" ${1+"$@"} $echo "$0: cannot exec $program $*" exit 1 fi else # The program doesn't exist. $echo "$0: error: \`$progdir/$program' does not exist" 1>&2 $echo "This script is just a wrapper for $program." 1>&2 echo "See the libtool documentation for more information." 1>&2 exit 1 fi fi ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/babl_class_name0000755000000000000000000001225211272022134022034 0ustar rootroot#! /bin/sh # babl_class_name - temporary wrapper script for .libs/babl_class_name # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # The babl_class_name program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='/bin/sed -e 1s/^X//' sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command="(cd /root/Desktop/babl-0.1.0/tests; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=\"/usr/lib/qt/lib:./:/lib:/usr/lib:/usr/local/lib:/usr/X11R7/lib:/root/my-applications/lib:/opt/qt4/lib:/opt/mozilla.org/lib:/usr/lib/seamonkey:/opt/samba/lib\"; export LD_LIBRARY_PATH; PATH=\"./:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R7/bin:/root/my-applications/bin:/opt/qt4/bin:/opt/mozilla.org/bin:/opt/samba/bin:/usr/lib/qt/bin\"; export PATH; gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -o \$progdir/\$file babl_class_name.o ../babl/.libs/libbabl-0.0.so -lm -ldl -Wl,--rpath -Wl,/root/Desktop/babl-0.1.0/babl/.libs ) " # This environment variable determines our operation mode. if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then # install mode needs the following variable: notinst_deplibs=' ../babl/libbabl-0.0.la' else # When we are sourced in execute mode, $file and $echo are already set. if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then echo="echo" file="$0" # Make sure echo works. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec /bin/sh "$0" --no-reexec ${1+"$@"} fi fi # Find the directory that this script lives in. thisdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "x$thisdir" = "x$file" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'` while test -n "$file"; do destdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` # If there was a directory component, then change thisdir. if test "x$destdir" != "x$file"; then case "$destdir" in [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; *) thisdir="$thisdir/$destdir" ;; esac fi file=`$echo "X$file" | $Xsed -e 's%^.*/%%'` file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'` done # Try to get the absolute directory name. absdir=`cd "$thisdir" && pwd` test -n "$absdir" && thisdir="$absdir" program=lt-'babl_class_name' progdir="$thisdir/.libs" if test ! -f "$progdir/$program" || \ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \ test "X$file" != "X$progdir/$program"; }; then file="$$-$program" if test ! -d "$progdir"; then mkdir "$progdir" else rm -f "$progdir/$file" fi # relink executable if necessary if test -n "$relink_command"; then if relink_command_output=`eval $relink_command 2>&1`; then : else echo "$relink_command_output" >&2 rm -f "$progdir/$file" exit 1 fi fi mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || { rm -f "$progdir/$program"; mv -f "$progdir/$file" "$progdir/$program"; } rm -f "$progdir/$file" fi if test -f "$progdir/$program"; then if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then # Run the actual program with our arguments. exec "$progdir/$program" ${1+"$@"} $echo "$0: cannot exec $program $*" exit 1 fi else # The program doesn't exist. $echo "$0: error: \`$progdir/$program' does not exist" 1>&2 $echo "This script is just a wrapper for $program." 1>&2 echo "See the libtool documentation for more information." 1>&2 exit 1 fi fi ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/babl_fish_path_dhtml0000755000000000000000000001230311272022127023063 0ustar rootroot#! /bin/sh # babl_fish_path_dhtml - temporary wrapper script for .libs/babl_fish_path_dhtml # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # The babl_fish_path_dhtml program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='/bin/sed -e 1s/^X//' sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command="(cd /root/Desktop/babl-0.1.0/tests; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=\"/usr/lib/qt/lib:./:/lib:/usr/lib:/usr/local/lib:/usr/X11R7/lib:/root/my-applications/lib:/opt/qt4/lib:/opt/mozilla.org/lib:/usr/lib/seamonkey:/opt/samba/lib\"; export LD_LIBRARY_PATH; PATH=\"./:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R7/bin:/root/my-applications/bin:/opt/qt4/bin:/opt/mozilla.org/bin:/opt/samba/bin:/usr/lib/qt/bin\"; export PATH; gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -o \$progdir/\$file babl_fish_path_dhtml.o ../babl/.libs/libbabl-0.0.so -lm -ldl -Wl,--rpath -Wl,/root/Desktop/babl-0.1.0/babl/.libs ) " # This environment variable determines our operation mode. if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then # install mode needs the following variable: notinst_deplibs=' ../babl/libbabl-0.0.la' else # When we are sourced in execute mode, $file and $echo are already set. if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then echo="echo" file="$0" # Make sure echo works. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec /bin/sh "$0" --no-reexec ${1+"$@"} fi fi # Find the directory that this script lives in. thisdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "x$thisdir" = "x$file" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'` while test -n "$file"; do destdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` # If there was a directory component, then change thisdir. if test "x$destdir" != "x$file"; then case "$destdir" in [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; *) thisdir="$thisdir/$destdir" ;; esac fi file=`$echo "X$file" | $Xsed -e 's%^.*/%%'` file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'` done # Try to get the absolute directory name. absdir=`cd "$thisdir" && pwd` test -n "$absdir" && thisdir="$absdir" program=lt-'babl_fish_path_dhtml' progdir="$thisdir/.libs" if test ! -f "$progdir/$program" || \ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \ test "X$file" != "X$progdir/$program"; }; then file="$$-$program" if test ! -d "$progdir"; then mkdir "$progdir" else rm -f "$progdir/$file" fi # relink executable if necessary if test -n "$relink_command"; then if relink_command_output=`eval $relink_command 2>&1`; then : else echo "$relink_command_output" >&2 rm -f "$progdir/$file" exit 1 fi fi mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || { rm -f "$progdir/$program"; mv -f "$progdir/$file" "$progdir/$program"; } rm -f "$progdir/$file" fi if test -f "$progdir/$program"; then if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then # Run the actual program with our arguments. exec "$progdir/$program" ${1+"$@"} $echo "$0: cannot exec $program $*" exit 1 fi else # The program doesn't exist. $echo "$0: error: \`$progdir/$program' does not exist" 1>&2 $echo "This script is just a wrapper for $program." 1>&2 echo "See the libtool documentation for more information." 1>&2 exit 1 fi fi ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/babl_fish_path_fitness0000755000000000000000000001231511272022127023431 0ustar rootroot#! /bin/sh # babl_fish_path_fitness - temporary wrapper script for .libs/babl_fish_path_fitness # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # The babl_fish_path_fitness program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='/bin/sed -e 1s/^X//' sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command="(cd /root/Desktop/babl-0.1.0/tests; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=\"/usr/lib/qt/lib:./:/lib:/usr/lib:/usr/local/lib:/usr/X11R7/lib:/root/my-applications/lib:/opt/qt4/lib:/opt/mozilla.org/lib:/usr/lib/seamonkey:/opt/samba/lib\"; export LD_LIBRARY_PATH; PATH=\"./:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R7/bin:/root/my-applications/bin:/opt/qt4/bin:/opt/mozilla.org/bin:/opt/samba/bin:/usr/lib/qt/bin\"; export PATH; gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -o \$progdir/\$file babl_fish_path_fitness.o ../babl/.libs/libbabl-0.0.so -lm -ldl -Wl,--rpath -Wl,/root/Desktop/babl-0.1.0/babl/.libs ) " # This environment variable determines our operation mode. if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then # install mode needs the following variable: notinst_deplibs=' ../babl/libbabl-0.0.la' else # When we are sourced in execute mode, $file and $echo are already set. if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then echo="echo" file="$0" # Make sure echo works. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec /bin/sh "$0" --no-reexec ${1+"$@"} fi fi # Find the directory that this script lives in. thisdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "x$thisdir" = "x$file" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'` while test -n "$file"; do destdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` # If there was a directory component, then change thisdir. if test "x$destdir" != "x$file"; then case "$destdir" in [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; *) thisdir="$thisdir/$destdir" ;; esac fi file=`$echo "X$file" | $Xsed -e 's%^.*/%%'` file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'` done # Try to get the absolute directory name. absdir=`cd "$thisdir" && pwd` test -n "$absdir" && thisdir="$absdir" program=lt-'babl_fish_path_fitness' progdir="$thisdir/.libs" if test ! -f "$progdir/$program" || \ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \ test "X$file" != "X$progdir/$program"; }; then file="$$-$program" if test ! -d "$progdir"; then mkdir "$progdir" else rm -f "$progdir/$file" fi # relink executable if necessary if test -n "$relink_command"; then if relink_command_output=`eval $relink_command 2>&1`; then : else echo "$relink_command_output" >&2 rm -f "$progdir/$file" exit 1 fi fi mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || { rm -f "$progdir/$program"; mv -f "$progdir/$file" "$progdir/$program"; } rm -f "$progdir/$file" fi if test -f "$progdir/$program"; then if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then # Run the actual program with our arguments. exec "$progdir/$program" ${1+"$@"} $echo "$0: cannot exec $program $*" exit 1 fi else # The program doesn't exist. $echo "$0: error: \`$progdir/$program' does not exist" 1>&2 $echo "This script is just a wrapper for $program." 1>&2 echo "See the libtool documentation for more information." 1>&2 exit 1 fi fi ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/.deps/0000755000000000000000000000000011272022205020027 5ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/.deps/nop.Po0000644000000000000000000000033311272022131021120 0ustar rootrootnop.o nop.o: nop.c ../config.h ../babl/babl.h ../babl/babl-macros.h \ ../babl/babl-types.h ../babl/babl-version.h ../config.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/.deps/types.Po0000644000000000000000000000622511272022134021501 0ustar rootroottypes.o types.o: types.c ../config.h /usr/include/math.h \ /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ ../babl/babl-internal.h /usr/include/stdlib.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/assert.h ../babl/babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ ../babl/babl-class.h ../babl/babl-classes.h ../babl/babl-type.h \ ../babl/babl-sampling.h ../babl/babl-component.h ../babl/babl-model.h \ ../babl/babl-format.h ../babl/babl-image.h ../babl/babl-conversion.h \ ../babl/babl-fish.h ../babl/babl-extension.h ../babl/babl-introspect.h \ ../babl/babl-list.h ../babl/babl-hash-table.h ../babl/babl-db.h \ ../babl/babl-ids.h ../babl/babl-util.h ../babl/babl-memory.h \ ../babl/babl-cpuaccel.h ../config.h: /usr/include/math.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: ../babl/babl-internal.h: /usr/include/stdlib.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/assert.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../babl/babl-class.h: ../babl/babl-classes.h: ../babl/babl-type.h: ../babl/babl-sampling.h: ../babl/babl-component.h: ../babl/babl-model.h: ../babl/babl-format.h: ../babl/babl-image.h: ../babl/babl-conversion.h: ../babl/babl-fish.h: ../babl/babl-extension.h: ../babl/babl-introspect.h: ../babl/babl-list.h: ../babl/babl-hash-table.h: ../babl/babl-db.h: ../babl/babl-ids.h: ../babl/babl-util.h: ../babl/babl-memory.h: ../babl/babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/.deps/grayscale_to_rgb.Po0000644000000000000000000000626211272022131023641 0ustar rootrootgrayscale_to_rgb.o grayscale_to_rgb.o: grayscale_to_rgb.c ../config.h \ ../babl/babl-internal.h /usr/include/stdlib.h /usr/include/features.h \ /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h ../babl/babl.h ../babl/babl-macros.h \ ../babl/babl-types.h ../babl/babl-version.h ../babl/babl-class.h \ ../babl/babl-classes.h ../babl/babl-type.h ../babl/babl-sampling.h \ ../babl/babl-component.h ../babl/babl-model.h ../babl/babl-format.h \ ../babl/babl-image.h ../babl/babl-conversion.h ../babl/babl-fish.h \ ../babl/babl-extension.h ../babl/babl-introspect.h ../babl/babl-list.h \ ../babl/babl-hash-table.h ../babl/babl-db.h ../babl/babl-ids.h \ ../babl/babl-util.h ../babl/babl-memory.h ../babl/babl-cpuaccel.h ../config.h: ../babl/babl-internal.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../babl/babl-class.h: ../babl/babl-classes.h: ../babl/babl-type.h: ../babl/babl-sampling.h: ../babl/babl-component.h: ../babl/babl-model.h: ../babl/babl-format.h: ../babl/babl-image.h: ../babl/babl-conversion.h: ../babl/babl-fish.h: ../babl/babl-extension.h: ../babl/babl-introspect.h: ../babl/babl-list.h: ../babl/babl-hash-table.h: ../babl/babl-db.h: ../babl/babl-ids.h: ../babl/babl-util.h: ../babl/babl-memory.h: ../babl/babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/.deps/srgb_to_lab_u8.Po0000644000000000000000000000626011272022133023224 0ustar rootrootsrgb_to_lab_u8.o srgb_to_lab_u8.o: srgb_to_lab_u8.c ../config.h \ /usr/include/math.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ ../babl/babl-internal.h /usr/include/stdlib.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/assert.h ../babl/babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ ../babl/babl-class.h ../babl/babl-classes.h ../babl/babl-type.h \ ../babl/babl-sampling.h ../babl/babl-component.h ../babl/babl-model.h \ ../babl/babl-format.h ../babl/babl-image.h ../babl/babl-conversion.h \ ../babl/babl-fish.h ../babl/babl-extension.h ../babl/babl-introspect.h \ ../babl/babl-list.h ../babl/babl-hash-table.h ../babl/babl-db.h \ ../babl/babl-ids.h ../babl/babl-util.h ../babl/babl-memory.h \ ../babl/babl-cpuaccel.h ../config.h: /usr/include/math.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: ../babl/babl-internal.h: /usr/include/stdlib.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/assert.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../babl/babl-class.h: ../babl/babl-classes.h: ../babl/babl-type.h: ../babl/babl-sampling.h: ../babl/babl-component.h: ../babl/babl-model.h: ../babl/babl-format.h: ../babl/babl-image.h: ../babl/babl-conversion.h: ../babl/babl-fish.h: ../babl/babl-extension.h: ../babl/babl-introspect.h: ../babl/babl-list.h: ../babl/babl-hash-table.h: ../babl/babl-db.h: ../babl/babl-ids.h: ../babl/babl-util.h: ../babl/babl-memory.h: ../babl/babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/.deps/conversions.Po0000644000000000000000000000625311272022130022702 0ustar rootrootconversions.o conversions.o: conversions.c ../config.h \ /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ ../babl/babl-internal.h /usr/include/stdio.h /usr/include/libio.h \ /usr/include/_G_config.h /usr/include/wchar.h /usr/include/bits/wchar.h \ /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/assert.h ../babl/babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ ../babl/babl-class.h ../babl/babl-classes.h ../babl/babl-type.h \ ../babl/babl-sampling.h ../babl/babl-component.h ../babl/babl-model.h \ ../babl/babl-format.h ../babl/babl-image.h ../babl/babl-conversion.h \ ../babl/babl-fish.h ../babl/babl-extension.h ../babl/babl-introspect.h \ ../babl/babl-list.h ../babl/babl-hash-table.h ../babl/babl-db.h \ ../babl/babl-ids.h ../babl/babl-util.h ../babl/babl-memory.h \ ../babl/babl-cpuaccel.h ../config.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: ../babl/babl-internal.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/assert.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../babl/babl-class.h: ../babl/babl-classes.h: ../babl/babl-type.h: ../babl/babl-sampling.h: ../babl/babl-component.h: ../babl/babl-model.h: ../babl/babl-format.h: ../babl/babl-image.h: ../babl/babl-conversion.h: ../babl/babl-fish.h: ../babl/babl-extension.h: ../babl/babl-introspect.h: ../babl/babl-list.h: ../babl/babl-hash-table.h: ../babl/babl-db.h: ../babl/babl-ids.h: ../babl/babl-util.h: ../babl/babl-memory.h: ../babl/babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/.deps/rgb_to_ycbcr.Po0000644000000000000000000000625211272022132022771 0ustar rootrootrgb_to_ycbcr.o rgb_to_ycbcr.o: rgb_to_ycbcr.c ../config.h \ /usr/include/math.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ ../babl/babl-internal.h /usr/include/stdlib.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/assert.h ../babl/babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ ../babl/babl-class.h ../babl/babl-classes.h ../babl/babl-type.h \ ../babl/babl-sampling.h ../babl/babl-component.h ../babl/babl-model.h \ ../babl/babl-format.h ../babl/babl-image.h ../babl/babl-conversion.h \ ../babl/babl-fish.h ../babl/babl-extension.h ../babl/babl-introspect.h \ ../babl/babl-list.h ../babl/babl-hash-table.h ../babl/babl-db.h \ ../babl/babl-ids.h ../babl/babl-util.h ../babl/babl-memory.h \ ../babl/babl-cpuaccel.h ../config.h: /usr/include/math.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: ../babl/babl-internal.h: /usr/include/stdlib.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/assert.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../babl/babl-class.h: ../babl/babl-classes.h: ../babl/babl-type.h: ../babl/babl-sampling.h: ../babl/babl-component.h: ../babl/babl-model.h: ../babl/babl-format.h: ../babl/babl-image.h: ../babl/babl-conversion.h: ../babl/babl-fish.h: ../babl/babl-extension.h: ../babl/babl-introspect.h: ../babl/babl-list.h: ../babl/babl-hash-table.h: ../babl/babl-db.h: ../babl/babl-ids.h: ../babl/babl-util.h: ../babl/babl-memory.h: ../babl/babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/.deps/sanity.Po0000644000000000000000000000622411272022133021642 0ustar rootrootsanity.o sanity.o: sanity.c ../config.h ../babl/babl-internal.h \ /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h ../babl/babl.h ../babl/babl-macros.h \ ../babl/babl-types.h ../babl/babl-version.h ../babl/babl-class.h \ ../babl/babl-classes.h ../babl/babl-type.h ../babl/babl-sampling.h \ ../babl/babl-component.h ../babl/babl-model.h ../babl/babl-format.h \ ../babl/babl-image.h ../babl/babl-conversion.h ../babl/babl-fish.h \ ../babl/babl-extension.h ../babl/babl-introspect.h ../babl/babl-list.h \ ../babl/babl-hash-table.h ../babl/babl-db.h ../babl/babl-ids.h \ ../babl/babl-util.h ../babl/babl-memory.h ../babl/babl-cpuaccel.h ../config.h: ../babl/babl-internal.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../babl/babl-class.h: ../babl/babl-classes.h: ../babl/babl-type.h: ../babl/babl-sampling.h: ../babl/babl-component.h: ../babl/babl-model.h: ../babl/babl-format.h: ../babl/babl-image.h: ../babl/babl-conversion.h: ../babl/babl-fish.h: ../babl/babl-extension.h: ../babl/babl-introspect.h: ../babl/babl-list.h: ../babl/babl-hash-table.h: ../babl/babl-db.h: ../babl/babl-ids.h: ../babl/babl-util.h: ../babl/babl-memory.h: ../babl/babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/.deps/models.Po0000644000000000000000000000623411272022135021621 0ustar rootrootmodels.o models.o: models.c ../config.h /usr/include/stdlib.h \ /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ ../babl/babl-internal.h /usr/include/stdio.h /usr/include/libio.h \ /usr/include/_G_config.h /usr/include/wchar.h /usr/include/bits/wchar.h \ /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/assert.h ../babl/babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ ../babl/babl-class.h ../babl/babl-classes.h ../babl/babl-type.h \ ../babl/babl-sampling.h ../babl/babl-component.h ../babl/babl-model.h \ ../babl/babl-format.h ../babl/babl-image.h ../babl/babl-conversion.h \ ../babl/babl-fish.h ../babl/babl-extension.h ../babl/babl-introspect.h \ ../babl/babl-list.h ../babl/babl-hash-table.h ../babl/babl-db.h \ ../babl/babl-ids.h ../babl/babl-util.h ../babl/babl-memory.h \ ../babl/babl-cpuaccel.h ../config.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: ../babl/babl-internal.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/assert.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../babl/babl-class.h: ../babl/babl-classes.h: ../babl/babl-type.h: ../babl/babl-sampling.h: ../babl/babl-component.h: ../babl/babl-model.h: ../babl/babl-format.h: ../babl/babl-image.h: ../babl/babl-conversion.h: ../babl/babl-fish.h: ../babl/babl-extension.h: ../babl/babl-introspect.h: ../babl/babl-list.h: ../babl/babl-hash-table.h: ../babl/babl-db.h: ../babl/babl-ids.h: ../babl/babl-util.h: ../babl/babl-memory.h: ../babl/babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/.deps/rgb_to_bgr.Po0000644000000000000000000000624411272022132022442 0ustar rootrootrgb_to_bgr.o rgb_to_bgr.o: rgb_to_bgr.c ../config.h /usr/include/math.h \ /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ ../babl/babl-internal.h /usr/include/stdlib.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/assert.h ../babl/babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ ../babl/babl-class.h ../babl/babl-classes.h ../babl/babl-type.h \ ../babl/babl-sampling.h ../babl/babl-component.h ../babl/babl-model.h \ ../babl/babl-format.h ../babl/babl-image.h ../babl/babl-conversion.h \ ../babl/babl-fish.h ../babl/babl-extension.h ../babl/babl-introspect.h \ ../babl/babl-list.h ../babl/babl-hash-table.h ../babl/babl-db.h \ ../babl/babl-ids.h ../babl/babl-util.h ../babl/babl-memory.h \ ../babl/babl-cpuaccel.h ../config.h: /usr/include/math.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: ../babl/babl-internal.h: /usr/include/stdlib.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/assert.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../babl/babl-class.h: ../babl/babl-classes.h: ../babl/babl-type.h: ../babl/babl-sampling.h: ../babl/babl-component.h: ../babl/babl-model.h: ../babl/babl-format.h: ../babl/babl-image.h: ../babl/babl-conversion.h: ../babl/babl-fish.h: ../babl/babl-extension.h: ../babl/babl-introspect.h: ../babl/babl-list.h: ../babl/babl-hash-table.h: ../babl/babl-db.h: ../babl/babl-ids.h: ../babl/babl-util.h: ../babl/babl-memory.h: ../babl/babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/.deps/babl_class_name.Po0000644000000000000000000000626311272022134023424 0ustar rootrootbabl_class_name.o babl_class_name.o: babl_class_name.c ../config.h \ /usr/include/string.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/stdio.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/libio.h \ /usr/include/_G_config.h /usr/include/wchar.h /usr/include/bits/wchar.h \ /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ ../babl/babl-internal.h /usr/include/stdlib.h /usr/include/sys/types.h \ /usr/include/time.h /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/bits/sigset.h /usr/include/bits/time.h \ /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ /usr/include/alloca.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h ../babl/babl.h ../babl/babl-macros.h \ ../babl/babl-types.h ../babl/babl-version.h ../babl/babl-class.h \ ../babl/babl-classes.h ../babl/babl-type.h ../babl/babl-sampling.h \ ../babl/babl-component.h ../babl/babl-model.h ../babl/babl-format.h \ ../babl/babl-image.h ../babl/babl-conversion.h ../babl/babl-fish.h \ ../babl/babl-extension.h ../babl/babl-introspect.h ../babl/babl-list.h \ ../babl/babl-hash-table.h ../babl/babl-db.h ../babl/babl-ids.h \ ../babl/babl-util.h ../babl/babl-memory.h ../babl/babl-cpuaccel.h ../config.h: /usr/include/string.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/stdio.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: ../babl/babl-internal.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../babl/babl-class.h: ../babl/babl-classes.h: ../babl/babl-type.h: ../babl/babl-sampling.h: ../babl/babl-component.h: ../babl/babl-model.h: ../babl/babl-format.h: ../babl/babl-image.h: ../babl/babl-conversion.h: ../babl/babl-fish.h: ../babl/babl-extension.h: ../babl/babl-introspect.h: ../babl/babl-list.h: ../babl/babl-hash-table.h: ../babl/babl-db.h: ../babl/babl-ids.h: ../babl/babl-util.h: ../babl/babl-memory.h: ../babl/babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/.deps/babl_fish_path_dhtml.Po0000644000000000000000000000630211272022127024450 0ustar rootrootbabl_fish_path_dhtml.o babl_fish_path_dhtml.o: babl_fish_path_dhtml.c \ ../config.h /usr/include/stdlib.h /usr/include/features.h \ /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ ../babl/babl-internal.h /usr/include/stdio.h /usr/include/libio.h \ /usr/include/_G_config.h /usr/include/wchar.h /usr/include/bits/wchar.h \ /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h ../babl/babl.h ../babl/babl-macros.h \ ../babl/babl-types.h ../babl/babl-version.h ../babl/babl-class.h \ ../babl/babl-classes.h ../babl/babl-type.h ../babl/babl-sampling.h \ ../babl/babl-component.h ../babl/babl-model.h ../babl/babl-format.h \ ../babl/babl-image.h ../babl/babl-conversion.h ../babl/babl-fish.h \ ../babl/babl-extension.h ../babl/babl-introspect.h ../babl/babl-list.h \ ../babl/babl-hash-table.h ../babl/babl-db.h ../babl/babl-ids.h \ ../babl/babl-util.h ../babl/babl-memory.h ../babl/babl-cpuaccel.h ../config.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: ../babl/babl-internal.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../babl/babl-class.h: ../babl/babl-classes.h: ../babl/babl-type.h: ../babl/babl-sampling.h: ../babl/babl-component.h: ../babl/babl-model.h: ../babl/babl-format.h: ../babl/babl-image.h: ../babl/babl-conversion.h: ../babl/babl-fish.h: ../babl/babl-extension.h: ../babl/babl-introspect.h: ../babl/babl-list.h: ../babl/babl-hash-table.h: ../babl/babl-db.h: ../babl/babl-ids.h: ../babl/babl-util.h: ../babl/babl-memory.h: ../babl/babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/.deps/formats.Po0000644000000000000000000000623711272022131022010 0ustar rootrootformats.o formats.o: formats.c ../config.h /usr/include/stdlib.h \ /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ ../babl/babl-internal.h /usr/include/stdio.h /usr/include/libio.h \ /usr/include/_G_config.h /usr/include/wchar.h /usr/include/bits/wchar.h \ /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/assert.h ../babl/babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ ../babl/babl-class.h ../babl/babl-classes.h ../babl/babl-type.h \ ../babl/babl-sampling.h ../babl/babl-component.h ../babl/babl-model.h \ ../babl/babl-format.h ../babl/babl-image.h ../babl/babl-conversion.h \ ../babl/babl-fish.h ../babl/babl-extension.h ../babl/babl-introspect.h \ ../babl/babl-list.h ../babl/babl-hash-table.h ../babl/babl-db.h \ ../babl/babl-ids.h ../babl/babl-util.h ../babl/babl-memory.h \ ../babl/babl-cpuaccel.h ../config.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: ../babl/babl-internal.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/assert.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../babl/babl-class.h: ../babl/babl-classes.h: ../babl/babl-type.h: ../babl/babl-sampling.h: ../babl/babl-component.h: ../babl/babl-model.h: ../babl/babl-format.h: ../babl/babl-image.h: ../babl/babl-conversion.h: ../babl/babl-fish.h: ../babl/babl-extension.h: ../babl/babl-introspect.h: ../babl/babl-list.h: ../babl/babl-hash-table.h: ../babl/babl-db.h: ../babl/babl-ids.h: ../babl/babl-util.h: ../babl/babl-memory.h: ../babl/babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/.deps/babl_fish_path_fitness.Po0000644000000000000000000000632011272022127025013 0ustar rootrootbabl_fish_path_fitness.o babl_fish_path_fitness.o: \ babl_fish_path_fitness.c ../config.h /usr/include/stdlib.h \ /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ ../babl/babl-internal.h /usr/include/stdio.h /usr/include/libio.h \ /usr/include/_G_config.h /usr/include/wchar.h /usr/include/bits/wchar.h \ /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/assert.h ../babl/babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ ../babl/babl-class.h ../babl/babl-classes.h ../babl/babl-type.h \ ../babl/babl-sampling.h ../babl/babl-component.h ../babl/babl-model.h \ ../babl/babl-format.h ../babl/babl-image.h ../babl/babl-conversion.h \ ../babl/babl-fish.h ../babl/babl-extension.h ../babl/babl-introspect.h \ ../babl/babl-list.h ../babl/babl-hash-table.h ../babl/babl-db.h \ ../babl/babl-ids.h ../babl/babl-util.h ../babl/babl-memory.h \ ../babl/babl-cpuaccel.h ../config.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: ../babl/babl-internal.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/assert.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../babl/babl-class.h: ../babl/babl-classes.h: ../babl/babl-type.h: ../babl/babl-sampling.h: ../babl/babl-component.h: ../babl/babl-model.h: ../babl/babl-format.h: ../babl/babl-image.h: ../babl/babl-conversion.h: ../babl/babl-fish.h: ../babl/babl-extension.h: ../babl/babl-introspect.h: ../babl/babl-list.h: ../babl/babl-hash-table.h: ../babl/babl-db.h: ../babl/babl-ids.h: ../babl/babl-util.h: ../babl/babl-memory.h: ../babl/babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/.deps/introspect.Po0000644000000000000000000000624011272022126022525 0ustar rootrootintrospect.o introspect.o: introspect.c ../config.h \ ../babl/babl-internal.h /usr/include/stdlib.h /usr/include/features.h \ /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h ../babl/babl.h ../babl/babl-macros.h \ ../babl/babl-types.h ../babl/babl-version.h ../babl/babl-class.h \ ../babl/babl-classes.h ../babl/babl-type.h ../babl/babl-sampling.h \ ../babl/babl-component.h ../babl/babl-model.h ../babl/babl-format.h \ ../babl/babl-image.h ../babl/babl-conversion.h ../babl/babl-fish.h \ ../babl/babl-extension.h ../babl/babl-introspect.h ../babl/babl-list.h \ ../babl/babl-hash-table.h ../babl/babl-db.h ../babl/babl-ids.h \ ../babl/babl-util.h ../babl/babl-memory.h ../babl/babl-cpuaccel.h ../config.h: ../babl/babl-internal.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../babl/babl-class.h: ../babl/babl-classes.h: ../babl/babl-type.h: ../babl/babl-sampling.h: ../babl/babl-component.h: ../babl/babl-model.h: ../babl/babl-format.h: ../babl/babl-image.h: ../babl/babl-conversion.h: ../babl/babl-fish.h: ../babl/babl-extension.h: ../babl/babl-introspect.h: ../babl/babl-list.h: ../babl/babl-hash-table.h: ../babl/babl-db.h: ../babl/babl-ids.h: ../babl/babl-util.h: ../babl/babl-memory.h: ../babl/babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/.deps/babl-html-dump.Po0000644000000000000000000000625411272022130023140 0ustar rootrootbabl-html-dump.o babl-html-dump.o: babl-html-dump.c ../config.h \ ../babl/babl-internal.h /usr/include/stdlib.h /usr/include/features.h \ /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h ../babl/babl.h ../babl/babl-macros.h \ ../babl/babl-types.h ../babl/babl-version.h ../babl/babl-class.h \ ../babl/babl-classes.h ../babl/babl-type.h ../babl/babl-sampling.h \ ../babl/babl-component.h ../babl/babl-model.h ../babl/babl-format.h \ ../babl/babl-image.h ../babl/babl-conversion.h ../babl/babl-fish.h \ ../babl/babl-extension.h ../babl/babl-introspect.h ../babl/babl-list.h \ ../babl/babl-hash-table.h ../babl/babl-db.h ../babl/babl-ids.h \ ../babl/babl-util.h ../babl/babl-memory.h ../babl/babl-cpuaccel.h ../config.h: ../babl/babl-internal.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../babl/babl-class.h: ../babl/babl-classes.h: ../babl/babl-type.h: ../babl/babl-sampling.h: ../babl/babl-component.h: ../babl/babl-model.h: ../babl/babl-format.h: ../babl/babl-image.h: ../babl/babl-conversion.h: ../babl/babl-fish.h: ../babl/babl-extension.h: ../babl/babl-introspect.h: ../babl/babl-list.h: ../babl/babl-hash-table.h: ../babl/babl-db.h: ../babl/babl-ids.h: ../babl/babl-util.h: ../babl/babl-memory.h: ../babl/babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/rgb_to_bgr0000755000000000000000000001222111272022132021047 0ustar rootroot#! /bin/sh # rgb_to_bgr - temporary wrapper script for .libs/rgb_to_bgr # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # The rgb_to_bgr program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='/bin/sed -e 1s/^X//' sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command="(cd /root/Desktop/babl-0.1.0/tests; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=\"/usr/lib/qt/lib:./:/lib:/usr/lib:/usr/local/lib:/usr/X11R7/lib:/root/my-applications/lib:/opt/qt4/lib:/opt/mozilla.org/lib:/usr/lib/seamonkey:/opt/samba/lib\"; export LD_LIBRARY_PATH; PATH=\"./:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R7/bin:/root/my-applications/bin:/opt/qt4/bin:/opt/mozilla.org/bin:/opt/samba/bin:/usr/lib/qt/bin\"; export PATH; gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -o \$progdir/\$file rgb_to_bgr.o ../babl/.libs/libbabl-0.0.so -lm -ldl -Wl,--rpath -Wl,/root/Desktop/babl-0.1.0/babl/.libs ) " # This environment variable determines our operation mode. if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then # install mode needs the following variable: notinst_deplibs=' ../babl/libbabl-0.0.la' else # When we are sourced in execute mode, $file and $echo are already set. if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then echo="echo" file="$0" # Make sure echo works. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec /bin/sh "$0" --no-reexec ${1+"$@"} fi fi # Find the directory that this script lives in. thisdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "x$thisdir" = "x$file" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'` while test -n "$file"; do destdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` # If there was a directory component, then change thisdir. if test "x$destdir" != "x$file"; then case "$destdir" in [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; *) thisdir="$thisdir/$destdir" ;; esac fi file=`$echo "X$file" | $Xsed -e 's%^.*/%%'` file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'` done # Try to get the absolute directory name. absdir=`cd "$thisdir" && pwd` test -n "$absdir" && thisdir="$absdir" program=lt-'rgb_to_bgr' progdir="$thisdir/.libs" if test ! -f "$progdir/$program" || \ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \ test "X$file" != "X$progdir/$program"; }; then file="$$-$program" if test ! -d "$progdir"; then mkdir "$progdir" else rm -f "$progdir/$file" fi # relink executable if necessary if test -n "$relink_command"; then if relink_command_output=`eval $relink_command 2>&1`; then : else echo "$relink_command_output" >&2 rm -f "$progdir/$file" exit 1 fi fi mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || { rm -f "$progdir/$program"; mv -f "$progdir/$file" "$progdir/$program"; } rm -f "$progdir/$file" fi if test -f "$progdir/$program"; then if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then # Run the actual program with our arguments. exec "$progdir/$program" ${1+"$@"} $echo "$0: cannot exec $program $*" exit 1 fi else # The program doesn't exist. $echo "$0: error: \`$progdir/$program' does not exist" 1>&2 $echo "This script is just a wrapper for $program." 1>&2 echo "See the libtool documentation for more information." 1>&2 exit 1 fi fi ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/models0000755000000000000000000001217511272022135020237 0ustar rootroot#! /bin/sh # models - temporary wrapper script for .libs/models # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # The models program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='/bin/sed -e 1s/^X//' sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command="(cd /root/Desktop/babl-0.1.0/tests; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=\"/usr/lib/qt/lib:./:/lib:/usr/lib:/usr/local/lib:/usr/X11R7/lib:/root/my-applications/lib:/opt/qt4/lib:/opt/mozilla.org/lib:/usr/lib/seamonkey:/opt/samba/lib\"; export LD_LIBRARY_PATH; PATH=\"./:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R7/bin:/root/my-applications/bin:/opt/qt4/bin:/opt/mozilla.org/bin:/opt/samba/bin:/usr/lib/qt/bin\"; export PATH; gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -o \$progdir/\$file models.o ../babl/.libs/libbabl-0.0.so -lm -ldl -Wl,--rpath -Wl,/root/Desktop/babl-0.1.0/babl/.libs ) " # This environment variable determines our operation mode. if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then # install mode needs the following variable: notinst_deplibs=' ../babl/libbabl-0.0.la' else # When we are sourced in execute mode, $file and $echo are already set. if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then echo="echo" file="$0" # Make sure echo works. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec /bin/sh "$0" --no-reexec ${1+"$@"} fi fi # Find the directory that this script lives in. thisdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "x$thisdir" = "x$file" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'` while test -n "$file"; do destdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` # If there was a directory component, then change thisdir. if test "x$destdir" != "x$file"; then case "$destdir" in [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; *) thisdir="$thisdir/$destdir" ;; esac fi file=`$echo "X$file" | $Xsed -e 's%^.*/%%'` file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'` done # Try to get the absolute directory name. absdir=`cd "$thisdir" && pwd` test -n "$absdir" && thisdir="$absdir" program=lt-'models' progdir="$thisdir/.libs" if test ! -f "$progdir/$program" || \ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \ test "X$file" != "X$progdir/$program"; }; then file="$$-$program" if test ! -d "$progdir"; then mkdir "$progdir" else rm -f "$progdir/$file" fi # relink executable if necessary if test -n "$relink_command"; then if relink_command_output=`eval $relink_command 2>&1`; then : else echo "$relink_command_output" >&2 rm -f "$progdir/$file" exit 1 fi fi mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || { rm -f "$progdir/$program"; mv -f "$progdir/$file" "$progdir/$program"; } rm -f "$progdir/$file" fi if test -f "$progdir/$program"; then if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then # Run the actual program with our arguments. exec "$progdir/$program" ${1+"$@"} $echo "$0: cannot exec $program $*" exit 1 fi else # The program doesn't exist. $echo "$0: error: \`$progdir/$program' does not exist" 1>&2 $echo "This script is just a wrapper for $program." 1>&2 echo "See the libtool documentation for more information." 1>&2 exit 1 fi fi ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/nop0000755000000000000000000001215611272022131017543 0ustar rootroot#! /bin/sh # nop - temporary wrapper script for .libs/nop # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # The nop program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='/bin/sed -e 1s/^X//' sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command="(cd /root/Desktop/babl-0.1.0/tests; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=\"/usr/lib/qt/lib:./:/lib:/usr/lib:/usr/local/lib:/usr/X11R7/lib:/root/my-applications/lib:/opt/qt4/lib:/opt/mozilla.org/lib:/usr/lib/seamonkey:/opt/samba/lib\"; export LD_LIBRARY_PATH; PATH=\"./:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R7/bin:/root/my-applications/bin:/opt/qt4/bin:/opt/mozilla.org/bin:/opt/samba/bin:/usr/lib/qt/bin\"; export PATH; gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -o \$progdir/\$file nop.o ../babl/.libs/libbabl-0.0.so -lm -ldl -Wl,--rpath -Wl,/root/Desktop/babl-0.1.0/babl/.libs ) " # This environment variable determines our operation mode. if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then # install mode needs the following variable: notinst_deplibs=' ../babl/libbabl-0.0.la' else # When we are sourced in execute mode, $file and $echo are already set. if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then echo="echo" file="$0" # Make sure echo works. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec /bin/sh "$0" --no-reexec ${1+"$@"} fi fi # Find the directory that this script lives in. thisdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "x$thisdir" = "x$file" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'` while test -n "$file"; do destdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` # If there was a directory component, then change thisdir. if test "x$destdir" != "x$file"; then case "$destdir" in [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; *) thisdir="$thisdir/$destdir" ;; esac fi file=`$echo "X$file" | $Xsed -e 's%^.*/%%'` file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'` done # Try to get the absolute directory name. absdir=`cd "$thisdir" && pwd` test -n "$absdir" && thisdir="$absdir" program=lt-'nop' progdir="$thisdir/.libs" if test ! -f "$progdir/$program" || \ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \ test "X$file" != "X$progdir/$program"; }; then file="$$-$program" if test ! -d "$progdir"; then mkdir "$progdir" else rm -f "$progdir/$file" fi # relink executable if necessary if test -n "$relink_command"; then if relink_command_output=`eval $relink_command 2>&1`; then : else echo "$relink_command_output" >&2 rm -f "$progdir/$file" exit 1 fi fi mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || { rm -f "$progdir/$program"; mv -f "$progdir/$file" "$progdir/$program"; } rm -f "$progdir/$file" fi if test -f "$progdir/$program"; then if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then # Run the actual program with our arguments. exec "$progdir/$program" ${1+"$@"} $echo "$0: cannot exec $program $*" exit 1 fi else # The program doesn't exist. $echo "$0: error: \`$progdir/$program' does not exist" 1>&2 $echo "This script is just a wrapper for $program." 1>&2 echo "See the libtool documentation for more information." 1>&2 exit 1 fi fi ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/tests/introspect0000755000000000000000000001222111272022126021136 0ustar rootroot#! /bin/sh # introspect - temporary wrapper script for .libs/introspect # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # The introspect program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='/bin/sed -e 1s/^X//' sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command="(cd /root/Desktop/babl-0.1.0/tests; { test -z \"\${LIBRARY_PATH+set}\" || unset LIBRARY_PATH || { LIBRARY_PATH=; export LIBRARY_PATH; }; }; { test -z \"\${COMPILER_PATH+set}\" || unset COMPILER_PATH || { COMPILER_PATH=; export COMPILER_PATH; }; }; { test -z \"\${GCC_EXEC_PREFIX+set}\" || unset GCC_EXEC_PREFIX || { GCC_EXEC_PREFIX=; export GCC_EXEC_PREFIX; }; }; { test -z \"\${LD_RUN_PATH+set}\" || unset LD_RUN_PATH || { LD_RUN_PATH=; export LD_RUN_PATH; }; }; LD_LIBRARY_PATH=\"/usr/lib/qt/lib:./:/lib:/usr/lib:/usr/local/lib:/usr/X11R7/lib:/root/my-applications/lib:/opt/qt4/lib:/opt/mozilla.org/lib:/usr/lib/seamonkey:/opt/samba/lib\"; export LD_LIBRARY_PATH; PATH=\"./:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R7/bin:/root/my-applications/bin:/opt/qt4/bin:/opt/mozilla.org/bin:/opt/samba/bin:/usr/lib/qt/bin\"; export PATH; gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -o \$progdir/\$file introspect.o ../babl/.libs/libbabl-0.0.so -lm -ldl -Wl,--rpath -Wl,/root/Desktop/babl-0.1.0/babl/.libs ) " # This environment variable determines our operation mode. if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then # install mode needs the following variable: notinst_deplibs=' ../babl/libbabl-0.0.la' else # When we are sourced in execute mode, $file and $echo are already set. if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then echo="echo" file="$0" # Make sure echo works. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then # Yippee, $echo works! : else # Restart under the correct shell, and then maybe $echo will work. exec /bin/sh "$0" --no-reexec ${1+"$@"} fi fi # Find the directory that this script lives in. thisdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` test "x$thisdir" = "x$file" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'` while test -n "$file"; do destdir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` # If there was a directory component, then change thisdir. if test "x$destdir" != "x$file"; then case "$destdir" in [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;; *) thisdir="$thisdir/$destdir" ;; esac fi file=`$echo "X$file" | $Xsed -e 's%^.*/%%'` file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'` done # Try to get the absolute directory name. absdir=`cd "$thisdir" && pwd` test -n "$absdir" && thisdir="$absdir" program=lt-'introspect' progdir="$thisdir/.libs" if test ! -f "$progdir/$program" || \ { file=`ls -1dt "$progdir/$program" "$progdir/../$program" 2>/dev/null | /bin/sed 1q`; \ test "X$file" != "X$progdir/$program"; }; then file="$$-$program" if test ! -d "$progdir"; then mkdir "$progdir" else rm -f "$progdir/$file" fi # relink executable if necessary if test -n "$relink_command"; then if relink_command_output=`eval $relink_command 2>&1`; then : else echo "$relink_command_output" >&2 rm -f "$progdir/$file" exit 1 fi fi mv -f "$progdir/$file" "$progdir/$program" 2>/dev/null || { rm -f "$progdir/$program"; mv -f "$progdir/$file" "$progdir/$program"; } rm -f "$progdir/$file" fi if test -f "$progdir/$program"; then if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then # Run the actual program with our arguments. exec "$progdir/$program" ${1+"$@"} $echo "$0: cannot exec $program $*" exit 1 fi else # The program doesn't exist. $echo "$0: error: \`$progdir/$program' does not exist" 1>&2 $echo "This script is just a wrapper for $program." 1>&2 echo "See the libtool documentation for more information." 1>&2 exit 1 fi fi ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/0000755000000000000000000000000011272022201020047 5ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/gggl-lies.lo0000644000000000000000000000046511272022116022267 0ustar rootroot# gggl-lies.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/gggl-lies.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/gimp-8bit.la0000644000000000000000000000227511272022120022173 0ustar rootroot# gimp-8bit.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='gimp-8bit.so.0' # Names of this library. library_names='gimp-8bit.so.0.0.0 gimp-8bit.so.0 gimp-8bit.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /root/Desktop/babl-0.1.0/babl/libbabl-0.0.la -ldl -lm' # Version information for gimp-8bit. current=0 age=0 revision=0 # Is this an already installed library? installed=no # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' relink_command="(cd /root/Desktop/babl-0.1.0/extensions; /bin/sh ../libtool --tag=CC --mode=relink gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -module -o gimp-8bit.la -rpath /usr/lib/babl-0.0 gimp-8bit.lo ../babl/libbabl-0.0.la -lm @inst_prefix_dir@) " ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/CIE-Lab.lo0000644000000000000000000000046111272022115021504 0ustar rootroot# CIE-Lab.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/CIE-Lab.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/naive-CMYK.la0000644000000000000000000000230511272022121022231 0ustar rootroot# naive-CMYK.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='naive-CMYK.so.0' # Names of this library. library_names='naive-CMYK.so.0.0.0 naive-CMYK.so.0 naive-CMYK.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /root/Desktop/babl-0.1.0/babl/libbabl-0.0.la -ldl -lm' # Version information for naive-CMYK. current=0 age=0 revision=0 # Is this an already installed library? installed=no # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' relink_command="(cd /root/Desktop/babl-0.1.0/extensions; /bin/sh ../libtool --tag=CC --mode=relink gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -module -o naive-CMYK.la -rpath /usr/lib/babl-0.0 naive-CMYK.lo ../babl/libbabl-0.0.la -lm @inst_prefix_dir@) " ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/naive-CMYK.lo0000644000000000000000000000046711272022121022256 0ustar rootroot# naive-CMYK.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/naive-CMYK.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/gggl-lies.la0000644000000000000000000000227511272022117022253 0ustar rootroot# gggl-lies.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='gggl-lies.so.0' # Names of this library. library_names='gggl-lies.so.0.0.0 gggl-lies.so.0 gggl-lies.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /root/Desktop/babl-0.1.0/babl/libbabl-0.0.la -ldl -lm' # Version information for gggl-lies. current=0 age=0 revision=0 # Is this an already installed library? installed=no # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' relink_command="(cd /root/Desktop/babl-0.1.0/extensions; /bin/sh ../libtool --tag=CC --mode=relink gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -module -o gggl-lies.la -rpath /usr/lib/babl-0.0 gggl-lies.lo ../babl/libbabl-0.0.la -lm @inst_prefix_dir@) " ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/gggl.la0000644000000000000000000000222511272022120021306 0ustar rootroot# gggl.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='gggl.so.0' # Names of this library. library_names='gggl.so.0.0.0 gggl.so.0 gggl.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /root/Desktop/babl-0.1.0/babl/libbabl-0.0.la -ldl -lm' # Version information for gggl. current=0 age=0 revision=0 # Is this an already installed library? installed=no # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' relink_command="(cd /root/Desktop/babl-0.1.0/extensions; /bin/sh ../libtool --tag=CC --mode=relink gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -module -o gggl.la -rpath /usr/lib/babl-0.0 gggl.lo ../babl/libbabl-0.0.la -lm @inst_prefix_dir@) " ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.deps/0000755000000000000000000000000011272022201021060 5ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.deps/CIE-Lab.Plo0000644000000000000000000000175611272022115022645 0ustar rootrootCIE-Lab.lo .libs/CIE-Lab.o: CIE-Lab.c ../config.h /usr/include/math.h \ /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/string.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h ../babl/babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ ../extensions/util.h /usr/include/assert.h ../config.h: /usr/include/math.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/string.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../extensions/util.h: /usr/include/assert.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.deps/gggl.Plo0000644000000000000000000000174511272022117022471 0ustar rootrootgggl.lo .libs/gggl.o: gggl.c ../config.h /usr/include/math.h \ /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/string.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h ../babl/babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ ../extensions/util.h /usr/include/assert.h ../config.h: /usr/include/math.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/string.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../extensions/util.h: /usr/include/assert.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.deps/gegl-fixups.Plo0000644000000000000000000000340011272022116023770 0ustar rootrootgegl-fixups.lo .libs/gegl-fixups.o: gegl-fixups.c /usr/include/stdlib.h \ /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h ../config.h \ ../babl/babl.h ../babl/babl-macros.h ../babl/babl-types.h \ ../babl/babl-version.h ../babl/base/util.h /usr/include/assert.h \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ ../extensions/util.h /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: ../config.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../babl/base/util.h: /usr/include/assert.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: ../extensions/util.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.deps/gggl-lies.Plo0000644000000000000000000000176411272022116023423 0ustar rootrootgggl-lies.lo .libs/gggl-lies.o: gggl-lies.c ../config.h \ /usr/include/math.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/string.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h ../babl/babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ ../extensions/util.h /usr/include/assert.h ../config.h: /usr/include/math.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/string.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../extensions/util.h: /usr/include/assert.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.deps/naive-CMYK.Plo0000644000000000000000000000163111272022121023401 0ustar rootrootnaive-CMYK.lo .libs/naive-CMYK.o: naive-CMYK.c ../config.h \ /usr/include/math.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/string.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h ../babl/babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h ../config.h: /usr/include/math.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/string.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.deps/gimp-8bit.Plo0000644000000000000000000000320411272022120023333 0ustar rootrootgimp-8bit.lo .libs/gimp-8bit.o: gimp-8bit.c ../config.h \ /usr/include/stdio.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/bits/types.h /usr/include/bits/typesizes.h \ /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \ /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ ../babl/babl.h ../babl/babl-macros.h ../babl/babl-types.h \ ../babl/babl-version.h ../babl/base/util.h /usr/include/assert.h \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ ../extensions/util.h ../config.h: /usr/include/stdio.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../babl/base/util.h: /usr/include/assert.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: ../extensions/util.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.deps/sse_fixups_la-sse-fixups.Plo0000644000000000000000000000343511272022121026512 0ustar rootrootsse_fixups_la-sse-fixups.lo .libs/sse_fixups_la-sse-fixups.o: \ sse-fixups.c ../config.h /usr/include/stdlib.h /usr/include/features.h \ /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h ../babl/babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ ../babl/babl-cpuaccel.h ../extensions/util.h /usr/include/assert.h \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h ../config.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: ../babl/babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: ../babl/babl-cpuaccel.h: ../extensions/util.h: /usr/include/assert.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/gegl-fixups.la0000644000000000000000000000231511272022116022625 0ustar rootroot# gegl-fixups.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='gegl-fixups.so.0' # Names of this library. library_names='gegl-fixups.so.0.0.0 gegl-fixups.so.0 gegl-fixups.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /root/Desktop/babl-0.1.0/babl/libbabl-0.0.la -ldl -lm' # Version information for gegl-fixups. current=0 age=0 revision=0 # Is this an already installed library? installed=no # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' relink_command="(cd /root/Desktop/babl-0.1.0/extensions; /bin/sh ../libtool --tag=CC --mode=relink gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -module -o gegl-fixups.la -rpath /usr/lib/babl-0.0 gegl-fixups.lo ../babl/libbabl-0.0.la -lm @inst_prefix_dir@) " ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/gggl.lo0000644000000000000000000000045311272022117021333 0ustar rootroot# gggl.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/gggl.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/sse-fixups.la0000644000000000000000000000234511272022122022501 0ustar rootroot# sse-fixups.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='sse-fixups.so.0' # Names of this library. library_names='sse-fixups.so.0.0.0 sse-fixups.so.0 sse-fixups.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /root/Desktop/babl-0.1.0/babl/libbabl-0.0.la -ldl -lm' # Version information for sse-fixups. current=0 age=0 revision=0 # Is this an already installed library? installed=no # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' relink_command="(cd /root/Desktop/babl-0.1.0/extensions; /bin/sh ../libtool --tag=CC --mode=relink gcc -mmmx -mmmx -msse -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -module -o sse-fixups.la -rpath /usr/lib/babl-0.0 sse_fixups_la-sse-fixups.lo ../babl/libbabl-0.0.la -lm @inst_prefix_dir@) " ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/0000755000000000000000000000000011272022203021060 5ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gimp-8bit.la0000777000000000000000000000000011272022166025534 2../gimp-8bit.laustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/sse-fixups.so.0.0.0T0000755000000000000000000001442711272022203024322 0ustar rootrootELF4p4 ($ $ $ $$048 88Qtd  ?c +   NXs6TX|4 T"__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassesbabl_componentbabl_typebabl_modelbabl_format_newbabl_cpu_accel_get_supportbabl_conversion_newrintlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endsse-fixups.so.0GLIBC_2.1.3GLIBC_2.0 si ii LP(,048<@ DHUS[t?"]X[] hhhhh h($h0(h8p,h@`US[@8uBt% 0P4ҋ4uƃ8]Í'US[tt P҃]ÐUWVSLÒ$Ǎ$Eč$yEȍ$hE̍$ƍ$D$|$UĉT$UȉT$ ỦT$t$$*E荃$ Ǎ$EЍ$Eԍ$E؍$ƍ$D$|$UЉT$UԉT$ U؉T$t$$E썃$xǍ$hE܍$WE$vƍ$vD$|$U܉T$ UT$t$$ EX%tjJ%t\D$(D$ D$ED$E$#D$D$ D$ED$E$L[^_]US]EE؋EEEsE݃ɃE$ݝH,HE}x}NEWƅWE WE E݃ɃE$LݝX,XE}x}NEgƅgE gE E݃ɃE$ݝh,hE}x}NEwƅwE wE E݃ɃE$ݝx,xE}x}NEEEE UE m}EEE(()E(YE)EE()E(M(E])EW)E(M(E_)E-EEoEEUE E UE E (M(E)E-EEoEEUE E UE E m}?wE[]USEE؋E6EEE݃ɃE$ݝX,XE}x}NEgƅgE gE E݃ɃE$ݝh,hE}x}NEwƅwE wE E݃ɃE$Yݝx,xE}x}NEEEE UE Em}EEE(()E(YE)EE()E(M(E])EW)E(M(E_)E-EEoEEUE E UE E (M(E)E-EEoEEUE E m}LwEĴ[]Ë$ÐUVS[Ò P@t֍ЋFu[^]ÐUS[LZ[]ABGRfloatRGBAu8RGBlinearo@CCCC     H(oHoo&o8>N^n~L0GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.commentX!   ) 1o&&">oHH@M (V H _/Z((ek q @y $$ ,, 44 88  0LLTTTZ) $,4* @TOPV@ b(o0|  4  D ,  L p  #8 &H(     $,48LT,;K Z n  t~6TX|4 T"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxconv_rgbaF_linear_rgb8_linearconv_rgbaF_linear_rgba8_linear_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finibabl_typebabl_modelbabl_cpu_accel_get_supportbabl_conversion_new__bss_start_endinit_edatarint@@GLIBC_2.0__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gegl-fixups.so.0.0.0T0000755000000000000000000002701111272022201024435 0ustar rootrootELF4L"4 ( 0    Qtd  Hl +  DWa|0!) - 0!?"__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassesrintpowbabl_componentbabl_typebabl_modelbabl_format_newbabl_conversion_newlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endgegl-fixups.so.0GLIBC_2.1.3GLIBC_2.0 si ii (!,!   !! !!!!! !$!US[t?&X[] hhhhh h($h0(h8p,h@`US[,HuBt% 0P4ҋ4uƃH]Í'US[ütt P҃]ÐUVS@,h ǃhE:E݃]UE䉄uE$]EٜE}~EfEfEEs EE]Es EEDE݃$U],EEE$݃$/],EȈEEEꈄEE누EރfEEfO@[^]US$8EEE EE݃w*E݃݃݃\$$J]E݃]E$[]US$sEEE EE݃w*݃\$E$݃݃]E݃]E$[]UEEEUS$ ?EE܋E EEEE܃ EE{EE܋EE݃w EEu$wE} EE!}~ EE EUEE}{EEEEUEEEEm}#E$[]UVS /EEE EEEbE$EuE$uE$eEEm}uE[^]UVS$? ÒEEE EEEE EE݃wEEEku]EM$EuEM$uEM$~EEm}IE$[^]U(EEE EEEEE}t/EЉ)щEE؉Й}؉E؋E؈EEEU߈MM}t/EЉ)щEE؉Й}؉E؋E؈EEUMEE}t,EЉ)щEE؉Й}؉E؋E؈EEUMUEEEm}EUEEE EEEQE EEMEUEMUEMU EEEm}uEU EEE EEErE Eu]E݁wEEMEUEMUEMU EEEm}uEUVS$ bEEE EEEE Eu]E݃w)MUEE~EM$EuEM$buEM$?uE$$EEm}E$[^]UWVSI$aǍ$QE$@E$/E $^ƍ&$^D$|$UT$UT$ UT$t$$E؍$Ǎ+$E.$E1$E $ƍ4$D$|$UT$UT$ UT$t$$`E܍$?Ǎ$/E$E$ E<$<ƍ&$E䍃$ǍP$ ET$EX$E<$ƍ\$D$ |$UT$UT$UT$t$ D$gD$u$E荃?$xǍB$hEE$WEč<$ƍz$D$|$UT$ UĉT$t$$ E썃$ǍE$EȍB$E̍?$EЍ<$ƍz$D$ |$UȉT$ỦT$UЉT$t$ D$D$u${ED$qD$ D$E܉D$E؉$D$D$ D$E؉D$E܉$gD$D$ D$ED$E܉$9D$D$ D$E؉D$E$ D$D$ D$E܉D$E$D$D$ D$E؉D$E$D$D$ D$ED$E؉$D$D$ D$ED$E؉$SD$aD$ D$ED$E܉$%D$D$ D$ED$E܉$D$LD$ D$ED$E$Ĝ[^_]US! EE|E]E$E EE E]E$xE EE E]E$PE EE Em}vE[]Uu EEtU EE EU EE EU EE EU EE Em}uEU EEeU EE EU EE EU EE EU ?E m}uEË $Ë$ÐUVS[> P@t֍ЋFu[^]ÐUS[ Z[]ABGRfloatRGBABaGaRaRaGaBaAu8B'G'R'R'G'B'AR'aG'aB'aR'aG'aB'aAB'aG'aR'aA u8nameR'G'B'PADB'aG'aR'aPAD u8linearo@ ?(?G?@33@@ )@h??Wz>     Ht(o4ooo *:JZjz(! GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.commentX!   )1o">o44@M tt(V H _/Ze4kqy         0(!(!@!0!@ 0!Z!\&;  +   * @@!O,!V0 b o |   `!lH !r %&r ) ) , = NY  ^D % oi z      x   (!  %  4t          (!@!.=M \ p v0!) - 0!"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxtable_initedtable_inittable_8_Fgamma_2_2_to_lineartable_8g_Flinear_to_gamma_2_2table_F_8table_F_8ggggl_float_to_index16conv_rgbAF_sdl32conv_rgbaF_sdl32conv_rgbAF_rgb8conv_bgrA8_rgba8conv_rgbaF_rgbAFconv_rgbAF_rgbaFconv_rgbAF_lrgba8conv_rgb8_rgbaFconv_rgba8_rgbaFconv_rgbaF_rgb8_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.cx__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finipow@@GLIBC_2.0babl_typebabl_modelbabl_conversion_new__bss_start_endinit_edatarint@@GLIBC_2.0__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gimp-8bit.so0000777000000000000000000000000011272022166026025 2gimp-8bit.so.0.0.0ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/sse-fixups.so.0.0.00000755000000000000000000001447711272022203024203 0ustar rootrootELF44 (D D D DD8<X XXQtd  ?c +   NXs6|4 |"__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassesbabl_componentbabl_typebabl_modelbabl_format_newbabl_cpu_accel_get_supportbabl_conversion_newrintlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endsse-fixups.so.0/root/Desktop/babl-0.1.0/babl/.libsGLIBC_2.1.3GLIBC_2.0 si ii $tx8<@PTX\`dh lpUS[t?YX[] hhhhh h($h0(h8p,h@`US[H8uBt% 0P4ҋ4uƃ8]Í'US[tt P҃]ÐUWVSLÚ$Ǎ$Eč$}Eȍ$lE̍$ƍ$D$|$UĉT$UȉT$ ỦT$t$$.E荃$ Ǎ$EЍ$Eԍ$E؍$ƍ$D$|$UЉT$UԉT$ U؉T$t$$E썃$|Ǎ$lE܍$[E$zƍ$zD$|$U܉T$ UT$t$$$E\%tjN%t\D$ D$ D$ED$E$'D$D$ D$ED$E$L[^_]USeEE؋EEEsE݃ɃE$ݝH,HE}x}NEWƅWE WE E݃ɃE$PݝX,XE}x}NEgƅgE gE E݃ɃE$ݝh,hE}x}NEwƅwE wE E݃ɃE$ݝx,xE}x}NEEEE UE m}EEE(()E(YE)EE()E(M(E])EW)E(M(E_)E-EEoEEUE E UE E (M(E)E-EEoEEUE E UE E m}?wE[]USEE؋E6EEE݃ɃE$ݝX,XE}x}NEgƅgE gE E݃ɃE$ݝh,hE}x}NEwƅwE wE E݃ɃE$]ݝx,xE}x}NEEEE UE Em}EEE(()E(YE)EE()E(M(E])EW)E(M(E_)E-EEoEEUE E UE E (M(E)E-EEoEEUE E m}LwEĴ[]Ë$ÐUVS[ÚP@t֍ЋFu[^]ÐUS[TZ[]ABGRfloatRGBAu8RGBlinearo@CCCC    . DH(olooJoXbrtPGCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.commentX!   ).1oJJ">oll@M (V H _/ZLLek q @y@ @ DD LL TT XX 88 DD0tt|||Z) 8DLT* @|OxV` bHoP|@  T  d ,  Dt   #X JlL    @  DLTX8Dt|,;K Z n  t~6|4 |"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxconv_rgbaF_linear_rgb8_linearconv_rgbaF_linear_rgba8_linear_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finibabl_typebabl_modelbabl_cpu_accel_get_supportbabl_conversion_new__bss_start_endinit_edatarint@@GLIBC_2.0__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gimp-8bit.lai0000644000000000000000000000150011272022120023341 0ustar rootroot# gimp-8bit.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='gimp-8bit.so.0' # Names of this library. library_names='gimp-8bit.so.0.0.0 gimp-8bit.so.0 gimp-8bit.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /usr/lib/libbabl-0.0.la -ldl -lm' # Version information for gimp-8bit. current=0 age=0 revision=0 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/naive-CMYK.la0000777000000000000000000000000011272022166025642 2../naive-CMYK.laustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/CIE-Lab.so.00000777000000000000000000000000011272022165024752 2CIE-Lab.so.0.0.0ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gggl-lies.so.00000777000000000000000000000000011272022166026307 2gggl-lies.so.0.0.0ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/CIE-Lab.so.0.0.00000755000000000000000000003361411272022201023161 0ustar rootrootELF4(4 (%%%55H< %55Qtd    R + # ?pa{6?& 6"__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassesbabl_component_newbabl_componentbabl_model_newbabl_modelbabl_conversion_newbabl_typebabl_format_newrintbabl_type_newpowcbrtlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endCIE-Lab.so.0/root/Desktop/babl-0.1.0/babl/.libsGLIBC_2.1.3GLIBC_2.0 si 3ii ?666666666666 6 6 6 6 66US[ø1t?bX[] hhhhh h($h0(h8p,h@`0hHP4hP@8hX0<h` US[à0TuBt% @PDҋDuƃT]Í'US[00tt P҃]ÐUDUS/D$T$D$ZD$a$nD$ZD$g$N[]UWVS,L^/g$ƍa$ǍT$D$t$|$ D$mD$u$ z$lǍg$\Ea$KƍT$;D$|$UT$t$ D$|D$u$,[^_]UXrE]E]E]EЉD$ E؉D$ED$E\$E\$E$jE EE EE EE E m}uEUSd-|E]E]E]EȉD$ EЉD$E؉D$E\$E\$E$KE EE EE EE EE m}vEd[]UhE]E]E]E]EȉD$ EЉD$E؉D$E\$E\$E$,E EE EE EE EE E m}jEUhE]E]E]E]EȉD$ EЉD$E؉D$E\$E\$E$E EE EE EE EE E m}jEUVS +m$ƍ$D$|D$ D$t$$$ƍm$D$D$ D$t$$|$Sƍ$CD$D$ D$t$$9$ ƍ|$D$RD$ D$t$$ [^]UWVS\û*g$#Ǎa$ET$Eč$Aƍm$aD$|$UT$UĉT$t$ D$D$u$z$Ǎg$Eȍa$xE̍T$gEЍ$ƍ|$D$ |$UȉT$ỦT$UЉT$t$ D$D$u$g$ƍ$7Ǎa$Eԍ$E؍T$E܍$Em$D$$t$ |$UԉT$U؉T$U܉T$UT$ D$D$u$[g$=ƍ$}Ǎa$E䍃$\E荃T$E썃$:Em$YD$$t$ |$UT$UT$UT$UT$ D$D$u$\[^_]US4(ED$(ED$$ED$ E D$ED$D$D$݃|\$$4[]U(UMEEE EEEEEU܈MyE EE;E~E]HE;E}E]7U܋E)P$d$UE܉)P$d$EeE]E$EE,E$E(E m0}0yE0US4&ED$(ED$$ED$ E D$ED$D$D$݃|\$$4[]USDyË&UMEEE EEE؋EE܈UԈME ]EEw EԈE`EEw EЈEGEeEeUEԉ)P$d$EP$d$$],EȈEU$EE(E E,E$m0}0^E0D[]US,å%ED$(ED$$ED$ E D$ED$D$D$݃\$݃$,[]US40B%ED$(ED$$ED$ E D$ED$D$D$݃\$݃$Z4[]UVS0$D$,݃|\$$D$ \$ D$D$D$ D$"D$$dD$,݃\$$D$ ݃\$ D$D$D$ D$"D$$$ƍ$D$D$ *D$t$$$ƍ$zD$ D$ *D$t$$$Bƍ$2D$OD$ *D$t$$X$ƍ$D$D$ *D$t$$0[^]US4"ED$(ED$$ED$ E D$ED$D$D$݃|\$$4[]U(UMEEE EEEEEfUfMyE EE;E~E]HE;E}E]7U܋E)P$d$UE܉)P$d$EeE]E$EE,E$E(E m0}0yE0US4!ED$(ED$$ED$ E D$ED$D$D$݃|\$$4[]USDWi!UMEEE EEE؋EEfUfME ]EEw EfEbEEw EfEHEeEeUEԉ)P$d$EP$d$$],EfEU$EfE,E$E(E m0}0ZE0D[]US,k } ED$(ED$$ED$ E D$ED$D$D$݃\$݃$,[]US4  ED$(ED$$ED$ E D$ED$D$D$݃\$݃$T4[]UVS@ öD$,݃|\$$D$ \$ D$D$D$ D$"D$$D$,D$ *D$t$$d$ƍ$D$wD$ *D$t$$$ƍ$D$D$ *D$t$$@[^]UUVS0 ÒEEE EE(uEكE\$$ݜE}~σ0[^]U 4E@E0@ɋE@E0@E E@E0@ɋE@E0@E XE@E@ɋE@E@E XU E@E0ɋEE0@U EE0@ɋE@E0ZU E@EɋEE@ZU 0EE0@ɋE@E0U 0E@E0ɋEE0@ZU 0EE@ɋE@EZEE ɋE@E E@E 0]Es EE uE E @uE XE @uE XU E uU E @uZU E @uZU 0E 0uU 0E 0@uZU 0E 0@uZEEUSÓ$݃d݃lݛ|݃d݃l݃lݛ݃4]݃D]݃T]݃<]݃L]݃\]݃4݃<]݃D݃L]݃T݃\]؍PD$E$݅P݃|݅X݅`݃]݅h݃|݅p݅x݃]E݃|EE݃]EMݛEMݛEMݛEMݛEMݛEMݛEMݛEMݛEMݛD$$[]U E]E ]E]݁M݁M݁ ME݁ M݁ M݁ ME ݁$ M݁, M݁4 MEU $E]E ]E]݁M݁M݁ME݁M݁M݁ME ݁M݁M݁MEUSTzÌE]E ]E]EwCE݃w E$݃݃]E݃]]E$e]݃|E$Oe݃]݃E$.E݃]ЋEEE EEET[]US$ÛEEE EE݃wE$']E݃݃]E$[]UST);E]E ]E]݃tEw,E݃݃]E]EME]$E݃]E݃݃]E݃E]E$P݃|]E݃E]E$)݃]ЋEEE EEET[]U/EEEE EE݁wEMM]E݁݁]EUStu4ǃt[]U(EEE EEEEEEEEEED$ED$E$TED$ED$E$EE EE$EE(USd2DEEE EEEEEEEEEED$ED$E$ED$ED$E$"Ew]"Ew]E]E]E]Ew]"Ew]E]E]E]Ew]"Ew]E]E]E]EE EE$EE(d[]Ë $Ë$ÐUVS[P@t֍ЋFu[^]ÐUS[üZ[]CIE LchromaCIE aCIE bCIE LabnameACIE Lab alphaRGBAlinearfloatCIE Lab floatdoubleCIE Lab alpha floatCIE u8 abCIE u8 LCIE Lab u8CIE u16 abCIE u16 LCIE Lab u16max_valmin_valbitsunsignedintegerplaneid@z?`?@33?@33?@33?Q?`}? ?@Y@_@`I@IC@#?]@0@`f:@@@i@`%@`?i@x{?  #T I 6hX(oooo5.>N^n~65GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.comment! TTP)I1o*>o@M XX(V h _/Zek##q$$y%%5%5%5%5%6& 6&@6&7& &ZN' ,Z 3555* @7O6Vp b5o5|% 5#  n @  ? ( !v  \": X  '  4!1 A_ U n_  c ^c  _  _ 7 ,#c Bc X b$ f$ j$ n$ r% v% z% ~%  %  ` @7m   (707@?H?H }   ` e  \!Y  7#696F# ]# t5TX  # $ % 55556667}  # )=6I?N& S6Zj"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxtypescomponentsmodelsformatsconversionsrgba_to_labcpercep_rgb_to_spacelab_to_rgbacpercep_space_to_rgbrgba_to_labalaba_to_rgbacpercep_initconvert_u8_l_doubleconvert_u8_double_scaledconvert_double_u8_lconvert_double_u8_scaledconvert_u8_ab_doubleconvert_double_u8_abtypes_u8convert_u16_l_doubleconvert_u16_double_scaledconvert_double_u16_lconvert_double_u16_scaledconvert_u16_ab_doubleconvert_double_u16_abtypes_u16pxrpyrpxgpygpxbpyblxnlynLRAMPinit_powtablepowtableMinvertrgbxyzrgb_initxnnznnMrgb_to_xyzMxyz_to_rgbxyz_to_rgbrgb_to_xyzxyz_to_labffunclab_to_xyzffunc_invinitialized.3666_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.cx__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finipow@@GLIBC_2.0cbrt@@GLIBC_2.0babl_typebabl_component_newbabl_type_newbabl_modelbabl_model_newbabl_conversion_new__bss_start_endinit_edatarint@@GLIBC_2.0__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gimp-8bit.so.0.0.00000755000000000000000000002755111272022202023671 0ustar rootrootELF4T"4 ( 8`    Qtd  Cg + D ?R\w8!`)j. 8!"__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassespowbabl_componentbabl_typebabl_modelbabl_format_newbabl_conversion_newrintlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endgimp-8bit.so.0/root/Desktop/babl-0.1.0/babl/.libsGLIBC_2.1.3GLIBC_2.0 si ii  0!4!    !!!!! !$! (!,!US[t?&X[] hhhhh h($h0(h8p,h@`US[@uBt% 0P4ҋ4uƃ@]Í'US[ätt P҃]ÐUVS UgE@E݃]EE]Eٜ`uE$!]Eٜ`E}~ [^]US$EEE EE݃w*E݃݃݃\$$&]E݃]E$[]UWVSsÅ`$Ǎb$|d$Ef$Eh$ƍn$D$|$|T$UT$ UT$t$$?Eč`$Ǎb$Ed$Ef$Es$ƍn$D$|$UT$UT$ UT$t$$Eȍ`$Ǎv$}Ey$lE|$[Es$ƍ$D$|$UT$UT$ UT$t$$E̍b$Ǎd$Ef$Eh$ ƍ$ D$|$UT$ UT$t$$EЍb$Ǎd$sEf$bEs$ƍ$D$|$UT$ UT$t$$+Eԍv$ Ǎy$E|$Es$ƍ$D$|$UT$ UT$t$$E؍`$Ǎ$Eh$ƍ$D$|$ UT$t$$QE܍`$0Ǎ$ Es$Oƍ$OD$|$ UT$t$$E`$Ǎ$Es$ƍ$D$|$ UT$t$$E䍃$nƍh$Ǎ$D$ t$|$$FE荃$%ƍs$UǍ$UD$ t$|$$E썃$ƍs$ Ǎ$ D$ t$|$$ED$D$ D$EĉD$Eȉ$D$ D$ D$EĉD$Ẻ$D$D$ D$EЉD$Eԉ$rD$D$ D$EЉD$E؉$DD$9D$ D$EĉD$Eԉ$D$D$ D$EĉD$E؉$D$D$ D$E܉D$E$D$D$ D$E܉D$E$D$D$ D$EĉD$E$^D$ D$ D$EĉD$E$0D$D$ D$ED$E$D$.D$ D$ED$E$D$D$ D$EĉD$E$D$@D$ D$EĉD$E$xD$D$ D$EԉD$Eĉ$JD$D$ D$EȉD$Eĉ$Ĝ[^_]USdJ\EEEE@E݃ɃE$],EE}x}NEEEE UE E݃ɃE$],EE}x}NEEEE ULjE E݃ɃE$@],EȉE}x}NEEEE U׈E E݃ɃE$],E؉E}x}NEEEE UE m}Ed[]USTEEEEE݃ɃE$f],EE}x}NEEEE ULjE E݃ɃE$],EȉE}x}NEEEE U׈E E݃ɃE$],E؉E}x}NEEEE UE Em}ET[]UE EEEIE`EEUEEUEEUEEU?Em}uEU(>E EEEIE`EEUEEUEEUEEU?Em}uEUED$E D$E$EUE EEEE`EEEm}uًEUED$E D$E$EU4E EEEE`EEEm}uًEU E EEEXE`EEUEEUEEUEEE`EEEm}uEUMc E EEEXE`EEUEEUEEUEEE`EEEm}uEU E EEE:E`EEEE`EEEm}uEU ED$E D$E$ EU9O E EEEeE`EEEE`EEEE`EEEU?Em}uEU E EEEeE`EEEE`EEEE`EEEU?Em}uEU UЉD$E D$E$aEU UЉD$E D$E$EU E EEEtE`EEEE`EEEE`EEEE`EEEm}uEU ED$E D$E$EË $Ë$ÐUVS[ P@t֍ЋFu[^]ÐUS[ð Z[]ABGRfloatRGBAu8B'G'R'R'G'B'ARGBR'G'B'YYAY'Y'Alinearo@ ?(?G?@33@@ )@  D   !H(oToo2o JZjz0! GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.commentX!   )1o22">oTT@M (V H _/Z44edkDDq``xy        !!00!0!@!8!  8!Z!d&> D+%   * @@!O4!VP b o |   l `!r `%(   &* C* c9  & h    $ 1.$ Mw i@w . z RK K !0! 6 M  2T4  D `      !0!@!Veu  D 8!`)j. 8!"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxtables_initlut_lineargamma_2_2_to_linearlut_gamma_2_2conv_rgba8_linear_rgbaF_linearconv_rgba8_gamma_2_2_rgbaF_linearconv_rgb8_linear_rgbF_linearconv_rgb8_gamma_2_2_rgbF_linearconv_rgb8_linear_rgbaF_linearconv_rgb8_gamma_2_2_rgbaF_linearconv_ga8_linear_gaF_linearconv_ga8_gamma_2_2_gaF_linearconv_ga8_linear_rgbaF_linearconv_ga8_gamma_2_2_rgbaF_linearconv_g8_linear_gF_linearconv_g8_gamma_2_2_gF_linearconv_g8_linear_rgbaF_linearconv_g8_gamma_2_2_rgbaF_linearconv_rgbaF_linear_rgb8_linearconv_rgbaF_linear_rgba8_linearu8_gamma_2_2_to_float_linearu8_linear_to_float_linear_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.cx__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finipow@@GLIBC_2.0babl_typebabl_modelbabl_conversion_new__bss_start_endinit_edatarint@@GLIBC_2.0__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gggl.so.0.0.00000755000000000000000000005176411272022202023014 0ustar rootrootELF4dB4 (??@@@H@@@Qtd   Dh + > S]xHAE HA?"__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassesrintbabl_componentbabl_typebabl_modelbabl_format_newbabl_conversion_newlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endgggl.so.0/root/Desktop/babl-0.1.0/babl/.libsGLIBC_2.1.3GLIBC_2.0 si ii 0A4A@@@ AAAAA A$A (AUS[=t? 9X[] hhhhh h($h0(h8pUS[T<`uBt% 0P4ҋ4uƃ`]Í'US[;tt P҃]ÐUSDq8è;4ǃEEE݃]EٜE}~EEE݃]EٜE}~ظEfEfEEs EfEXEs EfE=E݃$H],EEE݃$*],EfEEE鈄EEfSEfEEfQD[]UEEEUWVS<64:H$@ǍJ$0M$P$S$$ƍZ$$D$|$T$T$ T$t$$EH$ǍJ$M$yP$eb$ƍZ$D$|$T$T$ T$t$$EH$ǍJ$M$P$h$ƍZ$D$|$T$T$ T$t$$xEH$WǍJ$G M$3P$l$;ƍZ$;D$|$ T$T$ T$t$$EH$Ǎo$s$w$| b$ƍ{$D$|$T$T$ T$t$$2EH$Ǎo$$s$(w$,h$ƍ{$D$|$$T$(T$ ,T$t$$EH$nǍo$^0s$J4w$68l$Rƍ{$RD$|$0T$4T$ 8T$t$$EJ$ǍM$ƍ$>D$|$DT$ HT$t$$EJ$ǍM$LP$Pl$ƍ$D$|$LT$ PT$t$$]EH$<Ǎ$,Tb$Hƍ$HD$|$ TT$t$$EčH$Ǎ$Xb$ƍ$D$|$ XT$t$$Eȍ$nƍb$Ǎ$D$ t$|$$FE̍H$%Ǎ$\h$1ƍ$1D$|$ \T$t$$EЍH$Ǎ$`h$ƍ$D$|$ `T$t$$xEԍ$Wƍh$wǍ$wD$ t$|$$/E؍H$Ǎ$dl$ƍ$D$|$ dT$t$$E܍H$Ǎ$hl$ƍ$D$|$ hT$t$$aE$@ƍl$`Ǎ$`D$ t$|$$E䍃$Ǎ$l$p$t$ƍ$D$ |$lT$pT$tT$t$ D$D$$aE荃$@Ǎ$0xb$L|$Eb$'ƍ$'D$|$xT$|T$ UT$t$$E썃H$ƍ$Ǎ$Eb$E$aEb$E$D$t$|$UT$UT$ UT$UT$$ED$D$ D$ED$E$*D$mD$ D$ED$E$D$ED$ D$ED$E$D$D$ D$ED$E$D$D$ D$ED$E$rD$mD$ D$ED$E$DD$ED$ D$ED$E$D$D$ D$ED$E$D$D$ D$ED$E$D$D$ D$ED$E$D$D$ D$ED$E$^D$ZD$ D$ED$E$0D$2D$ D$ED$E$D$ D$ D$ED$E$D$2D$ D$ED$E$D$ D$ D$ED$E$xD$D$ D$ED$E$JD$D$ D$ED$E$D$D$ D$E܉D$Eĉ$D$D$ D$ED$Eȉ$D$2D$ D$ED$Ẻ$D$D$ D$EĉD$E܉$dD$D$ D$EȉD$E$6D$D$ D$ẺD$E$D$D$ D$EЉD$Eĉ$D$D$ D$EԉD$Eȉ$D$$D$ D$E؉D$Ẻ$~D$D$ D$EĉD$EЉ$PD$D$ D$EȉD$Eԉ$"D$D$ D$ẺD$E؉$D$D$ D$E܉D$EЉ$D$ID$ D$ED$E؉$D$mD$ D$ED$E$jD$D$ D$ED$E$EE U EU EE EE m}uEUTEE:E'U E݁],EfE EE}~ӃEm}uEUEEVEEEE]EE}~E݁݁8],E‹E E Em}uEUVEEEM EЉ)։EEЙ}EEfE HEЉ)։EEЙ}EEfE HEЉ)։EEЙ}EEfE PEfE Em}E^]UEEEE E Em}uԋE[]UED$E D$E$EU UЉD$E D$E$nEU UЉD$E D$E$EU ED$E D$E$EU ED$E D$E$EUUЉD$E D$E$&EUUЉD$E D$E${EUUЉD$E D$E$EEVUUUEmыE)‰UUЉD$E D$E$EUED$E D$E$eEUED$E D$E$EUED$E D$E$PHUED$E D$E$rEË $Ë$ÐUVS[&P@t֍ЋFu[^]ÐUS[tZ[]`}? ?@AB'G'R'doubleR'G'B'Afloatu16u8B'aG'aR'aR'aG'aB'aAR'G'B'Y'Y'AY'aY'aACrCbu8-chromau8-lumaY'CbCrY'CbCr u8nameY'CbCrAlinearo@@A`"?bX9?v/?j+ſJ4տ?sڿU0*д@A@_8? m9?Uy?@@;On?JOcֿ|~!<'1Z?  >  A@x(o8ooo@&6FVfv0A @j?3l?GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.commentT! ) 1o >o88@M xx(V @ _/Zet9k>>q0>0>Py??@@@@@@@@@@ AA,0A0A`AHA@ HAZAtFo TN@@@* @`AO4AV b@o @|? @= ALZ AEEE 0> 8> 8A@A@> =( +m=0 <E=( N=( `<* o<E ~<* Z<* 2<(  <( ;* ;* ;& 2;^ ;. :Y :& $:a &9& 49Y >9& LI96 Vm8 g7 xB6O 4O .4 73 b2 <2& 27 1M k1M 1W 03 u0l #-0H //n <}/B I. X.T g- wH- _, + * *~ )b F)[ E( 'R d' & /7& A0% R$( c|$( t$5 }%/ A0A= = @8x  > 0> ? @@@@@A0A`A  "> (2=QHA]Eb gHAn~"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxtable_initedtable_inittable_8_Ftable_16_Ftable_F_8table_F_16gggl_float_to_index16lxnlynxnnznnLRAMPconv_rgbaF_rgba8conv_rgba8_rgbaFconv_rgbaF_rgba16conv_rgba16_rgbaFconv_rgbF_rgb8conv_rgb8_rgbFconv_rgbF_rgb16conv_rgb16_rgbFconv_rgba8_rgba16conv_rgba16_rgba8conv_rgb8_rgb16conv_rgb16_rgb8conv_gaF_ga8conv_F_8conv_ga8_gaFconv_8_Fconv_gaF_ga16conv_F_16conv_ga16_gaFconv_16_Fconv_ga16_ga8conv_16_8conv_rgbaF_rgbAFconv_rgbAF_rgbaFconv_yuv8_rgb8conv_rgb8_yuv8conv_yuvF_rgbFconv_rgbF_yuvFconv_yuvaF_rgbaFconv_ga8_ga16conv_8_16conv_gaF_gAFconv_gAF_gaFconv_rgbaF_rgbFconv_gaF_gFconv_rgbF_rgbaFconv_gF_gaFconv_rgbF_gFconv_gF_rgbFconv_rgbaF_gaFconv_gaF_rgbaFconv_rgbaF_rgb8conv_rgbA8_rgbaFconv_rgbA8_rgba8conv_rgba8_rgbA8conv_rgbA16_rgba16conv_rgbaF_g8conv_rgbaF_rgb16conv_rgb8_rgba8conv_rgbA8_rgb8conv_rgba8_rgb8conv_rgbaF_rgbA8conv_rgbaF_rgbA16conv_rgbA16_rgbaFconv_rgbaF_yuvaFconv_rgbaF_rgbaDconv_rgbaD_rgbaFconv_D_Fconv_F_D_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.cx__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finibabl_typebabl_modelbabl_conversion_new__bss_start_endinit_edatarint@@GLIBC_2.0__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gimp-8bit.so.00000777000000000000000000000000011272022166026163 2gimp-8bit.so.0.0.0ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gggl.so.00000777000000000000000000000000011272022166024423 2gggl.so.0.0.0ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/naive-CMYK.so.0.0.0T0000755000000000000000000001304211272022202024046 0ustar rootrootELF4 4 (4 4 4 4404H HHQtd    R +   ?pa{dhL d"__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassesbabl_component_newbabl_componentbabl_model_newbabl_modelbabl_conversion_newbabl_typebabl_format_newlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endnaive-CMYK.so.0GLIBC_2.1.3si \` $(8<@DHLP T XUS[Pt?X[] hhhhh h($h0(h8p,h@`US[À8uBt% 0P4ҋ4uƃ8]Í'US[tt P҃]ÐUWVS<$D$$D$$D$$D$$$JǍ$:E䍃$)ƍ$D$|$UT$t$ D$D$$F$(ƍ$D$=D$ D$t$$$ƍ$D$jD$ D$t$$$HǍ$8E荃$'E썃$E$5ƍ$ED$ |$UT$UT$UT$t$ D$D$$<[^_]U@E]E]ȋE]]e]e]e]]EEwE]EEwE]EEwE]EM]Ew2Eee]Eee]Eee]]]]E EE EE EE EE E m}EU@E]ȋE]ЋE]؋E]Ew,eME]eME]eME]]E]E]e]e]e]E EE EE EE E E m}7EË $Ë$ÐUVS[Ò P@t֍ЋFu[^]ÐUS[LZ[]cyanyellowmagentakeyCMYKnameRGBAlinearfloatCMYK float     ,H`(o@oooH&6FVfv\@GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.commentX!   )1o">o@@ M ``(V H _/Ze4k q ?y0 0 44 << DD HH   ,, 0\\ dd d Z * 04<D* @dO`V b8o@|0  D  i-  ,\z  ~  H @`    0  4<DH ,\d /? N b  hrdhL d"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxrgba_to_cmykcmyk_to_rgba_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.cx__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finibabl_typebabl_component_newbabl_modelbabl_model_newbabl_conversion_new__bss_start_endinit_edata__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/naive-CMYK.lai0000644000000000000000000000150611272022121023413 0ustar rootroot# naive-CMYK.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='naive-CMYK.so.0' # Names of this library. library_names='naive-CMYK.so.0.0.0 naive-CMYK.so.0 naive-CMYK.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /usr/lib/libbabl-0.0.la -ldl -lm' # Version information for naive-CMYK. current=0 age=0 revision=0 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gggl.lai0000644000000000000000000000144211272022120022466 0ustar rootroot# gggl.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='gggl.so.0' # Names of this library. library_names='gggl.so.0.0.0 gggl.so.0 gggl.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /usr/lib/libbabl-0.0.la -ldl -lm' # Version information for gggl. current=0 age=0 revision=0 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gggl-lies.la0000777000000000000000000000000011272022166025660 2../gggl-lies.laustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gegl-fixups.lai0000644000000000000000000000151411272022116024005 0ustar rootroot# gegl-fixups.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='gegl-fixups.so.0' # Names of this library. library_names='gegl-fixups.so.0.0.0 gegl-fixups.so.0 gegl-fixups.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /usr/lib/libbabl-0.0.la -ldl -lm' # Version information for gegl-fixups. current=0 age=0 revision=0 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/CIE-Lab.so.0.0.0T0000755000000000000000000003354411272022201023307 0ustar rootrootELF4'4 (%%%55@< %55Qtd    R + # ?pa{6?& 6"__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassesbabl_component_newbabl_componentbabl_model_newbabl_modelbabl_conversion_newbabl_typebabl_format_newrintbabl_type_newpowcbrtlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endCIE-Lab.so.0GLIBC_2.1.3GLIBC_2.0 si ii 66x6|666666666 6 6 6 6 66US[ô1t?fX[] hhhhh h($h0(h8p,h@`0hHP4hP@8hX0<h` US[Ø0\uBt% @PDҋDuƃ\]Í'US[(0tt P҃]ÐUDUS/D$\$D$bD$i$jD$bD$o$J[]UWVS,LV/o$ƍi$Ǎ\$D$t$|$ D$uD$}$$hǍo$XEi$Gƍ\$7D$|$UT$t$ D$D$}$,[^_]UXrE]E]E]EЉD$ E؉D$ED$E\$E\$E$jE EE EE EE E m}uEUSd-|E]E]E]EȉD$ EЉD$E؉D$E\$E\$E$KE EE EE EE EE m}vEd[]UhE]E]E]E]EȉD$ EЉD$E؉D$E\$E\$E$,E EE EE EE EE E m}jEUhE]E]E]E]EȉD$ EЉD$E؉D$E\$E\$E$E EE EE EE EE E m}jEUVS +u$ƍ$D$D$ D$t$$$ƍu$D$ D$ D$t$$}$Oƍ$?D$D$ D$t$$5$ƍ$D$ZD$ D$t$$ [^]UWVS\ó*o$Ǎi$E\$Eč$=ƍu$]D$|$UT$UĉT$t$ D$D$}$$Ǎo$Eȍi$tE̍\$cEЍ$ƍ$D$ |$UȉT$ỦT$UЉT$t$ D$D$}$o$ƍ$3Ǎi$Eԍ$E؍\$E܍$Eu$D$$t$ |$UԉT$U؉T$U܉T$UT$ D$D$}$Wo$9ƍ$yǍi$E䍃$XE荃\$E썃$6Eu$UD$$t$ |$UT$UT$UT$UT$ D$D$}$\[^_]US4'ED$(ED$$ED$ E D$ED$D$D$݃\$$4[]U(UMEEE EEEEEU܈MyE EE;E~E]HE;E}E]7U܋E)P$d$UE܉)P$d$EeE]E$EE,E$E(E m0}0yE0US4&ED$(ED$$ED$ E D$ED$D$D$݃\$$4[]USDyÃ&UMEEE EEE؋EE܈UԈME ]EEw EԈE`EEw EЈEGEeEeUEԉ)P$d$EP$d$$],EȈEU$EE(E E,E$m0}0^E0D[]US,Ý%ED$(ED$$ED$ E D$ED$D$D$݃\$݃$,[]US40:%ED$(ED$$ED$ E D$ED$D$D$݃\$݃$Z4[]UVS0$D$,݃\$$ D$ \$D$D$D$ !D$*D$$`D$,݃\$$ D$ ݃\$D$D$D$ !D$*D$$$ƍ$D$D$ 2D$t$$$ƍ$vD$D$ 2D$t$$$>ƍ$.D$WD$ 2D$t$$T$ƍ$D$D$ 2D$t$$ 0[^]US4"ED$(ED$$ED$ E D$ED$D$D$݃\$$4[]U(UMEEE EEEEEfUfMyE EE;E~E]HE;E}E]7U܋E)P$d$UE܉)P$d$EeE]E$EE,E$E(E m0}0yE0US4!ED$(ED$$ED$ E D$ED$D$D$݃\$$4[]USDWa!UMEEE EEE؋EEfUfME ]EEw EfEbEEw EfEHEeEeUEԉ)P$d$EP$d$$],EfEU$EfE,E$E(E m0}0ZE0D[]US,k u ED$(ED$$ED$ E D$ED$D$D$݃\$݃$,[]US4  ED$(ED$$ED$ E D$ED$D$D$݃\$݃$T4[]UVS@ îD$,݃\$$ D$ \$D$D$D$ !D$*D$$8D$4݃\$, D$(݃\$ D$D$D$!D$*D$ D$8D$$$ƍ$D$D$ 2D$t$$$Jƍ$:D$4D$ 2D$t$$`$ƍ$D$D$ 2D$t$$$ƍ$D$D$ 2D$t$$@[^]UUVS0 ÊEEE EE(uEكE\$$ݜE}~σ0[^]U ,E@E0@ɋE@E0@E E@E0@ɋE@E0@E XE@E@ɋE@E@E XU E@E0ɋEE0@U EE0@ɋE@E0ZU E@EɋEE@ZU 0EE0@ɋE@E0U 0E@E0ɋEE0@ZU 0EE@ɋE@EZEE ɋE@E E@E 0]Es EE uE E @uE XE @uE XU E uU E @uZU E @uZU 0E 0uU 0E 0@uZU 0E 0@uZEEUSË$݃l݃tݛ݃l݃t݃tݛ݃<]݃L]݃\]݃D]݃T]݃d]݃<݃D]݃L݃T]݃\݃d]؍PD$E$݅P݃݅X݅`݃]݅h݃݅p݅x݃]E݃EE݃]EMݛEMݛEMݛEMݛEMݛEMݛEMݛEMݛEMݛD$$[]U E]E ]E]݁M݁ M݁ ME݁ M݁ M݁$ ME ݁, M݁4 M݁< MEU E]E ]E]݁M݁M݁ME݁M݁M݁ME ݁M݁M݁MEUSTzÄE]E ]E]EwCE݃w E$݃݃]E݃]]E$e]݃E$Oe݃]݃E$.E݃]ЋEEE EEET[]US$ÓEEE EE݃wE$#]E݃݃]E$[]UST)3E]E ]E]݃|Ew,E݃݃]E]EME]$E݃]E݃݃]E݃E]E$P݃]E݃E]E$)݃]ЋEEE EEET[]U/=EEE EE݁wEMM]E݁݁]EUS|u4ǃ|[]U(EEE EEEEEEEEEED$ED$E$TED$ED$E$EE EE$EE(USd2<EEE EEEEEEEEEED$ED$E$ED$ED$E$"Ew]"Ew]E]E]E]Ew]"Ew]E]E]E]Ew]"Ew]E]E]E]EE EE$EE(d[]Ë $Ë$ÐUVS[ P@t֍ЋFu[^]ÐUS[ôZ[]CIE LchromaCIE aCIE bCIE LabnameACIE Lab alphaRGBAlinearfloatCIE Lab floatdoubleCIE Lab alpha floatCIE u8 abCIE u8 LCIE Lab u8CIE u16 abCIE u16 LCIE Lab u16max_valmin_valbitsunsignedintegerplaneid@z?`?@33?@33?@33?Q?`}? ?@Y@_@`I@IC@#?]@0@`f:@@@i@`%@`?i@x{?  #T % 6h\4(oooo5 *:JZjz65GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.comment! TTP)%1o*>o@M 44(V \\h _/Zek##q##y%%5%5%5%5%x6x& 6&@6&6& &Z&'+Z 2555* @6O6VP b5o5|% 5#  n   ?  !v  <": 8  '  4!1 A_ U n_  c >c  _  _  ,c Bfc X b$ f$ j$ n$ r$ v$ z$ ~$ % `  7M  77 ?H?H ]  ` E  $E@$ƍF$D$|$|T$UT$ UT$t$$KEč8$*Ǎ:$E<$ E>$EK$'ƍF$'D$|$UT$UT$ UT$t$$Eȍ8$ǍN$EQ$xET$gEK$ƍW$D$|$UT$UT$ UT$t$$)E̍:$Ǎ<$E>$E@$ƍ_$D$|$UT$ UT$t$$EЍ:$Ǎ<$E>$nEK$ƍ_$D$|$UT$ UT$t$$7EԍN$ǍQ$ET$EK$$ƍc$$D$|$UT$ UT$t$$E؍8$Ǎj$E@$ƍl$D$|$ UT$t$$]E܍8$<Ǎj$,EK$[ƍl$[D$|$ UT$t$$E8$Ǎo$EK$ƍr$D$|$ UT$t$$E䍃j$zƍ@$Ǎj$D$ t$|$$RE荃j$1ƍK$aǍj$aD$ t$|$$ E썃o$ƍK$Ǎo$D$ t$|$$ED$D$ vD$EĉD$Eȉ$D$D$ vD$EĉD$Ẻ$D$D$ vD$EЉD$Eԉ$~D$D$ vD$EЉD$E؉$PD$D$ vD$EĉD$Eԉ$"D$~D$ vD$EĉD$E؉$D$XD$ vD$E܉D$E$D$D$ vD$E܉D$E$D$jD$ vD$EĉD$E$jD$D$ vD$EĉD$E$o00@M pp(V H _/Zedkq00xy         0(!(!@!0!  0!Z!\&> <+%   * @@!O,!V  b o |   \l `!r `%(  &* C* c  v P& h b  m$ 1$ Mw iw . hz "K K  (! 6 M  0p   0       (!@!Veu   0!`):. 0!"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxtables_initlut_lineargamma_2_2_to_linearlut_gamma_2_2conv_rgba8_linear_rgbaF_linearconv_rgba8_gamma_2_2_rgbaF_linearconv_rgb8_linear_rgbF_linearconv_rgb8_gamma_2_2_rgbF_linearconv_rgb8_linear_rgbaF_linearconv_rgb8_gamma_2_2_rgbaF_linearconv_ga8_linear_gaF_linearconv_ga8_gamma_2_2_gaF_linearconv_ga8_linear_rgbaF_linearconv_ga8_gamma_2_2_rgbaF_linearconv_g8_linear_gF_linearconv_g8_gamma_2_2_gF_linearconv_g8_linear_rgbaF_linearconv_g8_gamma_2_2_rgbaF_linearconv_rgbaF_linear_rgb8_linearconv_rgbaF_linear_rgba8_linearu8_gamma_2_2_to_float_linearu8_linear_to_float_linear_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.cx__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finipow@@GLIBC_2.0babl_typebabl_modelbabl_conversion_new__bss_start_endinit_edatarint@@GLIBC_2.0__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/sse-fixups.so0000777000000000000000000000000011272022166026641 2sse-fixups.so.0.0.0ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gggl.la0000777000000000000000000000000011272022166023774 2../gggl.laustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/sse-fixups.so.00000777000000000000000000000000011272022166026777 2sse-fixups.so.0.0.0ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gegl-fixups.la0000777000000000000000000000000011272022166026620 2../gegl-fixups.laustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/sse-fixups.lai0000644000000000000000000000150611272022122023657 0ustar rootroot# sse-fixups.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='sse-fixups.so.0' # Names of this library. library_names='sse-fixups.so.0.0.0 sse-fixups.so.0 sse-fixups.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /usr/lib/libbabl-0.0.la -ldl -lm' # Version information for sse-fixups. current=0 age=0 revision=0 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gggl.so0000777000000000000000000000000011272022166024265 2gggl.so.0.0.0ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/sse-fixups.la0000777000000000000000000000000011272022166026350 2../sse-fixups.laustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gegl-fixups.so.0.0.00000755000000000000000000002702111272022202024313 0ustar rootrootELF4T"4 ( 8    Qtd  Hl +  DWa|8!) - 8!?"__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassesrintpowbabl_componentbabl_typebabl_modelbabl_format_newbabl_conversion_newlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endgegl-fixups.so.0/root/Desktop/babl-0.1.0/babl/.libsGLIBC_2.1.3GLIBC_2.0 si ii 0!4!    !!!!! !$! (!,!US[t?"X[] hhhhh h($h0(h8p,h@`US[@uBt% 0P4ҋ4uƃ@]Í'US[ätt P҃]ÐUVS@,g` ǃ`E:E݃]UE䉄uE$]EٜE}~EfEfEEs EE]Es EEDE݃$Y],EEE$݃$3],EȈEEEꈄEE누EރfEEfO@[^]US$ EEE EE݃w*E݃݃݃\$$N]E݃]E$[]US$sîEEE EE݃w*݃\$E$݃݃]E݃]E$[]UEEEUS$ 'EE܋E EEEE܃ EE{EE܋EE݃w EEu$wE} EE!}~ EE EUEE}{EEEEUEEEEm}#E$[]UVS EEE EEEbE$EuE$uE$eEEm}uE[^]UVS$? zEEE EEEE EE݃wEEEku]EM$EuEM$uEM$~EEm}IE$[^]U(EEE EEEEE}t/EЉ)щEE؉Й}؉E؋E؈EEEU߈MM}t/EЉ)щEE؉Й}؉E؋E؈EEUMEE}t,EЉ)щEE؉Й}؉E؋E؈EEUMUEEEm}EUEEE EEEQE EEMEUEMUEMU EEEm}uEU EEE EEErE Eu]E݁wEEMEUEMUEMU EEEm}uEUVS$ JEEE EEEE Eu]E݃w)MUEE~EM$EuEM$buEM$?uE$$EEm}E$[^]UWVS10$eǍ2$UE4$DE6$3E8$bƍ>$bD$|$UT$UT$ UT$t$$E؍0$ǍC$EF$EI$E8$ƍL$D$|$UT$UT$ UT$t$$dE܍0$CǍ2$3E4$"E6$ET$@ƍ>$@D$|$UT$UT$ UT$t$$E0$ǍW$EZ$E]$ET$ƍ`$D$|$UT$UT$ UT$t$$BE䍃0$!Ǎh$El$Ep$ET$ƍt$D$ |$UT$UT$UT$t$ D$D$$E荃W$|ǍZ$lE]$[EčT$ƍ$D$|$UT$ UĉT$t$$$E썃$Ǎ]$EȍZ$E̍W$EЍT$ƍ$D$ |$UȉT$ỦT$UЉT$t$ D$D$$ED$D$ D$E܉D$E؉$D$D$ D$E؉D$E܉$kD$D$ D$ED$E܉$=D$4D$ D$E؉D$E$D$4D$ D$E܉D$E$D$D$ D$E؉D$E$D$D$ D$ED$E؉$D$D$ D$ED$E؉$WD$yD$ D$ED$E܉$)D$D$ D$ED$E܉$D$dD$ D$ED$E$Ĝ[^_]US EE|E]E$E EE E]E$xE EE E]E$PE EE Em}vE[]U] EEtU EE EU EE EU EE EU EE Em}uEU EEeU EE EU EE EU EE EU ?E m}uEË $Ë$ÐUVS[& P@t֍ЋFu[^]ÐUS[ Z[]ABGRfloatRGBABaGaRaRaGaBaAu8B'G'R'R'G'B'AR'aG'aB'aR'aG'aB'aAB'aG'aR'aA u8nameR'G'B'PADB'aG'aR'aPAD u8linearo@ ?(?G?@33@@ )@h??Wz>     !H(oXoo4o N^n~0! GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.commentX!   )1o44">oXX@M (V H _/Z88e4kq00y        !!00!0!@!8!@ 8!Z!d&; +   * @@!O4!VP b o |   `!H !r %Fr ) ) , = Ny  ^d % o z     4   !0!  %  4X8   0      !0!@!.=M \ p v8!) - 8!"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxtable_initedtable_inittable_8_Fgamma_2_2_to_lineartable_8g_Flinear_to_gamma_2_2table_F_8table_F_8ggggl_float_to_index16conv_rgbAF_sdl32conv_rgbaF_sdl32conv_rgbAF_rgb8conv_bgrA8_rgba8conv_rgbaF_rgbAFconv_rgbAF_rgbaFconv_rgbAF_lrgba8conv_rgb8_rgbaFconv_rgba8_rgbaFconv_rgbaF_rgb8_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.cx__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finipow@@GLIBC_2.0babl_typebabl_modelbabl_conversion_new__bss_start_endinit_edatarint@@GLIBC_2.0__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/naive-CMYK.so0000777000000000000000000000000011272022166026133 2naive-CMYK.so.0.0.0ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gggl-lies.so0000777000000000000000000000000011272022166026151 2gggl-lies.so.0.0.0ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gegl-fixups.so.00000777000000000000000000000000011272022166027247 2gegl-fixups.so.0.0.0ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gggl-lies.lai0000644000000000000000000000150011272022117023421 0ustar rootroot# gggl-lies.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='gggl-lies.so.0' # Names of this library. library_names='gggl-lies.so.0.0.0 gggl-lies.so.0 gggl-lies.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /usr/lib/libbabl-0.0.la -ldl -lm' # Version information for gggl-lies. current=0 age=0 revision=0 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/CIE-Lab.la0000777000000000000000000000000011272022166024324 2../CIE-Lab.laustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/naive-CMYK.so.00000777000000000000000000000000011272022166026271 2naive-CMYK.so.0.0.0ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/naive-CMYK.so.0.0.00000755000000000000000000001313211272022203023723 0ustar rootrootELF4 4 (d d d dd8<x xxQtd    R +   ?pa{| "__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassesbabl_component_newbabl_componentbabl_model_newbabl_modelbabl_conversion_newbabl_typebabl_format_newlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endnaive-CMYK.so.0/root/Desktop/babl-0.1.0/babl/.libsGLIBC_2.1.3si X\`ptx|  US[dt?&X[] hhhhh h($h0(h8p,h@`US[È8uBt% 0P4ҋ4uƃ8]Í'US[tt P҃]ÐUWVS<$D$$D$$D$$D$$$>Ǎ$.E䍃$ƍ$ D$|$UT$t$ D$D$$:$ƍ$ D$5D$ D$t$$$ƍ$D$bD$ D$t$$$<Ǎ$,E荃$E썃$ E$)ƍ$9D$ |$UT$UT$UT$t$ D$D$$<[^_]U@E]E]ȋE]]e]e]e]]EEwE]EEwE]EEwE]EM]Ew2Eee]Eee]Eee]]]]E EE EE EE EE E m}EU@E]ȋE]ЋE]؋E]Ew,eME]eME]eME]]E]E]e]e]e]E EE EE EE E E m}7EË $Ë$ÐUVS[ÚP@t֍ЋFu[^]ÐUS[TZ[]cyanyellowmagentakeyCMYKnameRGBAlinearfloatCMYK float     & dH(odooBox:JZjzpGCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.commentX!   )&1oBB">odd M (V H _/Z$$e4k  q ?y` ` dd ll tt xx XX dd 0   Z * hdlt* @OV@ bhop|`  t  -  d    x Bd$     `  dltxXd /? N b  hr| "__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxrgba_to_cmykcmyk_to_rgba_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.cx__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finibabl_typebabl_component_newbabl_modelbabl_model_newbabl_conversion_new__bss_start_endinit_edata__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gggl.so.0.0.0T0000755000000000000000000005175411272022202023137 0ustar rootrootELF4\B4 (d?d?@@@@@@@Qtd   Dh + = S]x@AE @A?"__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassesrintbabl_componentbabl_typebabl_modelbabl_format_newbabl_conversion_newlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endgggl.so.0GLIBC_2.1.3GLIBC_2.0 si ii (A,A@@@AA AAAAA AUS[0=t?9X[] hhhhh h($h0(h8pUS[l<HuBt% 0P4ҋ4uƃH]Í'US[;tt P҃]ÐUSDq8;h4ǃhEEE݃]EٜE}~EEE݃]EٜE}~ظEfEfEEs EfEXEs EfE=E݃$D],EEE݃$&],EfEEE鈄EEfSEfEEfQD[]UEEEUWVS<6L:0$<Ǎ2$,5$8$;$ ƍB$ D$|$T$T$ T$t$$E0$Ǎ2$5$u8$aJ$}ƍB$}D$|$T$T$ T$t$$E0$Ǎ2$5$8$P$ƍB$D$|$T$T$ T$t$$tE0$SǍ2$C 5$/8$T$7ƍB$7D$|$ T$T$ T$t$$E0$ǍW$[$_$x J$ƍc$D$|$T$T$ T$t$$.E0$ ǍW$$[$(_$,P$ƍc$D$|$$T$(T$ ,T$t$$E0$jǍW$Z0[$F4_$28T$Nƍc$ND$|$0T$4T$ 8T$t$$E2$Ǎ5$<8$@J$ƍn$D$|$D$UD$ D$ED$E$D$D$ D$ED$E$D$D$ D$EĉD$E܉$D$D$ D$EȉD$E$D$D$ D$ẺD$E$XD$D$ D$ED$E$*D$D$ D$ED$E$D$BD$ D$ED$E$D$D$ D$EĉD$EЉ$D$D$ D$EȉD$Eԉ$rD$D$ D$ẺD$E؉$DD$UD$ D$ED$E$D$yD$ D$ED$E$D$D$ D$EȉD$Eĉ$D$SD$ D$EĉD$Eȉ$D$D$ D$ED$E$^D$D$ D$ED$E$0D$D$ D$ẺD$Eĉ$D$D$ D$ẺD$Eȉ$D$]D$ D$ED$E$D$]D$ D$ED$E$xD$D$ D$EĉD$Ẻ$JD$D$ D$EȉD$Ẻ$D$D$ D$ẺD$E$D$eD$ D$ED$Ẻ$D$D$ D$EĉD$E$D$xD$ D$ED$Eĉ$dD$D$ D$EȉD$E$6D$xD$ D$ED$Eȉ$D$D$ D$ED$E$D$0D$ D$ED$E$D$UD$ D$ED$E$~D$D$ D$EĉD$E܉$PD$D$ D$EȉD$E$"D$GD$ D$ED$E$D$hD$ D$ED$E$D$iD$ D$ED$E$D$xD$ D$ED$Eȉ$jD$D$ D$ED$E$EE U EU EE EE m}uEUlEE:E'U E݁],EfE EE}~ӃEm}uEU EEVEEEE]EE}~E݁݁ ],E‹E E Em}uEUVEEEM EЉ)։EEЙ}EEfE HEЉ)։EEЙ}EEfE HEЉ)։EEЙ}EEfE PEfE Em}E^]UEEEE E Em}uԋE[]UED$E D$E$EU UЉD$E D$E$nEU UЉD$E D$E$EU ED$E D$E$EU ED$E D$E$EUUЉD$E D$E$&EUUЉD$E D$E${EUUЉD$E D$E$EEVUUUEmыE)‰UUЉD$E D$E$EUED$E D$E$eEUED$E D$E$EUED$E D$E$PHUED$E D$E$rEË $Ë$ÐUVS[> P@t֍ЋFu[^]ÐUS[tZ[]`}? ?@AB'G'R'doubleR'G'B'Afloatu16u8B'aG'aR'aR'aG'aB'aAR'G'B'Y'Y'AY'aY'aACrCbu8-chromau8-lumaY'CbCrY'CbCr u8nameY'CbCrAlinearo@@A`"?bX9?v/?j+ſJ4տ?sڿU0*д@A@_8? m9?Uy?@@;On?JOcֿ|~!<'1Z?  = @@|T(oooo@"2BRbr(A @j?3l?GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.commentT! )1o >o@M TT(V ||@ _/Zet9k==q>>Py`?`?@@@@@@@@@@ @@,(A(A@A@A@ @AZAlFo LN@@@* @@AO,AV b@o @|`? @= `A,Z AEEE > > 0A8A > }=( +M=0 <%=( N<( `<* o<E ~d<* :<* <( ;( ;* ;* p;& ;^ :. :Y e:& :a &9& 49Y >_9& L)96 VM8 gq7 x"6O 4O 4 3 B2 2& 17 1M K1M 0W 03 U0l # 0H //n <]/B I. Xp.T g- w(- ?, `+ a* )~ )b &)[ %( 'R D' & /& A% R$( c\$( t$5 }$/ @(A= = @T|  = > `? @@@@@@(A@A  "= (2=Q@A]Eb g@An~"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxtable_initedtable_inittable_8_Ftable_16_Ftable_F_8table_F_16gggl_float_to_index16lxnlynxnnznnLRAMPconv_rgbaF_rgba8conv_rgba8_rgbaFconv_rgbaF_rgba16conv_rgba16_rgbaFconv_rgbF_rgb8conv_rgb8_rgbFconv_rgbF_rgb16conv_rgb16_rgbFconv_rgba8_rgba16conv_rgba16_rgba8conv_rgb8_rgb16conv_rgb16_rgb8conv_gaF_ga8conv_F_8conv_ga8_gaFconv_8_Fconv_gaF_ga16conv_F_16conv_ga16_gaFconv_16_Fconv_ga16_ga8conv_16_8conv_rgbaF_rgbAFconv_rgbAF_rgbaFconv_yuv8_rgb8conv_rgb8_yuv8conv_yuvF_rgbFconv_rgbF_yuvFconv_yuvaF_rgbaFconv_ga8_ga16conv_8_16conv_gaF_gAFconv_gAF_gaFconv_rgbaF_rgbFconv_gaF_gFconv_rgbF_rgbaFconv_gF_gaFconv_rgbF_gFconv_gF_rgbFconv_rgbaF_gaFconv_gaF_rgbaFconv_rgbaF_rgb8conv_rgbA8_rgbaFconv_rgbA8_rgba8conv_rgba8_rgbA8conv_rgbA16_rgba16conv_rgbaF_g8conv_rgbaF_rgb16conv_rgb8_rgba8conv_rgbA8_rgb8conv_rgba8_rgb8conv_rgbaF_rgbA8conv_rgbaF_rgbA16conv_rgbA16_rgbaFconv_rgbaF_yuvaFconv_rgbaF_rgbaDconv_rgbaD_rgbaFconv_D_Fconv_F_D_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.cx__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finibabl_typebabl_modelbabl_conversion_new__bss_start_endinit_edatarint@@GLIBC_2.0__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gggl-lies.so.0.0.00000755000000000000000000005176411272022202023746 0ustar rootrootELF4dB4 (==@@@H@@@Qtd   Dh + < S]xHAEe HA?"__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassesrintbabl_componentbabl_typebabl_modelbabl_format_newbabl_conversion_newlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endgggl-lies.so.0/root/Desktop/babl-0.1.0/babl/.libsGLIBC_2.1.3GLIBC_2.0 si ii 0A4A@@@ AAAAA A$A (AUS[=t?18X[] hhhhh h($h0(h8pUS[D<`uBt% 0P4ҋ4uƃ`]Í'US[;tt P҃]ÐUSD6Ø;4ǃEEE݃@]EٜE}~EEE݃H]EٜE}~ظEfEEEfEEs EfEXEs EfE=E݃@$4],EEE݃H$],EfEEE鈄EEfSE}RD[]UEEEUWVS<^5$:$4Ǎ$$$$$ƍ$D$|$T$T$ T$t$$E$Ǎ$$m$Y$uƍ$uD$|$T$T$ T$t$$E$Ǎ$$$$ƍ$D$|$T$T$ T$t$$lE$KǍ$; $'$$/ƍ$/D$|$ T$T$ T$t$$E$Ǎ$$$p $ƍ$D$|$T$T$ T$t$$&E$Ǎ$$$($,$ƍ$D$|$$T$(T$ ,T$t$$E$bǍ$R0$>4$*8$Fƍ$FD$|$0T$4T$ 8T$t$$E$Ǎ$<$@$ƍ$D$|$D$D$ 3D$ED$E$D$D$ 3D$ED$E$D$D$ 3D$ED$E$D$pD$ 3D$E܉D$Eĉ$D$pD$ 3D$ED$Eȉ$XD$D$ 3D$ED$Ẻ$*D$D$ 3D$EĉD$E܉$D$D$ 3D$EȉD$E$D$D$ 3D$ẺD$E$D$mD$ 3D$EЉD$Eĉ$rD$mD$ 3D$EԉD$Eȉ$DD$ D$ 3D$E؉D$Ẻ$D$D$ 3D$EĉD$EЉ$D$D$ 3D$EȉD$Eԉ$D$D$ 3D$ẺD$E؉$D$gD$ 3D$E܉D$EЉ$^D$1D$ 3D$ED$E؉$0D$UD$ 3D$ED$E$D$yD$ 3D$ED$E$D$*D$ 3D$ED$E$D$D$ 3D$ED$E$xD$D$ 3D$ED$E$JD$D$ 3D$ED$E$D$JD$ 3D$ED$E$D$D$ 3D$ED$E$D$D$ 3D$ED$E$D$$D$ 3D$EЉD$E܉$dD$$D$ 3D$EԉD$E$6D$D$ 3D$E؉D$E$D$2D$ 3D$ED$E$D$2D$ 3D$ED$E$D$D$ 3D$ED$E$~D$D$ 3D$EĉD$E܉$PD$D$ 3D$EȉD$E$"D$D$ 3D$ẺD$E$D$D$ 3D$ED$E$D$D$ 3D$ED$E$D$:D$ 3D$ED$E$jD$D$ 3D$EĉD$EЉ$EE U EU EE EE m}uEU9EE:E'U E݁H],EfE EE}~ӃEm}uEUEEVEEEE]EE}~E݁@݁],E‹E E Em}uEUVEEEM EЉ)։EEЙ}EEfE HEЉ)։EEЙ}EEfE HEЉ)։EEЙ}EEfE PEfE Em}E^]UEEEEUED$E D$E$EUED$E D$E$EUEEU E]EE Em}uދEUED$E D$E$EUEEU EE Em}uEË $Ë$ÐUVS[öP@t֍ЋFu[^]ÐUS[pZ[]`}? ?@ABGRfloatRGBAu16doubleu8BaGaRaRaGaBaARGBYYAYaYaACrCbu8-chromaY'u8-lumaY'CbCrY'CbCr u8nameY'CbCrAlinearo@@A`"?bX9?v/?j+ſJ4տ?sڿU0*д@A@@@;On?JOcֿ|~!<'1Z?  <  A@|(o<ooo@*:JZjz0A @j?3l?GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.commentT! )1o >o<<@M ||(V @ _/Ze7k<<q<<(y==@@@@@@@@@@ AA,0A0A`AHA@ HAZAtFo TN@@@* @`AO4AV  b@o @|= @@< A\Z AEEE < < 8A@A< ;( +;( <Z;( M2;( ^ ;( p:( :* :* d:* ::* :( 9( 9* 9* p9& 9^ 8& '8Y 0m8& > 8a H7& V7Y `g7& n176 xU6 y5 *4O 2O 2 1 J0 $0& /7 /M S/M .W ).3 5].l E.H Q-n ^e-B k,z z,T 4,c + * ) ( T(~ 'b '[ E'R &R .d& ?% Q7% c0$ t;5 }</ A0A6< :< @<|  < < = @@@@@A0A`A  "< (2=QHA]Ebe gHAn~"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxtable_initedtable_inittable_8_Ftable_16_Ftable_F_8table_F_16gggl_float_to_index16lxnlynxnnznnLRAMPconv_rgbaF_rgbaDconv_rgbaD_rgbaFconv_rgbaF_rgba8conv_rgba8_rgbaFconv_rgbaF_rgba16conv_rgba16_rgbaFconv_rgbF_rgb8conv_rgb8_rgbFconv_rgbF_rgb16conv_rgb16_rgbFconv_rgba8_rgba16conv_rgba16_rgba8conv_rgb8_rgb16conv_rgb16_rgb8conv_gaF_ga8conv_F_8conv_ga8_gaFconv_8_Fconv_gaF_ga16conv_F_16conv_ga16_gaFconv_16_Fconv_ga16_ga8conv_16_8conv_rgbaF_rgbAFconv_rgbAF_rgbaFconv_yuv8_rgb8conv_rgb8_yuv8conv_yuvF_rgbFconv_rgbF_yuvFconv_yuvaF_rgbaFconv_ga8_ga16conv_8_16conv_gaF_gAFconv_gAF_gaFconv_rgbaF_rgbFconv_gaF_gFconv_rgbF_rgbaFconv_gF_gaFconv_rgbF_gFconv_gF_rgbFconv_rgbaF_gaFconv_gaF_rgbaFconv_rgbaF_rgb8conv_rgbA8_rgbaFconv_rgbA8_rgba8conv_rgba8_rgbA8conv_rgbA16_rgba16conv_rgbaF_g8conv_rgbaF_rgb16conv_rgb8_rgba8conv_rgbP8_rgb8conv_rgba8_rgb8conv_rgbaF_rgbA8conv_rgbaF_rgbA16conv_rgbA16_rgbaFconv_rgbaF_yuvaFconv_D_Fconv_F_D_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.cx__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finibabl_typebabl_modelbabl_conversion_new__bss_start_endinit_edatarint@@GLIBC_2.0__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/CIE-Lab.lai0000644000000000000000000000146411272022115022652 0ustar rootroot# CIE-Lab.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='CIE-Lab.so.0' # Names of this library. library_names='CIE-Lab.so.0.0.0 CIE-Lab.so.0 CIE-Lab.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /usr/lib/libbabl-0.0.la -ldl -lm' # Version information for CIE-Lab. current=0 age=0 revision=0 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/.libs/gggl-lies.so.0.0.0T0000755000000000000000000005175411272022202024071 0ustar rootrootELF4\B4 (==@@@@@@@Qtd   Dh + T< S]x@AEe @A?"__gmon_start___init_fini__cxa_finalize_Jv_RegisterClassesrintbabl_componentbabl_typebabl_modelbabl_format_newbabl_conversion_newlibbabl-0.0.so.0libm.so.6libc.so.6_edata__bss_start_endgggl-lies.so.0GLIBC_2.1.3GLIBC_2.0 si ii (A,A@@@AA AAAAA AUS[,=t? %8X[] hhhhh h($h0(h8pUS[l<HuBt% 0P4ҋ4uƃH]Í'US[;tt P҃]ÐUSD6;h4ǃhEEE݃]EٜE}~EEE݃ ]EٜE}~ظEfEEEfEEs EfEXEs EfE=E݃$@],EEE݃ $"],EfEEE鈄EEfSE}RD[]UEEEUWVS<^5L:$@Ǎ$0$$$$ƍ$$D$|$T$T$ T$t$$E$Ǎ$$y$e$ƍ$D$|$T$T$ T$t$$E$Ǎ$$$$ƍ$D$|$T$T$ T$t$$xE$WǍ$G $3$$;ƍ$;D$|$ T$T$ T$t$$E$Ǎ$$$| $ƍ$D$|$T$T$ T$t$$2E$Ǎ$$$($,$ƍ$D$|$$T$(T$ ,T$t$$E$nǍ$^0$J4$68$Rƍ$RD$|$0T$4T$ 8T$t$$E$Ǎ$<$@$ƍ$D$|$ƍ$>D$|$DT$ HT$t$$E$Ǎ$L$P$ƍ$D$|$LT$ PT$t$$]E$<Ǎ$,T$Hƍ$HD$|$ TT$t$$Eč$Ǎ$X$ƍ$D$|$ XT$t$$Eȍ$nƍ$Ǎ$D$ t$|$$FE̍$%Ǎ$\$1ƍ$1D$|$ \T$t$$EЍ$Ǎ$`$ƍ$D$|$ `T$t$$xEԍ$Wƍ$wǍ$wD$ t$|$$/E؍$Ǎ$d$ƍ$D$|$ dT$t$$E܍$Ǎ$h$ƍ$D$|$ hT$t$$aE$@ƍ$`Ǎ$`D$ t$|$$E䍃$Ǎ$l$p$t$ƍ$D$ |$lT$pT$tT$t$ D$D$$aE荃$@Ǎ$0x$L|$E$'ƍ$'D$|$xT$|T$ UT$t$$E썃$ƍ$Ǎ$E$E$aE$E$D$t$|$UT$UT$ UT$UT$$ED$D$ D$ED$E$*D$ZD$ D$ED$E$D$2D$ D$ED$E$D$ D$ D$ED$E$D$D$ D$ED$E$rD$D$ D$ED$E$DD$2D$ D$ED$E$D$ D$ D$ED$E$D$D$ D$ED$E$D$D$ D$ED$E$D$D$ D$ED$E$^D$fD$ D$ED$E$0D$EE U EU EE EE m}uEU9+EE:E'U E݁ ],EfE EE}~ӃEm}uEUEEVEEEE]EE}~E݁݁p],E‹E E Em}uEUVEEEM EЉ)։EEЙ}EEfE HEЉ)։EEЙ}EEfE HEЉ)։EEЙ}EEfE PEfE Em}E^]UEEEEUED$E D$E$EUED$E D$E$EUEEU E]EE Em}uދEUED$E D$E$EUEEU EE Em}uEË $Ë$ÐUVS[ P@t֍ЋFu[^]ÐUS[ØZ[]`}? ?@ABGRfloatRGBAu16doubleu8BaGaRaRaGaBaARGBYYAYaYaACrCbu8-chromaY'u8-lumaY'CbCrY'CbCr u8nameY'CbCrAlinearo@@A`"?bX9?v/?j+ſJ4տ?sڿU0*д@A@@@;On?JOcֿ|~!<'1Z?  T< @@X(oooo@&6FVfv(A @j?3l?GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.commentT! )1o >o@M XX(V @ _/Ze7kT<T<qp<p<(y==@@@@@@@@@@ @@,(A(A@A@A@ @AZAlFo LN@@@* @@AO,AV b@o @|= @< `A,Z AEEE p< x< 0A8A< ;( +R;( <*;( M;( ^:( p:( :* ^:* 4:*  :* 9( 9( 9* f9* @9& 8^ 8& 'c8Y 0=8& >7a H7& V]7Y `77& n76 x%6 I5 3O 2O 1 0 0 /& /7 p/M #/M .W ).3 5-.l E-H Qw-n ^5-B k,z zg,T ,c i+ * ) ( $(~ 'b g'[ 'R &R .4& ?% Q% c$ tz;5 };/ @(A<  < @X  T< p< = @@@@@@(A@A  "T< (2=Q@A]Ebe g@An~"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxtable_initedtable_inittable_8_Ftable_16_Ftable_F_8table_F_16gggl_float_to_index16lxnlynxnnznnLRAMPconv_rgbaF_rgbaDconv_rgbaD_rgbaFconv_rgbaF_rgba8conv_rgba8_rgbaFconv_rgbaF_rgba16conv_rgba16_rgbaFconv_rgbF_rgb8conv_rgb8_rgbFconv_rgbF_rgb16conv_rgb16_rgbFconv_rgba8_rgba16conv_rgba16_rgba8conv_rgb8_rgb16conv_rgb16_rgb8conv_gaF_ga8conv_F_8conv_ga8_gaFconv_8_Fconv_gaF_ga16conv_F_16conv_ga16_gaFconv_16_Fconv_ga16_ga8conv_16_8conv_rgbaF_rgbAFconv_rgbAF_rgbaFconv_yuv8_rgb8conv_rgb8_yuv8conv_yuvF_rgbFconv_rgbF_yuvFconv_yuvaF_rgbaFconv_ga8_ga16conv_8_16conv_gaF_gAFconv_gAF_gaFconv_rgbaF_rgbFconv_gaF_gFconv_rgbF_rgbaFconv_gF_gaFconv_rgbF_gFconv_gF_rgbFconv_rgbaF_gaFconv_gaF_rgbaFconv_rgbaF_rgb8conv_rgbA8_rgbaFconv_rgbA8_rgba8conv_rgba8_rgbA8conv_rgbA16_rgba16conv_rgbaF_g8conv_rgbaF_rgb16conv_rgb8_rgba8conv_rgbP8_rgb8conv_rgba8_rgb8conv_rgbaF_rgbA8conv_rgbaF_rgbA16conv_rgbA16_rgbaFconv_rgbaF_yuvaFconv_D_Fconv_F_D_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.cx__i686.get_pc_thunk.bx_DYNAMICbabl_componentbabl_format_new__gmon_start___Jv_RegisterClasses_finibabl_typebabl_modelbabl_conversion_new__bss_start_endinit_edatarint@@GLIBC_2.0__cxa_finalize@@GLIBC_2.1.3_init./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/CIE-Lab.la0000644000000000000000000000225511272022115021471 0ustar rootroot# CIE-Lab.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='CIE-Lab.so.0' # Names of this library. library_names='CIE-Lab.so.0.0.0 CIE-Lab.so.0 CIE-Lab.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' /root/Desktop/babl-0.1.0/babl/libbabl-0.0.la -ldl -lm' # Version information for CIE-Lab. current=0 age=0 revision=0 # Is this an already installed library? installed=no # Should we warn about portability when linking against -modules? shouldnotlink=yes # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib/babl-0.0' relink_command="(cd /root/Desktop/babl-0.1.0/extensions; /bin/sh ../libtool --tag=CC --mode=relink gcc -march=pentium4 -Wall -Wdeclaration-after-statement -Wmissing-prototypes -Wmissing-declarations -Winit-self -Wpointer-arith -Wold-style-definition -module -o CIE-Lab.la -rpath /usr/lib/babl-0.0 CIE-Lab.lo ../babl/libbabl-0.0.la -lm @inst_prefix_dir@) " ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/gegl-fixups.lo0000644000000000000000000000047111272022116022644 0ustar rootroot# gegl-fixups.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/gegl-fixups.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/gimp-8bit.lo0000644000000000000000000000046511272022120022210 0ustar rootroot# gimp-8bit.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/gimp-8bit.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/extensions/sse_fixups_la-sse-fixups.lo0000644000000000000000000000052311272022121025354 0ustar rootroot# sse_fixups_la-sse-fixups.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/sse_fixups_la-sse-fixups.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/0000755000000000000000000000000011272022177016564 5ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-util.lo0000644000000000000000000000046511272022111020764 0ustar rootroot# babl-util.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-util.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-sampling.lo0000644000000000000000000000047511272022107021627 0ustar rootroot# babl-sampling.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-sampling.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-memory.lo0000644000000000000000000000047111272022107021321 0ustar rootroot# babl-memory.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-memory.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-extension.lo0000644000000000000000000000047711272022101022025 0ustar rootroot# babl-extension.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-extension.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-introspect.lo0000644000000000000000000000050111272022106022174 0ustar rootroot# babl-introspect.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-introspect.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-list.lo0000644000000000000000000000046511272022106020766 0ustar rootroot# babl-list.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-list.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/libbabl-0.0.la0000644000000000000000000000145711272022112020760 0ustar rootroot# libbabl-0.0.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='libbabl-0.0.so.0' # Names of this library. library_names='libbabl-0.0.so.0.100.0 libbabl-0.0.so.0 libbabl-0.0.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' -lm -ldl' # Version information for libbabl-0.0. current=100 age=100 revision=0 # Is this an already installed library? installed=no # Should we warn about portability when linking against -modules? shouldnotlink=no # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib' ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl.lo0000644000000000000000000000045311272022077020021 0ustar rootroot# babl.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-hash-table.lo0000644000000000000000000000050111272022104022010 0ustar rootroot# babl-hash-table.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-hash-table.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-fish-stats.lo0000644000000000000000000000050111272022103022064 0ustar rootroot# babl-fish-stats.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-fish-stats.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-fish-path.lo0000644000000000000000000000047711272022101021674 0ustar rootroot# babl-fish-path.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-fish-path.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-conversion.lo0000644000000000000000000000050111272022100022161 0ustar rootroot# babl-conversion.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-conversion.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-sanity.lo0000644000000000000000000000047111272022110021312 0ustar rootroot# babl-sanity.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-sanity.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-model.lo0000644000000000000000000000046711272022107021116 0ustar rootroot# babl-model.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-model.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-type.lo0000644000000000000000000000046511272022110020767 0ustar rootroot# babl-type.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-type.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-db.lo0000644000000000000000000000046111272022101020367 0ustar rootroot# babl-db.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-db.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/0000755000000000000000000000000011272022177017575 5ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-fish-stats.Plo0000644000000000000000000000553611272022103023232 0ustar rootrootbabl-fish-stats.lo .libs/babl-fish-stats.o: babl-fish-stats.c ../config.h \ babl-internal.h /usr/include/stdlib.h /usr/include/features.h \ /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h babl.h ../babl/babl-macros.h ../babl/babl-types.h \ ../babl/babl-version.h babl-class.h babl-classes.h babl-type.h \ babl-sampling.h babl-component.h babl-model.h babl-format.h \ babl-image.h babl-conversion.h babl-fish.h babl-extension.h \ babl-introspect.h babl-list.h babl-hash-table.h babl-db.h babl-ids.h \ babl-util.h babl-memory.h babl-cpuaccel.h ../config.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-component.Plo0000644000000000000000000000553311272022077023156 0ustar rootrootbabl-component.lo .libs/babl-component.o: babl-component.c ../config.h \ babl-internal.h /usr/include/stdlib.h /usr/include/features.h \ /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h babl.h ../babl/babl-macros.h ../babl/babl-types.h \ ../babl/babl-version.h babl-class.h babl-classes.h babl-type.h \ babl-sampling.h babl-component.h babl-model.h babl-format.h \ babl-image.h babl-conversion.h babl-fish.h babl-extension.h \ babl-introspect.h babl-list.h babl-hash-table.h babl-db.h babl-ids.h \ babl-util.h babl-memory.h babl-cpuaccel.h ../config.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-format.Plo0000644000000000000000000000552611272022104022435 0ustar rootrootbabl-format.lo .libs/babl-format.o: babl-format.c ../config.h \ /usr/include/string.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ babl-internal.h /usr/include/stdlib.h /usr/include/sys/types.h \ /usr/include/bits/types.h /usr/include/bits/typesizes.h \ /usr/include/time.h /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/bits/sigset.h /usr/include/bits/time.h \ /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ /usr/include/alloca.h /usr/include/stdio.h /usr/include/libio.h \ /usr/include/_G_config.h /usr/include/wchar.h /usr/include/bits/wchar.h \ /usr/include/gconv.h /usr/include/bits/stdio_lim.h \ /usr/include/bits/sys_errlist.h /usr/include/assert.h babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ babl-class.h babl-classes.h babl-type.h babl-sampling.h \ babl-component.h babl-model.h babl-format.h babl-image.h \ babl-conversion.h babl-fish.h babl-extension.h babl-introspect.h \ babl-list.h babl-hash-table.h babl-db.h babl-ids.h babl-util.h \ babl-memory.h babl-cpuaccel.h ../config.h: /usr/include/string.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-fish-simple.Plo0000644000000000000000000000554511272022102023364 0ustar rootrootbabl-fish-simple.lo .libs/babl-fish-simple.o: babl-fish-simple.c \ ../config.h babl-internal.h /usr/include/stdlib.h \ /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h babl.h ../babl/babl-macros.h ../babl/babl-types.h \ ../babl/babl-version.h babl-class.h babl-classes.h babl-type.h \ babl-sampling.h babl-component.h babl-model.h babl-format.h \ babl-image.h babl-conversion.h babl-fish.h babl-extension.h \ babl-introspect.h babl-list.h babl-hash-table.h babl-db.h babl-ids.h \ babl-util.h babl-memory.h babl-cpuaccel.h ../config.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-introspect.Plo0000644000000000000000000000553611272022106023342 0ustar rootrootbabl-introspect.lo .libs/babl-introspect.o: babl-introspect.c ../config.h \ babl-internal.h /usr/include/stdlib.h /usr/include/features.h \ /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h babl.h ../babl/babl-macros.h ../babl/babl-types.h \ ../babl/babl-version.h babl-class.h babl-classes.h babl-type.h \ babl-sampling.h babl-component.h babl-model.h babl-format.h \ babl-image.h babl-conversion.h babl-fish.h babl-extension.h \ babl-introspect.h babl-list.h babl-hash-table.h babl-db.h babl-ids.h \ babl-util.h babl-memory.h babl-cpuaccel.h ../config.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-image.Plo0000644000000000000000000000552311272022105022225 0ustar rootrootbabl-image.lo .libs/babl-image.o: babl-image.c ../config.h \ /usr/include/string.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h babl-internal.h \ /usr/include/stdlib.h /usr/include/sys/types.h \ /usr/include/bits/types.h /usr/include/bits/typesizes.h \ /usr/include/time.h /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/bits/sigset.h /usr/include/bits/time.h \ /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ /usr/include/alloca.h /usr/include/stdio.h /usr/include/libio.h \ /usr/include/_G_config.h /usr/include/wchar.h /usr/include/bits/wchar.h \ /usr/include/gconv.h /usr/include/bits/stdio_lim.h \ /usr/include/bits/sys_errlist.h /usr/include/math.h \ /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h \ /usr/include/bits/mathcalls.h /usr/include/assert.h babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ babl-class.h babl-classes.h babl-type.h babl-sampling.h \ babl-component.h babl-model.h babl-format.h babl-image.h \ babl-conversion.h babl-fish.h babl-extension.h babl-introspect.h \ babl-list.h babl-hash-table.h babl-db.h babl-ids.h babl-util.h \ babl-memory.h babl-cpuaccel.h ../config.h: /usr/include/string.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-hash-table.Plo0000644000000000000000000000553611272022104023156 0ustar rootrootbabl-hash-table.lo .libs/babl-hash-table.o: babl-hash-table.c ../config.h \ babl-internal.h /usr/include/stdlib.h /usr/include/features.h \ /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h babl.h ../babl/babl-macros.h ../babl/babl-types.h \ ../babl/babl-version.h babl-class.h babl-classes.h babl-type.h \ babl-sampling.h babl-component.h babl-model.h babl-format.h \ babl-image.h babl-conversion.h babl-fish.h babl-extension.h \ babl-introspect.h babl-list.h babl-hash-table.h babl-db.h babl-ids.h \ babl-util.h babl-memory.h babl-cpuaccel.h ../config.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-sampling.Plo0000644000000000000000000000553011272022107022755 0ustar rootrootbabl-sampling.lo .libs/babl-sampling.o: babl-sampling.c ../config.h \ babl-internal.h /usr/include/stdlib.h /usr/include/features.h \ /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h babl.h ../babl/babl-macros.h ../babl/babl-types.h \ ../babl/babl-version.h babl-class.h babl-classes.h babl-type.h \ babl-sampling.h babl-component.h babl-model.h babl-format.h \ babl-image.h babl-conversion.h babl-fish.h babl-extension.h \ babl-introspect.h babl-list.h babl-hash-table.h babl-db.h babl-ids.h \ babl-util.h babl-memory.h babl-cpuaccel.h ../config.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-util.Plo0000644000000000000000000000560211272022111022113 0ustar rootrootbabl-util.lo .libs/babl-util.o: babl-util.c ../config.h \ /usr/include/math.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ babl-internal.h /usr/include/stdlib.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/assert.h babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ babl-class.h babl-classes.h babl-type.h babl-sampling.h \ babl-component.h babl-model.h babl-format.h babl-image.h \ babl-conversion.h babl-fish.h babl-extension.h babl-introspect.h \ babl-list.h babl-hash-table.h babl-db.h babl-ids.h babl-util.h \ babl-memory.h babl-cpuaccel.h /usr/include/sys/time.h ../config.h: /usr/include/math.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: babl-internal.h: /usr/include/stdlib.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: /usr/include/sys/time.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-list.Plo0000644000000000000000000000551411272022106022117 0ustar rootrootbabl-list.lo .libs/babl-list.o: babl-list.c ../config.h babl-internal.h \ /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h babl.h ../babl/babl-macros.h ../babl/babl-types.h \ ../babl/babl-version.h babl-class.h babl-classes.h babl-type.h \ babl-sampling.h babl-component.h babl-model.h babl-format.h \ babl-image.h babl-conversion.h babl-fish.h babl-extension.h \ babl-introspect.h babl-list.h babl-hash-table.h babl-db.h babl-ids.h \ babl-util.h babl-memory.h babl-cpuaccel.h ../config.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-memory.Plo0000644000000000000000000000552611272022107022460 0ustar rootrootbabl-memory.lo .libs/babl-memory.o: babl-memory.c ../config.h \ /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h babl-internal.h /usr/include/math.h \ /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h \ /usr/include/bits/mathcalls.h /usr/include/assert.h babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ babl-class.h babl-classes.h babl-type.h babl-sampling.h \ babl-component.h babl-model.h babl-format.h babl-image.h \ babl-conversion.h babl-fish.h babl-extension.h babl-introspect.h \ babl-list.h babl-hash-table.h babl-db.h babl-ids.h babl-util.h \ babl-memory.h babl-cpuaccel.h ../config.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: babl-internal.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-core.Plo0000644000000000000000000000565411272022100022073 0ustar rootrootbabl-core.lo .libs/babl-core.o: babl-core.c ../config.h \ /usr/include/string.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h babl-internal.h \ /usr/include/stdlib.h /usr/include/sys/types.h \ /usr/include/bits/types.h /usr/include/bits/typesizes.h \ /usr/include/time.h /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/bits/sigset.h /usr/include/bits/time.h \ /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ /usr/include/alloca.h /usr/include/stdio.h /usr/include/libio.h \ /usr/include/_G_config.h /usr/include/wchar.h /usr/include/bits/wchar.h \ /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h babl.h ../babl/babl-macros.h ../babl/babl-types.h \ ../babl/babl-version.h babl-class.h babl-classes.h babl-type.h \ babl-sampling.h babl-component.h babl-model.h babl-format.h \ babl-image.h babl-conversion.h babl-fish.h babl-extension.h \ babl-introspect.h babl-list.h babl-hash-table.h babl-db.h babl-ids.h \ babl-util.h babl-memory.h babl-cpuaccel.h ../babl/base/util.h \ /usr/include/assert.h ../config.h: /usr/include/string.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ../babl/base/util.h: /usr/include/assert.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl.Plo0000644000000000000000000000547511272022077021163 0ustar rootrootbabl.lo .libs/babl.o: babl.c ../config.h babl-internal.h \ /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h babl.h ../babl/babl-macros.h ../babl/babl-types.h \ ../babl/babl-version.h babl-class.h babl-classes.h babl-type.h \ babl-sampling.h babl-component.h babl-model.h babl-format.h \ babl-image.h babl-conversion.h babl-fish.h babl-extension.h \ babl-introspect.h babl-list.h babl-hash-table.h babl-db.h babl-ids.h \ babl-util.h babl-memory.h babl-cpuaccel.h ../config.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-fish-path.Plo0000644000000000000000000000553711272022101023027 0ustar rootrootbabl-fish-path.lo .libs/babl-fish-path.o: babl-fish-path.c ../config.h \ /usr/include/math.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ babl-internal.h /usr/include/stdlib.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/assert.h babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ babl-class.h babl-classes.h babl-type.h babl-sampling.h \ babl-component.h babl-model.h babl-format.h babl-image.h \ babl-conversion.h babl-fish.h babl-extension.h babl-introspect.h \ babl-list.h babl-hash-table.h babl-db.h babl-ids.h babl-util.h \ babl-memory.h babl-cpuaccel.h ../config.h: /usr/include/math.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: babl-internal.h: /usr/include/stdlib.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-extension.Plo0000644000000000000000000000714311272022101023153 0ustar rootrootbabl-extension.lo .libs/babl-extension.o: babl-extension.c ../config.h \ babl-internal.h /usr/include/stdlib.h /usr/include/features.h \ /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h babl.h ../babl/babl-macros.h ../babl/babl-types.h \ ../babl/babl-version.h babl-class.h babl-classes.h babl-type.h \ babl-sampling.h babl-component.h babl-model.h babl-format.h \ babl-image.h babl-conversion.h babl-fish.h babl-extension.h \ babl-introspect.h babl-list.h babl-hash-table.h babl-db.h babl-ids.h \ babl-util.h babl-memory.h babl-cpuaccel.h ../babl/base/babl-base.h \ /usr/include/dirent.h /usr/include/bits/dirent.h \ /usr/include/bits/posix1_lim.h /usr/include/bits/local_lim.h \ /usr/include/linux/limits.h /usr/include/sys/stat.h \ /usr/include/bits/stat.h /usr/include/unistd.h \ /usr/include/bits/posix_opt.h /usr/include/bits/confname.h \ /usr/include/getopt.h /usr/include/dlfcn.h /usr/include/bits/dlfcn.h ../config.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ../babl/base/babl-base.h: /usr/include/dirent.h: /usr/include/bits/dirent.h: /usr/include/bits/posix1_lim.h: /usr/include/bits/local_lim.h: /usr/include/linux/limits.h: /usr/include/sys/stat.h: /usr/include/bits/stat.h: /usr/include/unistd.h: /usr/include/bits/posix_opt.h: /usr/include/bits/confname.h: /usr/include/getopt.h: /usr/include/dlfcn.h: /usr/include/bits/dlfcn.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-type.Plo0000644000000000000000000000552011272022110022115 0ustar rootrootbabl-type.lo .libs/babl-type.o: babl-type.c ../config.h \ /usr/include/string.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ babl-internal.h /usr/include/stdlib.h /usr/include/sys/types.h \ /usr/include/bits/types.h /usr/include/bits/typesizes.h \ /usr/include/time.h /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/bits/sigset.h /usr/include/bits/time.h \ /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ /usr/include/alloca.h /usr/include/stdio.h /usr/include/libio.h \ /usr/include/_G_config.h /usr/include/wchar.h /usr/include/bits/wchar.h \ /usr/include/gconv.h /usr/include/bits/stdio_lim.h \ /usr/include/bits/sys_errlist.h /usr/include/assert.h babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ babl-class.h babl-classes.h babl-type.h babl-sampling.h \ babl-component.h babl-model.h babl-format.h babl-image.h \ babl-conversion.h babl-fish.h babl-extension.h babl-introspect.h \ babl-list.h babl-hash-table.h babl-db.h babl-ids.h babl-util.h \ babl-memory.h babl-cpuaccel.h ../config.h: /usr/include/string.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-model.Plo0000644000000000000000000000552311272022107022245 0ustar rootrootbabl-model.lo .libs/babl-model.o: babl-model.c ../config.h \ /usr/include/string.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ babl-internal.h /usr/include/stdlib.h /usr/include/sys/types.h \ /usr/include/bits/types.h /usr/include/bits/typesizes.h \ /usr/include/time.h /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/bits/sigset.h /usr/include/bits/time.h \ /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ /usr/include/alloca.h /usr/include/stdio.h /usr/include/libio.h \ /usr/include/_G_config.h /usr/include/wchar.h /usr/include/bits/wchar.h \ /usr/include/gconv.h /usr/include/bits/stdio_lim.h \ /usr/include/bits/sys_errlist.h /usr/include/assert.h babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ babl-class.h babl-classes.h babl-type.h babl-sampling.h \ babl-component.h babl-model.h babl-format.h babl-image.h \ babl-conversion.h babl-fish.h babl-extension.h babl-introspect.h \ babl-list.h babl-hash-table.h babl-db.h babl-ids.h babl-util.h \ babl-memory.h babl-cpuaccel.h ../config.h: /usr/include/string.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-sanity.Plo0000644000000000000000000000552211272022110022445 0ustar rootrootbabl-sanity.lo .libs/babl-sanity.o: babl-sanity.c ../config.h \ babl-internal.h /usr/include/stdlib.h /usr/include/features.h \ /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h babl.h ../babl/babl-macros.h ../babl/babl-types.h \ ../babl/babl-version.h babl-class.h babl-classes.h babl-type.h \ babl-sampling.h babl-component.h babl-model.h babl-format.h \ babl-image.h babl-conversion.h babl-fish.h babl-extension.h \ babl-introspect.h babl-list.h babl-hash-table.h babl-db.h babl-ids.h \ babl-util.h babl-memory.h babl-cpuaccel.h ../config.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-fish-reference.Plo0000644000000000000000000000555611272022102024033 0ustar rootrootbabl-fish-reference.lo .libs/babl-fish-reference.o: \ babl-fish-reference.c ../config.h babl-internal.h /usr/include/stdlib.h \ /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h babl.h ../babl/babl-macros.h ../babl/babl-types.h \ ../babl/babl-version.h babl-class.h babl-classes.h babl-type.h \ babl-sampling.h babl-component.h babl-model.h babl-format.h \ babl-image.h babl-conversion.h babl-fish.h babl-extension.h \ babl-introspect.h babl-list.h babl-hash-table.h babl-db.h babl-ids.h \ babl-util.h babl-memory.h babl-cpuaccel.h ../config.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-db.Plo0000644000000000000000000000551211272022101021522 0ustar rootrootbabl-db.lo .libs/babl-db.o: babl-db.c ../config.h /usr/include/string.h \ /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h babl-internal.h \ /usr/include/stdlib.h /usr/include/sys/types.h \ /usr/include/bits/types.h /usr/include/bits/typesizes.h \ /usr/include/time.h /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/bits/sigset.h /usr/include/bits/time.h \ /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ /usr/include/alloca.h /usr/include/stdio.h /usr/include/libio.h \ /usr/include/_G_config.h /usr/include/wchar.h /usr/include/bits/wchar.h \ /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h babl.h ../babl/babl-macros.h ../babl/babl-types.h \ ../babl/babl-version.h babl-class.h babl-classes.h babl-type.h \ babl-sampling.h babl-component.h babl-model.h babl-format.h \ babl-image.h babl-conversion.h babl-fish.h babl-extension.h \ babl-introspect.h babl-list.h babl-hash-table.h babl-db.h babl-ids.h \ babl-util.h babl-memory.h babl-cpuaccel.h ../config.h: /usr/include/string.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-cpuaccel.Plo0000644000000000000000000000264611272022100022720 0ustar rootrootbabl-cpuaccel.lo .libs/babl-cpuaccel.o: babl-cpuaccel.c ../config.h \ /usr/include/string.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/signal.h /usr/include/bits/sigset.h \ /usr/include/bits/types.h /usr/include/bits/typesizes.h \ /usr/include/bits/signum.h /usr/include/time.h \ /usr/include/bits/siginfo.h /usr/include/bits/sigaction.h \ /usr/include/bits/sigcontext.h /usr/include/asm/sigcontext.h \ /usr/include/bits/sigstack.h /usr/include/bits/pthreadtypes.h \ /usr/include/bits/sigthread.h /usr/include/setjmp.h \ /usr/include/bits/setjmp.h babl-cpuaccel.h ../config.h: /usr/include/string.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/signal.h: /usr/include/bits/sigset.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/bits/signum.h: /usr/include/time.h: /usr/include/bits/siginfo.h: /usr/include/bits/sigaction.h: /usr/include/bits/sigcontext.h: /usr/include/asm/sigcontext.h: /usr/include/bits/sigstack.h: /usr/include/bits/pthreadtypes.h: /usr/include/bits/sigthread.h: /usr/include/setjmp.h: /usr/include/bits/setjmp.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-conversion.Plo0000644000000000000000000000554211272022100023324 0ustar rootrootbabl-conversion.lo .libs/babl-conversion.o: babl-conversion.c ../config.h \ /usr/include/string.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ babl-internal.h /usr/include/stdlib.h /usr/include/sys/types.h \ /usr/include/bits/types.h /usr/include/bits/typesizes.h \ /usr/include/time.h /usr/include/endian.h /usr/include/bits/endian.h \ /usr/include/sys/select.h /usr/include/bits/select.h \ /usr/include/bits/sigset.h /usr/include/bits/time.h \ /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h \ /usr/include/alloca.h /usr/include/stdio.h /usr/include/libio.h \ /usr/include/_G_config.h /usr/include/wchar.h /usr/include/bits/wchar.h \ /usr/include/gconv.h /usr/include/bits/stdio_lim.h \ /usr/include/bits/sys_errlist.h /usr/include/assert.h babl.h \ ../babl/babl-macros.h ../babl/babl-types.h ../babl/babl-version.h \ babl-class.h babl-classes.h babl-type.h babl-sampling.h \ babl-component.h babl-model.h babl-format.h babl-image.h \ babl-conversion.h babl-fish.h babl-extension.h babl-introspect.h \ babl-list.h babl-hash-table.h babl-db.h babl-ids.h babl-util.h \ babl-memory.h babl-cpuaccel.h ../config.h: /usr/include/string.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-fish.Plo0000644000000000000000000000551411272022103022072 0ustar rootrootbabl-fish.lo .libs/babl-fish.o: babl-fish.c ../config.h babl-internal.h \ /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h babl.h ../babl/babl-macros.h ../babl/babl-types.h \ ../babl/babl-version.h babl-class.h babl-classes.h babl-type.h \ babl-sampling.h babl-component.h babl-model.h babl-format.h \ babl-image.h babl-conversion.h babl-fish.h babl-extension.h \ babl-introspect.h babl-list.h babl-hash-table.h babl-db.h babl-ids.h \ babl-util.h babl-memory.h babl-cpuaccel.h ../config.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-internal.Plo0000644000000000000000000000606611272022105022762 0ustar rootrootbabl-internal.lo .libs/babl-internal.o: babl-internal.c ../config.h \ /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h babl-internal.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h babl.h ../babl/babl-macros.h ../babl/babl-types.h \ ../babl/babl-version.h babl-class.h babl-classes.h babl-type.h \ babl-sampling.h babl-component.h babl-model.h babl-format.h \ babl-image.h babl-conversion.h babl-fish.h babl-extension.h \ babl-introspect.h babl-list.h babl-hash-table.h babl-db.h babl-ids.h \ babl-util.h babl-memory.h babl-cpuaccel.h /usr/include/unistd.h \ /usr/include/bits/posix_opt.h /usr/include/bits/confname.h \ /usr/include/getopt.h ../config.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: babl-internal.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: /usr/include/unistd.h: /usr/include/bits/posix_opt.h: /usr/include/bits/confname.h: /usr/include/getopt.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.deps/babl-version.Plo0000644000000000000000000000552511272022111022627 0ustar rootrootbabl-version.lo .libs/babl-version.o: babl-version.c ../config.h \ babl-internal.h /usr/include/stdlib.h /usr/include/features.h \ /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/bits/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/string.h /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h babl.h ../babl/babl-macros.h ../babl/babl-types.h \ ../babl/babl-version.h babl-class.h babl-classes.h babl-type.h \ babl-sampling.h babl-component.h babl-model.h babl-format.h \ babl-image.h babl-conversion.h babl-fish.h babl-extension.h \ babl-introspect.h babl-list.h babl-hash-table.h babl-db.h babl-ids.h \ babl-util.h babl-memory.h babl-cpuaccel.h ../config.h: babl-internal.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/bits/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/string.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: babl.h: ../babl/babl-macros.h: ../babl/babl-types.h: ../babl/babl-version.h: babl-class.h: babl-classes.h: babl-type.h: babl-sampling.h: babl-component.h: babl-model.h: babl-format.h: babl-image.h: babl-conversion.h: babl-fish.h: babl-extension.h: babl-introspect.h: babl-list.h: babl-hash-table.h: babl-db.h: babl-ids.h: babl-util.h: babl-memory.h: babl-cpuaccel.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-image.lo0000644000000000000000000000046711272022105021076 0ustar rootroot# babl-image.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-image.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.libs/0000755000000000000000000000000011272022165017570 5ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.libs/libbabl-0.0.la0000777000000000000000000000000011272022165024400 2../libbabl-0.0.laustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.libs/libbabl-0.0.so.00000777000000000000000000000000011272022165025170 2libbabl-0.0.so.0.100.0ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.libs/libbabl-0.0.lai0000644000000000000000000000146011272022112022132 0ustar rootroot# libbabl-0.0.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='libbabl-0.0.so.0' # Names of this library. library_names='libbabl-0.0.so.0.100.0 libbabl-0.0.so.0 libbabl-0.0.so' # The name of the static archive. old_library='' # Libraries that this one depends upon. dependency_libs=' -lm -ldl' # Version information for libbabl-0.0. current=100 age=100 revision=0 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=no # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/lib' ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/.libs/libbabl-0.0.so0000777000000000000000000000000011272022165025032 2libbabl-0.0.so.0.100.0ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/0000755000000000000000000000000011272022171017470 5ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/model-ycbcr.lo0000644000000000000000000000047111272022076022232 0ustar rootroot# model-ycbcr.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/model-ycbcr.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/type-u8.lo0000644000000000000000000000046111272022074021342 0ustar rootroot# type-u8.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/type-u8.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/model-rgb.lo0000644000000000000000000000046511272022075021704 0ustar rootroot# model-rgb.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/model-rgb.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/model-gray.lo0000644000000000000000000000046711272022076022077 0ustar rootroot# model-gray.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/model-gray.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/.deps/0000755000000000000000000000000011272022171020501 5ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/.deps/type-u16.Plo0000644000000000000000000000662311272022075022561 0ustar rootroottype-u16.lo .libs/type-u16.o: type-u16.c ../../config.h \ /usr/include/string.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/assert.h \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ ../../babl/babl-internal.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ ../../babl/babl.h ../../babl/babl-macros.h ../../babl/babl-types.h \ ../../babl/babl-version.h ../../babl/babl-class.h \ ../../babl/babl-classes.h ../../babl/babl-type.h \ ../../babl/babl-sampling.h ../../babl/babl-component.h \ ../../babl/babl-model.h ../../babl/babl-format.h \ ../../babl/babl-image.h ../../babl/babl-conversion.h \ ../../babl/babl-fish.h ../../babl/babl-extension.h \ ../../babl/babl-introspect.h ../../babl/babl-list.h \ ../../babl/babl-hash-table.h ../../babl/babl-db.h ../../babl/babl-ids.h \ ../../babl/babl-util.h ../../babl/babl-memory.h \ ../../babl/babl-cpuaccel.h babl-base.h ../../config.h: /usr/include/string.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/stdint.h: /usr/include/bits/wchar.h: /usr/include/assert.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: ../../babl/babl-internal.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: ../../babl/babl.h: ../../babl/babl-macros.h: ../../babl/babl-types.h: ../../babl/babl-version.h: ../../babl/babl-class.h: ../../babl/babl-classes.h: ../../babl/babl-type.h: ../../babl/babl-sampling.h: ../../babl/babl-component.h: ../../babl/babl-model.h: ../../babl/babl-format.h: ../../babl/babl-image.h: ../../babl/babl-conversion.h: ../../babl/babl-fish.h: ../../babl/babl-extension.h: ../../babl/babl-introspect.h: ../../babl/babl-list.h: ../../babl/babl-hash-table.h: ../../babl/babl-db.h: ../../babl/babl-ids.h: ../../babl/babl-util.h: ../../babl/babl-memory.h: ../../babl/babl-cpuaccel.h: babl-base.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/.deps/type-u32.Plo0000644000000000000000000000662311272022075022557 0ustar rootroottype-u32.lo .libs/type-u32.o: type-u32.c ../../config.h \ /usr/include/string.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/stdint.h /usr/include/bits/wchar.h /usr/include/assert.h \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ ../../babl/babl-internal.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ ../../babl/babl.h ../../babl/babl-macros.h ../../babl/babl-types.h \ ../../babl/babl-version.h ../../babl/babl-class.h \ ../../babl/babl-classes.h ../../babl/babl-type.h \ ../../babl/babl-sampling.h ../../babl/babl-component.h \ ../../babl/babl-model.h ../../babl/babl-format.h \ ../../babl/babl-image.h ../../babl/babl-conversion.h \ ../../babl/babl-fish.h ../../babl/babl-extension.h \ ../../babl/babl-introspect.h ../../babl/babl-list.h \ ../../babl/babl-hash-table.h ../../babl/babl-db.h ../../babl/babl-ids.h \ ../../babl/babl-util.h ../../babl/babl-memory.h \ ../../babl/babl-cpuaccel.h babl-base.h ../../config.h: /usr/include/string.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/stdint.h: /usr/include/bits/wchar.h: /usr/include/assert.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: ../../babl/babl-internal.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: ../../babl/babl.h: ../../babl/babl-macros.h: ../../babl/babl-types.h: ../../babl/babl-version.h: ../../babl/babl-class.h: ../../babl/babl-classes.h: ../../babl/babl-type.h: ../../babl/babl-sampling.h: ../../babl/babl-component.h: ../../babl/babl-model.h: ../../babl/babl-format.h: ../../babl/babl-image.h: ../../babl/babl-conversion.h: ../../babl/babl-fish.h: ../../babl/babl-extension.h: ../../babl/babl-introspect.h: ../../babl/babl-list.h: ../../babl/babl-hash-table.h: ../../babl/babl-db.h: ../../babl/babl-ids.h: ../../babl/babl-util.h: ../../babl/babl-memory.h: ../../babl/babl-cpuaccel.h: babl-base.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/.deps/model-gray.Plo0000644000000000000000000000470111272022076023223 0ustar rootrootmodel-gray.lo .libs/model-gray.o: model-gray.c ../../config.h \ /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ ../../babl/babl-classes.h ../../babl/babl-class.h ../../babl/babl.h \ ../../babl/babl-macros.h ../../babl/babl-types.h \ ../../babl/babl-version.h ../../babl/babl-type.h \ ../../babl/babl-sampling.h ../../babl/babl-component.h \ ../../babl/babl-model.h ../../babl/babl-format.h \ ../../babl/babl-image.h ../../babl/babl-conversion.h \ ../../babl/babl-fish.h ../../babl/babl-extension.h ../../babl/babl.h \ ../../babl/babl-ids.h util.h /usr/include/assert.h /usr/include/math.h \ /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h \ /usr/include/bits/mathcalls.h rgb-constants.h babl-base.h ../../config.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: ../../babl/babl-classes.h: ../../babl/babl-class.h: ../../babl/babl.h: ../../babl/babl-macros.h: ../../babl/babl-types.h: ../../babl/babl-version.h: ../../babl/babl-type.h: ../../babl/babl-sampling.h: ../../babl/babl-component.h: ../../babl/babl-model.h: ../../babl/babl-format.h: ../../babl/babl-image.h: ../../babl/babl-conversion.h: ../../babl/babl-fish.h: ../../babl/babl-extension.h: ../../babl/babl.h: ../../babl/babl-ids.h: util.h: /usr/include/assert.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: rgb-constants.h: babl-base.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/.deps/model-rgb.Plo0000644000000000000000000000463411272022075023037 0ustar rootrootmodel-rgb.lo .libs/model-rgb.o: model-rgb.c ../../config.h \ /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ ../../babl/babl.h ../../babl/babl-macros.h ../../babl/babl-types.h \ ../../babl/babl-version.h ../../babl/babl-classes.h \ ../../babl/babl-class.h ../../babl/babl.h ../../babl/babl-type.h \ ../../babl/babl-sampling.h ../../babl/babl-component.h \ ../../babl/babl-model.h ../../babl/babl-format.h \ ../../babl/babl-image.h ../../babl/babl-conversion.h \ ../../babl/babl-fish.h ../../babl/babl-extension.h \ ../../babl/babl-ids.h util.h /usr/include/assert.h babl-base.h ../../config.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: ../../babl/babl.h: ../../babl/babl-macros.h: ../../babl/babl-types.h: ../../babl/babl-version.h: ../../babl/babl-classes.h: ../../babl/babl-class.h: ../../babl/babl.h: ../../babl/babl-type.h: ../../babl/babl-sampling.h: ../../babl/babl-component.h: ../../babl/babl-model.h: ../../babl/babl-format.h: ../../babl/babl-image.h: ../../babl/babl-conversion.h: ../../babl/babl-fish.h: ../../babl/babl-extension.h: ../../babl/babl-ids.h: util.h: /usr/include/assert.h: babl-base.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/.deps/type-u8.Plo0000644000000000000000000000662011272022074022476 0ustar rootroottype-u8.lo .libs/type-u8.o: type-u8.c ../../config.h \ /usr/include/string.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/assert.h /usr/include/stdint.h /usr/include/bits/wchar.h \ ../../babl/babl-internal.h /usr/include/stdlib.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \ /usr/include/wchar.h /usr/include/gconv.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ ../../babl/babl.h ../../babl/babl-macros.h ../../babl/babl-types.h \ ../../babl/babl-version.h ../../babl/babl-class.h \ ../../babl/babl-classes.h ../../babl/babl-type.h \ ../../babl/babl-sampling.h ../../babl/babl-component.h \ ../../babl/babl-model.h ../../babl/babl-format.h \ ../../babl/babl-image.h ../../babl/babl-conversion.h \ ../../babl/babl-fish.h ../../babl/babl-extension.h \ ../../babl/babl-introspect.h ../../babl/babl-list.h \ ../../babl/babl-hash-table.h ../../babl/babl-db.h ../../babl/babl-ids.h \ ../../babl/babl-util.h ../../babl/babl-memory.h \ ../../babl/babl-cpuaccel.h babl-base.h ../../config.h: /usr/include/string.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/assert.h: /usr/include/stdint.h: /usr/include/bits/wchar.h: ../../babl/babl-internal.h: /usr/include/stdlib.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: /usr/include/stdio.h: /usr/include/libio.h: /usr/include/_G_config.h: /usr/include/wchar.h: /usr/include/gconv.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stdarg.h: /usr/include/bits/stdio_lim.h: /usr/include/bits/sys_errlist.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: ../../babl/babl.h: ../../babl/babl-macros.h: ../../babl/babl-types.h: ../../babl/babl-version.h: ../../babl/babl-class.h: ../../babl/babl-classes.h: ../../babl/babl-type.h: ../../babl/babl-sampling.h: ../../babl/babl-component.h: ../../babl/babl-model.h: ../../babl/babl-format.h: ../../babl/babl-image.h: ../../babl/babl-conversion.h: ../../babl/babl-fish.h: ../../babl/babl-extension.h: ../../babl/babl-introspect.h: ../../babl/babl-list.h: ../../babl/babl-hash-table.h: ../../babl/babl-db.h: ../../babl/babl-ids.h: ../../babl/babl-util.h: ../../babl/babl-memory.h: ../../babl/babl-cpuaccel.h: babl-base.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/.deps/type-float.Plo0000644000000000000000000000272111272022074023245 0ustar rootroottype-float.lo .libs/type-float.o: type-float.c ../../config.h \ /usr/include/string.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/assert.h ../../babl/babl.h ../../babl/babl-macros.h \ ../../babl/babl-types.h ../../babl/babl-version.h \ ../../babl/babl-classes.h ../../babl/babl-class.h ../../babl/babl.h \ ../../babl/babl-type.h ../../babl/babl-sampling.h \ ../../babl/babl-component.h ../../babl/babl-model.h \ ../../babl/babl-format.h ../../babl/babl-image.h \ ../../babl/babl-conversion.h ../../babl/babl-fish.h \ ../../babl/babl-extension.h ../../babl/babl-ids.h babl-base.h ../../config.h: /usr/include/string.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/assert.h: ../../babl/babl.h: ../../babl/babl-macros.h: ../../babl/babl-types.h: ../../babl/babl-version.h: ../../babl/babl-classes.h: ../../babl/babl-class.h: ../../babl/babl.h: ../../babl/babl-type.h: ../../babl/babl-sampling.h: ../../babl/babl-component.h: ../../babl/babl-model.h: ../../babl/babl-format.h: ../../babl/babl-image.h: ../../babl/babl-conversion.h: ../../babl/babl-fish.h: ../../babl/babl-extension.h: ../../babl/babl-ids.h: babl-base.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/.deps/formats.Plo0000644000000000000000000000416211272022074022635 0ustar rootrootformats.lo .libs/formats.o: formats.c ../../config.h \ /usr/include/stdlib.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/sys/types.h /usr/include/bits/types.h \ /usr/include/bits/typesizes.h /usr/include/time.h /usr/include/endian.h \ /usr/include/bits/endian.h /usr/include/sys/select.h \ /usr/include/bits/select.h /usr/include/bits/sigset.h \ /usr/include/bits/time.h /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h /usr/include/alloca.h \ ../../babl/babl-classes.h ../../babl/babl-class.h ../../babl/babl.h \ ../../babl/babl-macros.h ../../babl/babl-types.h \ ../../babl/babl-version.h ../../babl/babl-type.h \ ../../babl/babl-sampling.h ../../babl/babl-component.h \ ../../babl/babl-model.h ../../babl/babl-format.h \ ../../babl/babl-image.h ../../babl/babl-conversion.h \ ../../babl/babl-fish.h ../../babl/babl-extension.h ../../babl/babl.h \ ../../babl/babl-ids.h babl-base.h ../../config.h: /usr/include/stdlib.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/sys/types.h: /usr/include/bits/types.h: /usr/include/bits/typesizes.h: /usr/include/time.h: /usr/include/endian.h: /usr/include/bits/endian.h: /usr/include/sys/select.h: /usr/include/bits/select.h: /usr/include/bits/sigset.h: /usr/include/bits/time.h: /usr/include/sys/sysmacros.h: /usr/include/bits/pthreadtypes.h: /usr/include/alloca.h: ../../babl/babl-classes.h: ../../babl/babl-class.h: ../../babl/babl.h: ../../babl/babl-macros.h: ../../babl/babl-types.h: ../../babl/babl-version.h: ../../babl/babl-type.h: ../../babl/babl-sampling.h: ../../babl/babl-component.h: ../../babl/babl-model.h: ../../babl/babl-format.h: ../../babl/babl-image.h: ../../babl/babl-conversion.h: ../../babl/babl-fish.h: ../../babl/babl-extension.h: ../../babl/babl.h: ../../babl/babl-ids.h: babl-base.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/.deps/babl-base.Plo0000644000000000000000000000014611272022073022767 0ustar rootrootbabl-base.lo .libs/babl-base.o: babl-base.c ../../config.h babl-base.h ../../config.h: babl-base.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/.deps/model-ycbcr.Plo0000644000000000000000000000331211272022076023360 0ustar rootrootmodel-ycbcr.lo .libs/model-ycbcr.o: model-ycbcr.c ../../config.h \ /usr/include/string.h /usr/include/features.h /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h \ /usr/include/math.h /usr/include/bits/huge_val.h \ /usr/include/bits/mathdef.h /usr/include/bits/mathcalls.h \ /usr/include/assert.h ../../babl/babl.h ../../babl/babl-macros.h \ ../../babl/babl-types.h ../../babl/babl-version.h \ ../../babl/babl-classes.h ../../babl/babl-class.h ../../babl/babl.h \ ../../babl/babl-type.h ../../babl/babl-sampling.h \ ../../babl/babl-component.h ../../babl/babl-model.h \ ../../babl/babl-format.h ../../babl/babl-image.h \ ../../babl/babl-conversion.h ../../babl/babl-fish.h \ ../../babl/babl-extension.h ../../babl/babl-ids.h babl-base.h util.h ../../config.h: /usr/include/string.h: /usr/include/features.h: /usr/include/sys/cdefs.h: /usr/include/bits/wordsize.h: /usr/include/gnu/stubs.h: /usr/include/gnu/stubs-32.h: /usr/lib/gcc/i486-t2-linux-gnu/4.2.2/include/stddef.h: /usr/include/math.h: /usr/include/bits/huge_val.h: /usr/include/bits/mathdef.h: /usr/include/bits/mathcalls.h: /usr/include/assert.h: ../../babl/babl.h: ../../babl/babl-macros.h: ../../babl/babl-types.h: ../../babl/babl-version.h: ../../babl/babl-classes.h: ../../babl/babl-class.h: ../../babl/babl.h: ../../babl/babl-type.h: ../../babl/babl-sampling.h: ../../babl/babl-component.h: ../../babl/babl-model.h: ../../babl/babl-format.h: ../../babl/babl-image.h: ../../babl/babl-conversion.h: ../../babl/babl-fish.h: ../../babl/babl-extension.h: ../../babl/babl-ids.h: babl-base.h: util.h: ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/type-u32.lo0000644000000000000000000000046311272022075021422 0ustar rootroot# type-u32.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/type-u32.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/type-float.lo0000644000000000000000000000046711272022074022121 0ustar rootroot# type-float.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/type-float.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/formats.lo0000644000000000000000000000046111272022074021502 0ustar rootroot# formats.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/formats.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/.libs/0000755000000000000000000000000011272022171020477 5ustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/.libs/libbase.a0000644000000000000000000014516211272022076022257 0ustar rootroot! / 1256727614 0 0 0 586 `  B B*j*j111AAAKKKUUbabl_base_init__i686.get_pc_thunk.bxbabl_base_destroybabl_formats_init__i686.get_pc_thunk.bxbabl_base_type_float__i686.get_pc_thunk.bx__i686.get_pc_thunk.cx__i686.get_pc_thunk.bxbabl_base_type_u8__i686.get_pc_thunk.cx__i686.get_pc_thunk.bxbabl_base_type_u16__i686.get_pc_thunk.cx__i686.get_pc_thunk.bxbabl_base_type_u32babl_base_model_rgb__i686.get_pc_thunk.bxbabl_base_model_gray__i686.get_pc_thunk.bx__i686.get_pc_thunk.cxbabl_base_model_ycbcr__i686.get_pc_thunk.bxbabl-base.o/ 1256727611 0 0 100644 1656 ` ELFh4( USP(OP[]U]US[]US[]GCC: (GNU) 4.2.2$.symtab.strtab.shstrtab.rel.text.data.bss.comment.text.__i686.get_pc_thunk.bx.note.GNU-stack.groupf4 <  %+09VmH    R,~'M)@VpM babl-base.ctypesmodelsbabl_base_init__i686.get_pc_thunk.bx_GLOBAL_OFFSET_TABLE_babl_hmpf_on_name_lookupsbabl_formats_initbabl_base_destroybabl_base_type_floatbabl_base_type_u8babl_base_type_u16babl_base_type_u32babl_base_model_rgbbabl_base_model_graybabl_base_model_ycbcr  06AZ ` ejot formats.o/ 1256727612 0 0 100644 8428 ` ELF4( UWVS|$'$'$'$'$i$D$|$T$T$ T$t$$$'$'$'$'$h$D$|$T$T$ T$t$$$'$'$'$'$f$D$|$T$T$ T$t$$$'$'$'$'$e$D$|$T$T$ T$t$$$'$!'$ '$'$h$D$|$T$T$ T$t$$$'$!'$ '$'$f$D$|$T$T$ T$t$$$'$!'$ '$'$e$D$|$T$T$ T$t$$$'$'$'$h$D$T$T$ t$|$$$'$'$'$f$D$T$T$ t$|$$$'$'$'$e$D$T$T$ t$|$$$'$'$h$D$T$ t$|$$$' $'$h$D$ T$ t$|$$$'$h$D$ t$|$$$'$'$f$D$T$ t$|$$$'$'$f$D$T$ t$|$$$'$f$D$ t$|$$$'$'$e$D$T$ t$|$$$'$'$e$D$T$ t$|$$$'$e$D$ t$|$$$)'$(' $l$$'($k$D$ |$ T$$T$(T$t$ D$D$ $$)'$(',$h0$'4$h$D$|$,T$0T$ 4T$t$$$'$)'8$('<$h@$'D$h$D$|$8T$0dst_bands>0src*srcdst*dstn>0*src_pitchg3_gamma_2_2g3_inv_gamma_2_2non_premultiplied_to_premultipliedpremultiplied_to_non_premultipliedplanarlinearh??G?(?@ )@ ?@33@Wz>GCC: (GNU) 4.2.2$.symtab.strtab.shstrtab.rel.text.data.bss.rodata.comment.text.__i686.get_pc_thunk.bx.note.GNU-stack.groupn4 <' #8 %d+d0x 8A ^u  ,! Rn+@33 Lf~Y r r  r#  #&Ik_   /=AThzmodel-rgb.ccomponentsmodelsconversionsformats__PRETTY_FUNCTION__.3653copy_strip_1__PRETTY_FUNCTION__.3749g3_gamma_2_2linear_to_gamma_2_2__PRETTY_FUNCTION__.3859g3_inv_gamma_2_2gamma_2_2_to_linear__PRETTY_FUNCTION__.3978non_premultiplied_to_premultiplied__PRETTY_FUNCTION__.4088premultiplied_to_non_premultipliedrgba2rgba_gamma_2_2_premultipliedrgba_gamma_2_2_premultiplied2rgbargba2rgba_gamma_2_2rgba_gamma_2_22rgbababl_base_model_rgb__i686.get_pc_thunk.bx_GLOBAL_OFFSET_TABLE_babl_component_newbabl_component_from_idbabl_model_new__assert_failpowbabl_model_from_idbabl_conversion_newbabl_type_from_idbabl_format_new$* 8 B L ^ h p!~ ! !   & 0 8!F P b l t!    !    !    (!6 @ R \ d!x~ """ #""""0 8#D"R"`" #"""" #" "")"R Z#nt    $   $   $ + 5 =$I [ e m$|   $   $   $   ! )$5 G Q Y$e w  $   $   $   $+ = G O$b t ~ $  %   ( 2 : $F X b j $v $ $ $  ( 0 $< N X ` $s $  % ( . @ R \ d $p $ $ $   '$6 H R Z$f x  $   $    $ ! + 3$? Q [ c$r   $   $   $  ! )$< N X `$  <  & & $ 4'@&N&^ h x'&&  '&&  ' &&* 4 D'P&^&n x '&&  '&&  '&*&: D T'`&n&~  '&&  ' ""!"/(=&m u)""""(& )"#"2"A"P(^& )"""(& )model-gray.o/ 1256727614 0 0 100644 12676 ` ELF4(   U USD$D$ D$'D$$D$D$ D$'D$ $D$D$ D$'D$ $D$D$ D$'D$$[]UVS $'D$ D$D$$$'$'D$t$ D$D$$$'$'D$t$ D$D$$$'D$ D$D$$$'$'D$t$ D$D$$$'$'D$t$ D$D$$ [^]U0lE]؋E]E]E]E݁xE݁E݁]E EE EE E m}uEU0aE]؋E]E]E]E݁xE݁E݁]E EE E m}uEUVS@}*D$ D$$D$1$}*D$ D$$D$=$} u*D$ D$$D$I$E u*D$ D$$D$M$}u*D$ D$$D$R$Eu*D$ D$$D$V$} *D$ D$$D$[$E3D$ D$$D$_$E ]ȋE ]ЋE ]؃}~E ]]E݃xE݃E݃]EE$}u EEE-EM EE EEEE;E|E-EMEEEEEE;E|˃m } E @[^]US$EEE EE݃w*݃\$E$݃݃]E݃]E$[]USD}*jD$ D$$D$1$}*jD$ D$$D$=$} u*jD$ D$$D$I$E u*jD$ D$$D$M$}u*jD$ D$$D$R$Eu*jD$ D$$D$V$} *jD$ D$$D$[$EjD$ D$$D$_$E $]E]E]E]}~E ]]EEEEEE}~ E EE-EM EE EEEE;E|E-EMEEEEEE;E|˃m } E D[]US$EEE EE݃w*E݃݃݃\$$]E݃]E$[]U0VE]؋E]E]E]E]E EE EE EE EEE m}uEU JE]E]E]E]E EE EE EE EE m}uEUS4}*D$ D$2$D$1$}*D$ D$2$D$=$} u*D$ D$2$D$I$E u*D$ D$2$D$M$}u*D$ D$2$D$R$Eu*D$ D$2$D$V$} *D$ D$2$D$[$Eu*D$ D$2$D$_$}t*D$ D$3$D$$}D$ D$4$D$$E ]E ]E݃w Eu]]EEEEEEE EE-EM EE EEEE;E|E-EMEEEEEE;E|˃m }  E 4[]USD}*D$ D$W$D$1$}*D$ D$W$D$=$} u*D$ D$W$D$I$E u*D$ D$W$D$M$}u*D$ D$W$D$R$Eu*D$ D$W$D$V$} *D$ D$W$D$[$Eu*D$ D$W$D$_$}t*D$ D$X$D$$}D$ D$Y$D$$E ]ȋE ]ЋE ]؋E ]E݃xE݃E݃]EM]EEEEE-EM EE EEEE;E|E-EMEEEEEE;E|˃m } E D[]US$}*D$ D$y$D$1$}*D$ D$y$D$=$} u*D$ D$y$D$I$E u*D$ D$y$D$M$}u*D$ D$y$D$R$Eu*D$ D$y$D$V$} *D$ D$y$D$[$E D$ D$y$D$_$U E]E%EE‹EE MEE;EЋUEEE-EM EE EEEE;E|E-EMEEEEEE;E|˃m } E $[]US$}*@D$ D$$D$1$}*@D$ D$$D$=$} u*@D$ D$$D$I$E u*@D$ D$$D$M$}u*@D$ D$$D$R$Eu*@D$ D$$D$V$} *@D$ D$$D$[$E2@D$ D$$D$_$U E]EJE݃w#EE‹EE uEEEE;EUEEE-EM EE EEEE;E|E-EMEEEEEE;E|˃m } E $[]USD}E]ȋE]ЋE]؋E]E݃xE݃E݃]E$]E EME EE E m}uED[]U([E]E]Eu]E$]E EE EE EE EEE m}uEUVS $$D$D$ cD$t$$$$D$~D$ cD$t$$$$D$D$ cD$t$$$$D$~D$ cD$t$$$$D$D$ jD$t$$$$D$D$ jD$t$$$$D$7 D$ jD$t$$$$D$ D$ jD$t$$$$D$mD$ jD$t$$$$D$D$ jD$t$$$$D$D$ cD$t$$$$D$DD$ cD$t$$$$D$ D$ cD$t$$$$D$ D$ cD$t$$ [^]lumaidYYaY'Y'argb_to_gray_2_2model-gray.csrc_bands>0dst_bands>0src*srcdst*dstn>0*src_pitchgray_2_2_to_rgbgray_alpha_premultiplied_to_rgbasrc_bands == 2dst_bands == 4rgba_to_gray_alpha_premultipliedsrc_bands == 4dst_bands == 2non_premultiplied_to_premultipliedpremultiplied_to_non_premultipliedplanarlinearA`"?bX9?v/?h??G?(?@ )@ ?@33@Wz>GCC: (GNU) 4.2.2 $Ë$.symtab.strtab.shstrtab.rel.text.data.bss.rodata.comment.text.__i686.get_pc_thunk.cx.text.__i686.get_pc_thunk.bx.note.GNU-stack.group4 )< $D % %4+40@ 8A"^&{** # "v ,m:G`~p?rjX r m7 l! !/ P#i@#Dr    ! 8Nax model-gray.ccomponentsmodelsconversionsrgba_to_grayargba_to_gray__PRETTY_FUNCTION__.3698rgb_to_gray_2_2linear_to_gamma_2_2__PRETTY_FUNCTION__.3804gray_2_2_to_rgbgamma_2_2_to_lineargraya_to_rgbagray_to_rgba__PRETTY_FUNCTION__.3954gray_alpha_premultiplied_to_rgba__PRETTY_FUNCTION__.4054rgba_to_gray_alpha_premultiplied__PRETTY_FUNCTION__.4158non_premultiplied_to_premultiplied__PRETTY_FUNCTION__.4267premultiplied_to_non_premultipliedrgba2gray_gamma_2_2_premultipliedgray_gamma_2_2_premultiplied2rgbababl_base_model_gray__i686.get_pc_thunk.bx_GLOBAL_OFFSET_TABLE_babl_component_newbabl_component_from_idbabl_model_new__i686.get_pc_thunk.cx__assert_failpowbabl_model_from_idbabl_conversion_new$% %3 E O W&e w  &   &   &$ %', 4(@'N'l t('' (' ('' "(.'<'Z b(t)z %   ) %< G T $ %   *   *    *, > H P*\ n x *   *   *   *a l y G$M %b r +   $ %   *    *+ = G O*^ p z *   *   *    *( : D L*` $f %{     + > )D % $ %    *    * / 9 A *P b l t *    *    *    * ( 2 : *F X b j *z    *  $ %    *   * , 6 >*M _ i q*}   *   *   * % / 7*C U _ g*w   *   $ %   *   *% 7 A I*X j t |*   *   *   *" 4 > F*L$R %^ p z *   *   *    *! 3 = E*T f p x*   *   *  $ %D O \ %$+ %7,E,U _ o-{,,  -,,  -,,! + ;-G,U,e o -,,  -,,  -,!,1 ; K-W,e,u  -,,  -,,  -#,1,A K [-g,u,  -,,  -model-ycbcr.o/ 1256727614 0 0 100644 4964 ` ELFt 4( UwUSD$D$ D$('D$ $D$D$ D$)'D$ $[]UWVS,$)'$('$'D$t$|$ D$D$$$'E$)'$('$'D$UT$t$|$ D$D$$,[^_]USTE]E]ȋE]ЋE]E$]E$]E$]E݃0E݃8E݃@]E݃HE݃PE݃X]E݃XE݃`E݃h]E EE EE EE EE E m}ET[]US$EEE EE݃pw*݃x\$E$݃݃]E݃]E$[]USDE]ȋE]ЋE]E$N]E$@]E$2]E݃0E݃8E݃@]E݃HE݃PE݃X]E݃XE݃`E݃h]E EE EE EE E m} ED[]USTE]E]ȋE]ЋE]EEE݃]E݃EE݃]E݃EE]E$g]E$Y]E$K]E EE EE EE EE E m}ET[]US$EEE EE݃w*E݃݃݃\$$]E݃]E$[]USDE]ȋE]ЋE]EEE݃]E݃EE݃]E݃EE]E$]E$]E$]E EE EE EE EE m}(ED[]UVS $$D$ D$ D$t$$$$D$D$ D$t$$$$D$nD$ D$t$$$$D$D$ D$t$$ [^]UWVS\$)'D$$$('ED$$E$lE$'ED$$E$kE$D$8t$4|$0U܉T$,UT$(UT$$UT$ UT$UT$D$D$D$ D$D$($\[^_]chromaidCbCrlinearplanarY'CbCr u8nameA`"?bX9?v/?4($ſm3տ?ɑڿܸдh??G?(?@ )@;On?XSֿx=>'1Z? ?@33@GCC: (GNU) 4.2.2$.symtab.strtab.shstrtab.rel.text.data.bss.rodata.comment.text.__i686.get_pc_thunk.bx.note.GNU-stack.groupn4 < x % + 0 8 A ^  u|   |n|!*-(5n*DrX fu"r *>L^model-ycbcr.ccomponentsmodelsconversionsformatsrgba_to_ycbcralinear_to_gamma_2_2rgba_to_ycbcrycbcra_to_rgbagamma_2_2_to_linearycbcr_to_rgbababl_base_model_ycbcr__i686.get_pc_thunk.bx_GLOBAL_OFFSET_TABLE_babl_component_newbabl_component_from_idbabl_model_newpowbabl_model_from_idbabl_conversion_newbabl_samplingbabl_type_from_idbabl_format_new$* 8 J T \j |   #1Z bv|       - 8 E        n y        &, m }   *0 E X ` h t            #/=M W gs    +BQ`    ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/.libs/libbase.la0000777000000000000000000000000011272022165024550 2../libbase.laustar rootroot./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/babl-base.lo0000644000000000000000000000046511272022073021642 0ustar rootroot# babl-base.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-base.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/libbase.la0000644000000000000000000000133311272022076021413 0ustar rootroot# libbase.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='' # Names of this library. library_names='' # The name of the static archive. old_library='libbase.a' # Libraries that this one depends upon. dependency_libs=' -lm -ldl' # Version information for libbase. current= age= revision= # Is this an already installed library? installed=no # Should we warn about portability when linking against -modules? shouldnotlink=no # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='' ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/base/type-u16.lo0000644000000000000000000000046311272022075021424 0ustar rootroot# type-u16.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/type-u16.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-format.lo0000644000000000000000000000047111272022104021276 0ustar rootroot# babl-format.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-format.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-fish.lo0000644000000000000000000000046511272022103020741 0ustar rootroot# babl-fish.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-fish.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-version.lo0000644000000000000000000000047311272022111021473 0ustar rootroot# babl-version.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-version.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-cpuaccel.lo0000644000000000000000000000047511272022100021565 0ustar rootroot# babl-cpuaccel.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-cpuaccel.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-fish-reference.lo0000644000000000000000000000051111272022102022664 0ustar rootroot# babl-fish-reference.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-fish-reference.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-core.lo0000644000000000000000000000046511272022100020735 0ustar rootroot# babl-core.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-core.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-component.lo0000644000000000000000000000047711272022077022027 0ustar rootroot# babl-component.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-component.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-fish-simple.lo0000644000000000000000000000050311272022102022220 0ustar rootroot# babl-fish-simple.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-fish-simple.o' # Name of the non-PIC object. non_pic_object=none ./babl-0.1.0-i686/root/Desktop/babl-0.1.0/babl/babl-internal.lo0000644000000000000000000000047511272022105021627 0ustar rootroot# babl-internal.lo - a libtool object file # Generated by ltmain.sh - GNU libtool 1.5.26 (1.1220.2.493 2008/02/01 16:58:18) # # Please DO NOT delete this file! # It is necessary for linking the library. # Name of the PIC object. pic_object='.libs/babl-internal.o' # Name of the non-PIC object. non_pic_object=none
Source formatDestination formats