screen-message-0.23/0000755000175000017500000000000012446333003011336 500000000000000screen-message-0.23/gtkzoom.c0000644000175000017500000000573212106013337013121 00000000000000#include "gtkzoom.h" struct _GtkZoomPrivate { int dummy; // GtkWidget *child; }; static gboolean gtk_zoom_draw (GtkWidget *widget, cairo_t *cr); static void gtk_zoom_size_allocate (GtkWidget *widget, GtkAllocation *allocation); static void gtk_zoom_get_preferred_width (GtkWidget *widget, gint *minimum, gint *natural); static void gtk_zoom_get_preferred_height (GtkWidget *widget, gint *minimum, gint *natural); G_DEFINE_TYPE (GtkZoom, gtk_zoom, GTK_TYPE_BIN) static void gtk_zoom_class_init (GtkZoomClass *class) { GtkWidgetClass *widget_class = (GtkWidgetClass*) class; widget_class->draw = gtk_zoom_draw; widget_class->size_allocate = gtk_zoom_size_allocate; widget_class->get_preferred_width = gtk_zoom_get_preferred_width; widget_class->get_preferred_height = gtk_zoom_get_preferred_height; g_type_class_add_private (class, sizeof (GtkZoomPrivate)); } static void gtk_zoom_init (GtkZoom *zoom) { GtkZoomPrivate *priv; zoom->priv = G_TYPE_INSTANCE_GET_PRIVATE (zoom, GTK_TYPE_ZOOM, GtkZoomPrivate); priv = zoom->priv; } GtkWidget* gtk_zoom_new (void) { return g_object_new (GTK_TYPE_ZOOM, NULL); } static void gtk_zoom_size_allocate (GtkWidget *widget, GtkAllocation *allocation) { GtkWidget *main_widget; GTK_WIDGET_CLASS (gtk_zoom_parent_class)->size_allocate (widget, allocation); main_widget = gtk_bin_get_child (GTK_BIN (widget)); if (!main_widget || !gtk_widget_get_visible (main_widget)) return; gtk_widget_size_allocate (main_widget, allocation); } static void gtk_zoom_get_preferred_width (GtkWidget *widget, gint *minimum, gint *natural) { GtkBin *bin = GTK_BIN (widget); GtkWidget *child; if (minimum) *minimum = 0; if (natural) *natural = 0; child = gtk_bin_get_child (bin); if (child && gtk_widget_get_visible (child)) gtk_widget_get_preferred_width (child, minimum, natural); } static void gtk_zoom_get_preferred_height (GtkWidget *widget, gint *minimum, gint *natural) { GtkBin *bin = GTK_BIN (widget); GtkWidget *child; if (minimum) *minimum = 0; if (natural) *natural = 0; child = gtk_bin_get_child (bin); if (child && gtk_widget_get_visible (child)) gtk_widget_get_preferred_height (child, minimum, natural); } static gboolean gtk_zoom_draw (GtkWidget *widget, cairo_t *cr) { GtkWidget *child; child = gtk_bin_get_child (GTK_BIN(widget)); if (child) { cairo_save(cr); cairo_scale(cr, 2, 2); gtk_widget_draw(child, cr); cairo_restore(cr); } //GTK_WIDGET_CLASS (gtk_zoom_parent_class)->draw (widget, cr); return FALSE; } screen-message-0.23/sm.ico0000644000175000017500000002267611316723537012420 0000000000000000 %(0` $     "%')))('(),,-...-----.//0/.--,,,,-*'%"  #-49<====<=?@AAAAA@@@@ABCDEDCCBA@?@@@<863,%*,,x >?@A=?? B9;;  979:  <=>SRRR  788]WWW 134kwww 5 4mmmyv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\CrQ2y rQ2v\Cv\C333333v\Cv\CHHHGGGv\Cv\Cv\Cv\Ciiiiiiv\Cv\C++++++v\Cv\C777777v\Cv\C]]]rrr v\Cv\C v\Cv\Cnnnlllv\Cv\C777999v\Cv\C<<<:::v\Cv\Cv\Cv\Cv\Cv\CrQ2yrQ2v\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\Cv\CyFF?screen-message-0.23/configure.ac0000644000175000017500000000355612446332742013566 00000000000000AC_INIT(screen-message, 0.23, mail@joachim-breitner.de) AC_CONFIG_SRCDIR([sm.c]) AM_INIT_AUTOMAKE([foreign]) AC_CONFIG_FILES([setup.iss README.Win32]) AS_CASE($host, [*mingw32msvc*],[win32=true], [win32=false]) AM_CONDITIONAL(WIN32, test "x$win32" = xtrue) AS_IF([test "x$win32" = xtrue],[ AC_CHECK_TOOL(WINE,[wine],[],[]) AC_CHECK_TOOL(WINEPATH,[winepath],[],[]) AC_CHECK_TOOL(WINDRES,[windres],[],[]) ]) AC_ARG_WITH([iscc], [AS_HELP_STRING([--with-issc=PATH], [path to the Inno Setup compiler for win32 cross builds])], [ ], [with_iscc=no]) AS_IF([test "x$with_iscc" = xyes],[ AC_MSG_ERROR("You need to pass a parameter to --with-iscc") ]) AS_IF([test "x$with_iscc" != xno], [ AC_SUBST(ISCC,[$with_iscc]) ], [ AS_IF([test "x$win32" = xtrue], [AC_MSG_ERROR("You need to specify --with-iscc when building for Win32")] ) ]) PKG_PROG_PKG_CONFIG AC_ARG_WITH([win32-gtk], [AS_HELP_STRING([--with-win32-gtk=PATH], [path to the gtk+ source bundle for win32 cross builds])], [], [with_win32_gtk=no]) AS_IF([test "x$with_win32_gtk" = xyes],[ AC_MSG_ERROR("You need to pass a parameter to --with-win32_-gtk") ]) AS_IF([test "x$with_win32_gtk" != xno], [AC_SUBST(WIN32_GTK, [`$WINEPATH -w $with_win32_gtk`]) AS_VAR_APPEND(PKG_CONFIG," --define-variable prefix=$with_win32_gtk") export PKG_CONFIG_PATH="$with_win32_gtk/lib/pkgconfig:$PKG_CONFIG_PATH" ], [ AS_IF([test "x$win32" = xtrue], [AC_MSG_ERROR("You need to specify --with-win32-gtk when building for Win32")] ) ]) AC_CONFIG_HEADERS(config.h) AC_PROG_CC AC_PROG_INSTALL AC_STDC_HEADERS PKG_CHECK_MODULES(DEPS, gtk+-3.0 gdk-3.0 pango >= 1.16) AC_SUBST(DEPS_CFLAGS) AC_SUBST(DEPS_LIBS) AC_CONFIG_FILES([Makefile]) AC_OUTPUT screen-message-0.23/sm.html0000644000175000017500000001230112304466543012571 00000000000000 Screen message

This is an online-version of the program screen-message for Linux.

For more information about the original program, see what Deb-a-Day writes about it. You can download it from Debian or fetch the sourcecode.

screen-message was created by Joachim Breitner. If you like it, then flattr this.

screen-message-0.23/setup.iss.in0000644000175000017500000000545411317160422013552 00000000000000[Setup] ; NOTE: The value of AppId uniquely identifies this application. ; Do not use the same AppId value in installers for other applications. ; (To generate a new GUID, click Tools | Generate GUID inside the IDE.) AppId={{b1390e3b1a38d9c94e5041b64b3b8ccb} ;AppId={{1DB6EA4F-D387-432D-A739-283E0E916AF6} AppName=Screen Message AppVerName=Screen Message @PACKAGE_VERSION@ AppPublisher=Joachim Breitner AppPublisherURL=http://www.joachim-breitner.de/projects#screen-message AppSupportURL=http://www.joachim-breitner.de/projects#screen-message AppUpdatesURL=http://www.joachim-breitner.de/projects#screen-message DefaultDirName={pf}\Screen Message DefaultGroupName=Screen Message AllowNoIcons=yes OutputBaseFilename=screen-message-setup Compression=lzma SolidCompression=yes ; Is there a point in displaying the LICENSE file? ; LicenseFile=LICENSE InfoBeforeFile=README.Win32 [Tasks] Name: quicklaunch; Description: "Add Screen Message icon to the Quick Launch Bar" Name: hotkey; Description: "Launch Screen Message via Ctrl+Alt+S" [Files] Source: "sm.exe"; DestDir: "{app}\bin" Source: "@WIN32_GTK@\etc\*"; DestDir: "{app}\etc"; Flags: recursesubdirs ;Source: "@WIN32_GTK@\share\locale\*"; DestDir: "{app}\share\locale"; Flags: recursesubdirs Source: "@WIN32_GTK@\share\themes\*"; DestDir: "{app}\share\themes"; Flags: recursesubdirs Source: "@WIN32_GTK@\bin\libgtk-win32*.dll"; DestDir: "{app}\bin" Source: "@WIN32_GTK@\bin\libgdk-win32*.dll"; DestDir: "{app}\bin" Source: "@WIN32_GTK@\bin\libglib*.dll"; DestDir: "{app}\bin" Source: "@WIN32_GTK@\bin\libgobject*.dll"; DestDir: "{app}\bin" Source: "@WIN32_GTK@\bin\libpango*.dll"; DestDir: "{app}\bin" Source: "@WIN32_GTK@\bin\libgdk_pixbuf*.dll"; DestDir: "{app}\bin" Source: "@WIN32_GTK@\bin\libcairo*.dll"; DestDir: "{app}\bin" Source: "@WIN32_GTK@\bin\libgio*.dll"; DestDir: "{app}\bin" Source: "@WIN32_GTK@\bin\libgmodule*.dll"; DestDir: "{app}\bin" Source: "@WIN32_GTK@\bin\libfontconfig*.dll"; DestDir: "{app}\bin" Source: "@WIN32_GTK@\bin\freetype*.dll"; DestDir: "{app}\bin" Source: "@WIN32_GTK@\bin\libpng*.dll"; DestDir: "{app}\bin" Source: "@WIN32_GTK@\bin\zlib*.dll"; DestDir: "{app}\bin" Source: "@WIN32_GTK@\bin\libexpat*.dll"; DestDir: "{app}\bin" Source: "@WIN32_GTK@\bin\libatk*.dll"; DestDir: "{app}\bin" [Icons] Name: "{group}\Screen Message"; Filename: "{app}\bin\sm.exe"; Tasks: not hotkey Name: "{group}\Screen Message"; Filename: "{app}\bin\sm.exe"; Hotkey: "ctrl+alt+s"; Tasks: hotkey Name: "{group}\{cm:UninstallProgram,Screen Message}"; Filename: "{uninstallexe}" Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\Screen Message"; Filename: "{app}\bin\sm.exe"; Tasks: quicklaunch [Languages] Name: "english"; MessagesFile: "compiler:Default.isl" Name: "german"; MessagesFile: "compiler:Languages\German.isl" screen-message-0.23/gtkzoom.h0000644000175000017500000000232112106013337013115 00000000000000#ifndef __GTK_ZOOM_H__ #define __GTK_ZOOM_H__ #include G_BEGIN_DECLS #define GTK_TYPE_ZOOM (gtk_zoom_get_type ()) #define GTK_ZOOM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_ZOOM, GtkZoom)) #define GTK_ZOOM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_ZOOM, GtkZoomClass)) #define GTK_IS_ZOOM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_ZOOM)) #define GTK_IS_ZOOM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_ZOOM)) #define GTK_ZOOM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_ZOOM, GtkZoomClass)) typedef struct _GtkZoom GtkZoom; typedef struct _GtkZoomPrivate GtkZoomPrivate; typedef struct _GtkZoomClass GtkZoomClass; struct _GtkZoom { GtkBin container; /*< private >*/ GtkZoomPrivate *priv; }; struct _GtkZoomClass { GtkBinClass parent_class; /* Padding for future expansion */ void (*_gtk_reserved1) (void); void (*_gtk_reserved2) (void); void (*_gtk_reserved3) (void); void (*_gtk_reserved4) (void); }; GType gtk_zoom_get_type (void) G_GNUC_CONST; GtkWidget* gtk_zoom_new (void); G_END_DECLS #endif /* __GTK_ZOOM_H__ */ screen-message-0.23/sm-fsmi-ka.jpg0000644000175000017500000071757612305643042013754 00000000000000JFIF,,ExifMM* z(1 iw2Nokia6700c-1,,GIMP 2.8.60220Rf|uz0100w*2014:03:05 14:47:432014:03:05 14:47:43$uߌk}4(/[i$D|QE-;,YPL"V+WDQy<'0@m~|KPDc$1 E]BHQ~kI3[zt%xʓH1VX}ݖ 4-c%d᷿R(7N; Vgv0H4jB @RKRSƜ5w׍k,~UlM0x"6C,m/>+9 zheS(ǹszɺsي̥޷l/u t'Jޛ[eѨƳ^HPDMcat$C̜&~vZP(p[\ƻt$ %Т8 <Z"Y9XJ0фj(qg~S%߈+ Vgv0H t@RgQԢ1:ה_~,0x"06H,JeL9hk}4(/[6UD}^T!RbN\OTÈ9ifOERy cČx@*qd*Ċ敤QKrA~DJG '_ |4OiA**I-9D1~% @b+~%+ Vg#I0H^4^db,BP4JN\O+bAVҔE#oBՒJeL9h|ͦxT5؅|e7|=], PI+wMoE="zv׍#'a qd*5t&]ɓfg16ejCw@Om0\N( 0фj(q-)~%ǟ+ Vgv0H t@RKRKrԢ1:׍k,RlM0x"z3JeL9hk}4(/[659gy uήII ^NѨ׍#'a qd*Ċ敤Kr<_"pR~\B$ Т <-Z"9XJ0фj(q-)~%+ Vgv0H t@RKRKrԢ1:׍k,RlM0x"z3JeL9hk}4(/[659gy uήII ^NѨ׍#'a qd*Ċ敤Kr<_"pR~\B$ Т <-Z"9XJ0фj(q-)~%+ Vgv0H t@RKRKrԢ1:׍k,RlM0x"z3JeL9hk}4(/[659gy uήII ^NѨ׍#'a qd*Ċ敤Kr<_"pR~\B$ Т <-Z"9XJ0фj(q-)~%+ Vgv0H t@RKRKrԢ1:׍k,RlM0x"z3JeL9hk}4(/[659gy uήII ^NѨ׍#'a qd*Ċ敤Kr<_"pR~\B$ Т <-Z"9XJ0фj(q-)~%+ Vgv0H t@R}g Q;7f݄_T,0LM(uA,z,$V;b90 Z+1#Y6D}Ǎc>¦dADŽPΞu1I^ q&FiRl?nedyC3Șrg51Qr~L%w\tٱS4r^۞[1%"j#H| y8 D˄9Y- rHH^4%`Ӑ™QΧ5{ _! aH3,rʸ;bf"㌯ͦ(Y{|4JD}ʺ@M¦:"; ]Ƕr;o^ sQ-'2Rl^ydDc`O3&qd5QU~kp[>{B`&r^."[1T5%Axq|֬x~ DB9Yyr.8C^^4 B~Rgȅ#~1{"&ƫ,~)aC"6> ̵mTL3[ܳ_/i}ͦ/ztזO6ȧ޷(;Fr֪t^sDQY!(]S)a^~MZcm%,&/!Q# kGR[ƬklN |"vT'X0 ѮrQ7"0/YftPql B&QR_51=QrY޻W~RzU,^G@6ɑJmV03s#h_%Z-إU$fz٥>Py޷*ȣF́M"֪EF (] ~HP kmCg&#~鯟33ƻt>, x[<|"cX'_L- .Hk!ƨ%"0"ֆfe2qȳt&`fd5Q{̏Y\'_U,wLMM,z,+$Vb+9P> Z#YG"6D}Vc>¦xADŽSum1I^ &F9RleWHPDzjC3rg5Qr~U3xw\t}t4r^[1%"j#H|j8 D39s erHH^4 `Ӑ腙Q{ _Ӟ a,HN3,Cʸ;bZ"Zֽͦ(YsJD}OXM¦F7";4Ƕro^ sQ-'c2Rl^y5dDcrO3&d5Q~kip[{Be&r^."[1TG5%q|֬Mm~ DDB9Yyr.8߷^4 B5Rg#mƑ1{"~,~oa7"6%̵mL3?ܳ_q}ͦҼ/zsڧ޷bR(^;F%r֪w^sQQ:!'(]Ca^y~(;cm,&汸aQΐ k٬R[.kޥ |"T'nX0 gѮ.aryD"0@f?P.8q;B!QR*5oQrYs"'4R~U,ؼG\6JmV/3!#h_ Zzإ#Hz6>PylȣF5"֪EQFy> (]v~HPLmCgW#؎3_ћƻtT( ެ¦ADŽdžuK1I^ &FRl&HPDC3 rg5EQr~c3ӇMw\t4r^[1@1%?x"j#H|"8 D?ք9*% erHH^4M-`ӐQ^${0 _G a!H3,)dʸ;b{"㌻3ͦ(YJD}OsM¦ʘD";KǶro^ sQ-'2Rl^yGdDcO3&Qd5Q~kp[{Bz&r^k."[1Tj5%q|֬K~ D+B9YSyr.8^4 BeRg#ξe1{',~=am"6̵mL3YܳKLζ}ͦ_/zLOو޷z(hF1 r֪^,Qq!׍#=aI~̖cm-,&0\WaQ kLR|knǦ |"ۛT'6X0w֨ѮGrI"0YfP.]qsd&5}QR7 5B)QrYh4"'gR~UםG%C6jJmV6Ǽ3^#h_ Rإ#{z٥>"Py޷)ȣFIE"ցWEQF (]W~HPD̹CZ#g0#1![L˄^t A X<|"5cX'- #H!rݔ%"0ŽֆfeqȪPt&`ӧd5QޏYS'_U$|&cLM_3v,zU@$R;bݳ9kb&}Zd#Y/6D}Sc>¦ADŽ]uN1I^ &FzRlR>HPDC3rg5rQr~A 3'w\JS\4qa^Ԅ[1I%<"jga98D^焈Gv erTHH^4,`ӐǝQ?{3 _v a䄜H.36ʸ;b"Lͦت(Jݻ.;M¦f";ǶՄr#o^ sQ-'2Rl^ydDcO3&sd5Q4ŇWܳp{BP&r^wY."[ȂT?5%,q|&~QKjBYfyr.8=^4 BFRӕr# F1{0/,"Ua!"_6f̵ L3ܳ_ }ͦW*/zO#޷U(;Fnr֪F^sQQ!'(]6a^y~Nlcmd,&#Qε k..R[ Yk |",T'%X0 Ѯr"0#YfFP.8q B&uQRg5VQrY`"'"R~U,G,6UDJmVШ3<#h_ Zhإ# EzL٥>Py޷;ȣFͽ{"֪^EF (]~HPnꂖmCYg#$3%ƻt3 <|"cX'T- #H:!rr=%"0Kֆfe!q?]t&`Ӫd5QRYp)'_ȑU,rLM H,z,y$V;bC9Bѫ ZTb#Y_6D}c>¦JADŽsu,!1I^ &Fڣ&RlęHPDዡC3Crg5Qr~3w\t/4r^[1%b;"j#H|֘8 D99S{ erHH^4`f`ӐӗęQΟG{ _|$ aדH-u3,ʸ;b%" ^ͦ(YJD}OM¦ʏ,"; zǶr֖o sQG-'E2Rl^ydDc O3&*d.Ql~kp[5{B&r^X.."[1T$5%q|֬ha~ DB9Yeyr.8t^4 BgRg#g1{"5,~Xpa"6{̵m>0L3{ܳ_@}ͦǼ/zO٥ϑ{ޤ7LjƜu' s QY'~A]l^j~{mps3!3z|$&~utf?ƈ/Rެk6^{."G1n<'K, ..truD90\f9 f'r#qxq[4JӜJ$SDǜ揙Ӧb ,$i x;؊,mV;b3_ Zͦ#YzD}O٥>¦޷;Fr֪^ sQQF'(]Rl^yb~HPMcC;&_gpQJ/kP37K[\$tHE4?ԂT㙘 )D#Hm_27HYiXe.8Q B! `JLgQJ  Hney}~hWS!Wg6ďVNbÂ: 11/gz]}O٥&O\js 9'xy=6B75g|I{N[wh&D ,j 2E,hiϬ}/QH?w4%h_ua1FϞ_!Q OsN= 4b놻 my܏QQF<30Nw J7P ^]٪+Q`hݺLҀˌoeHzpf"MN|&bqST ^@R={9D\_"< M k5l Wԗ㐷UUu fEV0qiH =}eG8?ي@N*\Uay/RPI[C딝= N_n>^&,8'e$rWl WyHwMCiW|gM"pIyoeKMQP,$wx)5@Z4@a3Ӛu)R*]k_ !Mi [TڭqXt' Jύ'\iPj'S)U ^= >Փsl-U3tY>n=BzeIpҲBԠrP:$"⣱(tYם3 O gV| Gz1;@_ yN%XU6~7K?)'S27W!&@zE3F`gMIo*ZGAD4v0i(c>VPo8sI S8^֮QFu'(]Rl^yHPQzmC3&DZ*5Q~k3T[ƻtB^d?W1T튲% #H|֬r V"09Y!er.8ȱ4BhӐg5QHWuڷ~U,ax.l6;FrP^ sQF'(]Rl^y~HPQ{zmC*g5Q~kP3[ƻtr?¦ۖAjΞuУ1I^ &FڇRlHPD[yC3rg5Qr~h3Ew\t 34r^ [1%"j#H|8 Dwt9l- erHH^4%`Ӑ™Q5 _{ a{H3,@rʸ;bf"㌬ͦ|(Y4JD}OM¦ʜ";]Ƕrs;o^ sQ-'2Rl^ydDcO3&d5Qp~kp[ެ{Bw`&r^."[1Tp5%?xq|֬N~ D%B9Yyr.86^^4 B~Rg#~1{"ڢƫ,~)aB"6E̵mLc3qܳ_P}ͦ/zOl޷`(;F r֪t^sQQ|Y!'(]@)a^y~Zcmr%,&O!Q# pGR[kQ/N |"jT'X0t /Ѯr7"0YftP.8qG B&QRg5 =QrYi޻"'R~U,wGg6PɑJS03s#h_ Zإ#fz٥>FPy޷ȣF͡M"֪EQFo (] ~{PFkpC+g&#鯟3Zƻt , 9[<|"0cX'L- #H!r2%"0ֆf'9ZȊt&`Wd5Q̏Y\'_U,xwLM-,z,[d$V;b 9٦0 Z @#Y 6D}c>¦ ADŽOum1I^ &F2RlWHPDjC3(rg5Qr~,U39w\tt4r^([1 %"j#H|j8 D39 er٣HH^4 `ӐQ{ޝ _Ө aЃHN3,*ʸ;b"uֽͦ(YpsJD}OlXM¦ʚ7";Ƕr7o^ sQ=-''2Rl^yxdDcrO3&d5Q~kip[{B&r^W."[1TG5%eq|֬1m~ DڌB9Ybyr.8m߷^4 BJRg#Y*1W",~wl"6 A̵moL3 ܳ_7}ͦ,/zOڧ޷R(;FB%r֪^^sQQ:!'(]a^y~ ;`am,&aQ˒ k R\k7 |"bT'nX0 ѮrVD"0@YfP.8q B&QRg5oQrYs"eRz,bG6JmV=3#h_ Z.zإ#)Hz36٥>Py޷ lȣFx"֪EFV> (]~HPZmCDgW#3ћƻt( <|"aNcX']- .H!ƨ!%"0[ֆfeqt&`d5QY{'_NU,ȼ LM ,z,$V;b 9ټ ZV#Ye6D}/c>¦rADŽuK1I^ G&FڿRl&HPDC3 rg5Qr~c3ӃMw\t4r^[11%x"j#H|L8 Dք9]% erLHH^4-`Ӑ찙Qw${0 _G aH3,dʸ;b{"3ͦ!(YJD}O#M¦D";%Ƕro^ sQS-'2Rl^yGdDcEO3& Qd5Qf~kRp[{Bz&r^͝."[1Tf5QRq|֬ K~ DB9YjSyr.8F BaRga#1{"*,~Ra;"6LM̵mL9Yܳ_}ζ}ͦ_/zLP޷z(Y:N r֪^sQQRq!'(]=a^y~̖Um(-,&WQ^ kR[k |~kۛT*=X0Ѯ8ͺ"qYP.8[ B&}QRg59)QrYr4"'gR~U,G/QRJmV3#h_ Zإ#qzI٥>uPy.lȣF"Ϊ7EQF (]~HPumC.#gJ0#,[3љƻtA <|"cX'%O- H#!6~ %0֘eNq˯t`d5sYW'_U,ȢcLMv,z,@$V;bݳ9٢ Zd#YS/6D}Sc>¦EADŽGu'VN1I~ &:FIRl>HP2c3;3a\r|NQrt~O~Ӂw\إ\4]br^[1)8%"j#H|ֻ8 DU焈9v erTHH^4r,UӤMt慨 ܦӳ aH\ُ36ʸߌ@:"ey:eͦ({JO;MO3f",<Ƕflo^ sQ-'2Rl^yMdDcBOï_&dQ4~kXܳp[{BP&ٕ^pY."1oT?5шZq|͒&~D1BI؊y1dַ^4BRN #1{"h_,r_~JY"̳f̵mLf=ܳa_ }}yf*/z=ٸ\U(nrF^NvQ!c a^y ~l>0,&DZsXQ k4.R[ƜYk.5 |",^n'%X0| ѮW r꛺ffFP8[7C8EuQRMVQrbݧ"R~,Gu%,6,Jm3k#h_ Z+Uإ#z٥>bPy޷ȣFH"֪wEQF (]˩~HPꂖmC:Yg#$3ݑƻtZ <|"'cX'- #H:!r=%"0ֆfe!q]t&`d5QY)'_U,ȱLMH,z,y$V;b-C99ѫ Zb#Y_6D}7c>¦JADŽuX!1I^ &F&RlAHPD&ዡC3hCrg5Qr~3Ӧw\tl4r^[1Ή%A;"j#H|ְ8 Dj99{ ernHH^4f`Ӑ\ęQG{ _$ aH̛37yʸ;b"39ͦh(YJ}O=M¦(";ǶrΖo^ sQl-'2Rl^ydDc5 O3&Od5Ql~kp[D5{B&r^.."[1T$5%q|֬[a~ DB9Y|yr.8t^4 BgRgi#g1{"'tF~Ua>Us6EGTV94b4悄t%DƽNnzQm} ~ Ҫ 4Qep]Volu ~{l{mpmX3!ñE$~otf?Zƈ7R ެ6^U."G1<'K, .5.trFD9A09Yfer.8q^4 B&`Ӑg5QY{"'_~U,a6,mV;b3 Z@ͦ9#  O">ԕʥZ;/RbrusQF-'v zC^yb!HP`c]C;n&_gQJ\k37[\Bt'EK"?rT ;H&/"R*58w^ B&ӐT5!KQ;Y {'"璦"5$l>SS5>d,O+%;}B EZr4'mnj?YP[h&0$XsV#·,ģ|oC-]6ksNմ~W ]XrӶԐ)2s T4 _"|-iD=8L̮r4ٟZײ7y@,}IV5"\+@ن.N0"ƦhtՐ =ws0l89)?N0 :@zB4Û֫yA wâlQ)"_4)[BH&Z raloؚ!MmFE>/mdGD`{:fި/0 f-:n҇[#v6nA[RSOͻcrv 1ɘL%4cʏ7#efU ӐE_p 9*=Dk q Ɂ84_NG97BR1^UqӋ?}`X AoS#ofP8+v_֓S rе1)<ნ6 k, f]~5Zv)mdYQ6 tRw{k%ҞqOu3Lۄ%pT> 1:L< ȬyBxR& v2_A_F/N@u!x~#fiNgt *,Vgo~y WxQ- 4ZƫP!Wզ/R9iʹyy{0ٕwiر|y#g9!;CcM} ta9)SYWt` seJ04*#£LE{i9A< {3r[]/71=QZ5f[\]k,Ra V3)d)EW!oө(*dZ$r2#A;bx3K Wr7 GܬRM-WJZCP/qTsvN)pi%G@Y?T^NTetJɤx9#dw ,}iķà yǁ؊KNIJ: `cO$8nj$*Vj@fiWj/?~,U3͡o2ޝn]I^F/.,!%qRuC3d] -3/et;o?k{!?;:IW)ܞ`=&R!@vJқF`|FSiM[8ϔ).(ae ߉E`v.8Q9V Hk7k Ī/H)s\+5LJ%RtӦS D(Rzۼҕ BO(rX#Ύsr4ڸU>n?f aNYk f5 w۴-wߗSa8}g6zVEҳJSo;t3qn+nwß)4A&3z?yʼUhfE'\NWg]j=#WCl ~ɤPq0)%@9AC1!lb6.V4T*q ewY<wui8i Gu&"=lfvAj Kj&/u҆C}9/P Bt>(uv) 6g)j5JFκl6˰/б D/o6,ԯVg, X^*ZX'5!mh%o^VQV@ 8q\M_uy׹}l6؏رO(wJ.8,fqcp7)lM0x";(k I4yE/BùU7pw![gmq&%&1 G`=h;[{oe)?aC{BL͖=s` {OqqHU/[r֡O>Ɛ1P3v =UA"lSg*Ehw`Bn}6Z )qS+u@!w-9Нkqff$2I6HܪKϣ+aF[9E2y=)˥SxL9/F#5 ϮރtL it7M9*CBۼp[̬;qϏMMRڬ0z aqGuOM9r]nXS4^A?IElkG|۟qߍ^= 5+|F@b;pS{iξ%,cF\5}|X4yVuDGhSZZ Ѯ V p"^{VQzRg=kgEgX%&=^~PDc4m^C4 H]$ck)"V[/hH;r^|^񱚏˙.l #|ҩuFDҭFg:9{er.8Dz.r&`!I5 q J~U!Ƚ$ի:8j,M}4KV;jL oFlYzn;mn4N ;LO"RG^9-Lڷ(]\my~/u1!mCV&g5T坹e9;3dI D"0mYq\Z.7 ^4 1&rmִOQ"'DVUEEQ?ŝnڪTb"ی_ uJgN-mY}}OF>ZZ1Ѥ;&Fkr֪DsQ4>`ث۲RZ- qNj] /6TEvutL,P8.@uR* WI%0фյmBUOy kb϶SFV%Ɖn'WVʤJ;*Blhp6/Lb[D LJ@&T,}R/GLE`SekB-;]a)xrcYJ bD 0Y+s6+f3r:](cdR2}9#'|z9U{S46*06 | Z,\a2GnY x~-Aie9ذZ([oʡF4 5" ' ͽ5@, 1aW6}cD4bw/!DZV&#$Yz}/j>6c;U rܪ.*g۪ŠgdEniĥoSECNZIf[ gfnYJƦ2cêTLy -C YJcm[l$8 ^a,B&ӐU;5lɐY&G{'5x'UVraҼS +ʑTV< ~݄[ Kcͽ< k]͑Ofh'A=tp4\}6h 1ksngr'`^#H>Tc3%9& X1g tS;qLk93#[I ty4M :z*#%L`^!&#Q-qY e& .TJC `_sg)"J_iSh$6̈۔,mt;,3Q[e_P39Y*ZD\ ½Oz;F* bMZ^JkR+? UકKUcD& pL!15^aP-*[uucg0O`s],x͜ujrq&GH Tr8vkFd@&3BB.1Δ 65(׻}´#ԑl:qAmJO^NMѨd#݃U!u aDp敤+7z<_Ƌz.N|fx}3<-Z"9X0x&x]"oB&P}>+%Vg"[K_ 0\ 9Ԣ1:׍cdK&$8Șwup JeL*KO@;+ƫ`S%`_Aw.[_Oc`8o6FPk kQqEb)#~ݞ BKnb2'#jYA,cvcK'oPθ Q!m/OY"%Y[y/Dw@w"Dm_(z n}} +Rɤ:KMw҉CUWI<՝ (zόV˨ \B5~křϗߑ37(yKKSL4Oy|I#!rx.Q&@TG/zwna=ؔȁy_-p*."[%"ŒnMIwAL 5BkLx km}&P.i{WPdS\n;L TөoxpSɖ΢bVbO8*ŐJ֟;w6Y0%%R%Mɂ߼ =Pg7E7hHƴKr1%ZyWBo >v1ih3!!CLu,$@&O DJ65*9jXcR:Ra6!АhU]^N׍U%p

ooyg{N敤Kr^/Hz,$Y Mk(35٨ <-Z"9, )2udG%u_%+ V>!*`2%rLS-KrԢ1: A"GSIءEafrGӑK3f׷OYBva!50Z}<"kn(@-&ng)*c-dQ.Щ!SAU* #1BKGOٔ?$ő1` `%xТ)!F}"Ȋr{T' P)Ddpɘ%t+%?ό6Ms#hKrԒ1:}s;MEO>S({ eSČ3JeĜmR]6 ilM Y[65͒ɢ 8݁q?U#IAᗮII ^NѨ7ܨK/K "e}+kSĊ敤|wd hECy2Y3([$ }:&82zǽaRأEYן,c Xd=;$'U17~dGWlw9|OɧٹwEz9ԥX[>Ƃb3JeSR{tEiX?o$4(k65;aܴqUG8p" _^N=YPտ^KjP!!~Ks.wmI ץQ& <-Z"VN?_;!GLޢ}ee&2uwrH灮?R:j-"tk+Ym,i^t2$-B7PW%$J:)'=1D>%Co_BVLO5Hֈ[SU &R-W6)G:[`@݌@R|ՐM[-Yjtw^0Wo/{Bt T-`'[B\˺&{m5@_E3֊Pu"d9@=F̓!EvGGhi^4EZ7jK v`i%Ҋ"Zvhhi&y\M(ؕk@7Z{Z߅jFe xo]grBQ}PgMu8 ;Y*+3hTэa_L-F} hPb"#1¹Yr#J't )QZ5=KpR~\BkO}V2=d[@TA%dXH|' "fpG͆5y:^&+w6:G5'/ɐgY`{#'"U|app@ǐoV"i%w` XNOإ )k{slEb'$ʍt<^H`Aci 1g&g;O`ak3[gRB!WZ.>eLFC)d%ߙl> h#9C0V[H鹰˰~Y|e.JQ/ `#ҫg nzfڝ"._`D,$fS̍,d*WmI;M E3G[WO_YXDjvX}¾iFVStY/Y^?t. (dv7R]$qj D?*јg 5Ǻ*VgF~r̾N|t[xC%r΄_A|) "FubY}6^&5*YL{C6'USEa ~:tTکZVm1MC]q ; ^?C]ɐ0O`VץuuJ)40 /Pts.ϳ'z J^d_HM7cx& &}R\gIT_k x3{[bȜ\}O4U.g݆#|߬7ח=v}tY9%e퉗.聤 )v$`Ӭg]I㥎@X$,"P_1}j;hC h̘,am7;a31_dY$$սDv(˜Au8FȌm֔^XLˬ#(R*C2D_J%\85;/e\ng9гYrT|o[NH%ؗEra{@e}t^JKv:Ӑu+t XZ {"W:2;pMop,x"z3JeL9hk}4(/[659gy uήII ^NѨ׍#'a qd*Ċ敤Kr<_"pR~\B$ Т <-Z"9XJ0фj(q-)~%+ Vgv0H t@RKRKrԢ1:׍k,RlM0x"z3JeL9hk}4(/[659gy uήII ^NѨ׍#'a qd*Ċ敤Kr<_"pR~\B$ Т <-Z"9XJ0фj(q-)~%+ Vgv0H t@RKRKrԢ1:׍k,RlM0x"z3JeL9hk}4(/[659gy uήII ^NѨ׍#'a qd*Ċ敤Kr<_"pR~\B$ Т <-Z"9XJ0фj(q-)~%+ Vgv0H t@RKRKrԢ1:׍k,RlM0x"z3JeL9hk}4(/[659gy uήII ^NѨ׍#'a qd*Ċ敤Kr<_"pR~\B$ Т <-Z"9XJ0фj(q-)~%+ Vgv0H t@RKRKrԢ1:׍k,RlM0x"z3JeL9hk}4(/[659gy uήII ^NѨ׍#'a qd*Ċ敤Kr<_"pR~\B$ Т <-Z"9XJ0фj(q-)~%+ Vgv0H t@RKRKrԢ1:׍k,RlM0x"z3JeL9hk}4(/[659gy uήII ^NѨ׍#'a qd*Ċ敤Kr<_"pR~\B$ Т <-Z"9XJ0фj(q-)~%+ Vgv0H t@RKRKrԢ1:׍k,RlM0x"z3JeL9hk}4(/[659gy uήII ^NѨ׍#'a qd*Ċ敤Kr<_"pR~\B$ Т <-Z"9XJ0фj(q-)~%+ Vgv0H t@RKRKrԢ1:׍k,RlM0x"z3JeL9hk}4(/[659gy uήII ^NѨ׍#'a qd*Ċ敤Kr<_"pR~\B$ Т <-Z"9XJ0фj(q-)~%+ Vgv0H t@RKRKrԢ1:׍k,RlM0x"z3JeL9hk}4(/[659gy uήII ^NѨ׍#'a qd*Ċ敤Kr<_"pR~\B$ Т <-Z"9XJ0фj(q-)~%+ Vgv0H t@RKRKrԢ1:׍k,RlM0x"z3JeL9hk}4(/[659gy uήII ^NѨ׍#'a qd*Ċ敤Kr<_"pR~\B$ Т <-Z"9XJ0фj(q-)~%+ Vgv0H t@RKRKrԢ1:׍k,RlM0x"z3JeL9hk}4(/[659gy uήII ^NѨ׍#'a qd*Ċ敤Kr<_"pR~\B$ Т <-Z"9XJ0фjww(w*,,JFIFC    $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?ξ7 Ƴ nwkgNGe3T#xn -Wpđ[P&Qq(CӂӀY @ഠSH pNbcM}}M;b7֪2n#&lW[ Xݘo|)s!ؤb}Nj.O@΂W:ڽL}gΗ:| srޤ }ƽiJWs{{\z\ȱgZ,7睢rAcBp' :XuC1Gw jEp8vu }:`#~^:255qyp1W2#;]yҽ/_gfIZG|cyj.k:y,X)oYePO*$on~BsڴnBVl=z5Z,0wk##%EXF/߽s;sr*D맹TJ1 qc{?*">_1 GZ 0̉e߹})Yc?`/&ӧ^egNT\71z}K[H͢p #Ҷ#_Iz 9nuҰ_U |trԪ)Jzơy۸ݑ9Vݬŵ+5 $ 6fڌ^۷V##0Udr ~qޔU_} VM_b2@##|}=kXU.syסW>[Pݛ'֕'J?gхwx#J@aYƴL4@j٨ 8 4Hh KX^4QXeX qzW;aY«OAGZao#R1;HFqTJۛ-5,lPvGYvrvQ=5G vAǦxvPԵ&504qJ`I \i,~^Ρ-׌5p,u ͒7Zx{rPlerFx;hxkՃ1(I 0@ii@-nW )-FnbGVp_v9Z$KkѤ^ b=^k<3 *@:,];+Lj݀}-e..SSȦK3YiS:HLiTcְsN/\{cKFFVBGNEnё˒U[QәؾJ 1q߿C֢PVcҲo9=FE*Pd:Vn|mK{&89xbkbN#G' t+:^]4v>D}jMCF\6D.me0yϽkmd1 u?L5jSV+ ,ÜU3q+Iw9CÝ)KT:|naw$j[!1{55[2Iyb@nqZSMѦg؍-xY%cH8Nդ:1M4: Zi,kajy栖O-I?5TmEP'q$&V :Vة半9#?LU FV0@qiutTL6dUK{{es,vq?;ksTȻL$O]rQK0$=)ŵMD rp6xcs G b"E!##;`#rpC%ӔO'ӓؤ")zOq DqicCc8Ͽ֡Mei˛D(cv}}+4<\.fE[GlXi#J0>nV6lʭ|O W{EU)E(Lπ3?_Di),i&(p A<굌1I,1 Ǎ,=OJqz ѿ RtVu&n6"^I8ҟ-2DvSRȪR+S~ߧdc$vYwx7XPW.M6"36 D2y <}wShlRí\[vb,l{[RLˉɓso{Y{N+_҆ue9E-Du/O$9x t MO?(AsiB6ģڦ)tXn4wD|'z^} :\F nz׊'V5 q,,JUKUQz6(7^R- $r{g<NاvX'*[+R=HJml.`աTv=sӽ\U՘$ı.lA(n#}+(7}ʼnV@=]ͭ Ȟ#`2lI}wu bBx9<ƉSRf2e4kpj(D~s{ۼ;+Ԯ5d@@ߧT1x,$"l[7 :MRXH.|)LĐ۟9ry{q^ +5|Go&<_vSKTJyTa|m^U&4Fr%@pr}^:j1{IS_}M1^4rb(Խo`.b*,p2uYraDsqSV] s%l`cge8 i.?]$JOݓq*ZL99#Oz.2.@R[sG0]ytlMDgJS‘k+95KPn.>v23q+gך#!3d=:CZFIC)vJȅ ҳ vhy-fGweL p:Aڸ3qdiC-PżC35\>d23]n0IÏCX1زRqTex ՞܊q~ԇmbė7r$yAW<3{d*t>b§??$3)~fo*y3~Bt~nUA懧w]SR?h U#RZ&og Jy k'Tk;Xm'd|Oֲ,C%P߱DrE|.!QEgP HTɏc1EfW;wfP`UjS^CpK)gn*9U.NNsKFl{E.UwdOLEf Sd-9$`E?!$HV&c}9<]H })88O$bV< qcD@[OI(YHbT6@84QZN? $qjQN¹R->MxORPLi+\pdgz(WKHB^[48r'RMG๷ Q6 V)P(a3x 590JTP1 9?QʖsCSa@R@$r\eF&_0eoO(";2{uCbH? o/5X0. ~G"+0M# Te >j;cK1h~$Ihttp://ns.adobe.com/xap/1.0/ Nokia 6700c-1 Oben links 300 300 Zoll V 13.21 Zentriert JPEG-Kompression 300 300 Zoll Exif-Version 2.2 2014:03:05 14:47:43 2014:03:05 14:47:43 Y Cb Cr - $ (Ungültige UTF-8-Zeichenkette) FlashPix-Version 1.0 sRGB 2592 1944 Normale Verarbeitung Automatische Belichtung Automatischer Weißabgleich 1,000 Standard C     C    VwAL;еrs&#œ$X*u@ 1@(l!`Y2Vp b aH EN0A1BtX#.H&ee H)PE`N03@[S*(ruqvqEإ"b+fH,eƊZ) `f@(8F++ IdI +"BF@b$^b $@dU$p*@`ō"#E]Qcl2 0$碱V;)RI S .XTœ!UB "4!0Lc$%$Uq"8T)4C2EdA0V¨+X`"C$@FA @Z1dF @P3r\nJf_WM6uQBU&BNBHLB!TbP("e*+`8F dJc !!ȉrL HL$B `u+U# bH"/cfd @+S52 @Qd76+"PI!d5e`Y0@A"¬" Ř Q2D @TH%@@q$)"4"5,QڮHu"kn3Bd/\[Pr $AC$UL*#ewNx;U?ۻ[,U F-q!!!RIf4XX+ P0̓$IaDcaD`05jR u"2#0EDx(aQv04/I0h Rk32Y @jo:fM}"E,XI,Y2J,("P`f@D,&BSFcNX52$J+VE@h)a+U1!p14PF3LL/z`P,P AX@$;C'SNOq:DaB,%B) S3 PVR1bU%04 }tXVj(† Kd"ئkPxJ0XTgRC03#*@X͊Hzęq 3$,%L 4aFr޹}L01@ R`J "HdiRci$F+dnH b9D B^@aAb28YQ 11PuVdi Ogҧbi H"*E! $5>u`̅SXBc3Y&K#i(:(1B˂ ,P,bC"QD݁ʁX핒0pU㜌imt`ieu;kڰ AjEH)0h!,au?|]m\ @(V!ZDMJνeQBH-$T"Vq61a#`D !*$th*Դ:&,b@&LI#CkڵnydCĐV#H,Dxc۲RL)"EdnJ]=fC$)Ub2"cB Q22|HRE$ YLaK`p)7Ɏ+, 2lA;#MYʂ;iwqB%APnL$`>5I31)%"3A K* (@ @H Q@S)tRR!'`ʠb#hL@C$"-1z b&ܛpm02U46l`z܈B kd][%@22`(`6|ׯ=T0) fBcUu Mr hn*9@L,) +,Jx]4 #imۮM68J(iά]HU苗,Wabš:B A`A@lA9m9N^ `RBTL -#X6n[[zV]uyG@vqN ctӒ^/Y[RhAAlKuRd}03䃻N#|\opQ뺭=P6*G<^n١rD*Q G p`w(RAMәSB&8ZV L$ L/Ѫ~YNCI@iѓI\]] n.M$]]Z\F+'Cx;7/5ke2t \?C;͏br, Rӥj]Dkb@fݿE/.)BFF QA7'עl za(HVD(8Jy_5u+[VQ4ӤxUt XsA-3eUٺFk)6t;_z^GqXkj=':\yXZSٹ)ǽ7z_cķ5PhJmRFd V 0"(l6( ``GbOyݮuּa@` a,8Ucbem:Uon^|mhpZ5nܸ5~/zvomPLT5t#Eͺc":;qG[aGL彿Y/N>uM=)/tzhNݶu5XDd$\t=nwF5E 5I" EaXJ'- ktGn!Wݲ%:[N\lj۶;F),vۤ-ܸ.9m[v9KM=WtWEfݫ>,m} /*ߛ=)s轭^iEמŦS"H,_"bb@&VTK!QቋB`)!ȬTE1D'ڀ^3د{M^4|EM9?Kl۷]vx`uhިT5m9}ӶvM㦾g5m[g={x>06/g\R"-U]]n޴ڮTK^znWO+4 ~t. C@ b(Qr!\zY>^P1:V?Mę\2tnwC%FY9f.YyqGNUؕt:Z5Ź܅}rbp./A1ZN2$B$ ck)\mPX (]˳vcM>0t-%-78yK5o+z1[6(nvmQy#= 2g% ]V̭[l$;幟cdWBu/TФoVze!,;otF2rN^ aF`DX-L nD'xjq$ijNtj%nMjۗOMtNM`,j}4+Ks\%y/EpN1l{1s5|s}3a U&14~ygf|$4 jS7P.?U۵}—\xvlR[$J$1R AX A$n `Hsgcwaͩ.u^ԀfmBabuh'o8k-FdqO=[Cf*~̫aj˞ _¼U5g6v7Y2sYYk>8.\{wEQzzٱrunɻ-;%}t8wڙ1C$V!@H&`a\ȍA۾e6ٲB&0E#*V8@)Dm6Utu*]~7|2-؍eBRukgJSgGY:vQc N֪NӓE$&\٧mrn &qf˦hʽv<v_}Fgk*  DYXK!B!00XB"LF fd1 @:ʢ:YRMԆǺů6U^ Z:G#}=%z<ѵ,f 9L\CZo]/:fʫ- G6[ Yt4[R%V&^͵q7N3XM;qp([ 6^Ԫonk;N7S9 A$Ƃ@ $&- N\2@'8G^~={/,QYwlDV7e+wogC>}U!ADsy=;S}U`eϞ2=eYU+#t?W ċ~7g>w4h];7Br)E| NK}@ZsNn ",. 6$ Q r} rv-3 mU)c۱[UEhK%yuԱhJyI,avŃ^jބVKVn].Zݹa.HmGuRi͐tM>O?:ݰ4߹:NV́o~WX8'nb~- @HhƄGT#2$mI"5~Nw\qN109[Ϭn]J[\ΔcW=7x,WJ[9Ux-0o` d: -ɋ H(B+} nu +K۹zTXlUA9bBԶ7#s=9uhA9! ܺ>z6ݗ`AAec3PJQMKN^e -fҝ_,I6u]q.WIGPyo`mrݖ*kj3Rr?Ipm=^GEg&nA,ʁdD N nYG-l BV;WG束My~`L Secmlpu 5Wh`ӀHan DX"1 ZP6>fzcaUF'SYNgzty^íww_:2w:]EY(v;+2ԪHt-b9nTrj"rJJ.,ѭ+G zOUσ} R;탈(-;6Sxsw/N֜?.0r.}?/G7hGl@End01H)1IYkއ Cjz)\㻙n?I5~oVm~uK:ݴn˳UDV cI%e7GJ4sk6XMnb52iLz;&93BR5+:M[;z^[[^.[C/9Ԓ$7 N)c`"hiN+;:uQP|욮<ލ~z6nugbGyz+5tkSnx}:_ F[1oqM6[kdXO`#$8bH2$L Fc5h'z 5>KsAYE߰ZfF_FCyق(rK7mϷ#ZkmT@q|ly-[. 9Hvfj1͉h gmMj_F5Tgu(VqcX{7>chT(Ba m &.{=+e9B7ws^>3jc,ҽvTL/Xu|q*֮nRʻAFL)V7@" ѸZmq`ʸ!'[ [$& [pp 0HiKbjK"ۗ׷s._z1hg.˶R2l2vc42qT{^^ٝ+ik_F\k܀#b+ߏPdƙ$D *F ]PXr|Kz 㫱6Cv#dnd)l%6 q[ILP fi (hQ5HnW_vvx\}Sj׭Atd3Ty^ʙtÞ{8:kvgm2oVK@)T(+-v "1"$#j p/Hy_ӭG\Ꭴr@\n6HALRAH06Ha 8L@ba+dޭct\9Yvd[V겹h!Ѧú80X:0V:\ݜoڏJb*+H`%HdsǤmB,ljAYBp.H['Һ~˸QV:ap…`z`EcD7t=7*vYQbD GƄ$  ݽMt[~߱ɥm3wN+kf%)˧p~Fݫv^%NnIXy/`(J*,8*v:ثe2DUa./?Bv;t(KJ8X=]CT4TUx,\!fV={(1 }`i)\ 2N[NtOdm\Oo)?v#\,-jJu;-YPCb06B0TᏉOn1 !$ĉ5 c$꛷7U~_ Au]g+X.VGzs_ԏ$G1Z# vVAE:[[6$Ḯk8zH>oN׫-hTs|{ s P˷Iz0ѱs}$żʮf:}r?yޓj($T #cX R$HaPtGgb<_'ҙ5=ʯJgoqh́klUP:6V7=_o^F -;\ +kOh8]5nѿ^g bx+h% u| {nN_6ߚK (bW:761A+ҬݵvZ+[Շg&ތsu]\ݶZz'w`#nȩW_~MgU#:;Yx <=*t>wdVm'/Ǘӵvg<(سsN.Yn.>K[eafxꍶinr̈F`~|~ngSepd:رIڱAlޭz -l17 }#]t[V;kݼu6IYm)X`tVKZϔC;o RfDmȨF-6GsPΛU4ߋ%znZe+sׯu2Z:ŸZmh#d6n~nQQDd>~eBErOM=)lg#PMX`Y=.w>PTa}c7ੋ}I%k=MYFv%}n/ow^z8TzienBF IF0HS !!7ep6U(菑K02ۭw(/ U aZw\($I>6 f3 1_pպ͢l=3wȐ m hFzsVAUBj^OͿx9؛[]r>oayK;fm]i`2`>h룰@ChSac@aPWXV[20f$b#| -_F.~n.R#tz^\dмKb'zbIy\]I}ƫ, #NVj̻}ruZe"VXQ07sԏW(jU)(\!a! ,JD1A8'Og[O0'Ϸ?hp PitlN iy߮z,MxGGo8K %Y fl@Ꝗ1sfWoCl'Q֜CݿC_?utm3s } \}Prp8*Gžϣy/O/j1028*Âb'x=oI7ӢЭUTa',(ġI(q!HycLʏk}UFXk9Bspԍ4yY.kv5H4:ӗ>tIPR6wc׌%ͼYl/-sqYqIv]QŢE'z 1ץK,K] %T"bs V4P>J{*Ι:1B7ĻlV±VRD*OmOORbaU`n{{- AcCzgqYT2H1Ea1[_B ܭU]`狧MF.;c{sy̒Ǻϑ:CݻlHqO=$z.p.-IJYm*jذE@Њ`f"60V\Rȁ[򋟍3醕KRʕLre#0P/(u`MqS\81}mky=:jD(H.CUI"PeW(U˥̰,Ϫţ +VI\K,'aj|~?dM>a7;3eB6u $Ґ$!"¬R T"fE*ӱ7zw.nIlҕql3( @R1aiC+Օ06צͣzګYq{SVXUelF9>y޺0L%zV3DrmVhi,k\Fujn-6R=vYvvr]y du]m:%-+BCk優U!VBjݗ(*l>Ve;ZjTqzߖmv֚T4e` qkqxbY]SituœZ L^kO'Zz%Rf͔`֏pBb`BhXӮϼ8KepcqY_k ձ6F+~ Pn(/\7]iT  m.Bw -e['R$b*JMI%fp/ZUv!t[OՕ0%I3mqLxG*H\ԛ{,$6&*Njhu-Slq;yW7c\O௓ӇS=)IȰtLYcLSFLuɎbcZR%vso|߆o7~~Vog*o<}YZ7ʼ7 j0v X'>*Fn-I[M%سr7|ߎ6To/ ѲX_goj 0O`'|q;W9oߎo)mp|\\ͲE;́@BL1f33;μ˛Hv@MwU˛{{,l# QCXc^ |9W9399911ʙsh:&u"-[`A]煖ĥL6%P,)&&rr٨fH_+O-Ս6gEFl$cTrbsf lse͗6\LLLsvgR4,ܮug\ΉFVHJ* H"LHۜɝ5ET͛&,7x \շPUL~˘zس4lWuWi|_1C)uւKc?ouZ5-]$#q3:&wtHJ)ˈ9띑˞JU?<%0&%`Ɉ$ i.rO'cj%6rȘ[sXAX]L cL kHYM =63Yn⬚x/R^d,U=HRCLi6V*s+`$V_tJ!AhS9=E]qVW11!f$iɜgnYbn)7mZ[ڶ*]J"cS1ڭVF;S%͒gRXAll+v1Qz`cMa>Fۂ[-|9mMfɕxm-kk&Kuvn'M5c^hy:aYB/;1$nm@4TEeji1ڔv7~zܚ"\SY`ͨ1H7i簱(2"墭0txBYUW^E\ AV>" czS$aB%eTEV c)FQ)lhW L~#򯸸е#wVd\DJ! Vܡ$ *VܐO]Rb.{+v;w=jPtE𫡊+;7s{;7|`?LߢM+vg5}Z#:]6 ו'j[]{ mChDBI+Mܹk6؇f؉Τlg[0]U 6afu;!$hvd5F,.VI & &#mͰK:—\x ^j|W#rGfBRLSŰeqln-|+f%񙜞'7nrrJe*fӷjANd&Pk$I..eZ-`itbd,2IN(4; У9BLU 3Tμ(s;3/e(b\Wibwi^$]P<+8Fn(^t(abLj5}bXD.[<>y V={c|IJ'E?d7,?rӪO]h=v&w.̏yt8P|ҏ-Ժi#*MwLCQG?R6ͳl6ͳ6ͳ4l@* eL̸܊YltC1ƬI)"cw/P,/4C%6%dCn9;cakD\n܍ۦk[&919r6 Rñ>ELym:c };lRT@/6.Vq3j qo&ɔQ)Ҏ7e$E5 |VN)uX.:oOE.YU;:࡞\!6Z2k{˛b&in ~k'l o!:J3q2GE3f7:lSbqa'jA.ٶmkpWj~^;5lGDMefM-q{055Y-K$-B&iMSɮgw#]=XN]Qv&062<$Y6(5kEmcSK.ܯWٰ.4Y>O\Hj_EϾ4V1<󕬖Mm=3l6Ͱ gVr$6Bk9m,<" 2Ֆ *zUN[J>rJ DmNmPt mYX0K?L5u`Y"m'V%u}t`=}cd#CmWq} 1#y E/4ѧl^V Sq>Ąٱfd-lX72(՝MKl3l6LJa*!`d$E3f[O*΀J`%9Jc|4GO$UORHc RHPORC %dVQQx&?J IGhenP 1le)BM6LѿmF5r"fٶmg.mia1,5SaZ4`\Ypj_N` dM !Q=]*pۆJɝgSDDCԾV)q?'墵"+A7@\/]b=3,,8]8[M-`MOBc宐C.#jA` mr_:b{{d.s*Xe9tpӵgi;8 $_:_Omjt}/ȕ[V{ǰD"i#KM+)岂 b-|f@d⬪)J+"JZЅ.0icaRq\jSte`IzTͳlD#N\}U3""絼MO2}!HԞQgן:@dS0uWC\Y;Lsd%k(S|.WY8ðeyErYf -g,YL~Ow`D]؝q&s-?tG6&TT@V[8GVV8g8 k&ex0D l]Hm =pjFXOƲV2 1ׂƵ2Xc>cdNIhEKܚ~x~\ػp eD8B@%S*e]XW[.*,:~Jh\\4ŧ$zNZ Iazx% L ,2X| wv{d fy.A h#$iLԭmL_d 9͂,d!zj'Ֆ{GEzwo=rMp\ J9Hu+ɻ{e2';$gg> \\\T B!Vpk G1\DQ{7>w)ӆIV5Ɛ͹=[ٗYOKIE $:PJӯ p0pΆ YC&O>nJ "1|DD&CzƯ*/FܑЬt,,UhFFżh鐎iX\Tr%)3js8O\\ۆki*R "%z*ee'H9QVDtSAT+`U-۪yXD:LUV $]]e~mUXDڹ?zègs.K,3Qu-ex6h`M],lLEB=Y4!Zt^I+zD~[#tym5^0./ոX0;QgQ# @k LLm$#xC$WC6udL5V?q7o?0wީ|˿ "9ҕp) 7$r#FȋvY+IH!mV2aPmUQWD8|SčXabcd.9Fd)Ӵ25Kת_82HWo~y[c>\w&S bF`۫ H!xᆼv\a$2^b"!86tk vTl%h ڄ v%k'r8ƜJ0Dk 6X!,V{CagFm~Ø}lfK[U;jpL|g8 mw>F"w|\_|7^%#$RQUl>nN{ w$=5%Ǒ$%mp¹g,QUEf0VA6q1&iY' q6ͳljlYwg_6I4Q/t:=Q3%fT2$z Q\KcĀ i9x:|rTJ"NYt9_XY 4@dPBuM^fٶm7gJL˝ڑ,xDmؓ 9͝ؿ;fh&vƈ$G')r,&ԌƲ76G%N'TXL̃Pbx܌Cy976Ib8[ >4ͷհ4/qW:D6cH:":УAI]#-l >2@$lQ6䫽_8:_[֙1%IsZ O1k$~(5dTĭ=c'Xbi IgF=@dHYsW9˛pHsq~='t 5K2S`i2qkGʋ]e̕:YE" *A`Ε5urUT DuiNi$Tf?Pa6 nfٶmcvMvuAXS, MHWfND-fDK) ڦ;-4HAΣӜXA}r鼶Ew`W&b+X?S9dő1Gcdo0^n߄PZ~qCŐYr+]]J-,$SGc"kc䒬)[--C@ԍr'PE7E**>v/3D䞴'f3*zxxOɪ`7uŦ@ak{㐊Icc'| H$W \YA- YM 2X]Ua 1@c2퉞,,T5pH I-pJٸ5 W`Ui?BP]J[[)TǧQXܘ}OWyOD5bƮYi \Ai`ueiW,THt$jG,>'Į1I͒8"@z 2I1W;]f/zyJyFk a=K#ezZPX[DL:Urp:6,K2W5LF76ͱ<9VEniKs efu7Φؓ*m.rz&&U rgEbt'u+ZM`bCc"Qcb4Nr1٫TxY Y$M3[9&ʰ-dȻy CVDP=b,ҼA˪+СGExwsڱEZ(Ƕ:uyÂX+A\(2Z+ҔC2ux η`c+O Piq'1Ɋ:[fM,v<^Dvgcf%w\9epDB22:$lb>9¢GRU[kctt+qZƧŃcHmOxЄ";3D( fʙ]ɚ~Ig7\}|=ٿ$mn -bW (S{g_8ɐ!* !\D>ZuyB<))e.ٲbmGMm9ʼkx}fㅬ6ɷF4R6ͳlL9qE+B+Ʃ(3,.hю%UU$Datvvc 6-TQY3;Y3~v;;7gf읝`;W<9sW<1nWE/~xC)Ħl*'ĩ !E]υ>f3yqiJY˓Q>(s3jpM[Ip4ct9}8vF,j"bzf/GOb_[ %ifJNהӮ^oc2[#Vx$w:YCT')k)q)s+*k+@į;A1 :EtΛ3nr76L3d͓Տ%>N33X\Ǹ>N đi[f1˺㸣U8b'/i%ɷTC[ȵnk&B(ޥ3D=\liVClq0eWgĺu?,Z:+o(XDW:$%Y2:I:'YzF9Q뎑XdۄWI(^\ s*E12~"Ic?'+I5kIXb]łbgz^Y?/?/Cь] G,$Gk 1ֶ4WsN8B,BH-ŕ‚dS0@ㆦ;Q\gCnx~xvxnxfxfx^|IO4]&|WKŴ‰1ug}3=;閯m3m2ޜώt7ǚk>8L;>?y4 7igC<C.xй [v;pO]p%2D>K;^O<āsDcfM9ۍd\s4(`Ľ4;EBN:z؂YVI"r7ӘFl)djs#3|s|7ooFO|uC S5ROUcPiU~~xj 4s"zp6'|9~EgE]+&:DՑZFt@"Ed%L\4!TA:QpIhr1'qWC2ȱr+~Zգ[ɿA% c{XsQs5blM2mc؋-ʪ +>DHTʖ:J&*c^"|Gb.J9Ձ? BHCػV?LSV!k>uLd09g(E]IP*yhUFlƽaе6%^.ܠi#&o$b_~2d|oG0=Nw@Ge-+A!#ɚې/ZKQWUY8UfO:9|R;1q"/H*gOhL0@s ݃ZI3TG9lZ8/uN-AE$^ c(K2C%dduͻ)syJD|Sܼ/> MucQi4STIF>U1`\ʲiu3-֕l{h' Z>J>p.`yeb &ulZvFHiLܷW̄cdh++:n785xL *]l> I-ϱpબF1ƦLOF=^ʉ9 lc.kl@nVIW=xY 8c`NbcvbDbfTe2e$b>|G ej/- ;|l{&&Hے =$cwF=0oE.1SF#+&4'Zs5!b5 兲J,9(iX#iZ=UE_<)lCB Iy®qN*ѱ0׎im%r=,\%)9L[7ΐ|=@*3+^p!C]ǹ.nT 㫾n3uv3st~iSldDhl ڎNVn`9=]Lr.Yq$bxEFVp5{ǯ&e͆3i/)=V\؅ƾPhm!3~Pogr geʛ%II7nLK!=d(B1rg3#MB$%>oŜNRZ:ΤՓ:.s;9&F^;ʈ$&T&wIsn<55IMuϾ ޭLhb swb..O8;sgG:\+J]H6ia%+8BydIlX\ٮΓ1:άGy]M=ܡ`.ZY!mę˜>´|6rq}2Xu(ՓWG1M9ݜΣU$QؒlֺNf]T/̼(戗-oOTr}ɺm×#v\ٲ˒"ƥ D$qir^ !37&\fW٨mZDUCH,SPJMA&% /%ař/@Y4rfnT (55c"ELnv|=sv>φ>f~V~7)חS_͇eq~o"&*&llB'7W~R>ֱ/vԋQaf3z2"$!#UrO{5l7읿3~rJ?\^I!1A"2Qaq #3B4CRb$%DSTr56?/e)Uߵ^8eDWd2++ONaۮWït8E Q{.eSgXۨ=9C:ey#ۡw_Qz/QJ VK 5 *PD,,BaePt+.t;tHg@3ӺVLcJw #QlIL6C$BJ3ӾVz ]GL(XD(_RCe2̯+?:w #P BHuP/RETy.Bv9\ '. 0yF#W9X(I(&przq)@ ('a|TӅAb`$(^JTx @%V:BOp`.WeVyR'ҷ& 2\(8G̢&&VRFQ@P˜0)h<%;ڕB(pd@ v)V:+TzЮ 'S©TR AwNzQ[s ʙ9Q@)a%q  8E7$ʉn[" rnMPJQZ%N- [} j!FUwarpP Oz 􎧬(,q)2]WU)%4cG0P!7r?!0KSrH<.=.N[38BA(V;";$-d !lmG+0w[%!PJi s z5Wy+ tE aSt׷YEpQZ}8iZx{XHTŽ`!# @XтDQeУ `(Enn[[jn:(Ԕ)*` (#B r^nɬPA8Mv+>֘{ %P>u!%5rAʑ+Bʎ2TP.ʕztB\Tt&o쎀=;tVAF@TDp6/#PD/ҹ%8BG?% %]&ڥ~jk5tSsi=G9vYP?Бp(x#T.(sT,~L,9w\m?ь5,\>MGS!wԽe@%_kz%~$ec|(Qoj1Z^<7^0;!WOVH;kfT*fԤ) w%zQ=]6֮iWL^ ꙱ҙM6D-o+Qk)[Xjo|3=~׼yX V7VN9LBu8b~j6lOʣG&ʧu)ӎ<~*BevQ*asӔ`Tۡ̕XRdz ̀pSڨ[]\3s! 29z0s]y^e޿Ҽ=$yf~_n?D.qn>Үkضg},Ə۝#~ ]EjZJ%洍ZQUNmqD1D搵=7mgV;|_wuVkDZEZl]NpBڅCZ'Z^p@\0t|VOc\g龩[UkP\e3Sl*У j4o*ͮ-N⥵ʦuQ[HxTj/_I}Zc.-Սcl ׫| 1 鎦NT!3T̪ۥPbte?tZx ^֪hUP~M<Ά]Ri6{Fޛie֙uy gz4//iy%4+Z}/xVze)-:57V'Tz* M>KL;{*R.%>w)BIzAc#+B'<~ʅJ # l K>.W+:ѷ=UF F6;+;ziVmLڴi{cUYz_Iw=t>+Nl{75wxF8GN}ZMmg}-! Jek;}6zGa`;]_Zِ*GSxoVXL|9Wڣ-(rOՙy\xD-yoAW C> lm;:Y"^闭-$|fB^(¯؋j/o UΫql+_Q솞?R?ip@փ~D]6w<- ~n 6ZFic?>ԦsiaT(epd,NWuߡpT"GRr@I\]P`0B9TU۶iJLa/^h{n :e}ꎕgNS16ңnWW Llt+MNcTmn\Ջ[~#9̠O(ZHp.ըJڦo+wjcV-eM׿GvUZ5">x2X}N h'Y2;^-+xq חWAi%qe^K"մ^m6c]ymjaD~EKѧIGV76KjQ1۷䇡ICJ|`*;4;VLl@tN4,B!TGVB(r)NecQY뎓=eUIگZ[_k,\=T3?U^l`fJi^԰9ʻovL+G1gɏ׹i6zim'u]D M6ek[j{2VVҋ Qbn= rn6}*}j> n oq-zyuEI෸i.B=C"'#Z?;QЮlk./?G]F{D2nĪz?dO*T}tӷ?0U-'8{?Km :(YQYW_^َe ``V?^I'aZþ_QwS. rߘN@h'B&1zsrEL QWt]RWusԬr:śN :Ͱ=Ӗm+DyZP'kWu |5!{|j.^%j͚ 9myr SCZC֫F{B WuCi ovR~^hٿ6_S+%m*zK_ح]T8v=oS츗 ئzn{SOS{J~} 1SPoҪi~x_xI3^MJhMcDu]^}G}ouG`>8pC%;Ҫ>KzM _-UfL= qnNk)n0e:\VzvPQ&wu\G*ejaN2IR6YlJK_kJbn)rOF Jʅ۬)RT)C PVԣ :U.\>kp!X u)8@RAZM*%_4pky[x ʤk:WvVqCǔMJpk:aZ{ޝ?4#)W/c)L sC3ӽ^vʮ&U]Y_m`[srL3V7;nBq4\~ ū~KY^Z|\ԧ-t~߱ݺuNE{M@; k܊KPr.-$ocd#Tim~JL'lWFJڨU;lj8*e&7%Zͯ^>z|S{[踂ە7SۿJh%D{YXz7(+$u|€eJnt ej"/G*mM?n֪D5ݓ+84([[˝WKLگqZr֢i*SH5%1#w{^ @wZ^g.Zʴnkcz)U!;L}U,*:g3 ڈWbpW0*T4۪g`ZhK;}l&+E()ڽXInEX@@1BE"A½WpVmQo%Ske걯f`|+z†Z758g%6XqǺ;+Q\.WbƷ {uR$=`->R\5_2#CJ4|JUm1ͯI( Mh};3G*ׇR}}kn&{*wj;/Y!Uj y|֛x}M)1}^Vn\\!&9@@DCag{\a(\zq+ ^!Ӳ aU'gMTzgpLjez8тGǴS}Ni(hWNtNWS0iٳ iz16 MSZa?UI=ZL{1!vt-QVuEZ}oo}3p~I5*\6\Tm(R;(NVFwk3`+kzKqͩc7sn.d3c*Wi ~ݠX\;Ouq D5z և>PXS)9N!)D)aaepQ!).Jۨ]B!r tѱC WxjUHV$][Q-={gƳz@GxT,*amhp8T(pZTL#Q2i'ޯ[Bh>X[x̅xn۲D*vw~cg|w̓E 2}>U=6ԟʾL>f:Uǟx$NӁ?Z0OқPi.yڭ4-ͫOL!rTSLtFڍФr}]nwQԨ8 TԪ5dO*lT~KsHeSP_R!iڍ=ϒԯ;?20m<._He+*WNzew]@ qԢa`tf]%T*4XʭGjf%W*a vՕG2B$.oĮj c9DKB C 8Zk:m;g :Cm=[1j"Q^sxZz =RKň\5)F5h'l4<]u:1죪_{¡sqJJUƳ#~_^<}ښ*=RE/CULkv+.YLʾm:Couvhz-}•+j 0{-4Xi>)_PP Іz^'>R, ґPz Bj!J1*Bʦ#!Sˑ =%UmmS+GkZ"R5ф(_T4܎ͽj-qUONm s62'~ 軦YmQn| ˕ i=c2y~XѭcN=M9t$&iT\B5CUotO Rm~jDJ`IWJZU{_ZP̫+oxz+\0Qm^({ۿ\&^ܨiײVJ"J _ 2zWe yY*:|FHکc*cg0ǴVyPvft]SODRUzt7glՔb AJ8UhQĭFᖄ4R5'x-siJ@>!jmS o.-0¥T#ĕWXplfUƧZu1Z<|UKXpu{FZ8^5[mi_GT*Ң ¡R\I˷[>0>i;![or)gmY~(DY)n-Z̎*WxnLiYpsJݘ?d˺ujcN.ߌخtד>M%8"F r='8\=&PӐ*@S-d-˞#ASut¸0R$QT)2^2𑫺D¼'hA΄:d v)>-xR&%bV/"UZ2~ L5Ld_Nej/{jQ&镅؝^r773owh~;+](PECYPhpsV%$%6NMӉYCL6 +_/iQs&UhRkOUB8}2>eP.)moi.To)W{3_ѻnq*t.]?+wP/zb!eIS=%L/9EfzJ( #% 8Sץ;STxejp>6D*trjSl"MGC:B+3AL' OJ~-!DoҩfΫp֏|RcqH8RLZZǹ\6g_u:Mi 絮J\2jWNsՃ}z+pQ}zU4~!tMcSu+8*Tg=դq+L_= oxDIX/׮L6s{Bi|4Uųs[̭*:?kV}jV̹eYo{kˌӏ65=>>eAm# PLJw] GOy@:Bɧ{+Q'Ts]".L<ʉt"@jz)0&M5C-(p?BN[).~*5dJWʆe(jY9+[0gXR4w+TϚ Oyw<uK/ 䮴 : |? (O- >4g Mʆnn~L+:KVјi 7:>,hPѨ[CJ.f#ieWc_LpTQԅ/~]Ҷsw3tI)YjTh9BꗁO&k \v㲱jVTr]ѫXmCQ;~_R!V/f=8C8[N={r\,ʔz`) S{'kiiX=i;*7V:B*pm"6mW|ZsMU'Q-ʪOvZj̹[9*ձU0ʥ("aA-GR)U֣v![i5j~k(WwUz6VIZqeʧ\?lU3zftm;S4g>VmoR~5Z].rL.y8hTݪ@ʶqDw`̠?jX{*ĭaGtBAAQʈ]֤de9@[em"Tc((" G(b=~\"剅D9  *rLp \TwB2OB)b:\QByF%8JʬHM%T;*`W U_Q;⚶nUjmܫ=a]µpڎsmb%ɍ-UFh(b=b ? П{kTB(8J,̄DZ>O!$(r PJ h` 8S%A44aJsFJiܬR8X w!BUQޒt0BW!Lt J[I ;}*QpfZ8}WT-8T+J U_>QuZjw%8<~RsiQJ,'5$Yl*y(iZNh3UUUeohYDNVHFC7"!dZn)B8ʈ945 (S8ܶ.k.(F&/CR%Id_jJ+0 a!ržQRPG*rW! D>8A67jB@ܧL4))ėaxuʛw JWcv6*J  lT-O3A-.HrfTb!yruMA X !* ?M$̩Q9EJ$փw$BDQ0-yD!=8PPGTV7tXĨʅv[^CWYTd^V5; *wLSc]ZJ݌myUcTp û T T,NhZb-!]GSJS!cb2Kǟ)r,) JP2@*.BQ3 ֩`+mXqqpn(6QT{Ђ&i lsVP> *UJUApS*!AG ;0JT';B½3Sjr7ȅGs;V>L'.~UU9q^}Ѷu}L[Tya썵W2U#2iqVRIRv˘RJ(yQ2+%pUh2' mBT/ `w)]a n fwQu ¾]} `!8jއzIxxv¥觤 dxE5:sC]#xCrrPC`:9s?'z#j3RsZ!h^/ã#'7t}yO_je !"Lz]Ԡwd\;ԘSÖErQF=x[SU`ȡ u[(0UhT|JFF6S f%R{jU/\Nl>S=yg%ikj8w+/*WwmC ޵WwoaT 6ݾpZla?.?U~4/P?Sj Zy-O#wG̽{ю}!8?ԾqeاjpwgޝLC[PN},p>[jҿ?F*_3WU!Lu_ {]ܽYj,>C zAͫ _Lx]QZ9>0~S]Y}>g&_9wրMB\{J.C>^vGU΢4T]mUK/|&jjzviMKڭrJlBˈkR|)}zt=:/xOrX{2w*j."L`<)22̏ Vb%HP 'C#*}ğCo+J2j>3[իOrP}zXrZձL\~W5jխ%JOW֛DD+ӧs>Z]޻+9YZzLjxhZ#[ԛEwz@`|nsi:hV^R ڬ_ߵNj &/U GǼ-.օJ=UIόg?5Q^ص2ޭ PAWevHH?/P49>m/uNcoՇFߜ pӫ+jTxvM*t7 )}N/cZp!T*`֛z􇸅~6uGner)J)`pЌTv֦ }-e耝/N)J4+EEB' fĪޥl¹4TK!MpЛmRUFZD+RRQm:f;WlJӭώLpݕ0W5Z^w>[9^'ZjriUs =[j->ʳuh nZ4FHGF}0*uvTjַRWh5 9 ;Iyl}rN7zNo+،wZO['Brgs TwSdGت^[2B,)!^MׇLFT/-`V?JӇ9!I^nP8SM2mZ2G9*')>)[̪'vt\d[*·YMjl+AR" MUP]8@^3!R:yU\,a{n8t74vSF ['\[ؓ#]1$2)շs2VOmqBڝopoVnm2*jk:-rڭz 17Op,M{mm NDAB_U; *D v' CyTv^5iW[U {=Z'HMCB ]8+!nQMqZ')#Vsk6;p[eØ;PǻM 1?qW\T; wU,wS%2c=96s_?zVU oP߂uZ0e7L"~_ۡ+,e4GC0J[& N*vSkWeyQ¦Pʭ檉tBmQ&lJ꾥x?{OxViUn ?0O/ctfmh/PnUJ{*Cw={lT!Cޝ =Jm)Fm c* tsCٵUjqDN #nnm~E[Ssw{qү+F1*ZٖZ{?Y@ 5ꚕ*UK}ҙc[T eV^F Fe:ړ̸( ! (J̭H"s+p@W)व6%2Ѽ4"S*C@@왒0udD;l*0P]fp mWu\%XZ7ۖZm9U^]X RvO/5?~k;'A} ^2PGIKnYv},gھgھ}:sp߽:r߽ :r߰h}}sC+4a_GD+tRtK]6'|F=ǛtTm\Jm?ҍ?߻S41]ҽ[A8(ChhG]wOFDmh.yTM:ld[4r٥/iCi5Wf:ۊ <"a<8yl(MNp n'0tVtI^+a [!\@PhB-St<8$餹_Z 7w@": "9j*xʫFDh &l.LkTшOh!65< ʢG tv5*yWB˚ݮDV@4{ӧ{.<"BHB N*|ЛN-5#OB:eBJ/2!N')ʁ $'9 +c@FZPU`{ jD'BD,&Ul *NU3s[% *JBծ2UzZ!j0=S1T_W sU+0CA2qg qPT'a8AS/09@M(O[񴪴'IBg(zN8g IHY %vGopm]n+ce5SA*Gr:upV+l/)ʃ$*0mv=l(U65qFS>uoI߸J̫yMisʈpݖ8*©XCSSYMh0&\x[r`"ayaʑ 3in {,@+w@FQ,.B BvD9 rz7eМy%r2!Tqe8N™kY $/xS!%8#Y!e8yU֓j3qWI>ʣn&Uv:V(v;B UF+f\'èxj%\*{)J,!L '  4n |Q!ݔd9ZU\Sm:&^o`VzPʌ _ȕP&q(4'48 < 8OuM8<Fw(FOH)!D)F kUjC"UQU!^aRkM9 Vն2ZCjM#a2:*˫HFᐶ5d𣲸vR%C%%5N{e7-q8!Z;V%p)xTԕvֹRLv0(L!vp˜(r.0A+<,piNp5oql3KG*Ta29D,*FThH\Jk$( +[[e>P^Ӕ^Gd)AjkQDض04C5Q] ȺpPnr0(CsD,!NG>=<x̛W.ɪEc9L].QG C:7E!1"AQa2q#B3$RC4 %5DbSr?-7^.k\R )ઽ\Q(eL.XNr@"d&t1B̡*yLL(]PTlGu WTADC%@n([n$=ȕ pQ[a PRn% )N{d S( QOE"$j¤6窚l0)-聄sa0!LE8ʒW Bs 2ej:BVFTF;B; V R2Gu*r!$!8XDX@8@(IP8N e7|B;Js`$ CneFa X!K\\0=k7HWXVȟ5Q; Dl{QJ.Q#eXP@ pJ2'rVZdnCdvPpP $PCd"< Q{”YLC!mvF(ZEajd$脂 ഼ƕRK!0yG4"v!~i(p9![t@J겺/rҦQiIA@B D( !n)VGuA)*D/UVu"\dHZ@BҸvr(BhA4ЅNLL!_VI)4W_YqG|"I *! @R XVmZed)@ZV\(dBr(˜Bag1 tD P%D-Jq,&ZZ+"Q iLY!a [.fs,kKP415Ӳ gt!6I_wQ%a+(Jk̋TTwRK!aa4AXX(R"T׸2N!vު [%nvw A-j/\v S<Upae8ViqK&2v6Mhu\-:Bt$&A2;JFU*NcyWBQar)Jq('ʀf{(/rЌ)2VȌeD!=EpEGqfz5#WK+W6 eZNiM.BQw49>~ 8&Das0l=')Phj7ZATA [)%QX2YvSDUf,x&ȧl(BX[+J#+eYRI0B8[qt"FȺE LPst!Sq Qh!!r\VfQ2 2 'eL |`1Va&@1wլNprC1P咢v㕺(Jcgt!g*D/F 8H9BP tnBI]^!HMnkZI'tjCZ&(2n M$.8 Ds-̅UH#+cXgu-(A;|jƤ FLPib;*Z ™ZtK\D,cF!:D)  BIYDpaJح<8EŁ/xΫ b(%;(#PHq"B]58FD PS\4kuO  vG)' 3)3{Μ&T5B!Ҳܩ:(4-xMi@J!I;‚6DfV^PYʢZpE..BDa$ zR A-[5uS%),S5`T@iEvD( -%iF!Oitn'@2ZaAB"r<;T&pp 0%F:D-&0: kBct/DZae앧N8@;J2%=wO"uN!6zZFNi! c(^B,N͐40P+ct Vc#e'bV($ r#G#&kcۼCQV)n#uFZENxeLk" cy Sv|vLP!3t9J% mD20ЎBGUt\IJBGpSG 0S=(rh0PwV a}WUAb-A.恧2JuZ 7/j Ju7m?u&^U{Ev(^>* vQBqM[8 OxUԯpWhݹ8t ժhrJ8lӶ6ltsQ cP#Pu5̪ ,ƟTz&m/SꅭV^֏1 %S9 'y#QtZ[ q]T4Bu`&irAz0l%cuBTe?d(۞+S#8>dI}Z w26aCo]¼]s5+F.@ t7+ArVL:!ND+c&$ϮΰUux}Qt ЯlYBUj:)Ҫ~aX!­En[?U6Uk+:r(VLzWUjU;:۝Ѱi{}wS:Ӎ=34лn©TRa ax\1v}Kt"{Qhkj}]1*&jdL#+FֺwA7ŏrȔmrT]QTbV#+j憘W2[X+IyҺr]!`% #% ՔHXC%D 2st`9(a9K'^PQ{ ꟧|.[Q7Q*j)9/~!һBit}UݱT KK;ʯ26NW*Ȓ-pYQhԧФjq#aCAD09WDzwO tGKIǼOe@I* iiWU)4.k}ɷT!}m`֕ZRYZZUU']p0 Ujy} nq2B/uzϧkC&;re t@@gI%7$!v:{!cH]VA9bLPUDq\VPr¥V'ud?UXqU."UCS*ևDd¢˩hB8fWhVx[Vo(Tw #ZS*aܟg\6Z{Zf }i%\T0'L:'ci^>Qr7j> m5b {ֺXƏ6w US~R}ԦF+ziwߢmGlnvu^icie5\J ꂋ?کR:t=2PiXF[ u =W*̂#* Τ#R2է)vnv=nZ\wiFLgV&EO f iҴ+GK?4-m)U@z+pE&*͗ǚOOޟo͆sckqH4mT |*qTex_BUUO@4T:K W +h>>O>EJMr`i棵*;h1Q /:?~1{k})c?;8ߒe7L&@ADJ*QaO^nT&331ίjֆd}َx#괰@d"L'jraUM2&! )Xw7tIY jRJ0@TtC*r9Ax2{E\ԅlAii\'hp\7|*sDDJxl.x!ЩrSvWͦis#Fē+z,ד* z/[g?5Bfi<:U*B>[}+R: T*aV5jUXb 4c?OWNꛫ}O1h * (0#p4/nQs$e5B#]u:3spX [F?cQm[Moy*j>>U-''x]yY[?ĬQl[ղ(t,%u ]Pʁ;/zwWgeK! ͫJU) )ʋF['Til ڈkru*֔%Qz%^v=:@c<AGCe2ĈkgwMTtgS;8RD ITܻ%\t"-^ m, BToh>L*OU-g_mJuӪQH^ci;"~\uS^>~oh~ojRsoQS ONK=~?RDU",>֙x_Z>`¨s?Tq$|C,?_TmnZ4?ͫO5$-f}2;qRQSLz聅ÔjSi.@FP8DB!35`+̜PR P P[.PƤ7(Q8*L'+OF@Nq\jiUX0u]7E'[+a_[*4xsLºÅ|z{з4&uIhzt Ǘ\ 4N]LpOcLz~5_Gxfg04)Kud{ SZh' 楟UsRODʶWWum_S(ʵ/aP p%mUkwuW5yy+W]x 9ʖ@B'-&,m' ԧ#8Gٔ@O2@ʹpuDgu=Weڡ:N3c=25ΥJNTP S5S^ SZ8 `H:+81[hN_ L%@Ե[l 0%^ЧWvh[AF/Wn/$ o5ފi8j:8, 4HEJK@aRk۫*@xs ˲}vwCgujpVoNz, ӻk DjriԩY:g˧T6l ZS)9cW??UmpgTS[\B}{?!;T FQҘrY2R-6Y-w[E (l(舂 S BBw5BT(nVBˡxw{[U%JHVp(۷P)jjL&kIMcd)ĢtԠ×S,YP|^ T Y)aTޫ)ޫ^>&?Vi#Wg A(+;aU=pKvE-g+p@URwS~Tm* g^ 2vLYϿǁT?kA/ߪaENࣺ(B"[n49^*v*wu0z[QonUM^5R4fи' ꯉuo. A$-*Sp?&@"p: `Q@XҠ%Lr^GT*R>R ۽N"W#iG=e;3hcD{!\7lwk;s%UC>:6w#٧g=7h5WfalIjcBvG2sz4UjQce]B^Rm]AԢUOQ~ ({:4)tRcݹ{}'S>\@<:\9|L~r2D*'3!^I1(_$p}*!C5N{jn85ǟ"u7\Cw|jT\>$g?ZFPk[}RsGB+uHkWaP,v ^N~ %53V섔JJ8 S A[n($"2PUt#QqyNPB$(S7\k_)4\pUj΢CZjx@hVtݯR/@(9s䕯45eD2% #{/ߢè3m*a+@8r=ަ{£HM]\hƝ~5QNЭOrjhܹ?(Tjۜ} ?dIkTseG9XGZ6]P+K3LeOc𱲻):4jַ]rL}w_w쭫U Ox% _:fg^&^46R)"UȒ; vZW42;aJge'r9F -=.aW?JeH샅:s֪5:85QWe⪱]lL8*wE]nʭ Sn>}.F`7kuRDu^}#tgq2Qch5tGMh`/xңRKO]U+Mz>Q Es!gDN!޲-f%Wd~Wuai]A^ \ #'em^;}w\R\wuILF:'7pC BS@W@B)Ԍrq‚(dz-BTNB;Jv#P%dvV&Uh.NWVY2hDN* srQVQ!kʭ=@%q*DD Hiʌn8f'7VB1 DIpU%@`*J#SL|.p_G):;/\Q ժ]`F嚽>Ts3l]+MoW?UIH?_ȫP/xy|\J9$̢r- ! *%kOE? B^NT[OM&Pnv*t*h#gXQ゚b$G?a>YL .+N O\e=Hq tuBNa?ୃxh<rAh~np}ޖ ]W)Kr]U4?~j> -nָǻd±sS[2S&VʸEGQ tƒ( u0B(==jM *V%`(]ܥSMVnOrШ+=S 'IjFJ*F zB-mC$<6ͨ4&Le6  +%?`$Prv0+4*up#ꨗs_[G~YD*[q)¹g@a]ݛPѓ/U-upb~NF깣a͙z+TLINNGGsP@In_9\$IW`SL]+1^& ##¡Pj9|ϪQo3XR4z*qRy9O+]ջE:M䇚O4&Vy.}D7@YFbPFKӶDwUú,E4Ӫ0SmPj:ݧeUM:`V&+J❧H|4 }F1ח$M)uRxJ-D45SKcHRX+U*i#|* W F}BG*oQ1Fާ #D*H5~M3o*/y#.<2l~aEV]`;*534tOStu0^IP$ lB&vWz|c>lvj ,U sEkr*G M.܃{Q10:j'Ի}VΨh0B%25#? BVP]W^@\(a[XPՂjRYeIXr2uuMe"Q[D@WbTTUQ9n'z-N*+SJu70fb gB $m`'H 9ƋVF96MSޘ06fU]JwFa͐,g6 [ƹZFBiS)70UC8M; A\ Tu -;Lo*<UVQH2B*=qz*ݟV / p杳@>=nͭYYw!gT *vziv@MK:f`;*]8Bm[KD}EM w4ζaA9RE쯛|i'ҧXA)(h ݂  Z<"$J(p)58I@%4]{)p O6TN2v $l BkR^z'W# M-J5DBUsQ!)+*NJRL+Oo)vիU?UK Rn>Kr2VFTcD%L"9p{Pg N)Gq`ZwFJ7ZzJ%A9[ Js+E@=?tQ Ct0#R!i0h(M;rflB2B F Cv&NA+ ZZƇg ܸNWfSSWKg@9E ]85K^Þ2Uo&¬&yw[,kˢ;+J6SO2)H[&7Rf1*0®&|p@"yDۘ+O,"ދte8yN,r@$[STiB&(B qԶ ;DG+LnXx@24®ԨeʴYAWߊz4\:JO+( U`JQN0Ѻ44're[q-=O!vZm3uRL˔#J.YԷMCUXFWD2n3:J! ]T# 1H@9GI[A6hS DiUQDI贔r'uyEJL!*ey7YUÀ\h*^%~*"{gZGRuR&ʸ5uTTVn8ns)$AU漕䊒QRU R5Tw) RU >@U@uOnœB%N9Z$]H)%A9 XvԥsP̀z R.ĭ"q =TkeWnxǺ|HD #)=߻Wu@ˌXAkT|{;WzTlRֲ Z)9Ԍ'LU4So oLNJBJnt\kvW¹ƴد4?%k_8L'PhILoa]?), k^ҏ ݕBk Jh>BwUzZ\C[ҝC@=TRN$(+m!tVq`ZcRcVHh52> S)K[:~)Mf-j|M}]EBtˆ,U#i3UM@?ӿ1Ǝ m32kG)'U uɉV?Sy? .%<Pi ܯ1QkOs3g5#^Ma #S:=:{}UCODiQ25IB5D&=R  b/`M ANkQ-A8 a(4OEGM0T@Zӧ2U8ܪv`hU\\]:2ej7] rVmYjK`\*{e4w%H թM]Y;?ۊڜ[IVϥ/+~9l7֞x}WI~hKTqeNScYVs8?9rt8`h9}KYT5ӨLVͮKp\gިҫl諸u(hȫVRIWmީ[9PG*tj ̓Bu .Ei{ȕBTݏMp&3C4S1\'>Ku'a:`uOc ? euX(nkWDAjkҵl0Ҙ[0S} 21{ 6ȻHT3OuVOQTUgՙFf"6nS_( Dre2PHʨs*›(Y &v T%9 Hr*!JK]Z]UJʍBH?}٠gY:ꍵZ(YM~!:ߝ鮳T>ڕlJihkTKa1DDNҙ5Gl"*u>h[->jjt*uA}&էA]VdwB +KB#=ދ@EvhalL(nnCOUqvZ) HB,kZКTsXN)1N/˔P0d'ka_bq̧N*3VڪqS&Pf8i چJSj +lT9tn׈?Z8鞿>]B~FpuO@ShnUG>Zݿ|9ӟ[oNP7 pp NO)ngP~B*phShW)RǿTKOjL+zߞz{N%i9BݺwUˮ[*'ql"n]2ub> 6=FˆM752ܡťOA9*QqS.v z$5 WS@?kl+JD@*e8e;d@`0$"@r0iS;) ^ڮ9+"J% i8 ƁҼCzWƓwd.76sTWpsȵ09SOy+鲕7WwTl*)ݺs\VNS4*ZSSz+V`N-vk TTDS D %1B#R e4Fz(ӒMALHr"Q `M!Sj OUZ]ҏT ,(*쨵*@AK<DBis 避9?YP< , 9q0e%lw ('uO D(J['%U+8j`(HB:h`aB@aE@Gl.+T2w%p 5*1ܨhB⣛:FˈT՝6^\Bo_ s'l5UoTR q% RhWL/H`Vjخ;G(UϲQF 5HƂZ8Pk}_ƭ)-Jik\Z*}V3dr?"5k&pŮZLr'f? IP lU~5Cz l#(v)p;\Nd-o ]}C# gJ聐eFt-@ZS9( JêPiTj2ĆualՈ@2p(2gN~_+=MqvMeJf!9]XjUzi/0YZˆF7SPkuiEDBPBtQ^vetRTEj*J*J*T9Qk('Ai mF\'-, GdFs=<@n%P5\Q'@e2|IMJpӌnpu*:-G!Y{h)r^UGiTj:IxzC)*DžycFEkNڝ-̫ώΜ+'~QJseB:b0•.k .54Ӊĥg.M;izzKQvj$$9REĺQqjWE9 A $'9НW[=i\r J*!l#HDáP\ xo|̸̸n*µ&Ug@z*W\ U:N'6ڛYNPAIHia=VuJ@ pu.Wei~JIZ:%px\n3ׇw #559iԍ* vr4rWi磖=\~e2'S.jH|\a9((8*L5QΧI~vMTYD |v*Je{Իt2҅*j#mhh&N59P6L̐Bf`<(.le\0\[C$Մ TJ{H0S[E*DO+JzVdž\Iq^p["dvV1)ΗM(8QjEKQ Q!Ft>VkO2% ҉$3+jc()҃gLi[ GUqtB!!jv rB6Y舞9m"KG"f&rtsLMS(3%[R}J/ ̜NZB{ e[H̄/*) BO K YZ$"4!িHĨ+L5.(l-Ku"u#V'{I ' $(Qע%JDJC;-֟5W-TL@7U8 Pn&506ONk6 wxoTADhX/hTU$BPc\d/X:7=PsA$-hh8WM"QPV22;L&jNQ7NZr!-[ OGIJ7^P(gd!%?xN-S[`!s(z*\MpU<# h%7K%6ACf);Z 3hD,0P=J FzB *4[l9TG&UJrqJJ 2;K <@wuPnZkJ]z4k* 6c(`JnQp` J/m:IA{Hl$jl6af2q%S-+)QG|@[nOT|%HnΜ?Q witeR 4tNn<)Ɗc "ࣲ)THdpe(DB#/pT*Ub)JV7%U4JcD!2*musM fvhp`搘T} rp9U1_ Մi %sIUN8s@MLT*L-@Io1@NeaP]3̾}l !hB+Q]!'eWb§&򕝂Ϣe=UWpU$qELU걱S$B!JSCvƔ;F*}EE '2GTJkn Ʀ?Jł d.gn>6URwVD1X:P a TFWN)O!>JMHf7\*t&jN0PV#)8YN }+[=fPp"wEnNQ!T 3U*5B Ld-Z9FSHU*q]%0!Cg V*uS!nZN!a{EQj+f B@)NU*Ur0^S'rTzW :YwB5 guFeAI@j~!j.i8Tv R&eH;-ce$ 0aH#tuF%-1vދ.|ejuD~Q d!J$r"]=)SᅕV, 5L I 7y9YܠKA^Ҭ X,` @: ΩX WqU=4A !T>|7R:X*ݏ]kjnc@N905eR TehֺJ7m֢U~w3C`* @9T5Nm(z! A e{"T@7O#J#uwBͫqB⥭D uZ4{ӺinN(eFKhxp9[#+%A+A 5Н8X@eAT&D)nc蜦ƤU@\i 4\2egT9%(D*5MjwR+k)¨JwfWPBxxRD.-!x5g 9rU/u rQ`Mi^vk['>iѺs62bztO4"J)._3+M)lwTN=_w{ZRO^Pd&BϵTYp{fCl]To-j{D,drvY|RTҙ (Lplk8ꎘa7ipGE'S BѨ47%eR\Ф9xzm.6M)! 0qT:wT@ݜ^F^ hZWЅM(>R\.+A)ඬ*@BB; JB.DGT6wFg -P F!IQfGt˝2Nԭ~ž .¼6.PE2XZݩlO!-GnI/Nf`*l9U: aU$1S ʔ" Z DɄ~(+ɮӶի4`&s%D'Bm%HXP%`FQj"TfTz-'  $e "@(HԵU$1д-!N3"#TJ>閮UQR‚N0 nʲCUַ}>w?u#j` g\uC4.1RSӺu&eA˅H6fܷ!Bu[{H8uiDQ)( %rٕpBm&Ҩ֒9.S9/EXlw;M=Gdi9~DWTvEgs۸n"u~ʯSiR+#nCdm;a:_.+tD$څWty%;h+;d8;L=}I LolfU 0'*"*GV*hMEi;d7E Ӷ_[ !1"2AQaq #03BR4@br$Ccsdt%PS5D`uUef?ǍB33w C wk꣹A5pįC)'8p^~HV ?1fKo)T 4_9}6C{a}|'pRFV>Gy:A{5?uc+,<|[%fjx:Շލgxsº&!++W5>^UgB/(44 թ(g Twsbv ]\5yG';Q̚:5`w!`>9ݶ= pD3eGwuιk=UMtTڻ+X-\O>K 4n <+=O;Ň2W1\57k8Ү=-\p]c#Wcn$gTE:5;;Z`6Qrg w]uέp%1\Ep zꮔU(h~*>9C6zBlʎA,l;HGm|k঺+\0+Wc$G=$ :{D|q;@arFIzydC?S7|cH\d>/Ǘ\}Ѫ#xd_<3Z{p5{*;~}&v|c$˟=Gºc+/=:]a\Ƕ+o' vXQ(ƾX>V~(c9$,wh#DYB XQoE7QOS4ayg8'һ1fEyR/pTQ>T(uzĊW|.uW1]j5)?F@ͨYE0E~q3=qy>/쮨rW*濥]e=C8">utQ`ѷE%{:9Tg=n,[7Q/-p}B'Xn-?r~ߗXdW(~-h κ¿pеW vq5+\g \=ts믤}&OepEWT{+rU8羊|Romqeu\=3 &TEfo̓F }tmJp+P&&~?ۻQI .m=qp;iTDOu\Ypֲ;"5\*1pĞ=pOִ{CVPI:Kf8nZT:oqb'O߫}YwV0+斸Fer^^\닁5WJj1eoDﮌ-~i'Q]T lc]{uB}`O n(\wh Smo̓}ʥ(fcyys5 {!@\3} κ9O=Hܛ\u}^^[M決=mU麝Qۓ [.w$b$MKˈ,6swy W'Fǰ yՒK!iߟ mnh-3nn*Dtn# `gMZú ;hLV0HBO䵽ӨA0f^n惡ct$X Oۨ{(\ [N*en5oWH'=7ƍ’cGy%!*KDžONt,36x;kP+CT_5ׄ~l?ƿ aq+G5:V5uͬ-pקF/k=Uomw5 1d{j{Y'),cU5e詶 Kq 8{ǐp յQ.%K GK<ƿW!Jlv8o$W>yiXW]@MH_Swq,hV!#pAvVֵDmDj YyT{ceItmx/Fy\Y7Mx\ /=d4diƠٞʾt8)L<5؇7i'nڼ]܋;ݦIK8W 6QOe}{gh²dfeM[\%7:GR;8$ӍyEN9*hñ7M'z{G42=cpaO{pguTQ`H XQTgN|h~"xcJ(Sɩ;?5jyqgSd[o|7TjzmheZ[OveUkfǝõX&.O.bq y: J0ySH+im)\nG[9V ymf'H1_)ecZ_ϊ9f,jnBŬ6+l :5V֖H[+Dr.G 5w5I$ڐ, UDg85ۉw1tiGB<3Ww1JFǎ-[j|:Ghl?+ 1/[ga_Ʊ]4fi[xs~7>z!{U<\*K/1բ D]ˎ* xy;2}:%Gk-]ic:O>n^Xk\$#gF{ &Ⱦ~wkշC KM]Ocm3k*amn%I/B`}b?7 \b{OͼWE4Ta e%MN?`I5*Ƭ 2I4[kwG_,OI7*G0h:*rx(oNƲN=5ÏvLZC˫-cٱuY:p&K} spG֬3';Mm|ne&ԓgYӴw6en#Ӗ:|oKq| cȚ_HFWTⷶ:{f\F$T/8Җ=3 F3r@6O:jM*? s#AUB}z-zt֑5@ϰ[ىhJQH?Jԛ"n|hm-ctyF$P[m+mV&XƝE7qv6˷a\XtG? }cWxtl8us;h.#A:`vgM niGK{kPYcX.HMRvWE&9aJ!'mBsb|MPy48&` f.-ë_>5r?V #EqSZz9 PvԠcG521V-8FQi@%FO:+*ķK D{>V7v2yhJEzg(5-Ѷa5YJN趬kb˳m[s?7Z}LCgPwyFA⭠;.wSڳjG&ٴ4ru^g`[ax4&XcE 3WRɴFtݹX8 y}:8fJ:̰ 3 NƸ">~ †-">,kl?OkvO\EzS}2OǺ.v;3'H*Œ#ho. ;d[.KњiO}R9#K쬿^>5oyp] G̖ cƏ%nKNXW<ԟi>}uk*1)E M uDQ8ȉYCq(\i?@l₎Tq㹡&bފgF0qNFX+(}*O'j,ۣ537k>En?؊F#s26^g7/&r<;y[m$t.fc!;3Fϖ-ciI%\Uq3Rlݟxq>|l<ێI`ՎX)aqk,[[PJ!8vTK"}msմv|\؉u4mfa/3[ 5HP&=6qƶMl Z[hvj+] 3JY!Z/Wo2#a<n&=;y(K#9u,тWSl(#GiWFXӂk ,G_q CJb A^D~ [1M =nbCK0k`c*/(N#>[wKu/£$(JXSS'5Mwg1t;,B<{M[j7c*\4[KimwYĀTTv-ocf7>:4qdYeC7pвk;9f"8 8+Èx՚C pE[~FXH1nxWUR4tX.˜㺮%7v^4 `KDž\lGcĄP$嚱hl[m&3RypDa[I\0@]Kco]ZN],íWNT{˔HIk2qcᶥmݴv0cUIo}25RAI <kmEa{5̝k:;k5ڻ<#?GEfk{u?QKokpCv7V/_4e/._mM[ w`-8[>+ƍnvb t V33$&"2K7Ig;x_5j1kMV6y~%ͬTfYI6m]kvdE#2pRx&T+aK%޷jC>X 5j[J6ϸ b.P8Vkd.Sel٢cbHpQ*KLSdiW<ll̓Dz50ho]z98!vLfK$#=vzj=mk2\31kM8^GmZY؛k{[:S%FE6UXg7 2 -[;I[oĴi1-W%-ݮ$`p]KhBaȹ-c丽mci$_:9kƧRtQhKo7jN4'Nח@G6fR<^M3,%Y@U hZzhBMGݏd^CX.|G/lbKϻ1 W f-WWM7rHtYGq}Iu:r>+Wrsy'CqX N"_4^;N"<{ͤ$ޮڙd(<=7:G,xzj|;s^;Ӟ]%<Q"Dep4GtKSG1=&)l P2m?W;yTh ]gAQ1[5M䫴`1[HX L@91ڪo8Q8wZ\̩!z =iaQKS$ua1o=no9LGڒ \3Crq⵳!%K}-m)$A!1l:DWvG+ $/|!*H2*vJmdkv-*Ct3ovk2z(jo^(T)&$WNMuN"sooo>MʋfI fQN|*v[nnN ꏶmx]"yz(k\ive<:$q%=vqy私}ղW[ QJzYラh5ͬr}ԛ:ůeCuk2]+U1#Eoaddo޳W/~%H?)$:R_`KI$#ܪ| 7`EJql:iY0[۝+< 5wF'o͌k6?5;E' q=^spbi[ -:Zq2݃ .d.O>jplkdK8oS5GԠt魭sd|sq9UW;)fKjx* Ow.곖Fv.\p~.T0$Wg\l8,OWeӒYldka3r Úkm֗OBҔ'!+bM\ɋCB~9j{} M1gDvvo[&ΛM)GGk"*p#<մP[Ac,Hơll"[}kkӒ@}}{mrp.70< P>"?5o;}-竎v.M/#$UFNвG/+AW%Ȍ BBA>a Zۇ/<*-3%;&h-\ib pF >xV&w2K*40l)+}meqwB7;hY89پj9rqĚ~?v==^5>fq]EszX$#EkW3g>%0D:n3e)]̧LX[[;8J:m >yz; o+kǼе҅x C3y(ጱ nb,#IjSD.. eՎLW+|ai5g!x懢P8<4E :Z2pY%kNF>j'-BuApX|\XE#<-0h~qs\$zkjm^Dh#!tՐtFҥ|gilsř5.Yg;%ecQ*OCXq_ʘ̓\].xc7D<9ⶵV(neϲ]!X2k= IǷi4VԒ7Ew}Y_ ge^'#@ef6r3Ro'IVU)6;;4آͩO>bg)aJ[* WX\B5I`xԗ;fY{w<򭚖pZŲw uψډ.Mџ᨟C;{8-!ѦN}F v8IY$I#yd   0Kd%sho?xxc ԎWDPFU6X164ۍZg#Wk+ܧ[4[ .4!sQsnaðV٥xZ9͍],z* m2T=3lP {Pˏۥ;4Mgz'w| w~T~8|2_O5RpO<2rűύ2"Pg#WmBԓ.-O!dJ~}Բ(:eϧilWƄlxn5 SɏÑFioV5r$gK-l]]n3ϲnn,d="x:TÏTnc&6ʜA*!q#9(]Zz$ǃ&[w"vI.j-wttc`X#31´yŵW2`M]?,첹đux}V4d&ԑ+}=W։rْݗɢcO@numvӵ`|=Cs~R)A#_ɋkcr-nvx5Lc} {ntn8IIuW՞Ίh[pLۊ.9Sc=| v'InwNp:6}9Gk[cnd_/KKhs-뫡GQp޼eڵʖ,[' }ŕJѽQ*[oW~=}ia璾UI$U<\m4p89|s/}\UI Tϒn)$ԪXupƌ;jhwOѭwNmž$/G쩅h&x%4 hqm8<Z%$T[t:*:KHDLr`}& 8ݒw"? َ{l4`*Ӵ7˵?7HA}5o[eHǞI5]`9:q`{>01!j<*'4=~arSMlaʅڵV OFVEW )$FB(O88S4^5[)Nw Yj_5 MIG&ՏTo 4'ζm6DP-kY5B˕un ̟{kok'Pn#ly&Sj6tZGw7B,sJϫCX1eI]k<| ҄wePy6Ѵ7ΰݘy$Xa5:a:x]m2:Kx5&.Tӽwkʐ4j(s}%yEyS>5tUΝ DUl%{+ze󌞩^=l[F Uc½?1|Ǿ~CN'503AoN~ŅjSh&9GGӞi&N yOn Lty6-NL. ݱdܩ:c4ɳ:ZOIia"Hp>ʂA$9qk۽dbpBwLpswor_H[I.{`u>8}yg{[^nkg Igm[mR+{fj1Ow;?v-t89 :kHٞa"C E-Zܙ>szeHtCn0q7BmonO"TھHU_>'7^Tj[q)5pZUtsظ5$baˮ.C\Y]3mq4!R_p-P!^u4Nz܇7S6DO]X=QJѥ`hQ Vz,9tq_Μqsxm#͡o,A$QUm f a$%-dE3뫀K.f :?KJ<;OD: 8^Ӓ+h[dzko3X%ʺcs~ZIТ[ 뭦O-e-ԷxJō\;kkE a.4kֺxp#el f2Mq\#Xlm]1<+/6ӑ[svJlHhcr7ǾXŻy?hf$cRXG⵽Eh(vnkh\Aܢ)u=Atr?cOT"/ Ek6]';sk{x6`vm,7H;T7"x.MzxV~wi'azTU볰XlcS}#{*E=.}5,wtݑvsʒReECox@79_Q%}[<1X`YʼcvrJO{T0ӞAќ ޶t/˙8C c\r4Qc Iugi%ۓʔDJɎ QE۹Yp!Xq>? N񱖫UtKt ,_GjO7~ ǗQhæC4}F8 ܆(^a}9V> +w!Aw#Vtd (<(q$1yhE?s_ \wxem? zGHoo.Sk z%wZ4؋Ke̶8:‘ˏW̮e#dMݣ&k{{(u8󻝟ް S_1866tʲX|B;xN=^uN9 0GuXcmfcЀ9w7ڱrgohGup^1&F( g{#{8r̗{>lEn^ucYӧɹApx#XguD_Q1`W봚#x=n% ˆCMB}ԫGˋ Nͺ%cqUDw+0H=Ɔ$[})]p8\ki-\U sSyo7޶Yў>ոO|O)Wz:z xQDRFP&拥xaj8 0jW VGL:i^;#頻<3B1+#A!mc ǣ悡!H*%npGCom#sh̑/,x@c`F8SI$ VLa{Q1^N;k=$iY):COE|^6n-́\*N}5 Uכ@t8&NA*Bb쭦_?n&N?HiyԆ u"da WPϳ͗$ZJ(cԪyap-!92* lH_68bIuMUi\㡒1[f"v1#wR8p#_fb{:9:H㻪*TK9 I7dyW]"{k 7HPlٱ"G~cyZVc ,bS7n$cSM6*N`Um!i]+ Ml4.>>/Rm䷝J[TڜHռq|b3Y#ҖB` 8FxL`;8}bi#Y'НZͳd6dgKQwU4vXxknɗfya [U1\ Kdz௠G%*CdCCg |4RGr{{W{ Hu0^Q8ZNWhH%8Z|:7m>]Ǟ(k!K!vh#^d8RȹQ&[Ӂ쮄CgG f+Dդ^\yw}JŤw qxW.ٳ V8Teߠʤ ©or~x<8+Lj:}Ms C7D:r&bwҼb6QP \Í,Dž&8-ь7V^ǺseFViu0c[;jH#bĺ5˧N ʤn s꫹`8 peYm$p⮥zWS]D1[IYa׹M7MK 4#b)QѢ%f2jNʭI u\*wFuf돏&>Ŀ_?؊Q q[<9a s&`<:[_W&b3)-ٛˌi30>m.E-a#La<;*0)"-#R XάrUFq\{=[X%yM 8[WXuhͫ-g)bYQV$jύ\/KW>52(ƢlI"jvUjfNGo?9[c?_[lD"MfƕaߎXo#Wkngp9QǷZ :z0+"F͔V5! 8i}$ +vn!(91R*g* ֿvi-V:q&Y` <4" 9i(f[# _XIx4F3+ZEIp/e]es=#虏C8h=ҨXcOfɘzTRqh=Ejq<}nCJ!rFK=5/D{S'$҄Mz=9Huf|vS !GmI=[$³x 9T7vALJ`;4;ǁR`EKN=#Zߥ]H{[QA&dSn`sfLYjfCyK5V]>1 UKz~%(wݍ:HBt_.(3S{F2{1N%>pwmǶH]A~#} E9TXZA>+w280G}}J7[m'ZyCc54.ǰSi]=n_8cŒ RHFTyh8)Ν/E6bicWi~5)Dp4H{j_QU9ﺐ=#(/n~%l[%G~?k1$Wu>N`9&."f1Om\ y7AēZRՕV @ ۖLB=+ʤ$kTng(N&GVqPuDqj7c9> e8_ <ԀKOX-m+d=Wj?j"f]Xﯞ?ƾrc~?W+h¾a[+s8-ƿ\-FbU6uՋ+c ~]0d[K>$>{镤utb;2uT>5W]JT6&ˑ aȐq\Wc rH°I3:YZ#vRGb+ `U;Rʤgf%`ǁß_!Or! 68Gsiadz?6M#*$ֈ8-e޸W3΂ʟugƢ _q+K9-H1CXz"fHOh"40~™n@1<hp${*HiQu1֛݌Wo$W6dA[,S@4FN\eb[ZE,NNsCDQ=ب]-Ί̭UPڇ_Q7}.|}G,O?ز[G0I$E{j^9 {WvRȾm nFT87nWV뭝1͎087%H$.& p16Ԗ-iom(;jYY9OUI%vH] [e'8[A#ViDC?񩍜% p>Ux/K߲>q577;<1YҜxq&ϐtFύ =_݌ʄ/`ʼݲo:[XN>r[_^$l9FlK{} : G>nO-0ц\r$}m xA+#U2g4P贷ѾUĥzs~=_7ԝ%r89=cg0Kq-,?O;I-Є]F]:+0<&I[+Uzӎ#Ɨqq9SFe=ucC,1uLeyvVh!!I7@G4̅D6%2OP#5~)h ۰֘wd44I,sg\DtYnMKJŒ/"*W8 xx-즹HBa1cAɌjV37ڬeøP9~]=WmcǕ G3J5Zy4'2òxZg᫻ g<*sЙ Kqq#*5sTQ@SXGwh<=8\i* 6 Z) #Ԑ.qrt-" UL#'o単N*awhi4':GߣQ <:W+H,Fy/'BX<4›_ȇy>YFD1$I:e99SԽZM#LpݮA,;*t`t4>EQعU\@d=\HeO*uupVUV9p)IIg{t\$<.sqNq qώ~[[xm?pkCsgo#E7vfc{xS_3>^gJYщF+=UծBQ)";>?Uî8<+xp^@jݔP$~4B坻' Ɗh}9 +g8N.)ra$኷ncQ +fFkC/8FmF[N0yGάύ6e"5|)"hvͿls5E12Z .N<}梷}ަ-o3y!^kcSFNJd*9LL89?"xu blOǸr٬%ɫwhow&-Rm+kUw<1?*eB]cQFp#eKo>Ŋ 'qsMj|qS[Gqq[A o>l(K A5oG\_Gg}-;<~wj᧖*EPFQoِ_%W !0x*~}mw?ޖr#*)"[pXOB:c [e\[J; qPp>T>]s0yU01kvX:wz}A4 \Y{O/POI$G8\js,emEu a%rIO>H?.?KA̢lv~}_' In;"bk|kZG~|wֳ뢼;f .cBRD$ >:SN iMr߂qp9Ɏ5.T`ujX[Enw]jL^@)?u!PDdꦉ'DUq9?ş&\+B5*'{kuҺ]u/p~uf߱]c]gQSxkԚVs_3yk{c_^Ƨm\kc~1*\ݮm~߫O8$>| FI%|ܼ{k)" O_#h~N y,嵊|l{Y^4rZ]}hF1g\glTD=&4`.ǕlQ@( :&Xmα {M-:ȯ󋫏W\ ujljYcRJV;f$@[vC T;4!Z`z(f9 m,a,xf_5,u$^ѯ W-~ o_A__1|_1~OЯEuk]Q쮨WTW!^\'Q*W]Jȁ9Q&2-ʄb!T󊱧 \t}|_;e9;=X~ϖ;e?1qe jc'LO?ȜW,^i(qQKR+RxGO=o1T<׵G5e?$?P!9Q G9sM$e$Sƛt%էNWN7M_]\pn=I|'2'?]<:܀>5O~\G WVn-<~m.c'+>hN1Կ~m&BWm|Geu8z|[p?\TKv޶p5hΕnydQm,yZC67 ›\VsDžFB_>5rb`c,ǩz:llnq"U$&j.$]9ָܹ spX'qS*:ɞ pxvz#:1$t{}u9INw}#vҬR2pFw,P,@| s rEw~>ʎ@Avبa(:{rFNK=v RMn$XxzVݲ 1Ys7gpsLI<ε:vdݦϷ<…[ iTJ[Hƚ=ȌxfoBXCG3(cOM5D)ϾPpU~Wq{k𸽵TuR{+6:::5+V|ckٮ7WD$F距ͭn>&ֽ5e{k}60K[ғ%(r}`NG9yğd]~/꫄0?Å~9k(? ++p¿ +oxm~o__>/*yHQ6qp肚EyAr_$u1_n'cucƙa -*< >2ۤĩbˏR =YxPdX:8NDvH] TswҧG n rxK7n!}|Lz3QA$VmIQF-Ϧ%tݚʶmꨐ<:5A!e: &y 8bsB5HkhGڑj:Uxղ>)'7u>Щ~d* rXT9qɎ5YQ u})uFZ.;Rدٯٯ_95_8?Fp~uf]ٮ6|+Kg*ŹZwun$14vc >H(/p^/mפM?G8R{w3&i?uHpn\n wr4o7CP!Rʫ[l9(8*$#WRh .{\. [:;Op ZU{)<\h3Ǽ=}|UH;5DcQڿ:1]$EfXY3kNߓ>,q j:.o3wmڰE]ў7IJ9 Cp܍%5G. ߴQ nQ( Y KuT̨|kK<)&CÏL69d[k*&֖f`%1=\GLI>瓧F<lͧ*oV69T[Hȗi hTqQ"~n XCyj@Z %QC'S[CRwFW2,\{sÎwMKŜue!aӯs(2Aȭp0eT?ƙ3(m qk|ѐPy,_ƁE,۾ԛwO6D'Gǿ¦XӜzZ&>1IJ!Vl㳲G8,÷.$ 3&$T21ζƓ8A68󤹹ԚV9BGTXg_սNsyu#;2R99|_;ui(כ*N{fI#O\z+{+}4Ҽ2gNkFASqLA[ԻB禇z`ym[Ւ(3I?}F.mHTk>k,$i>y Mei 륅&14yV#)W8<5_m=!^> K:}6=(uE^ N,Ǭ8{*;evpx%ٸbB1[Nܳ"?A@VX7󶈲ՄUE<ꏭJ-]ڰ C01s<{x1rXbϻ=u>qTgRν!^B8tl9L{E~Iӈ[·qFwRƣ8*?dyEX &jpxn=8]DQx1=55VX#O W,neãﭝRb,dOpixpDGtB I)v"44H9= 7J.)}yv讜K#|TUT~](ux@p\.ө$R9`]&1k\}y75wn:[eqW Jǎuy ~m'K 95C(4$De4.}}.~nډx;d#N E.> d9֤$p2kw_g`ܹC|ܰڛV0A`C."?;q4OFsJ] ގz$8>}Q$r}w:*Ϫf|Gv5 kXPw ^,Ƕ rNyyVMս8|h\__(HlW;JǺbFP>c4Ɔ^51}uqttx(Ưuuumuuʹy8y liϞNuv`pp9P#[ R:tSoЖ=`MOk(fXN1< tW xw"YH&͎&΢58ςV5Nwe>#=k+y[B}/o3[:`rtǾ`h7u÷?(=45/H#2=B!*c%u'\2| 5SJ<~E*5XC}K!Bk^wׯɡvYm(VĺCV6 7kTkJa"t߅G=C- $ԓ Qs׏|T37ur?Qu~'!>s7Gkq.;WXkkkkrOՊ]21X nЎ>ډ:ΆDuTƸ"<8/+z|WW]_}uMrjTPz. *>Zp=EnHb*ۢGaX,3B#δ,YW[Ś% + XyaEe+C~U8~s\D3FLғnz{C E c2 O=I[AW0oSYDq %[ 5gO&aHt,O_H= ?}~'C6?/ﯙO֭=\d^kjq^|mybKOi>A#ꏀ={+W!\͟ VǷ@տ+Q֣=.BH@䚸RcƊ@GD>~A^缬i_Q?MO\8>e8e^` *TߥTsS>Lu~e=;Y@ ̢]biX+vʰ:(`pN2^r6-jZi}kOi|ى h~`/]Լ~}g)ۼZx%/oy8S ~^^uO0,/_J%Jǣ$J7$q'} !UpF?"^ ;~w~3 O:~9Y:fmȏVe>?8._/[rǡ~ٴ׆]uYv//g˴~5$63D=55.l9g'-o\Cc]#Pcz3]eG3q^#PjnMѧңipFژCH6293ULOOYP}MLv6ވdx=8FĹ{d1r\ϋ3=~e=]u-cq/^')؅+e-.1Ru^.9o]n=5)wUmVܣu_Bst̻gr_yۙE=6]5ĹaZIU)yKǹ92o5̻X g:,Bf,N>`;Y}*@q!ur{G(2 iY{ѿkX{N:]0}E"G7*0:b`E\w/Ls\Qy-x>`F @oW=]c䗬a7/^.Ƶĭwqw4ؙ 9-5`od<η;HkFd3X-Fy://igtzF8TE2X#oF.Ϙ|nkOCұs%(+{M˝dx' @jLH ckbB-wz~\l~+]w$ݺP桕wH!;zop~O7/hKK&&OYjOo}L-UNw%bJoKX õbHJ-Pvܽ$༆ʲ oԇ\X}4[»̓6:g`Ώ45pP^Ыf6*l; 3]ipM h P*ld7d & ź8B (%OFu 8Υ+AK`Q3DZLG&4LbәRNJiS/(T6ضKX8Zna=@"XWɡ`8?˅;4~L晬EJq{*StruM0dE ' =0TX Հbe2]FFF6"P[nR 2 "!:rdYk,qrS׼s;D fV]_}`ZetCD.2>"qz>g!,\?3"(yK@ZjW_R_XNNMx<ì]mf,>OLy-m[R1ɮ:Dzp0* t֞-J`*3>j j~Õ<GuRL-4 +cn0QmimLY%h\>:9g8}+-tYNmi]7:Rmi$pKŒvI-p* 3/e 4C<6tNeRZTxGkf]lԮܥ /*<(j AFKOLFJf,99Ə13R5Xi#w9*8~cuj+T;G?g/ @L{ө.Y)褧iX75֟N.ky̎;A žw `Zt:;LFç/\\PM5NvVQX }`,qmi[uAtwzVtG6fVU5r&R߄U=b_؋P f~~yyEa[K._>{L[6t~!ַ|15/`Q&sZ>#e!sc̩]0x*-K#e1/ c !pӂk;.!5o@| 0/\ ̸V[ءJm55"b@)憺3@;-\̲YQEt81D;F+o+V/Ul$[F\  D-Ԯk6 ^P<:{RJI^q}uVd @,G|* E*otGysEڌJ_R'~[Qg^}[;nTbO gyn^{jaA3+4x]0*qc*X]鉕,#Wgȕ~ A15 Ƀ6&c](qbF|.rto Fsa߯L_u3ya.'pjAWWQ)Ktx0\p;y 2C9tyy+X2,#'sGI"c J|)RB{Nisq_/~=3׎g{b6GX0F/^烟ݦ`E&.&Fm|:Geq(]^Zg1p3lhSP`B ]Rs2J8|.KlXŗ~9ic;}"9}2qAydNq w<|ϙr*-oT'$%h* [([8t`BjzY[[u4ל7J G QMdzprTT- q8 ٠rT(yn[\ ibaGg< %%NH^[:`<Ζ]MG+AՕ;WR^@6`\ YKdYUF6sp*TP±(RVkaSK0[,_`(ct)\R-[<Υ ZRUx) 5/͚hjzƨ*ƨ;]f]@y`gZ=iHP GP.. ☆C˽&A+[ՓRNʃvK3-#o;J哽o0&U#j{ʟϧi}}u7?_T!8~se{SB=QPܷy3~D/j")r.Qd|ǡ鏸񺪱띃%ų23eW>x XGwQOpc﮳aaLjg>'\=ؤW7@% ǹ3XV#M0RР(JDL0v^WZ)J`YmeY~`fɨP[{W;hC}ZӒa̐՚Jq8qj^wֻX.` $U YYK鑗ä}}D/™u&w}2/n#x$ w|o}:_bz 6֨Mu@+Wĭ1.% )]}R޵$ch<  *K–IMֻ0˕S@GApJ*jYBL'T@=-qoŃ`5W޺2ǖ}lthXQjY/[[f3/[nܩQab #eC eB[b^5ɲVޢuc Wsz<״zm% )Pר7hyB62.hG s~fNlo 3&HGǻNlcӼIN/d!2j,zGC?=ceqͲߩW!-/ԥ""pfY}+z>0?t{O[r FJ-imC(挏Zؓk\]&Q~p}L} #bh="S[`ёz,]'ۈ<%&%0X hUָRP`Ø# ]T#mw.E@e)T ̯tBCI{&3M΀MdV@ @?ĀIw,э8Y=XV R \six$ZdV᝸Ϣ P8cYݳF0h ]+,SU eQ v՛y% nFGAQi-U}\3qlveuS!#城=4]V6< 1|w;J*!߼mtʩ1Xt4Kd7JӇ5љ6 '[`9S G4{^EU)NN>"EVTsZiCRWW%r[!Yx/pN 5t\Mpеs6WE(3EVÁ848G5U,ʬ"J+ME5 6-l|KE@"7 S7)#1YoQ(d-A34XZcozN/OQCAU=t&sZcRʊiY1/y5HO- }c.,NÞPXnkqS~c[%f` x\ xnЖz)$4i-8c#-]GQ:y?51qDn&훖8*+.=="K\}v^ˬj*WaQ.)H9/D[ +*P5M\O kv)a5KpNJ+n 2yZiLlMSggpѾv%g.-PBeŏFḯ8?X]&4(U[v͞ϔ1yŽnuhJS74P\DN8}7*ҿ-5E83/zcs>G gR3rWwLAF^ZL|,Q)pe\.kgQ[Юک ]rЙj-o3 qĥ (CR>ȃ<~` XVJ=1gb&>7ʢWb?#,UOmn/ĽgW- l.l]7TR~Q=v(]ʷ&RgheZAkWcCV@`}Áŷ^ҹ\ahRyYG50;,},ͮcuuJd&Q#ϼ=@p<*aXVR*>k'ADPlDݬ,㩤“$Ҏ-0@3X CDe 2r<~pXVaA.OU6{4ue;7,ƢXUVV۲4}v˙B*0++2Fts j¥75Ά 9h3d2YV Puu4>*9Vӟ#}s@!nqUk=1C2~Y;Yz;P8D^l~)`9L^^wu/33vB:.-z[keQ6t^4+C/p4uh{ZƮ8e[j汗Dٜe}%o"k??Sxf^2 rQpj8ύv l綌K x{BAiD^]A`n:mnt C*C)4|yoӐ ʕ Gtt8Xz+u^g=gXk]*柉p}Ll.н1SJ}V4{ڳi c#Cf 5kPeV񧘙|60b ve| PgVZN9Ͳ 6BfG)8_^huQ3^ȂQZ!ժ{19;LS >ҙ|&အA ,l}ܞ NhG«P2o `Pm̒y_n^(Ty.(5j:C.nk4S{ vq$eV,@?32|]ffsf?\Uubq]uiE ~a}/Y:򗣼\8;Ub^W{Qdd-л^^ eKސY(ƴ״Ū pLJ& BaL(2 AwL8gqyn_<̵0fQgPkYnW!oeϴsq<^y^R^o0  sq*%u0::`]sejRh%R*t]t+|Kx=b]Yw#~e-|R][^fN}s)u Ÿ2X@iNPu+|@s+n-D *9M~dcsqMq(olS̡336V}0E3RN: */#Qᴻ.ꦝ}8یohM9d/ zPFFJ G4!܏3bWK}B_q k]]# PPIE+W6"TKM u~`YhÃ/.9@?aS7)wXY.v/H׵GΣ_3u*u&PmXo [#+8f_@QpuLE}s A{7UnS+3Zs;(?\]ދ2z4Osb_׌ZзxtT{g@1p %r S#׎!Xwnr|&.Stk }# *\%ٮ ];Z]uS]xcŢ:+4q{JGz)+q20]X9KvGKX/dV?BǼq^3Q۾ܬ{vbVO1̾T}Lsu<éWy?-=q(/VkA(,7ЯYrW+M0̷Y}yq-u8<>ǥ6Ba$t !Y_i+Rݞ|UΠu3vԹ-?gW)]Yx .qWG? E6=夗/Q~dsad|aSc,C0L[㷰CYC,hf\=| ph5]qRC`^.M>Q)@t4SNX/y߬Wo%rbޒNΘĻ7<rŕy\"*[=O.z҂k|~XJ [H(KAK0aR#eXxNY15)/L GL\Η- Ș]Nzz/~{(f8Ttu.[?|@:\]gbԋ>f827ENKHҜ0% }FFG('~IWI V4Q #?y3өԂP jXgaQ>B$mf"l_ƿ fBJIWb{T@R\`TP ]A0v HȅgQr*>Fr̂x'`y.W#lf=ኾPQN*ƫBeZ{kwxtsz?g\b/@w_3"I-o"u e'z R%^?2yWKL_ =ɐc2axjnٕȭe_b^%RUU\F7ЪS)̮;!*];JMt]*CgX9sJp9:u_+^'5Acc Ng!.}|WKՊ9U⹺~1/\k~`Xz̸nn0_{|d_ EvK{pWBof܋(ÀkwPg0S2 K6Jq͟״ PQTE㪃 PuєIem|q( e;B~[Xq[[phSUnza!Fj&a{cW<1wRĿb>|̟ 2/W3~'~ap2J",5ׄi%VaMEPJfcg-  dzV6sUo-Ӗ#J~ {ȉ;jst|F(\˃`,Fnx@JLM3jadFLdģ6S:Y2[>H?p=| ؽ? )|Vl VxU+@0h0hLW86yoc}U;uݽn2"&(g3۲`< 8f! t8q[͹CK>L &ÑH<8Gv*K)2&42E8G<˭5b%»a)̖qps+ cL4:P12 B;F-{ ؗѦF9.ea*lĝ+1{{B)M*fɉO.? *wy"sZֺ:\F- ~lhUoAG,[σ0 7(l}N#y0Йi|Trΐb1JQ_D%b($0{&?J njJf8.EKw?^yPO^z h TRJt%B 8y<8T[6GXx:9Yke>Qa y~݉+06;s)=3(hMy0c05"F]3b Y_6PBz[Zj~.e.hx|^f XQי ,c^k̻%pW@OAu8' SM:w峐0VZz쌁٦v<,5+TtCHcz'K̩HYQҦUĢ^h᫙ثJPbVa,q[Jð>]UoBӛ%ڢEPZ;Yoe{^~p[^h6`vB ZC97HVߍl7ٽ]CG8d=Kv gI4b,7=)uN=Ó6cNbd nMıǘ+GYf.]OfӀ@/:p~: 6UС 7Fv@sp}0=?gAyg0\09'YL0YKFqbnSH/ @v+9YroH{ 󐚹q6sqJ0k)A6kxȨh8 ܼޞƅ LLCFLOò\i}:Qn iSea CY]&~ .H-G)w58}>كN r2,Ԣ g="  X;}":_H] bq`}e%&yG%@PrS8e*cW*`瘚b xg4Vc(JW19+X{b.pS'C0@EORe}3`@LRR-:΁w@KsuGot{֫;!;閳V dldS'8kc:ZclNo˸u#\pJ I]=g{7?ժ9VPf31=tģ_Ƴ:% uܯ\L%=@Rx'7+b8C+ǧ?2*?HBw~f]{Dh1Qki,trBk1п}p}oԜ0Sak:=x!tg{<{N=nac5tpFJW,(p ߩE,W[ߞbno^e)F#sjwY]4ൡtĿA/Fۍʗ{paL8Z0Xs7rgkyƒ.q[_'r|CSJu ?:/#rhSe7 GNvgt_ ץ)^bPZ%/hs,7 lrC撟C>Z*.%c:h9~;@F(+cK?jb'OJ=# #J> Q5S_J1iroķB tL7$u)qk9'*5oX*z+]y[ߓ.RiPdT`wlIV8bya{$g~6qu ˟nOB8γ0ӧԢ79%"<JG.\i`񘠬R/XS}apCֆe^\uMX.k:LjɈ{ ;ȺߩLIT=ϧ-ڸoKBז1TA8:L%b 0/|o_9^ޫ[Gy; r9!'v\CјqR "=3$-ϧ(8V7g/uûߎq/>Ӳ_M3P3Ý{>vhq }LsTV, YO<ʲԠ wVs hdB<[BsQ7Վ%l>Ld82t3Z0 O9N{8R9 ZȋvrUX0Բ֧J#Ե{ F,h##P $?Fes9k1]5}+\}-I3/seX 3ۼ5|>PjLPzEy|/ê/1agG6%o4[Uco=OE . ļylĹr$p|ž׏yOV"neg *0 #x3x]g%OeXuox78/y2į~~oFcZq<(%\Yi"YUff B#<Z|h;#˖ Y)c?c΃k-2əZ(?lUl%9 G ĝ7y;˒mRz0ydO6J߈ MPVXcjMt| sWX^5?^*i9i70jd7ȳT18!u=a|G^\((ᇴgwobǣ`/ i^X=% {P^gw6Yj*LuƢGϻtj\ †]"xN:POv`͏ǿigd^oǢz'FvyzRcoy15 sy/H#r.G!e.y+Bԡ}$^!zeR +~$meA 9uߛ]s*p =Ab;1=hKoQ5 Wf;K` p[u1Bwgb(^s,eĿM~tYq}:t1?b㴾zg3^Yн$@?:ճ'% ˌF$~bϟӉva%`%i\㬹^͘q5NALGд@Z g,`ui*^ĘRNo0ZNnc+jYF&u7Y$0{@sq&7Hz2d;1dkF6'LNMq(]!ֿ tj"0gj3Re4\R-?A}эaEMοǼ`Jn.3}]eʴ``1*jMy b5,7^ذ@.ߡԬu=. u3#&RJ5F }9_r)|`a//[/\s%N&GKr_9|gld>܄>P#"b0|ʠM~0DX]6>ٝ}?;JW*SS_HaWz*; ' `Nss)(7џS2EXj^#f??aa%BIi}Q@I Y *^kq89w,rS$=L/Ymy6~7Ì+T޼Fi{`/B1W,ǖb~1?y>g8+uegĹx @|nжVN%s OK>mĤ[aOؗ(FjFbGV/M eHSq٢j2êC)3W%zFq`_^)=b|O.?Q.-t/ӊvq\:s2MLYf Nty+]afejӬ|/`M2y9a ^F5LqZ1,OeY-4j2YpA*yMNd7-V*P5VpS‡{9k@ۃWFoX D{ -_y䢣fb1dǼ_Po"s"j:]@Eg$,O!*̋eTKVw.(pc^X[6 NL˩oޡNYJ 4P_-Yq׋ /~Q1bV'GxKȆnɄFT5Ֆ\!k},xfW" M/C5_VU9ts/͖<5(VP`v}i|%kp=j𾓥츠)+(Z mK9_8i`ԲΧhd@Gn[|w#2[m*N^(v'8UP`lgKԼc=;e+e84LS}ۙWy3(9xmOHVUO/ o o G+ɎyjSrȋ볎 C)@._95wh {®lJ5 zbwp3vғqǭ!"P\@?)m̻f/^'R! (0J=!YmfL.G-+8ٺ+2:,Tߙ ԷP ֿrWDt[=&4jMͱlF"R@m-?`Fʔc_Eބzxj67aZcbr3~% GmLh>k*K`mHzN:!c@u2oƮ+&T7xp ,P=L.o+#V?(ԜoMB.c?ҌH w=arԐH GoO zF[*ME1gnnm<.I`txViz.ltcsxьCV%*&g'+)cV'4Sڊ>& 00e4&6۾?O08gZ% fNzp ȅ.Oa#;YL{[cSR3QsٸowʹNL3o`ַ af*0iseNGweZ;w"Юֆn)pAmO;ɔ8phg[ rLÅZTpP6j>- o"wDՔ텷V8EZK5d{ꝍ{]a d*L[A7D$7&r^hUMMq8p;(Ri)sWWG3<'*%?D /}~'hh`ucc @M; ?}qSPt\ 8Onb8`o,8'NtJbZuf*jHAH?Q&"iQXt:E|om1| {!8'I3oJAdx:~xJvsDSNQj[Tb5itE?#,>,*>-DM"NvM6w v }yb3 ua',-1W44VeqXF2Q΃%·lҁ_eeAUMB*rkteޢ@ "m|? Gӌ-*vS򼿪s_Bw[-(PO[mDAbpil 'D8 h&g4ڃ%x -yAڷ)L"<8bK@o7fddJ,< :0=!Ġh>٫At~ td0`sѭ_f8+Kmh-a.hYEsɉ*mj6sa[R.z =Z,K8zDZh.2"&gf"vr{D/xO@NGsK_*H ij|O1=r$G+fL@EbkIدׇޟ6. hVr:C%IڡtOtA:ϒGj -idsN27K*9wաI{@3)I6G8Đ+1BCWP12?_!9Lin(U#BPfz@,u};=&cF>F[ݳ+&58*Θ|Y͵{ޫx6w۶S־dDh Z&:oJV8s?}ftuCw 9&6/*i-xVKu>>KW]^/B )-ϋXF%gjd BA^Q>;m-n S F\j)K,0 U6R- WJq$Ƌ%&W))Œ!MvL\SԻsl!daEހV;^.WK#\˸;5){VԾHr= J`mpj* $ XJ za5A͡@"ƋC=E6"Uzf(%L$1?,`OBJEc![Gx8 fVkv+ hvm$ wzm, [VcJVĵh^QV\)UgJuTdo ؔZX֘m6EG[Tld̽{'e[Mmeg&!1AQaq?;.!GGi7*G n,)RwU "n6D QTȔ7+ dk%T-)/+LR F\B-*7=ȧqf T57]Ʉl.`PS"0K O2lT*$({”P%Gq$y59gP_dU6*TUE-p, >sŹOqJs%W7*"(e@REX"bi3-W"\.,lDQYTَ%l^抁e0zDX \ VTk]5ls.|%\DW^B!b-&"PD84l%PG*Q9n4.B` $A6߉D*߈<@Ss2K$reD[&.ReJx` .-e74R֓KlE@I5ȠK&\=LtyL=.QQ([eK0"C";D1+(Xqr2\n4W 6(Ua,5Dq7 BFpKU!*Srv \ js[d,Ё72b- b/RE@X99d\%]B4Ƅ]_sDBiw]|DU`[ĹڄM0S L֪dJQ[4YrRUĄ XrfS 9ʢBյ* R0r6+p($Fr&b *ҁZvi9mubXl%" \ Ȃ'(p.M6-oܰQƮsX_Q5pQP,;jF0Ƴ4@$qqhr8Z=\brie6")R%Q ap`J\רPo*aTC`^l,kWm9,d!`\K9\訩."BD䉱PR@W9V2lBmCl>lWi3*/$| 9=چ7#Kmb C8Y)Y̵`K7h$U#vY3J`lE\J%%˂Ka FWvsיCn};r %mY9R }JbpWØIBqnV nDW[ T Yk=O 1l,NJ-.B*Q)I"a; èN&XᙪLjp" *W%H &d,!Rl@@֚L){.VT!yTB$ 0Q*\}",E[b(lܰqE"HOV(fM-,B+!rcH9A\IZ"R@P1) PGaO1r x1#s +ڡD!jUƶblnPP1 .\c,$P&I YܳINٰR`ZB!T4Ļ tRfD]f%q4gcf0NYJgq]Xd #G<2tr߈)?7*6Xi19%<' ` tD*qQE LxFbRo 2ȨbrUUBԸxvVEeTȖ-J#*6.jx#hёQi!RU %pcj 0\vw4E]B&*-a8QF![l#'爅.L%wЀ@K)Q" SDPrX^)c"," Zp\CD; 4omc,&]HpȦO0TC Jwq9XR"EAʕ+M_wd Q[,ZH @\[ 0`e)lί(dLeXil.:B6쥋q-Q#T)rTHdO$u(hCCjUtG.] V+vY8{E )/K#i,1ZeRŬP°T`)Dp pzeYr\H({9pSj1K}J-`XcrGit@ӐOrsE/?+n-9 -RŶ]RPU ]-Sn%8!vP+[ɇ12: \B٨g0 ^K`>WB]a-Y1/Ħt@6 x†AVX XYrcGxiD dkl|ARQldM]F^KVzbb0š\|Dx)E_]qo T4:"f E3[- %|FeiEnQ6]lj%*۔c,sĿS0h)S0g""l2\GXw@ˑYP%U3R+e%ЏԦ*BUe#m@]}mk&[LZ]G>qgmbW7@QU!:/~Ob0Z n 4EW!kmm+o%t>D2 Ĥl,z24X@Z H]@IqنfGq&/q_uTnl5F BTmɔ\!\0w)_R9h/!6@rƆ w 7̺ȑ%]N_Dx)LOZ2=~@VhgpJ?DžZ¢J__XyKWTE QetĩAՙD t|-y VvuVQ4k[J>lN'OŹOv ) \ Aj"*u1CY.V0 )t7*Ui%9jt i4%vw$Ce%d(1CIkeF,fC \&21;RrItyX`phoG޿?1L"]#t}m'ċHꥣ(u~R6F`GU,:,tǸҨ/|͔J45e)]qayH`dz!7}Zm^ <1ܫ1|KR anՏ!Tw8̐8~~JqUqRo8Q gOP* UGcPݒB]c" <6.U c͆!F>̵Q_# EudsU(@?(1FD?;0#%D[pR-^.EM`ڢ{ˢtJrK^ʮf+PG$;cRB:6dEZ(6[}{羾vK0$ t7Y`_? Un{2x6PwBJN4 EÂ}bj۪F~kO0V#կbD6жp-WA涳@Onhaqx燯 Pcߒ\0@@Rt(s4iLX`<9A5Zs.:?T UE0)9 q}~a XM5AO\[ʯ%ig'"كi@ɭ&!LEdH.(eݱ#XrЌ2] b7 ' _'oU+7Hԧ9Ms9v [ebLKk,{buMPW2 ~'&kV|6ol_AN8$*q8"lh\=qP_<~x((lq4[pGp:q`Z`᭕J% ^HS|OB^7!rRidp}!)hչbcip7rbd~<5uŻlf ҵ.7ӨrF]y%紘"zx~T<;aGZJEK+ʮ#v;T] ˝T(V4 g* Mv[Ztfq^ێo;iaU*rW5(+Zq]cǀXÖ n], u\+vW@7|2 )嶍at_A d^H4r-ء6sJΩ<5+M\ ش0AnRlNe@B#|fhقxJ8 jkN"\0qc iv!~e eu:DVw)N~%(x!'}^cKPE潪;¦^ߩco_%Q*=Q=r;XGԯ_HڨBt@mN?nӂƫPmy(! 4Znx⫾n? 6z\!SwcoJ|1c(>y %|5o ! lxJpM?ۦhrG0q w؜+ڥ}4Nǖ}Rb@* ֚x;"j QKM}_`0P2&hEB)4 ަ"=*i-(rs8P***5BQyB礬l1mWAJ /'3}cGqHJ'y#@34,癡FZsV_,:`DAl~FwgS+ fGL&^/CX}4B|W]oV+wZ"۔=WQ6?3URҞn(y` %Y~% \;sڕ<(?rg,!M`o88@NxTe+\r}9_sW~!$W_+U?C?K+ ^_uR|W_Lg-gps]q@ }|y8JBcG`psWh9=:/7U}b(`6sen0{Lu[^Ko{6} ^@Hm|y#% aVyk"dpV JNLli޸n(+ 9o~%]9谵l(m c74@h0҉m( ҍ wHdmK "KuajɁalm@Zw+|i!A/(j ebUv;3WqLjȉmB7 P=ݿ=|˗x/ &uPKkbk] \8Z/v_V}}R0G?DB锪7揼mnbX^O<78rr.z !C;Tr*Ǟrڗt\tӝ"9t[tpPۊC7?>&ZW?e- տH(N<=GgkzzZ;mYrYN{N:~";' F4^Ur ڲ_&[, _Nbac#'k)GΦ~{_]mӕҝS cMm\ tYdnpR5¿>(%o*~U~uj6J6=F-0EiĮ+.+F`yp d ,]MX9 ZvTxaQV( a }>yZ,SeLp> kAAG"6Jª-x6Z9i`F(9'Dμ^2 t#UگZᆉgY\|#O:~O>RM1nUPm]{z0G|؛EֆIIz>jÿ2489Ou鵴tR? 8o(j}Zw"88P wFMnvXWZ *(&!" 4(0i 8ЃR dtrFxc(K@H[24A*%+}[ TBmOA.wF GCg?)_ W"\ 5x1^\}A`-VF{AR19̣‚]pE~[+G]? 39O Js\4j z#r_EKkHۿd8N'8U !G{cBnBa| ܸzt2TB)G‡S =ub, گ~AnÎ|?S>X`ج?hLuxl7ov\ ̨@|o0ܣC*/Dy- V#&h2 (\Y|NSQ]<-hC ^1v는f]PtsomTAgQ,"VK `.6jWhڧ(T3Eo_"S/bVEJb+`n"N qy7,)Orb5YpL*MOp냨Aewϭ B2V*UQG1 @ ;rkK.\ ܌BgpՍYo~(ڧ;ɩ媨A5CpC .<莛sHjE_wz{We{/ u / "rMx:FG-Wxw HE9\x.`1Db[h-QU~hȸ7E::\Ro7]93ՏA=J*B%Bv{%c䚕( ÙD pPG"5j46%$, yCv9XlvC*7Ĵd+ PgR1h`Qo6F9Ue?uW*S#H-ZqX߲!ݿ xE)*އS8]P Zv%~TEIuU!n ERڨCR҅qD2NV.R+ZTK#Zًj1@p.P.aRqŽxl 0Y}WɸQ@J(U0j%56?oо;eQjOB<[k(*ٌAa]!"s¨=F0XրмP >꿈%PrHȬ[u\J_j ⢟F./+ B@h ce+\˨ eCq=K(wU.iIa4*䥌uaqC{IK7> .0HmWGs.iF?Hv9ox{n:+/Ue; AV\B=!PYEKGld~hPZ))Z7 EB @v翎e ⊫y+4㇣24xOgĸ:Puv/jǼ7:8T J{45En;vnJV)Y[P"kS67w/_chehr#3킖GcA킔еLhśy3KYv-xG+ ]PeeNnU5ԗ D%*p5;ķNPcY- T,.U(S[R2ҡcFH]%?TLO=|á%qǸR%=.4` aTw ;_cSwY ʭVǨceY$*2{H~RhF,SaP5JN"lADD11 QM?sqȯ /A˰ Fvui1"rh£H.DP @ I!ơE Q4xcCbkD7uI~yr*+Ĉ2l4ԞSq~|Oxx+XcZF7=Eg'2MBߚ,X`Gl;rr]Ys1*ψ4J#es2g(r ^Y_stJc<+!k9 DJ hV 1KmM[ӿ2C̏T(*c.- K!R ~`hD S^+iN8mcbU)Q` J,@5(9 Ơ/G_JKEn^5dZkM?XBK&O)R'3؍MxʃnG)^V4[{1T#^DSA5_\XS*c;F5@B;p,`ng(ƿ s+?먶O55+npNCB/r~`?BMXOQ0PR )g!!HnGlEx-5hZG9c~"\@7!qN>=Vr{4 e'3 ~{ͳz%#\Z˃tc#`*rG?*aL导p : d ћ-)~79( cp;BOia9h0OFL>qcE"PGq,C5o*y>iz'gc2%Eb/[?b8e9yAB}`-Q9㸹nKZ72~WjBsCOp@h]|kh KßEqSy5K;Nq,CrM6 %]KZCX^zE T{jwS?OGM[*Hy+{˚OV@{D|q:F6S}"!eBsbe[6kG?Xl*b UQ "+y!q*s_ mYטУ X [[)=)}!=䢋G /R  t%4k.A_n taTී> igx!T 00 SXґq(.mÜoD66 2ťh}~iH/Dz0 ̇Zxe?1*Fظjv,卪9Z~b.x.|}bXAPj3~9_&e1QTKRkd]}l9Di&e̦P#o1ݓ9pk٭^+15* Kz**r+9l"[W>&"v0hĭ,(iQW'oysw8{[u1~eZ\G;㊁%Nu_x+9M[}7V'p7Բ2hJ|.VYVTmYI|8&Qr7cT}ߟ+q[UAs.R\!#,Ǜep]ΕUtoWBNU7W|K%kY㎘&`|] KSLKe o|:4:[p ӢkT~%jbEi$?)xE?xR*(c(4Z!Ƙ]٫dh_.ղϸ'CQK",q dJ0; ]6xqkcXw ӂ0#*dx⽿AG31YS|};R85剃^al_UJEdž 0ڿ&8Hrr,uӌω+5n'Z7Zb+٧7Y-?}Q)WWkzfҮ;p%YW As ,*/@71ZNxpC% 4tbxbl(30*De%E{cM8a'A() X%Wu(Qe2?d(ǔ CʐGѤ[}?W#C"[z?A&ҋE& *\GMX3fk * qn쥄UD-Jbjܖ`ݹ7^A*\=FT*sGlxc6Q QN#ʳi(J] [1c`Te@64auUJz%=O8F &0V28a5-RJ)d0$k7Jdx\#x,'0V(YԸ&ҝJĂA [ a"ԻeT /j,PAT4+w} Ra=53iSLw>L@eO(U"%nvJHa.#Ly`!6YSSt'TF_.edٗp[8cYW$t*rp"F&*'Hc_ .zEj5Ca ӜrEψpꣀ#bT*F g1Z>?Pkq;K?,#/Z[ȱ `+3-Ŭ"ϬZ%p[;SU dbi( PQ@EIF|yAٗw1uQoSa59.+l7c3SI13y.!ou F{QIzJK|q1 ./Y ]_w/Ģ@ ( F^fbȋBp9F1ZcmkWQ~f5E[j@/yR jq4܈ }ۡ0:/  ʞDz;a l*ؗS9(O[B\x('%:G7mH2ⸯ(O22P= ]=A ^K?ޠҚ ]^ t _Pr" rgVR %je <]"8eC"1z2$5 agIy?1 T Q Z޾#Gf+{i6VA*lF0kth7|~"BD_@e0*A 9(K;c^Ey2V"b"z*Y.|c5kЙ٨$wԠƴ{K%6c6%ܻdqXƃX@;/h>sp[Ns>%*^)Rŋ9v;p("&%[d7gL` -]K3]UQ R`"EڝAUUL`zLOpKHP f8Q˴ewO2/agynC*\Q̥-%9w4=×bzS q K/{P2̺D#ozzc.ĥ*c"RQEhuo%ܳYp*JJU[4iq`o"W j@[B5d@#|6|˶wPw 6, =CnPU)}#߸FyeȐ@D.K vjo^8_yW9%@JR"0ãȷJ^Eؿ9=-u4 @@Ep[ )埯sXCZٰ V' >g~p&`pq%K`Cd`eD%i]Y]P2S1C!Uem9*O19.ώe*`c8wQ|^~Pk(/uĨM@X]S@RF6sG,ANĬ, T$@-ec@ l >r_?C}ۑAĩ(2j\|ƴjJ#y "c UA&)?@>,5D[ =$#p'R!vp4}ĸKn6u{-rLlph£n3\%wq`/$"$'2mRe 6z1  A.lZs̢:cgPJYlT 3MQSB~إ8yE%1qrDoÊs% OLw9CW7QbW"Qr穴_s QG4-MԫȔv"Do0n[qLn&Mp}[6y&(N0TMUX[HDK-D8+v cRq'x3J~ }EZEdC21] -h#1 S7_/\^)<l@PZi #jqnZRBC+HRy< @xG_Qe4_R8XJ/3wa"a, )o2g?hvPМ́¼dTD^ ]É̒`+G4\d*v p,of89_M&£.Qj\cWp wPE %͏"9YH[`x 7Z"[dr ˸,#-d(Q̪.yw,)'=K'gNY [I~Z@(F)"W̮A56]%j\goH PA<Ι-S|K W(qh-/UJ8́se3O6r;A4;llYM.|@/:XҶo=MWyX̏s:O8'sMN/tǙ=βnx0:8[D M>*qj˸ߧ9'/5%2BFw Vx % hWfs%DrM&:86x6 N'Z$&!1AQaq?D]Dϋ'_} Lk!'@ g.>YEn;c-(!FP6ڶ+/{M%g.b%VԄ⚩TE*G~cf&q^L:"(Gvm. /U ΓԲXe;6p 0l% d|wv?Pc]FU+ 9>һ:0Җb &( 'Pm%ծ!E-$J$ޒ"h3ALcQFȁF@ .!%Qy[n. Z"Tݎlx`S3 _ _N\\{8WrW"и jмfFwZsŭF #Ivml˷'GGS RK G7 T[-#< ͙Jw,MRs7i j1'Yb̺=*X4 ͔K1Á%؛X1=Ġj yd2K"ⲥ4Yeaevr3!mߩUel"[QqW ~[6 X/H9`v&m;U`UԾ:(ES9k|KdZ(dhG 1e7g"9=&[&.mQmEbD .zDp]ƛjXb0AaQD:%@N"P,9iQUL]8Wm4>ݕ)Ն;wT˷Bɍ 1GIi{8 |%sv'w YQWQ ۛD2X^ܬ@\jD|"k8A^w-(E^n"g KځM.%+}zlC[ԩauq7^[,< #ovQAGf<p,ƍ D.X`qK~b/X:w Q_Z, uĥ{ƾ U~bjÖq),$+,@+Ƀd:e m+/0[D Pdh7Nf+ĵJvq.F4Q! Ncs[A-FL; ^cjNéK*c+e(%KUKn;m7ebr-417D.f=Pg[W]߹w]`>^d ڻĤ_F(!W+ۉ5Tf q\%\['ġ*/0ഃADo@ [Qn㫜ëI3\@!vJc. ncP)K͈v>Y.Y`HO:I Q,KT ZȅqåN4"q+hKݒ&$FQ y}Mhx-i 舻WSEA-L.Y4xsT\@j[Aa3 YhY}EʚRPkrƎH`duw9+P-0fr+mu>!IWo;[+4;-/WcH%+W۴"t06Us@( AF(8dn"ƒ=m@D)Ud^xq%*)}sFX l//&)%eQcU9"XR~q.1||¯z9ʹA+c30E9ql֘Qq>9Ja_Ȁ*ICC:n, # CoNeF"*P\Cq)[Llr<;?AHʷxbE꣘4w2˔X]CLP6!ZR,;m5s62ĠqR%H!X7{$ʎ-Iu G'1>/ElCpc#өIar]zx8a*Pʯwf1J_=Npw(KZ(QFDW+P@Q;YSĺQr"o\dQP@WPAOeq/G2|EEq PTf3um 57, ?xlv_{wSԬ3p>m}Ҫ ak]~.URqS]1*{7Ñ..CԶ(C)aϨ;=CKVnr4"j-Ps-K-B#%]d\ģ9~ZMiK)iMBSQ(p%Քi&J؅\lPF&lw$Aq-9.oį>q:E (ȗV `T̺Fb42m@VJ~1Nchazk9|/9e@k 0nG:|!22N̓(lE,F. pqRrȍ&B'`C;2؉Fׁ?#B:a,xPQ/a |@VDxO̳-UL}ʁE?pSIΡu\MX#r "16$+`ߚ%%GNĿP aHJKG +.-Fhf<j R9 -9-GqK/+bhْˋ"Tzc`@fܨsl{7V/(>o?P.8(/^ ~]Gokvnsc$RkMH>/' OSmw Z_/˚Z/~\:xWѺr+h/<]`qPVRiu_Ǩ LF9iʟ"sQmS@DU%) Tґ~ss<؀K$XXXUPKWP# T ZJ 4hohۿh9 m!~ۮ ]W%f@цj_$ W!GG/5_:7sq,DL rn"!>wsз`. y{fʯٳ5XI]4'Z9t1 )eyWghVS?kTPz>hzO7LcO2T7J,U4v[(|A͑/%)%UDjLsGR7U၄v^Ü`,UB jй}J[(GOQ%`V&9J[4^>E.cpa>xz#Fohn7I*F"m+OUHD^*s_uT+(j꾲/>W}Jն|B}pc &o}F Qp'+x~zZղP4sxHXZ8E ˀCXUt Ġ;(s˯nEYH5~Z;".x} zқ+|&bAϟ5i9{DkTF|~mV;^{}HhɞeC0;.eZ K1cy6L.?Y,(9jKQ#WlDsA.&Q@fձ T\Q8[.d,8@yKx F+[s~𙁱2twM+Gz t뉽K2נQ,]teؒkKJO|D{^8؀O5C|Л߀Oq¨j~ !q`P@^pUWCϢ-+,v<)SA4ؐ\`49xu?I9ljzrz O@ ֟!1}`|Ph nq7[QRն-n5_ǸIpv<@[fp~yFPӤ9Zo>\m?R.C^fɍBϴZ e2YA∄2q8*TN`P(wEhAlfԑ˸hu/ .VBS0 ҇*R^r8\19:NXi1H&*-{\,+N~`\شC e_5qqB;6]rF΢c]+Ճn+ Ϛ ʕv$Zo//8M9$,c|ns]cOsۯ1D-mW7\^AuT.{JgDuEm`YIXp N|"`{7mwHټNUbLK"c\ B?u ?_518}:<{ O̦ @v^ }ĔwB+V_D*^qHp^ H%ӫG }L~[%/Q(^>M[+U1⌮ <_,86ϬXJF{)gb%?_\>󥿢hW'I "s&sMaaVj  8Ε)X*n oNhX/ h W iQWܬyh&g;ka`QNO Xڂd5,Pb$\ 1mC(ڀ_P :=&!䃏m vA20YVE%__?"/W > 3^zz@TX|BwecPn~ظ^DBUowf "a^Y9҆ }"ÚjP캣>ӊexP7&~edy0,Z=QFD acU-5mgVIYfxQ &UcKEPqHHiw~ep9+b" ȀaoP*[([Q!fB̔D"VZɢE?tZD+iJwlu1+K.   nDKjg88ov(iƣ}Kwwnl6_~{I@rƝ&mFg/л犻 $UשfRE ./y1=+|cB íumKY\%_Gif( I, : h Co0tHey2򂬬:5@DQzo`X&`XVPQavؚ^.7`bWoq8;VjNo-(Y.qE̯9r.lỮ.[y0 oA Fq9_?Sn'pTq,HaRـHJHHfA/pÑ̳nn(֘4NPHP4'- hu"jS%L*phWwu:gVK3/T﹢qlkYq,:)`F eSg|2@ _W]z0QgכYx|WCx66y0>ۜFywl2 )~k:Յ9~ڲ|:==VnScE6Q F0ymm7qXŸ6 bǃxcxUQYU|J%u,ʎShK5}4[e[ˋ_@%|'pZ;X%-rP+z,KEWj|B4&)IQv0^}cA^aᄹ1~BT1=n@5&V! b-W\adf PA{4l%MPU瘠])=A\Pg-^qy.^2l"G‘?"ZhW~9 (sa+['(i\i= k(|4U:U }sOR@,Y};oq9Uy Uh.Յ(p]TRK KFu(/U[H]W [krLky.[<؈?ӈm6ԺSUtm~at]UsQL>t}=.+UUj\5*`X@;j;D ?,h;jA~>6],ʱUAme{s.ʆ}D7]Q!w}A$ mAW fGsb)n#%KйU,mB0n'NnZU,}K]L7a50i]bF ?EhOV5g1 /_q'g CzKd[3)[*@oRś.auq폠җ1x:K0͑?ݷ)9E[w2ݖGj xdlO pvШ JFS4Qm͵mP [R5s/TQhD׊THHjvv(xhнFjS3C.~ff*#7NPR{/\1ç, |1+o|"Z׎˗>hhj-;Q1PPaڛύ)?Y@&ς波0{j82cr"ձ8ay/r6Uh(aR".3uX --t*J; 8 9i Tw+\b(u,A'LUKH,VځkYUo%0g'p<.CNVEvb(vEX +(D "yu oa+"eS0SMO-\phC+L/_*\Vۿ%w [clUfx`PҎCBfTZM-(5!S[%&V=x,[E9` QNʭx7,@PźEnA^~F4-g03j8RP Zy}!tм.+4K'Qx|k!E0O; l*HEDFZtREQޮQ#wam Rf6˔1\Vk2ۍY[ےT0ID1iĺ|V Du;#x,_qR5]j`QR n3SDtr4rCJPRObX^b~-ψs,_((|e YUwJ,+5 VW%}c i 8iUoTx.~i?>Q[U|/Ow\e|.eu-x;".CN۩$ubÀ~~ŘY+9g5E&ߨfibSp 81mՓ03-AWы^/>򣒾h]ilƺG~]~L8꧆r+[[z>e Qg{b>5Shf^GyCJޓ^+ y:a*ꕪ)x'>HjfD& RrUK)xZȔBob 8)Xъ3*PKEA>4*+V4Z}6WD\ XB*"sM@"~4eTU˪vl*!IĦob]pm<-6Y{|ݿZ >9sU7y\HPKE9c| [nCR lK l5e<_׌UB㼪aՠkK[V\qڬ"X5bXZmhlUԞP}7 X,kR jI|B^m0V&EEݷ?+#|7JXt\yJ[|L"JQẄ*łU; [sZF _KtRC.l#/T.|ہk EKDpj[8B"Bq^.q7vPAE0-U'aʢa-B bW0 "Yr" `eBXD7 |N/>x@X]a0RGByW@ݧ+65P{UF(  ]JG@PE%ж*n1ѣ\>/3P끧fVQ#ۼ~XcMƸ\Y /E7V@ 91/ͭϨlm-}<\|d)lmՠ / QL^x2ۆ>̴As|4Q-.[,(!D:- Vr|%io&9-JF TU1Pe -l-ԊT0')ɬVSȷ4!OAD GLj_<8E /!bp( 0m/7HWU7:*EW m56SL|Vu2ȥ Vr ooN v۶_ lYm.T,hW)\)(,*yY 8Vr?U=c٧%]h:z` \uXyiFΠdTon" "ZQkvZ, UiKEjr[9aM5u Q.M*0l8sp/T憝(4EuQXoKb*}vB߫6+n"qHVM)]w+-gocRM̌? K%\b,oR Bj ]pk aTPqR'>o]*\Yt().0:>G]f3+4WcyqnoLo-_aٌ\2x縋Hq :w7.[ *$. FrEh 1NX&7: S.х|ZZf{ yn>C.:W!:ljQ 4O=|8E*ֵV ܖJR9#TsPvKWo6wl.4yI̺O\T 96A7^_.  ;)RPzU:hXt :6 < F{BdÓkU#$D\2IO֛[_4,Q*{d`D`E"M)iYq86ֲE1R-5LJ%:&K(B"" A%l@c?8~sk3f %c;byBT5 v1u a19[?0ZruHJp[p0J[jl 4Wp ʋzDi?$jh /,ЬT-_^%p>PZCDTU#MPTkZ5E"}nBh{ wUq/<䧭^r >liU77ww7!V/@}ݖ4nR/Rw~`%Ek6RsmǀU{H%3ܤqKPԴB~b,p/) Cˈ+*W% +-2en`v s4'vKä-d`8:XsR!"#3QW*W/tRmß'4& \ PoD|T` % 1-X4 )7AiR 'J٣P6RKdEҕ̪DRr< #5ow{0!5Hp6T5DkT*!jYU1fWµU,Fon] <'YQ}uU% dͲPDDjQK behdVN:[NQI?{㈑+W1B*pE?XP7r[KP=(mˇXlPHaP)}#ǐѧQՏ_qBljj%9,1-%U#uHD_,QB@UM6ԶR߂rak N2 u_<ܤ .=^'R(n6,V` O "& {e̢!"'=pFt2bx$_(Ik y&먌nᩀ湎\b;iGP8Eg8Kbr&' R{ *PTƿ$/5sekl_Cc 7 yj>M @Y_W 9)` bD UW LqTE။W/_a[(JA}B"R2K={PΣkE;y(CAQaȔҤvy!i).~57Vem[19b[:4$@~n1#O/u<ɋMgRJQ O~} -.ZN/ B|E c [{O>|o[;?Q%?r7;_Բxh״ krcg^ez$_3sǹ@~2䮁#ZYKG΢Woz~ h3sM& O\ԨxÕ),k_[Lp]K)z⊘+%R& D5(b-'LE5@W_D頚dDO;0"Q[o4s)P+˃e.qa0]li9YpPx!#'' l64A`,-yYH?騭lP:>Bs<(hēZ8F Ni̴kWddg_̫ @arF=ťU'tetbĪuyipPU*wbQ.[Pr׻ߏ>%gh^-)s(T tˌIjQl| tψ.h|JP=DmCX+m*-h/`:iaxE*\}7Z+aSFh%#yvW 6t'u*38. T~[ 8M"7MK|~+ %\KU NfqbݵAL̾fѪ,֞`! kb/W)fψJRx1~%U\K \W<|DF˺}/gJ7Y,;D?K2i_[mbbYGܺ}Cŋh(:F]8>r1*x+$ǖN.@%У7j|FƮrWT%N_sLMxM+4~jYuT!5 Wı-Ĭ9W5IrX@p4P0?z^6 !FWcBn2SS0_; RA G'( {/4=O(*&=V\Zu|7s[=`-lܩ`L>iCwPdm8BA ߨ*tu̺/Qe?J v^Yh9Qm73tjC9Cq[Ð rrG#AF4  ׏٣>c'QJJ,zN7paA]4ˁo/Z(-,4 K,/»ڤ.{șy$9:سci>ńŞW8+;o; ד/uԷlء?t0XUu@5r]!$ծ}EK4q-$EhrMd> !W9;<K4)~f@Uƛ _(zի_H{%5F".-(~bb9x3XԢ`o8q췏{[h^O˕ʖw,/&= q:ທܴUPlE;D@P̧ܶDTAPNQ<,\ˑ"^ y**</mW31scqT]g!8Y)X= [at&W7De(pi"1tP{M08">;@qOߴ OG]8si [Ǎy&rP"jq.vd*"-JCIl1e>lU%/ |K2OD.Y< Tg׋)x 8Rh./]4 Xlqr0ۆf@\Z+SD?f#GzT'ÓSI9j=G-O5_p*= #])}F)q(􉂻횫~~q `y~r?xяg] Jo8 H3a눶 ߀ ƈ?0f,v7վEchM*y#b0Խm<4 ENC ro3.&Ņ JBƿa 6Ebs]ZfPC>t}$ZlO:TS"KxH?-+9b׿?x4Kݏ(>Ȫ!A#ʠ(̰;"l2 QDEmJAcv[^S+S̺k e(q 8m t2`x e ,Zꆁe&1QoV!q݁K!mJ0W3~_[. ە2ٌ̠QVCeOo{)W9KKHڟ6AjҧPneCsDiw|B〽2X`N`HPL"ibv!T=7ckR hı`j+yG1+VnN]F.홫&[,Fq4-[0|sl ￈P]R dW|CJmn" 1E|n˵9#ke`4 ];s;9)_yJ\ c}1x6p]"FZX<*&s H'ܡ\F(XC/۶PEؔ By 6G6u+Frw LIX=ӐxL}au-W7W`9 9K\U:-~^HYL온p#g(P2Z,է)@ :-ZY(r ¿YGzSvY ea5[6 M+IbH(]З݅JqX!TUb(J+i_$EU&~m  ϼߘB-oPH רB4Z ^F mīx3[ m_, $bKnƑ[PpjPPy;}ޢ%Ԏ-JO@|EGPq'"4tv4>hrqk-E') ȭa#4J<@VMbZ]iJP^}y^}ky*SUvD4F8@qEc.AU[7a1kXʍT7R[Ԅf7TP7-VAsEe#cıyB(*HZTZ56pݵHpt >+_7qxEx)%cSX3S -sWX.P.'%RҽKd`@ѕͮ%m>KL[f(ݏMx8 "7=}|˒ҟf_튀k*->08=c@5``wψHR d` a(; ߩ딞/̳oF5F%4'P[R!S GKLN¯}Mxe\~]X7:'8 EBBj2 D/{o2.%i;$Ҹf"4vYm$’tۍf8 52#>eiUHcTӗy^~5=ä.G&B)\ v?CTaE&F*639FBkޱ} AI5;Ek|Fר 9 t g1Q\/5*BoTapnЌR%Mmx%2@arc` %s,q,NMqR޷ԩFlq]Š72l(}T#-R,D^X/.H\~$akiv^=1n*2՚x޵ϛGxÂ\?:&&oMDS_)"E26z #Of`Ű-!1j[ĝnn . 1Ȯ=`=35Nf:t?NlT;}]Bİ[-̳Z7`dhYJn0Jo_eBX5F:pD@Eט,^az,b70SR2ʆ]r*RX-bZb!y6EC2:BQz? )TCxu "bc!*3SϽQQ96vIAݲ"Ql6^Lp@[UVLt%̀I~f eP @/?}*Ou% ~@CIsq ~Ҿ[>!pOWlgI ~\521Һ>piXURʭ{3/{ s/l^}q(2/ߖF_h7?Fݿi*vf{(Zd]ط#6Ǟ^LB,0< lqIw,RT -cARYpI/ԄT|Ŀ$9,^TjE&0InF6U}"3qX+*;D~ XAb`DRq;*s \+s CpR!?0q]O;i\NLL(q  nQ aꏛ~͠k+tzlVKتVFC(Ze ۿ>W[Q]ǧ5!dmY+JHqfĔnם] TÉpן+ig8g۝rr.4s|LT*aK?a@ģ&Cf%J$:L  s5fL9A%eNDV/tPxcGBҸScv4\M|@#ch"Z{>_)ڀR+0a/3 &!1AQaq?Gеg.~5D;߼DF^`nB^^Zg'bHA>M.F^L5֜kY\C.fk54bu?i nu[ws\8PO8}a›N0d!Aw|]gY.^yʗnmanQw>xw_A!{.)BvWO p,|1Z%]ĜNvkLP`x=̛fWݙ“RyD'Jl>yC5vs40DH=`<0qG9)2 霞Q=dቯ?sw󓈠܌o˦oq B/z|ȮP lC VOB(ԷBxDG5 _ cz]p4JZ:8 y~lHx6Q>qe9ΗXTnɻ~1" |x"IO i* K wh 4tcϬ:'9֓i ǖdluyP'Xݳ)l FROr {0,q!e gG ɀh]t=b03ޱ4|"ҫ03osfFyΛzc9pV׌a~p AYFCn-a@Z":"EL[w:!iȗ^A;rv S[ @0(BO&|`[NyY'._Q2Bw=Id:SNrRuJoe÷5j:G." ԭϓW ?QV5ˤ_+}.sb.%b1g#):"dĄkU]:l =@g_9v 9^b?$Jf9&(Fop͢A Zon|^!*it@f&RLTAp(6A4xzxlC`O 1"q]k󠮷N@*[o\\8lh_r/a:<9cŀ|١NpϜno*8sfRiF/xʴ2oFq~ۚм@1ICvVs]2^Ĉ98Uulv3`[FӋc{?fm$7O,/TuA+u¸\-Ki(}7(qu96nK7^,v.(pk+5DHBk.Ǣ҃S|p/&D׬tSr@b\@ĬZdiX)!K9Ys(0Xռeڗ Uڡ2Za`)9Q0$iPn6E>SL\K/4 }QI6WoL]]Aщa2tKy8?܀`&4YWXR"P4t ^0'xiExYUs;fIف}\0% 'kW(?t6M^,rq9.Ԭ8>&wkjb%Ό*ѭ|o|N9L8V* OwlxMrnC-Mbm]b;q0hy#ZEߎ7y iA})E[`/Qš>plwy$ZsY(`ҊpFˠ&l(*wairZ281f`݃\z%u˅LzEN`T TZv{S}3^A4n`o]]ie!ل/8ޛ`:jg&xZxaoσ/@uHmg^ZHy&E=7g\ Lyz+wJ God vr *RFQ25NR490ٯxlj40!)ۀ {Ɨ S\ǶZM@d#wF߷<.5EU댍koCO$8xEr m댪T47w_lPvqY[m$`MŨ;^. 6a͉9$5Ӓb9y /vn AJϬj<_']b uc TȲwVs5TsUF~` zy|{w-& /'j.$]h8MۍSp8M91M ѯ^NN{ ^krNe#e 9` No4hD)8ʫyiٚ';qhk~q٢y&EW! FÁ.8fB)Tש;c\Q嫛a/ χݏGvjq)c p I>^8L[GFNigYuzv"Xn`{朥6}r(->1,Ql`* "BVbðWdH1 }~Ũ7jU>\Lf(t8 pM8WCcwӜšF2,ˮd PI +P攷I0BC&?'oxs  r&IRce1{j _r}274uzMk/r[g0t9wUy# qQa"s#Bl/F0t ـҦAɶ{uڻ90@qƮIS^KǬjBb8+d>t@ j >`Xv@u&\By{H>8ʻ-{|bW9VmYe;~~X{4'SH6y*q[q哶bb8~BXTIe*` u )h6؛`z7ө@ݛwEH+T` @,4ppߙ[}HC׬%[ ^YKOے;qI=U'L@7#Tul#'wqw7<k*dZ o6ɅPxX<1+uԥ^m^N0% avYWrxB[ {8=oloȇfH,#Cthq.ܔ0I޲".<`J5Nv&4#4p<&; Ox9˳tMSiw;3Iv\e.Ϛ䆳w& lMhBe Cy5xջ,kBvH8$_OchX d^Er6rF<ۗE[yQZb [իW( P?њV6Of"*/ 9 Z& x#P6Z/?ro!҆𳐴x#iG~?`MN镫Y+p&<Uʎ/ @6|?!DW;qGqs Wi^py.3GyJZ̨&FYz1ǒ+o*c^m<\Ϳ1P@Q[1NꞾ0l8=4a`:j6NƾeL;YsK9?e;ANkg>Z(W}`N`8[ K5hLх}S{I&jx0FD;ʡqsK@ [0r1t 2?C${ Ug;_^0Wu~yȁ8k6T/E4_.0GF<'E69&sn6G05 4s %?0(e抯vx4d8cZX=.H;:DI^p"iD9rEKT;PQYn 6fqdS YI{fCLT`}#3FfP6 ciuq 9 G cv@20jSǼ . "^iŎPblJ|s/ #^~zk| r8/`+1q`3f7Yu:m @v"U~sZ*=J,ar/EcM/UnᏍbDw˾7CɊ 3n}2=yhŐMQ,zRgYZyD7~q(3h< ܒO%3p6OPi?N:P0F8oI|]O;aY %~0JL#'Ty(ppb/{Ɨéw1|bb29һߎ]T@yHt9_Њo>ϧf3{͆w~q "r^)*˼A 9JxU MƽqU(MfQ@،oɉ=?4)D X*"')7dâTr#\tƭzAI`qB QnwPO4)a7:M!ʺy£"FB $a[h6hp$8QCa' >@CF[C!y =xkg&~CW&*>7rO:'ކ׌,JXDJyanL\wy7:0Bqz,4% M=~ߌe*M`0xFw< $=sKƄKRx D$b ĭhQ71Kkʕ񖨹?8zR3O SQ$O@6OF#Eb|Ivw3{s!XݮoE&ho0F IWp=;GW>peT#%"i8+w> JccwT>iKܓml]Myb\ |o 5)~ %B{&G8J^1np)Pv>)Q:&dTFY^ޔ`MhMy0Lm7pyvG N z7% ͦ?) LpÄE̠ :7 ^ul [ÃU|Gذ4Q/ćO9Q ܠweVyϾQT$c tȨ4|]ucW4oo/k7LJ|9õs1hR* ݂-?$bS{/.7ˤso:C{7.mD9W Sp #7$8|X>nio |rki$8I3r0ۍyeP%OYxG\"'\6(o=p*5 `DjO~nn5qӚ$U̸md@aNۆidr8߳c%z Ӝ&uY!+tSH} _’f [b`>M$P7˫f$$lXd;Pb8qPt{*E "$UeuA WEtq1n!d`J%Rwr?GauP #xb[aA!D5=5S8pNv˽rGl:ۀw0`{TJS5WU5@ky0mAnsׂLf-5S˖jZ 56JG_(*u"N!Y{kf(2}@6W!v{\:kLl{Clb}#wk]bAq%SXƼav]Ov 05EfwPm6v@g+D`Y^n?*j8C`eϹuJq]˜޳mf1A1[3.}|qv}d! ;8T3p6!CA_һۇb6Rq% =p*1PJqtOjvFLUIX u&fq)Z^`8ɷO'So;_:U9Q׳K =~=T&O91ȶ܉ *3~0EΌP5~à"[;h5x_,!'xٔtev_$')QCF @(_&-#21,f%@/+<EYvu#$][I OX٪,+IMB4T%BHL@ Y&lVպ 4N1Լ5 `V'd6q^N0_,"oƓ{x@P8rNhG 9L̑rh)MB >/  7#Muj ]uG*!D" @̊-:8i #}I"8N?O'_lAbY+2rb#2itKN3Iv8ʵ1>1J92Ci 7 6e2 ն 0Sr)CoXۋ]siD6a6|&cpg.CZ,l7":ʹ R{.Z") Z9d@)tWrZm`,Q 7!!g`o z5 k@f8m"2[[Y%>xm*M)hʚ 9@+dl,%qUZ/\\9`@tI KQj`:$vzT>& "ѭt$ UpDЮ. 'M gk$/Zvb9J!f;kHB"6s@--Y^/ף`j:L$/ p=M/`#eU`c.b*4onAmx4BGu"ˉ4dٰ¨ rn`է40lc%1y= F *#`e]lȔKًQE]x&;Z}&K_L0/voZ󀨰dxAFlr]8j7%~,C}LXм$vpO׏X//u$f~j-)$,]L*T /xW}]@$im`ZwAnKDW"Sַ ]mOhFYOY%5L$O#6ӈӶE3fj;^nو*i* 7Q #D".&'5y3\.{W 뉒 b]QK) p 9xZ7NހۑpA,k&vP̀buUWy^BD\ѧFVu8Āk.%OPu*h֊>EbZ.~QpT#(ǎ 7!zȥ)wQn5mt'\l0a7N^RՌ3KǚFD QTWuB6 9翾 R'9-`fy&ԁփ= ^T`Q avE2ڄ2TA ۔ :"! fPge4\ /  dx (A4WF DhOYkƒ} R.kˎa3Bɕi@;#MӍP:/P$*3h3 Z7AH: jӕ|UH:*3j'G(G,^bR 9ԕc8T9!oWTh-@n笽ͱ b4 8]ɜseNxAG|μa./Ç-ozB@6eDeSQ- T+@)L !@IT\d5׌~-Q@O]_F6:Q (!F'l/d"c<%"ihtHN!s qf"Wj8*c^c…] 2@DP{ iHGyk:mp6`,_ _4L&bMhX`d0!Ŋ*y8N;+Bh 4|[ЅZG@ؖi˼;ZhQ8֏Lɒ(;p@"UƬED`KSʦ ؕLqnh75a-txTTI5t +Ԛdkke؄)]8Hak8u*s' 0b$6$d$h٘ 9ӝVQ00|k_@K}I|Z5@Ri#CN"[hTQPP 0ꂥP@^&&{\ir[%Ӽ jyyTؘhs "V.T):/ǜlp|.d)[ŮƏ6m0bs1bv|SbWNPR&hu;{AYc=~]TL 6hqȟ `Nk]uO,JFߺڡn" 1\Jl0Tpe4fm!1x,Ypq9o_F4Ax\Mw@Dp4WqT9^yQ~Nrk0[4pߧhJQۏ6y+P160iqÛ)YECf+'Oް ʹYE%*eD-Kw! nMj.P ݦGKń& #ZN7 h):U[@IJ4Q7|ۢ0*+\_/,$NpėʶvY tl< \Jb D g=ަÒ++Zls k+߉!C|?_-bj;w. {S549i{ ۻ.4MW˪צZWq/|cHE/pYp-Nb<#uk[+v13Q1+jաP=7X¢D_ nd&p07SIgYӋvǩ20@X< GtԼ}q` "ɗA;xNxn*v|c 8%1Z&HRryJhS(-.?znpbV12kwsg>T7p}Muf{{O!0פ;W/aڛ$zQV;! Qc@pe9_]C75zI8C#gz8DF̚TQhx\q-En˼SytzɃDw!C<~"1Gg!}߁B)@ha͋3OZu!zۀI̲@J1-J>,F 29ɵ$2N,M@W Ѵ|[`І )p~"ak(\`bSnQ/) + oVo:)GMx8c_X:# &Ҽqaا܎ZpF֓s" tۗHu@;AK&e0NJ c!Ue$O1L ϽDu7(dHXi1Mls Cje$ MJr&pNX #$4_⬣@I3Fze!MM1|g\6s^V:XAB(<-1'&UaڏXq^XmCQE%cu2{A-ᦵ]mu㱟DlRW.Tu[Цà(55]q#cV;ðUw\ [ps;FF3GiE5xx!,֯Kc.c= IBmsxc){v̴k8P(c7JÕjt{?DGˇW|?xȩ/'bp\Кaq uGJ%x0H &u.=Ŀ9\:AT`"Be PgIP)q@ix hE0b$n ¢DIQꨘbW eI 9K#B.AvɷMbAd8@'8E%H BL;*@91 Ҧ@x]>x2|$bmXKxV@2Ť B;{gXcuEզUaKͥ&EA6,L0lt`aMWt)ePŶzluc.RӢ{XF׉msG3cvƱ{?&H44:ڇ=I1zvM'qPnQ^5IxyqAh7*:4Ëu %%G2%Sg+;&fr+Wgjvbg>l ta k*\r<\'0#4 r<㰚qx0w$V1he ͑#ؒ߶h UC#Ev== q sΘ(+~H +I'$*k%Knr*je(s_`*koI)F?eЃku($IX}6i]d Ȗ.ƨK$AᆁEu]R 3EwBkɍ jViDpsԲd y> Ȧ!UR;5Ek9혤 lۂpɚ& 79v4eTVp}V1AmrՠFA чdy fNj `.<.Eiֱ.Kna9!VxcepVF*n+j%=nI{i8ak-+i12cTV %6/@L:+<1!L@lf5(c٩^Ѯe,cÊRp`&JrCZNsWcU~lJ !>WU`Gke-@TALdLѡ'KƆ@2"(Q!!f y6"GQ8fy`Q'Hx'xFXN@ ҧ LPApTjPts$ `Bm#]9hVFiw_vCI8 s'7 p#߬BI^2 ~d1^ئIjm:IHe4a,F0:L9RzLG0c\E} .3*a^2 ǷI]:g\q R0?Qnاf6n oy d,'tƸ'(o*hXl*@Dda%hrCcd?`ȨR[NV aDXDs,Hu(!pa485z2E⦃7 7L4V ǺJlAHFdLZܼyhXh. 'F6p-^:vpaڗlZI@96#t%߉Ikl n.Yve! 2Ѧ񎪧H\vgxŀm:*ߦYX9pl"bs|8i^ ^[8@yv#mu:jo~|4^>0a" u8*@^{.𽮞0Mw T|p5K>h_"JXFӕ#H6i=Ձ)(P+u64P^+:}̴IKHk!L_|46 &ܝm}f5.FUZW1&Xd[E-KЉ%k?: <62*$$6)ȱq*AxBy|f*YYYU Em@aEpWdYCVrq@!}b&ϯ—P)(rb7(IWj'UT %VN.UlPAB0\/ņ4$0JO&tV kJ) ad;]mҵHvUI׺TncJ'UCo K"îM6*%P~bDw8h;)M)K! *b4\a-8 8m ehb=f:1(u;( .'BP$6$HyXV"ꪫV x?80;7S;/ȍ ROrSLƍ<3Ư!H<S$Eu b ;b}wGBÊ@޳`j^qXbz3er;ŷ0WLM,4yʡ:z!]hJ-Śh[g8V)vS6,$&'"0xD!@8#TM/I].J"/ .1x4eZFٹ-G8E/)ڜ?`E!|e&("!*$fEBe?V%Ic)Q :Dkq&MTHR"@̨_!afOfuKJP.,( d;kӂ<`^\"hb¨czk %Cs4AMjE-{F|wynP2$ 0$]lm&-Ɉl!5Q?{!ΰ ,uNuj7UbFXR 1VrG&bye)EK%_,5{^1ռA7$(yD[j5~ةTK4xdz] pSlB.`:q*v/& Eo1sibxS,[.DO3_hí]Ar/圯 қ(GAв`r<: P&>p\ݎ9omG6 _86&,@*Ǯ=ei@$b@"b0[PBu+R^? IzȗIڀl!mV)qߖb4⥹Ҁ T4XG[mxI0a,LCpCF2&XM-9ǒ/i^N`zvi Id̨E*] ndB"Ä&0y܍  J`#E`n6yYk!mIͳƩ_nUqzP4%Z1K5ʟP&Db4Q-ٝ(%8H~\8HKJeeEۻ+6`G vlt9esKe3|S!zf/qp<Ϝ4eج֗$n9Rχ UKN+ (Sl}1: <WS)''T,lt.%׎p#uBfIYR(.kd`n_u۽-]:c@Гa{o:. 鹄&Ut8u8"p (̦[4è+˃BMw ,y_ ^0 5} ]o(>yȨ8'>a-``.tnWvPVh,A%JްLX8X$hl@^ׂ"( S& 1^˰%_^n.H*)tȜ$$W\ bFs wI ՓXGB(B+&P,f-]rX4@֫hBGNU%,z- eA @ % zf O([Lk ]dkKd 5w~j)44qފrW,cvG* nAJx M dE l)rY{#*r+"85XO?lJ[bbh]3j7~qV;HshF0rF o'`S-4Jp0'#s.r^tASfscǬ: 8wˈϨԛs}`@`Ͻ^rqxtE8F7MεY`- qv -ԝ5E1% |`wp!5A>!RhT TsG&xwe TDzh)|0}THGo̊qmD-,I% WHm!fP]8Cm#3HuR j2Vr|r_! 55Rw7`Fq+D g^&قjlH4ᛈ*?SхecP7` XڴBZF+bW[ Z@xcS*b]-lVw{85l ;J5nۃz0ڊu脼f*nHT@Q(vC݊6+-j UT0ۉ,DD]E9A(Oe.F*n onAߴdTDjmSRRQᕬ.AI *1^,x4Xm.%x#ft\alIy3X9m $ۿe*pwhpMNmXB%4` B울Pp8y,$Bخ]m-M?9C(l=byƬnr:5/ ʨX +kCp;B#ߦToS)E9K2[oA톅WB:$Akh0A982f,1X c Kku[UЀ45WyKGsH`![mU! 61j4Nր1 N7 pKp+]N0DcvDa@q&qt;:Ōi,茾eŵ0[ aۇXĀ3[PHF5SxhV;|Fkr"=LMD՛֜bl#FV%lj\u>ր֎9Zl#TqNBBևo CDf0 ӈp+)-jj]i:]Ǹ}1*C('ۭ =zü3|vWfz!F𱸓Uaȏ6܆R5[)D`$x[y|BRBc7{t5VE4o3R`FcPZa]vY@9Qr CL!*J~6}r$hƺ P|(&ǬZ"JpmQ<̢IKb s{sAN%#nb"@$w#SB [cTSiɍStbwś 0%hk]"(L6 cw(=.,!GQw|%ؙbC'_%C,}e # ~v;A[ ׼9r.@vxG aܲMC&)AA%x,3XhEZXe`Αhdp@߼ L(f|;EA@Bu*ܜW {0e4{ `/V3ǁ7[;;Z`sW͡,56%\q 8`1t9dp#,*+MaBla^Jn)nJ4lAT #$`qd@&2N o✋ ȅU9 &(7MJKPzBZڢc U͔Ur+ElZ7nnBQA:Syȴ8{Ftmv}Xp I5!OY 6661l;UEȻ3Jm FEX"@v 2)v3mF=vWuNE&4ԈsMG6Lޠjqu|`_xi1wT„1SsE \M ?|G;Ҧ46&Oj=9m\1Ɇi}ܟ9c{bK؜g<޳K nWhJxO+r,{ <ЩEs"\0-U_aXλW83 Dt0 偄*=FBӷ 4Ġ4aw:STx'Z@AP.BFfYO dH0$`5g<̦ebz<19z:W%en>E id~3m4B)D  dA:}!)dQxLJNJP/Ψh 4uph־rl!}XQ<`M(սko&;+ >,S$,peRbE)4s;Z8J" ?d*bva$JSj|RWZ)T0 CIXٖD/+AQ Z;_SPEw ;Drֺg*<X:i0X 0PS`ⴰW#+aĻlI- ʟAiEQ[4ϕ!-KHo6뚮?#D9 ]/@6jV(@ :8 v9,@F 9ÛЕ2yጺJUij j`"{!a:pNCH.?cG*WS*${6qIZvܓY5DkFS9n5L o Zgǜ [Yz3Oxq!ͥϛ͝E>U-y=erS&" ')P+GJW+iv@и hvOSmP @+x4-sQe yeBiU#F^!zk0*gĚ% ";^8>K& XԔ61:6 P <DS mJ^DU\U\l^ =x}MSVO訏 6 ܑU:CI\, GwٚȜ8 5x߶l@4ɿ8"[mń)uW]1ۓ8 BhO{xrje"(C>ڍH!{8' cИQ! yL*U (-٫rSL`F FT!}v PcdJE4iC A+`LrhU:Qqm ցHs0U:*bN2BV ]NCL˓MO]lMpIfƵu &-bȳBssO>bn@H[?qR # 8KO LOZy;6d `O?TZ rzwƥ #D5aW r }=c#٣ qIW~r\%Ā{¡N0= zU`)aEwI8ugIfq()t$X'T@xn)46`Θ5䀀v݆A" )99c^]"d#Ej1j:X҄^߽)!XcSDи1:{< í]8 >0Qx4Q W86TXdD6:Z׬ޡ"LkKKm)Eqp*2eTH{SyPLǎLT<9]1nYpi 8ѷqccW'ULX@4#c&[@+c:#JE ,zI ϷpfYRsh?C4ccb@' KҬbB []7Ha.Wj7joԡ<5Rnן"*BZG)Sc&<n u4 V/A6e[{·@YUPNs`$I *VMbXJ1P0XqQuLBzy1/MkQ]𒣔cʚLd7j((X/TKf yUo{,pbly6!-͢a~(N[L NB[+VN˰R;( [upP,vA{Hq8Dݛ93g0aJףnрɮ}-lhq+IMBå6L4HCtW\ γV @ R6V"9+l.vk7u'x7UZqd;,cOSNq䷨] H__~f%]BOOg\rC ev: <\Ѽ}l YLUoN,F+;w W}>8B-w!Åxrǐ|َ Nred>G̀cd"4< -G=x[Lm皴0((hy>"`ӎB7H"& <\k ˌV{wB.;-(/X5O3i8?3!>ryD,%ƧyC [pФFn_8*"` dM=^ʫ;|"+0lud"yqFAH(fFc ؔd2hy)4c~Cg!OD-峖7SyGYrN}ciFevqǺ⵳|7 K BNs@vB`FD j ' S*nmY)T >t0+ yHE}i'"W`q0܈J*ȼuN/Go!ˎՠ (09F`1i4iD~MV׃0(JEHw N(0HBD,U"&^7P+ź.E/UeF1jJ^+D]S͡hhbb1xVmxxvn-]fQH&;ܩ,]Jp*YN1`oN[Y7ٍ"oyBnko'rYD|bЉ`J`j`m 6#Rr#aLUv!9`65= @FJBRpM]k`auO'5ZErMBXkoRPwE޴kklNT2ot7A5يmzpxZ"p ;l}`dͪO$o]⮥<}q􇋌@[M|9knE7s\vL $I@ yP((q-N@qcj7|jmJTDPf;ܡmL`SyBʼnCJN;¿\0RԔ(j ]PZ!Ya: $N{ݚZcs^_ Ry9SEu1z XviC8Ÿ8OXP|2|o~2 hQYr\!T8J8b d P ^ܳL =WYSތDwіXRóR` #V_`%l.*0έyw&D J7] s~0ze篎?`O#R2`wpII+ HЧ9xDhX .79]pni8RpҚ d]ƣRmb3&}=w`EwSAZüNw{p n~byJƟ 4%0?*;^Po[i,V%^xU=:E+vF#("בJnȾ2m%~\)WXxZ (9X75ǟx1<ԩ|b%ڄRFV0Iq D;& ށPM8'ګ۽4"< q&K DHN&۽DFd9@=Y`t-Si]|ETR)3ȊӬF)1.hGw'88(<ޕIޘpݦlrlj=EwGi3%Ϸ.p֦/^*X( <`PFǟ\!~ 0"J-|LLVZMYzxX侪scsMk+" "2xϿxV2r/%E]u5c>rDqNAqTW<{OYxxQϜM'V #K%MmAk VMs8C"JuD0(nT(F5* k7^J)HYf F^CJG[O#!y[? k9!a-^1@Z֮@:9^8js%sƾ$ac1cGKCfʆjVG6t`wt1 ]ogzт\u!DM!wV"^M&+VZDR!pF)j;7)0h$[QBȺ>& T!Z2h V-,%Zx=z֢uf0=`1vn 0ȞFN#~.dO#\mH&qK1EExmpӘk6G+`08;F˃ۡn@ Db!݆(Tc#OaO7? rc7(q)ejv}- kB+ #GÀJ:V 7k&K%8K# ޱ)r") "``V1bHNX؊ָ ,צ%P]bN]`ܒ`fk^\,Haahw[(Y7L\Ht{DAef)#hգ04ᅠ5@^س{AP%@ B-: UAx i <ɎT4PG;-}2c+3uD)ACBSL1.1D7c`mM ̝kWhyxA2)PwR[+[ ۺvuJ9LHa*U -:TE0͡bxTp h رUPɫY$A{$ ;U8܀ل]1EuZU5.1DLN4½KrLzD8Q aĤۛ/{*!ظ dyh[!)2 @QDh]7+cC+ͤQg T)_PU3zZ@5R NhP+vr᜵6yVE $⋮?a T)@XQ1w@boj0h TĮbN˛hك5Xm.#Uh0]M> 9"T15b0:6 ;NWۉϭc=gItUt7фƹ4X"Ÿkd'54}r!8`Ѣ׼oQrsQQ^w=s1'8V?7|'^jc4H$=uEoBk"5|W>:J- x Y]NsS{.exi PD6$1/'L1-4e 4 k_t f^ -(S/}'ulcݚTA8?f6 Ufk-C0<6Y4Dm4œMBT EӦ-TDB=BJςԤؾ#zP| MɢE8lӢ'{ӈ`j|GAu?7"@`sȁ%ݢ J#FcNqp ~6*Ž2z`MNsd!3 `ft 's,;DX@f"ʇXNa_l'mg7ɡQ tA´P; g,rZ\ rN)L_u^\sC!À&a[,& Z `b3Q*!AK^e")9 rHH&li_L; bdx.ou ioY n.q@2^)蟜ASP (_|bA7/Y*O=%jbzM,UH:@F@~ e+ Mp66t)fGVaWuMop <-Ǐ~#7wf@pdt~p'I"ߟ\0SX8$/=>V)zhr&vngxyFUj<eB\`) U`x*WnՀ`TDb_gJ2Fr f C5[R(͇LTUrB3Inr-]XY0qaY`Id"RhE 83U'`G,B hrW,ɭО(H!ye U[UrRIqB@)52#p*)hZ}GupNgf84.\m^0J0]2'6¾/r9g< W`x8t'o t^r|Oaz]~܈l>sj!%Bl BQ*/S]EB!ι1v|)_9hNQǧ6gs{J8uVh NE?\ <9``" :`91AWXX0'`j9*xT1FKֆY@P c0e,y;ePO,KXAΠ |It'< !W I4je2l)qہ"9s ΓjҢj0(d7ۊ 5 gcQ9 Ф򋭏X}@tDްF_L]K{w,֧jCݿxUHg r5OpwВ%swϟ8<:֙=6o0<>Jpޟ0 -8Gb4xT6nFU+8~+ɲ= Z)OPz]hh/KbvyǤQ85_X) 0&>!sOq 9"YF2fx2j)w4pbWjA8U4eZ}lAhej"g-F\%fjkh;<#.޳M81ksjZlMLш5ڵ-UTxb뉿@{paD *v誀e뫲] % t =〦# }B}Xtʭ=`xe b6e8a Aˎ[2r/Jڻ%hF_yb2ؐjG J$ <ȤQ5S$܀$6p`` Sxk ē,<5#>0 c :L0!PK!#W`%{ty-)?Z͘`r%)˫á, l -atmɦKuoq7!!$ ֵ}O6;AVݯ'yS_g88`%>#I?Ӆ;e c+A]rSj $(VwF* 8#?5hy1J{c-ѱ~qдՠ~y:kZ -ΙaAS `8(*T<阧BͫмpDǃrszߐM+m)*:SA6ߌ3ڣ͋Q6üo7i@=Sӄ7}`/o-ae -v&:ⰜkG\xt^{mhMD8w|k~&-CV \ĵzf90\2B7 Atً*yhG #e;5_!w_LbpSCw,'2X3+z1(+GM6Dxް7^os6n?k*X^]|e1yi8.t`Ӯqc7= 5lRuWb*o;>c/gt|Վ5Hpk 0kz 6Z15>34TCx/ombZE!bV e[8ʢ;ywrv!ULRloj^ }% INN"Tu!c6/^1|_4? jøpI׼=Z7Uux;o,|ٻ<7'%^04r莿4zů  bB Sus/iVc[~Ӄ]EitŷogdhN[~LƠ8;P;*X s|ҋpj{!R] qpM1 w0ʉYO#ƥթ&*\ ha@E7T'7\{"S>z+ߗ2"@j;ʔ)@I!@y ux # YAcKP )vWP4P~rb j-nN[7ߞ7K,M`$Q su.fzq"\ECN̈G X *sAcn6n &F  RFk"!`.>x/ h+`~Pѻ7ܨMǁ<xRH/2† %]h98lOov[2tzAo@mA$C5FPl5'+Ƈ& aq͎oϬŖ- _I74UظV65|y]ۑ8 +'D™xMxt)\[<."P%t|٣DŽÚwl75MPFvbP.{JIY$(>9䈱sI@>sP81T0c ˋ>Jɭc!Eyw dq8=Wt>} .vbjy9{=65Z݆E6"yAV4c^ E-;U8 L/1D ybN~;ʕ *" 2P@<&9@y-U& '"rR\>JF ĩђ{)1exS;r)r擝#YwZ m\on /Z>0m'&E q7*ILDYVWc¼EkS$s4!;)፝k.ߟൠӂlT9XO.]h^q%󂉲s^U<ל*р^dx wuinybgO߶"SQlzA1a4~/!vg i+Bp[m?9qJpjbv=!4l~&܉U~BaYEhxu< 5y)c^n|lj>nRMSQ <}}q:{`KЫ4]^\ ) ـYcYo)Gm \k=a|,NF}"6'+G@wv x9!Q2c])7nHPeF$e݊kȥ[;w,Ɣnk{':!rX=UD>n;\U֎~5DG9ѯ"t5#tZ:cƔ2rC߿y4iՔ*GCǜMӼ-vDx 4SMv8FxQ WGUc"`&jA]co@@ A2EfP7H8 A_Xg%h>Exdf6JyO@m8B:<%W! kq;iCa;.@x2T)hu g|k6ޞF}e8ut:ijC6?O F PI悾zi\!1@68&^Er(=uTP6׌ku"q0qH{xX]q)d%dC{inD4T_hDF eSê`fc{zrЂP2ȢLXB0@%I !nXde^=y Xg0`FNFY6dHl s7U~(CM[,m$1v\ $FGsayCbNc+4q`48kN[^(-[|it2& bSNC|f4ago)CaK*sY)m֗aDx~0)R* [>GF<]ɼG?4{ǻ&at/ m񀜨tq?wrs`)򪜍gx>Gu\CA#BGӻ0"$9%yHr#HWuWZ{+g-ssr OOtf rn$KT5/_ N!a}ʊv{po4x(ňp[z߬ɋCPy8T-IŒ6Ƈ&m |:cN "3Q OX`'TQ:`${1\d0gF:H5,TEN^b1|t~() H-aC2Yab!E1ʲwNxwCU8mޯ;KI@G k6b4Q OhA]aBai{:ۦu0$zL_Yku&t!xKno2oRNb7{yp ՝`l:bkX9}YJv 7G7DyQ`.72%#LY5+!^1>!a>l f:vO:jnyDdqSAoVݷWLRQ^} 8Vp]|9`lxu6=*yT#ޭmR]eb @1kxuʹe g_M"ty8YHah!0s[a4M"#wUbZm5J@hءųF$TEXh|a&K%o0$La,Z^@4/h:ހ}1 Dfu,a{cɺ3]l˕@(3To8փGRсM]r'>|ޝ:&.T:2+OtXv- h!"~2?U͑JFej` OfumS'b|oe:"Nʍqk F:%`t Uq-L=ym0~)U y^vqt<2sk\8iN/E_GmGW@&Q)4 *RI5$ܪ)w |QӭM7]'r:h.*nx򿌊Gh. c;GD)?!"}iM|?qɐCOPh`,Ty2QWs\3ac-KM1 y~3Q|ٶP U5w1_&$XJ3xjtA8vGzQKtb!2k3q`?$p _|<6*oȅ( <%9 dPÐQ*O'>670pk)ձxà6=rhtq2 w5I: 8E%cxrV}p:O|?|r>dm 6_9j@$޽ce.݆_(`Z`Ȋ04$9$J1(L FFr!xgYc&<9@jd `D]{+{N;"0 y8U؟cN'J 9&=㺋:o/NOFiZsTI2 @>1!=aUEvbI1+T( \ȵ̑-8_}`c= FL([u'pى sTJ[]9n]Z|sN ݵI(C25_s'%ph=1t.ќy1'Go-lJж!w yJ]J^P<,I*}>-[8ʍ5~ioN buHd&f_Qֵ<LAX Ƒ;U?L}Yͨ^6Ojl_6i5G#9ػ*O%uuiGP)̄ {m X0>y`Dv'~ @(E% yTB:_hZ#iѱ&lʀuxqrzxl:\8};jt9Sٯ0i;B:~ǐ}'H?5Sz^Ȗ7jwHw¡ʤ^b r' ix:r3,A*Dq_5N^A !b-6lk摢w%X'2hRX *Da(`P-a ij`rh9<@8'9"h}\z\k4!2W9u, *' )CNx!L̎D>PV o* A< .:8TvX P(d8*ynj,V0>1̘(i7jK;Tzt( L !Rh;gyƈW}_7.q y3PX =hqcgARkd!,cw}w·ǫX/pz1?n3Pi{ (T5~Lt:1_燯;u&=:0qi?a;Ck_xtq |8EUY{7Tk˥۳w^Ťqy\0X\1ً_4 M8ަsaێ8r"CZGZ&Iٌ5&$ӣHgmDmӁt w=| Ommԙ˂K˜jTi<ƝDmN4kNb*9>pg@Ӛ$gyscreen-message-0.23/sm.60000644000175000017500000000725012106013337011766 00000000000000.\" Hey, EMACS: -*- nroff -*- .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection .\" other parameters are allowed: see man(7), man(1) .TH SM 6 "November 24, 2012" .\" Please adjust this date whenever revising the manpage. .\" .\" Some roff macros, for reference: .\" .nh disable hyphenation .\" .hy enable hyphenation .\" .ad l left justify .\" .ad b justify to both left and right margins .\" .nf disable filling .\" .fi enable filling .\" .br insert line break .\" .sp insert n+1 empty lines .\" for manpage-specific macros, see man(7) .SH NAME sm \- Displays a short text fullscreen .SH SYNOPSIS .B sm [ OPTIONS ] [ .I text | .B \- ] .SH DESCRIPTION .BR Screen\ Message will display a given multi-line message as large as possible, fullscreen and black on white. You can specify the text either when launching sm, or edit it while the program is running. .PP After a short timeout, the text entry and the quit button will disappear, leaving nothing on the screen but the entered text. To continue entering text, just start typing or (left-)click anywhere on the screen. .PP To clear the displayed text, press Escape. .PP To quit the program, press Ctrl-Q, or Escape twice, or click the "Quit"-button. .br .SH OPTIONS .TP [ \fItext\fR | \fB\-\fR ] Text to display at start up. Defaults to ":-)". If "\fB\-\fR" is passed to sm, it will read the text to display from the standard input, see \fBREMOTE CONTROLLING SM\fR. .TP .BI \-f,\ \-\-foreground= colordesc Define a different color to use for the foreground of the text to display than black. The text string can be in any of the forms accepted by XParseColor; these include name for a color from rgb.txt, such as DarkSlateGray, or a hex specification such as #3050b2 or #35b. .TP .BI \-b,\ \-\-background= colordesc Define a different color to use for the background of the text to display than white. For possible values, see above. .TP .BI \-n,\ \-\-font= fontspec Define a different font to use than the default sans-serif font of your system. The fontspec be the complete name for a truetype font (like "DejaVu Sans" or "Bitstream Vera Serif") or just a short font family specification ("serif", "sans-serif"). .TP .BI \-r,\ \-\-rotate= rotation Rotates the display by rotation*90 degrees counter-clock-wise. So \-r 1 rotates the display to the left, and \-r 2 puts it upside down. .TP .BI \-a,\ \-\-align= alignment Aligns the text centered (\-a 0), left (\-a 1) or right (\-a 2). .TP .BI \-\- (Double dash) End option parsing. This is used to be able to actually hand over text that starts of with an dash. .TP .BI \-h,\ \-\-help This option will give you a short usage message summarizing the recognized options and quits. .TP .BI \-V,\ \-\-version This prints the project name together with its version number quits. .SH REMOTE CONTROLLING SM If sm is called with \fB\-\fR as a command line argument, it will read the text to be shown from the standard input. It will read the input until it reaches the end of the file, or the line feed character \fB\\f\fR, and show the input read so far at once. Newline characters at the beginning or the end are ignored. The input is assumed to be UTF-8 encoded .RB "(see " utf8 (7)). .PP This can be used to create automatic displays of changing data or similar tricks. For example, the following command will create a simple digital watch: .sp .B (while sleep 1; do date +%T; echo -e '\\\\f'; done) | sm - .SH AUTHOR This manual page was written by Joachim Breitner and updated by Gerfried Fuchs to reflect additions for commandline option handling. screen-message-0.23/README.Win32.in0000644000175000017500000000277011317155641013460 00000000000000Screen Message @PACKAGE_VERSION@ (c) 2009 Joachim Breitner Screen Message is a small program to display a text as large as possible on your screen. You can edit the text while Screen Message is running. To blank the text, press Esc. To quit Screen Message, press Ctrl-Q or press Esc twice. License Information =================== This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program 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 General Public License for more details. You can find a COPY of the GNU General Public License in the file LICENSE after setup is finished in the installation directory. Third party components ====================== This program uses and ships the following components from Free Software projects. You can find the source code at the respective websites: * GTK+, ATK, Pango, GLib: http://www.gtk.org/ * Cairo: http://cairographics.org/ * Expat: http://expat.sourceforge.net/ * Fontconfig: http://www.fontconfig.org/ * Freetype2: http://www.freetype.org/ * libpng: http://www.libpng.org/pub/png/libpng.html * zlib: http://www.zlib.net/ This installer was created using Inno Setup: http://www.jrsoftware.org/isinfo.php screen-message-0.23/configure0000755000175000017500000052752012446332767013220 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for screen-message 0.23. # # Report bugs to . # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do 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 as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do 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 " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org and $0: mail@joachim-breitner.de about your system, including $0: any error possibly output before this message. Then $0: install a modern shell, or manually run the script $0: under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='screen-message' PACKAGE_TARNAME='screen-message' PACKAGE_VERSION='0.23' PACKAGE_STRING='screen-message 0.23' PACKAGE_BUGREPORT='mail@joachim-breitner.de' PACKAGE_URL='' ac_unique_file="sm.c" ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS DEPS_LIBS DEPS_CFLAGS EGREP GREP CPP am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC WIN32_GTK PKG_CONFIG_LIBDIR PKG_CONFIG_PATH PKG_CONFIG ISCC WINDRES WINEPATH WINE WIN32_FALSE WIN32_TRUE AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules with_iscc with_win32_gtk enable_dependency_tracking ' ac_precious_vars='build_alias host_alias target_alias PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP DEPS_CFLAGS DEPS_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures screen-message 0.23 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/screen-message] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of screen-message 0.23:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-issc=PATH path to the Inno Setup compiler for win32 cross builds --with-win32-gtk=PATH path to the gtk+ source bundle for win32 cross builds Some influential environment variables: PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor DEPS_CFLAGS C compiler flags for DEPS, overriding pkg-config DEPS_LIBS linker flags for DEPS, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF screen-message configure 0.23 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by screen-message $as_me 0.23, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu am__api_version='1.14' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='screen-message' VERSION='0.23' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi ac_config_files="$ac_config_files setup.iss README.Win32" case $host in #( *mingw32msvc*) : win32=true ;; #( *) : win32=false ;; esac if test "x$win32" = xtrue; then WIN32_TRUE= WIN32_FALSE='#' else WIN32_TRUE='#' WIN32_FALSE= fi if test "x$win32" = xtrue; then : if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}wine", so it can be a program name with args. set dummy ${ac_tool_prefix}wine; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_WINE+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$WINE"; then ac_cv_prog_WINE="$WINE" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_WINE="${ac_tool_prefix}wine" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi WINE=$ac_cv_prog_WINE if test -n "$WINE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WINE" >&5 $as_echo "$WINE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_WINE"; then ac_ct_WINE=$WINE # Extract the first word of "wine", so it can be a program name with args. set dummy wine; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_WINE+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_WINE"; then ac_cv_prog_ac_ct_WINE="$ac_ct_WINE" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_WINE="wine" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_WINE=$ac_cv_prog_ac_ct_WINE if test -n "$ac_ct_WINE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_WINE" >&5 $as_echo "$ac_ct_WINE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_WINE" = x; then WINE="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac WINE=$ac_ct_WINE fi else WINE="$ac_cv_prog_WINE" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}winepath", so it can be a program name with args. set dummy ${ac_tool_prefix}winepath; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_WINEPATH+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$WINEPATH"; then ac_cv_prog_WINEPATH="$WINEPATH" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_WINEPATH="${ac_tool_prefix}winepath" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi WINEPATH=$ac_cv_prog_WINEPATH if test -n "$WINEPATH"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WINEPATH" >&5 $as_echo "$WINEPATH" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_WINEPATH"; then ac_ct_WINEPATH=$WINEPATH # Extract the first word of "winepath", so it can be a program name with args. set dummy winepath; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_WINEPATH+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_WINEPATH"; then ac_cv_prog_ac_ct_WINEPATH="$ac_ct_WINEPATH" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_WINEPATH="winepath" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_WINEPATH=$ac_cv_prog_ac_ct_WINEPATH if test -n "$ac_ct_WINEPATH"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_WINEPATH" >&5 $as_echo "$ac_ct_WINEPATH" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_WINEPATH" = x; then WINEPATH="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac WINEPATH=$ac_ct_WINEPATH fi else WINEPATH="$ac_cv_prog_WINEPATH" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}windres", so it can be a program name with args. set dummy ${ac_tool_prefix}windres; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_WINDRES+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$WINDRES"; then ac_cv_prog_WINDRES="$WINDRES" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_WINDRES="${ac_tool_prefix}windres" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi WINDRES=$ac_cv_prog_WINDRES if test -n "$WINDRES"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WINDRES" >&5 $as_echo "$WINDRES" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_WINDRES"; then ac_ct_WINDRES=$WINDRES # Extract the first word of "windres", so it can be a program name with args. set dummy windres; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_WINDRES+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_WINDRES"; then ac_cv_prog_ac_ct_WINDRES="$ac_ct_WINDRES" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_WINDRES="windres" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_WINDRES=$ac_cv_prog_ac_ct_WINDRES if test -n "$ac_ct_WINDRES"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_WINDRES" >&5 $as_echo "$ac_ct_WINDRES" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_WINDRES" = x; then WINDRES="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac WINDRES=$ac_ct_WINDRES fi else WINDRES="$ac_cv_prog_WINDRES" fi fi # Check whether --with-iscc was given. if test "${with_iscc+set}" = set; then : withval=$with_iscc; else with_iscc=no fi if test "x$with_iscc" = xyes; then : as_fn_error $? "\"You need to pass a parameter to --with-iscc\"" "$LINENO" 5 fi if test "x$with_iscc" != xno; then : ISCC=$with_iscc else if test "x$win32" = xtrue; then : as_fn_error $? "\"You need to specify --with-iscc when building for Win32\"" "$LINENO" 5 fi fi if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi # Check whether --with-win32-gtk was given. if test "${with_win32_gtk+set}" = set; then : withval=$with_win32_gtk; else with_win32_gtk=no fi if test "x$with_win32_gtk" = xyes; then : as_fn_error $? "\"You need to pass a parameter to --with-win32_-gtk\"" "$LINENO" 5 fi if test "x$with_win32_gtk" != xno; then : WIN32_GTK=`$WINEPATH -w $with_win32_gtk` as_fn_append PKG_CONFIG " --define-variable prefix=$with_win32_gtk" export PKG_CONFIG_PATH="$with_win32_gtk/lib/pkgconfig:$PKG_CONFIG_PATH" else if test "x$win32" = xtrue; then : as_fn_error $? "\"You need to specify --with-win32-gtk when building for Win32\"" "$LINENO" 5 fi fi ac_config_headers="$ac_config_headers config.h" ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_cc_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for DEPS" >&5 $as_echo_n "checking for DEPS... " >&6; } if test -n "$DEPS_CFLAGS"; then pkg_cv_DEPS_CFLAGS="$DEPS_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-3.0 gdk-3.0 pango >= 1.16\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-3.0 gdk-3.0 pango >= 1.16") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_DEPS_CFLAGS=`$PKG_CONFIG --cflags "gtk+-3.0 gdk-3.0 pango >= 1.16" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$DEPS_LIBS"; then pkg_cv_DEPS_LIBS="$DEPS_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-3.0 gdk-3.0 pango >= 1.16\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-3.0 gdk-3.0 pango >= 1.16") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_DEPS_LIBS=`$PKG_CONFIG --libs "gtk+-3.0 gdk-3.0 pango >= 1.16" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then DEPS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk+-3.0 gdk-3.0 pango >= 1.16" 2>&1` else DEPS_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk+-3.0 gdk-3.0 pango >= 1.16" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$DEPS_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (gtk+-3.0 gdk-3.0 pango >= 1.16) were not met: $DEPS_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables DEPS_CFLAGS and DEPS_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables DEPS_CFLAGS and DEPS_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else DEPS_CFLAGS=$pkg_cv_DEPS_CFLAGS DEPS_LIBS=$pkg_cv_DEPS_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi ac_config_files="$ac_config_files Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "done" >&6; } if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${WIN32_TRUE}" && test -z "${WIN32_FALSE}"; then as_fn_error $? "conditional \"WIN32\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do 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 as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by screen-message $as_me 0.23, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ screen-message config.status 0.23 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "setup.iss") CONFIG_FILES="$CONFIG_FILES setup.iss" ;; "README.Win32") CONFIG_FILES="$CONFIG_FILES README.Win32" ;; "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi screen-message-0.23/README.Win320000644000175000017500000000275312446332775013065 00000000000000Screen Message 0.23 (c) 2009 Joachim Breitner Screen Message is a small program to display a text as large as possible on your screen. You can edit the text while Screen Message is running. To blank the text, press Esc. To quit Screen Message, press Ctrl-Q or press Esc twice. License Information =================== This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program 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 General Public License for more details. You can find a COPY of the GNU General Public License in the file LICENSE after setup is finished in the installation directory. Third party components ====================== This program uses and ships the following components from Free Software projects. You can find the source code at the respective websites: * GTK+, ATK, Pango, GLib: http://www.gtk.org/ * Cairo: http://cairographics.org/ * Expat: http://expat.sourceforge.net/ * Fontconfig: http://www.fontconfig.org/ * Freetype2: http://www.freetype.org/ * libpng: http://www.libpng.org/pub/png/libpng.html * zlib: http://www.zlib.net/ This installer was created using Inno Setup: http://www.jrsoftware.org/isinfo.php screen-message-0.23/missing0000755000175000017500000002623311374265160012672 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2009-04-28.21; # UTC # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, # 2008, 2009 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program 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 General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' autom4te touch the output file, or create a stub one automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and \`g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; esac # normalize program name to check for. program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). This is about non-GNU programs, so use $1 not # $program. case $1 in lex*|yacc*) # Not GNU programs, they don't have --version. ;; tar*) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then exit 1 fi ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case $program in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case $f in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te*) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison*|yacc*) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi if test ! -f y.tab.h; then echo >y.tab.h fi if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; lex*|flex*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit $? fi ;; makeinfo*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n ' /^@setfilename/{ s/.* \([^ ]*\) *$/\1/ p q }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; tar*) shift # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case $firstarg in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case $firstarg in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: screen-message-0.23/sm.c0000644000175000017500000002775312446332660012067 00000000000000/* # sm.c # Copyright (C) 2006 - 2014 Joachim Breitner # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program 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 General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include #include #include #include #include #include #include #include "config.h" #ifndef _GNU_SOURCE #define _GNU_SOURCE /* for getopt_long */ #endif #include #define min(x,y) ((x) < (y) ? (x) : (y)) #define AUTOHIDE_TIMEOUT 3 static int timeout_id=0; static GtkWidget* window; static GtkWidget* draw; static GdkCursor *cursor; static GtkWidget* quit; static GtkWidget* tv; static GtkWidget* entry_widget; static GtkTextBuffer* tb; static PangoFontDescription *font; static char *foreground = NULL; static char *background = NULL; static char *fontdesc = NULL; static int rotation = 0; // 0 = normal, 1 = left, 2 = inverted, 3 = right static int alignment = 0; // 0 = centered, 1 = left-aligned, 2 = right-aligned static GString *partial_input; static gulong text_change_handler; gboolean hide_entry(gpointer *user_data) { timeout_id = 0; gtk_widget_hide(entry_widget); gtk_widget_grab_focus(draw); gtk_widget_queue_draw(draw); gdk_window_set_cursor(gtk_widget_get_window(GTK_WIDGET(draw)), cursor); return FALSE; } static void show_entry() { if (timeout_id) { g_source_remove(timeout_id); timeout_id = 0; } gtk_widget_show(entry_widget); gtk_widget_grab_focus(tv); gdk_window_set_cursor(gtk_widget_get_window(GTK_WIDGET(draw)), NULL); timeout_id = g_timeout_add_seconds (AUTOHIDE_TIMEOUT, (GSourceFunc)hide_entry, NULL); } static void clear_text(GtkAccelGroup *accel, GObject *window, guint keyval, GdkModifierType modifier) { if( gtk_text_buffer_get_char_count(tb) ) { gtk_text_buffer_set_text(tb,"",-1); show_entry(); } else { gtk_main_quit(); } } static char *get_text() { GtkTextIter start, end; gtk_text_buffer_get_start_iter(tb,&start); gtk_text_buffer_get_end_iter(tb,&end); return gtk_text_buffer_get_text(tb, &start, &end, FALSE); } static void redraw(GtkWidget *draw, cairo_t *cr, gpointer data) { int q; const char *text = get_text(); if (strlen(text) > 0) { int w1, h1; static PangoLayout* layout; layout = gtk_widget_create_pango_layout(draw, get_text()); pango_layout_set_font_description(layout, font); switch(alignment){ case 0: // center pango_layout_set_alignment(layout,PANGO_ALIGN_CENTER); break; case 1: // left pango_layout_set_alignment(layout,PANGO_ALIGN_LEFT); break; case 2: // left pango_layout_set_alignment(layout,PANGO_ALIGN_RIGHT); break; default: // we propably don't want to annoy the user, so default to // the old default-behaviour: pango_layout_set_alignment(layout,PANGO_ALIGN_CENTER); } pango_layout_get_pixel_size(layout, &w1, &h1); if (w1>0 && h1>0) { int w2 = gtk_widget_get_allocated_width(draw); int h2 = gtk_widget_get_allocated_height(draw); int rw1, rh1; if (rotation == 0 || rotation == 2) { rw1 = w1; rh1 = h1; } else { rw1 = h1; rh1 = w1; } double s = min ((double)w2/rw1, (double)h2/rh1); cairo_save(cr); GdkRGBA color; gtk_style_context_get_color (gtk_widget_get_style_context(draw), GTK_STATE_NORMAL, &color); gdk_cairo_set_source_rgba(cr, &color); if (alignment == 1) { // left align cairo_translate(cr, (s * rw1)/2, h2/2); } else if (alignment == 2) { // right align cairo_translate(cr, w2 - (s * rw1)/2, h2/2); } else { cairo_translate(cr, w2/2, h2/2); } cairo_rotate(cr, rotation * M_PI_2); cairo_scale(cr, s, s); cairo_translate(cr, -w1/2, -h1/2); pango_cairo_show_layout (cr, layout); cairo_restore(cr); } g_object_unref(layout); } } static gboolean text_keypress(GtkWidget *widget, GdkEventButton *event, gpointer *user_data) { // forward signal to the text view gboolean ret; g_signal_emit_by_name(tv, "key-press-event", event, &ret); gtk_widget_grab_focus(tv); return ret; } static gboolean text_clicked(GtkWidget *widget, GdkEventButton *event, gpointer *user_data) { show_entry(); if (event->type == GDK_BUTTON_PRESS && event->button == 2) { GtkClipboard *cb = gtk_clipboard_get(GDK_SELECTION_PRIMARY); gchar *txt = gtk_clipboard_wait_for_text(cb); if (txt != NULL) { gtk_text_buffer_set_text(tb,txt,-1); g_free(txt); } } return FALSE; } static gboolean read_chan(GIOChannel *chan, GIOCondition condition, gpointer data){ gchar buf[1024]; GString *input; GIOStatus stat = G_IO_STATUS_NORMAL; gsize read; GError *err = NULL; while ((stat = g_io_channel_read_chars(chan, buf, sizeof(buf), &read, &err)) == G_IO_STATUS_NORMAL && err == NULL) { g_string_append_len(partial_input, buf, read); } if (err != NULL) { fprintf (stderr, "Unable to read stdin: %s\n", err->message); g_error_free (err); return TRUE; } if (stat == G_IO_STATUS_EOF) { // There is an end of file, so use the whole input input = g_string_new_len(partial_input->str, partial_input->len); g_string_truncate(partial_input, 0); } else { // There is no end of file. Check for form feed characters. // Use from the second-to-last to the last. char *last_ff = strrchr(partial_input->str, '\f'); if (last_ff) { *last_ff = '\0'; char *snd_last_ff = strrchr(partial_input->str, '\f'); if (snd_last_ff == NULL) snd_last_ff = partial_input->str; input = g_string_new_len(snd_last_ff, last_ff - snd_last_ff); g_string_erase(partial_input, 0, last_ff - partial_input->str + 1); } else { return TRUE; } } // remove beginning and trailing newlines, if any gssize cnt = 0; while ((input->len > cnt) && (input->str[cnt] == '\n')) { cnt++; } g_string_erase(input, 0, cnt); while ((input->len > 0) && (input->str[input->len - 1] == '\n')) { g_string_truncate(input, input->len - 1); } g_signal_handler_block (tb, text_change_handler); gtk_text_buffer_set_text (tb, input->str, input->len); g_signal_handler_unblock (tb, text_change_handler); g_string_free(input, TRUE); if (stat == G_IO_STATUS_AGAIN) return TRUE; else return FALSE; } static void newtext() { gtk_widget_queue_draw(draw); } static void newtext_show_input() { show_entry(); } static void move_cursor(GtkTextView* tv, GtkMovementStep step, gint count, gboolean extend_selection, gpointer user_data) { show_entry(); } static struct option const long_options[] = { {"help", no_argument, NULL, 'h'}, {"version", no_argument, NULL, 'V'}, {"foreground", required_argument, NULL, 'f'}, {"background", required_argument, NULL, 'b'}, {"font", required_argument, NULL, 'n'}, {"rotate", required_argument, NULL, 'r'}, {"align", required_argument, NULL, 'a'}, {0,0,0,0} }; static void usage(char *cmd) { printf("Usage: %s [-h|--help] [-V|--version] [-f|--foreground=colordesc] [-b|--background=colordesc] [-n|--font=fontdesc] [-r|--rotate=0,1,2,3] [-a|--align=0,1,2]\n", cmd); } static void version() { printf("%s\n", PACKAGE_STRING); } int main(int argc, char **argv) { GString *input; int c; int input_provided = 0; while ((c = getopt_long (argc, argv, "hVf:b:n:r:a:", long_options, (int *) 0)) != EOF) { switch (c) { case 'h': usage(argv[0]); return 0; break; case 'V': version(); return 0; break; case 'f': foreground = optarg; break; case 'b': background = optarg; break; case 'n': fontdesc = optarg; break; case 'r': rotation = atoi(optarg); break; case 'a': alignment = atoi(optarg); break; default: /* unknown switch received - at least * give usage but continue and use the * data */ usage(argv[0]); break; } } gtk_init(&argc, &argv); window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_icon_name (GTK_WINDOW (window), "sm"); gtk_window_fullscreen(GTK_WINDOW(window)); g_signal_connect(window, "destroy", G_CALLBACK(gtk_main_quit), NULL); GdkRGBA white, black; if (foreground != NULL) { gdk_rgba_parse(&black, foreground); } else { gdk_rgba_parse(&black, "black"); } if (background != NULL) { gdk_rgba_parse(&white, background); } else { gdk_rgba_parse(&white, "white"); } draw = gtk_drawing_area_new(); gtk_widget_set_events(draw, GDK_BUTTON_PRESS_MASK|GDK_KEY_PRESS_MASK); gtk_widget_set_size_request(draw,400,400); gtk_widget_override_background_color(draw, GTK_STATE_NORMAL, &white); gtk_widget_override_color(draw, GTK_STATE_NORMAL, &black); g_signal_connect(G_OBJECT(draw), "button-press-event", G_CALLBACK(text_clicked), NULL); g_signal_connect(G_OBJECT(draw), "key-press-event", G_CALLBACK(text_keypress), NULL); gtk_widget_set_can_focus(draw, TRUE); cursor = gdk_cursor_new_for_display(gtk_widget_get_display(GTK_WIDGET(draw)), GDK_BLANK_CURSOR); tv = gtk_text_view_new(); tb = gtk_text_view_get_buffer(GTK_TEXT_VIEW(tv)); partial_input = g_string_new(""); if (argc > optind) if (!strcmp(argv[optind], "-") ) { // read from stdin GIOChannel *chan = g_io_channel_unix_new(0); g_io_channel_set_flags(chan, G_IO_FLAG_NONBLOCK, NULL); g_io_add_watch (chan, G_IO_IN | G_IO_HUP, &read_chan, NULL); input = g_string_new(""); input_provided++; } else { int i; input = g_string_new(""); for (i = optind; i < argc; i++) { g_string_append(input, argv[i]); if (i < argc - 1) { g_string_append(input, " "); } } input_provided++; } else input = g_string_new(":-)"); gtk_text_buffer_set_text(tb, input->str, input->len); g_string_free(input, TRUE); GtkTextIter start, end; gtk_text_buffer_get_bounds(tb, &start, &end); gtk_text_buffer_select_range(tb, &start, &end); quit = gtk_button_new_from_icon_name("application-exit", GTK_ICON_SIZE_BUTTON); g_signal_connect(G_OBJECT(quit), "clicked", G_CALLBACK(gtk_main_quit), NULL); GtkWidget *vbox_button = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); gtk_box_pack_end(GTK_BOX(vbox_button), quit, FALSE, FALSE, 0); GtkWidget *hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL,0); entry_widget = hbox; gtk_box_pack_start(GTK_BOX(hbox), tv, TRUE, TRUE, 0); gtk_box_pack_start(GTK_BOX(hbox), vbox_button, FALSE, FALSE, 0); GtkWidget *vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL,0); gtk_box_pack_start(GTK_BOX(vbox), draw, TRUE, TRUE, 0); gtk_box_pack_end(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); gtk_container_add(GTK_CONTAINER(window), vbox); font = pango_font_description_new(); if (fontdesc != NULL) { pango_font_description_set_family(font, fontdesc); } else { pango_font_description_set_family(font, "sans-serif"); } pango_font_description_set_size(font, 200*PANGO_SCALE); GtkAccelGroup *accel = gtk_accel_group_new(); guint key; GdkModifierType mod; gtk_accelerator_parse("Q", &key, &mod); gtk_accel_group_connect(accel, key, mod, 0, g_cclosure_new(G_CALLBACK(gtk_main_quit), NULL, NULL)); gtk_accelerator_parse("Escape", &key, &mod); gtk_accel_group_connect(accel, key, mod, 0, g_cclosure_new(G_CALLBACK(clear_text), NULL, NULL)); gtk_window_add_accel_group(GTK_WINDOW(window), accel); gtk_widget_show_all(window); g_signal_connect_after(G_OBJECT(draw), "draw", G_CALLBACK(redraw), NULL); text_change_handler = g_signal_connect(G_OBJECT(tb), "changed", G_CALLBACK(newtext_show_input), NULL); g_signal_connect(G_OBJECT(tb), "changed", G_CALLBACK(newtext), NULL); g_signal_connect(G_OBJECT(tv), "move-cursor", G_CALLBACK(move_cursor), NULL); if (input_provided) hide_entry(NULL); else show_entry(); gtk_main(); return 0; } screen-message-0.23/sm.svg0000644000175000017500000012540212044030402012411 00000000000000 image/svg+xml Apple Powerbook G4 May 2007 F.Bellaiche <frederic.bellaiche@gmail.com> A! screen-message-0.23/sm.rc0000644000175000017500000000011311316723563012227 00000000000000#include A ICON MOVEABLE PURE LOADONCALL DISCARDABLE "sm.ico" screen-message-0.23/Makefile.am0000644000175000017500000000267012333103532013314 00000000000000 sm_SOURCES = sm.c sm_CFLAGS = $(DEPS_CFLAGS) sm_LDADD = $(DEPS_LIBS) execgamesdir= $(prefix)/games execgames_PROGRAMS=sm sm.desktop: sm.desktop.in sed -e s%@BINPATH@%${execgamesdir}% <$< >$@ desktopdir = $(datadir)/applications desktop_DATA = sm.desktop icondir = $(datadir)/icons/hicolor/48x48/apps dist_icon_DATA = sm.png gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor install-data-hook: update-icon-cache uninstall-hook: update-icon-cache update-icon-cache: @-if test -z "$(DESTDIR)"; then \ echo "Updating Gtk icon cache."; \ $(gtk_update_icon_cache); \ else \ echo "*** Icon cache not updated. After (un)install, run this:"; \ echo "*** $(gtk_update_icon_cache)"; \ fi dist_man_MANS = sm.6 # some of these files are just added to make the Debian packaging based on the # same VCS painless... (otherwise dpkg would try to add these files as patches) EXTRA_DIST = sm.py sm.desktop.in sm.html sm.webapp webapp.html README.Win32 sm.ico sm.rc sm-128.png sm.svg gtkzoom.h gtkzoom.c sm-fsmi-ka.jpg CLEANFILES = sm.desktop if WIN32 AM_LDFLAGS = -Wl,--subsystem,windows sm_LDADD += sm-icon.o INSTALLER_BASE = screen-message-setup-@PACKAGE_VERSION@ INSTALLER = $(INSTALLER_BASE).exe CLEANFILES += setup.iss $(INSTALLER) sm-icon.o: sm.rc $(WINDRES) $< $@ $(INSTALLER): setup.iss sm.exe README.Win32 "$(WINE)" "$(ISCC)" /O. "/F$(INSTALLER_BASE)" $< installer: $(INSTALLER) endif screen-message-0.23/sm.webapp0000644000175000017500000000051012047234615013077 00000000000000{ "name": "Screen-Message", "description": "Shows a message, as large as possible and nothing else", "launch_path": "/webapp.html", "icons": { "48": "/sm.png", "128": "/sm-128.png" }, "developer": { "name": "Joachim Breitner", "url": "http://www.joachim-breitner.de/" }, "default_locale": "en" } screen-message-0.23/depcomp0000755000175000017500000004426711374265160012657 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2009-04-28.21; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free # Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program 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 General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by `PROGRAMS ARGS'. object Object file output by `PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputing dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u="sed s,\\\\\\\\,/,g" depmode=msvisualcpp fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' ' ' < "$tmpdepfile" | ## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as ## well. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts `$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; icc) # Intel's C compiler understands `-MD -MF file'. However on # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add `dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then # With Tru64 cc, shared objects can also be used to make a # static library. This mechanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # generates 2 separate objects for the 2 libraries. These two # compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 tmpdepfile2=$dir$base.o.d # libtool 1.5 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.o.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d tmpdepfile4=$dir$base.d "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for `:' # in the target name. This is to cope with DOS-style filenames: # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. "$@" $dashmflag | sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: screen-message-0.23/compile0000755000175000017500000000707211113520606012637 00000000000000#! /bin/sh # Wrapper for compilers which do not understand `-c -o'. scriptversion=2003-11-09.00 # Copyright (C) 1999, 2000, 2003 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program 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 General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand `-c -o'. Remove `-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file `INSTALL'. Report bugs to . EOF exit 0 ;; -v | --v*) echo "compile $scriptversion" exit 0 ;; esac prog=$1 shift ofile= cfile= args= while test $# -gt 0; do case "$1" in -o) # configure might choose to run compile as `compile cc -o foo foo.c'. # So we do something ugly here. ofile=$2 shift case "$ofile" in *.o | *.obj) ;; *) args="$args -o $ofile" ofile= ;; esac ;; *.c) cfile=$1 args="$args $1" ;; *) args="$args $1" ;; esac shift done if test -z "$ofile" || test -z "$cfile"; then # If no `-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # `.c' file was seen then we are probably linking. That is also # ok. exec "$prog" $args fi # Name of file we expect compiler to create. cofile=`echo $cfile | sed -e 's|^.*/||' -e 's/\.c$/.o/'` # Create the lock directory. # Note: use `[/.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo $cofile | sed -e 's|[/.-]|_|g'`.d while true; do if mkdir $lockdir > /dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir $lockdir; exit 1" 1 2 15 # Run the compile. "$prog" $args status=$? if test -f "$cofile"; then mv "$cofile" "$ofile" fi rmdir $lockdir exit $status # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: screen-message-0.23/sm-128.png0000644000175000017500000001304412044030431012706 00000000000000PNG  IHDR>asBIT|d pHYs$$P$tEXtSoftwarewww.inkscape.org<tEXtTitleApple Powerbook G4F\1tEXtAuthorF.Bellaiche 8BSotEXtCreation TimeMay 20075 D/IDATx]kŖ1 3+8P.:‱j\%%P6XoU ,.{]1f{ߕ*USt}aJOf̬<'OٳG7/X݀0 |r]OlG}dv%㏎ ff dD` 6޽{mqNݛ NO(<T0>>G``gΜ4&?~\WUU+Vh4PȳIe۷OىŋӧO#c }4@>4Nch~ _^x2e">NСC%3=(2߿_Ӊ Xz5***jڱ~YHn`R8p.pJ)6mڤIv\R0CeD0C#ٳo޼Ykkkܹs5ykbٳ5QhW=nKK ϟݼy&ߑ#G8F@722ӧOkشiK/DpI[Ff+;(vctGA2}n~=c… w^A .4:.v3~z*^)ː#<0zyDHG__ܹS`YX\ڴiXnaY:tJЩ`||}}}{.z{{144H$D"Q^S)VB"~)g7eRWWΝ;xb`&ddR/7 `q:є\5V^zMsjW*B*ҥ 8u `e=f=CXxqNZB*ɓFX pWWWK W3-!p}ۊjÅ 4nܸ|)8N8a^ubȈ4򫫫u Bv GM ,!ظq0o<,ZC"@8訢-҄B!ݑ_vS@!y֔ގ2=-peܼyӰt:a 2P=n3]|.]ݻw5e>e;;;kbhhHyLе)@DCEUUzꩼ1}t<G"Hm>ˆc 555\Fq)MYׯGUUU^$ j0Ξ=t:H$qiĈzF\?\zq#kʻpnZP[HWXXz鉆A)@ee"3N4\߀1Fg]![x9bԩj>}"-W6@.<;)' :]i ƍly?qY9_K/R:V0^~ehnn< sS\u[YRJu?q8RL&x9ϟ[d w" [wEEtZL_j:kᦥW2،^٩|#YiuG$%sJ* 2e V\TZݛ1hW&OOV]V>EenG$ۣ3(̬h4 B.]Bҩ_\#1ߑʖ/"+Mzww02ZL:ڙ3g֫4NRB!ۺv3|R[Jg mŜ;VEuHBNiy0 DpE\vR|b#NUL)ݻ'{=P.8r` 8&L֬Y5k Ϧ}3ۓC4ez!i2Kҥh#]*s4ez1Y)`ppo @0,ZU6Mx]ҡp:;w_1 f*MEgN[MUH!Jm`+">円lKZJeЩ$*ϜJB_Zlz; '!H H/qrb$BGĠ ը =KjݾmǕb˷k xho_P(P(ׯ-Ã5ce&)]wK0 u3A{z-188(݇Eb;l`G^^~8@)Edh[ɒ(%vk `Μgo߾]llh" N̵*\ "Xy[DO{Wo*CjPyYFyO?۷~=hYb966'o!poN7Xqm|!Y!XJ&/$\cɤ}Y 䅼4t @](«kpLOXKE&XԄ >ok<`۷ w3Hr\ednFžNDQL6 av/c߭cy  oG@)4/;Ţ|ApS||Cx-]`0 1ߎo3Ҧi/vT*UR[?dC3" P ̙ @{zS0ZdG,8}UՈw`yǃQza!˞@N曾s6A>n'$I=B@±X" Djh"B[9B zx"SJ`mX?JqmgŒwvpNgG'PSP }6=s$l8b1>꾠{dnZ03 ̒ᄆΐ, qC`; R=$[L.&qPdg X7e∬ ` f\JfODXBK"A! 0(3`/Hi0*^T!?'-.GR!+WX pT~Bɂ⃸j2B nH YJa[N(H$"!RZSjqDx O1OP?>k-h6' Y!ہ( Dv)lAy<7UV!/TsYC#D}bZϞ4={%yϝi#:&-y|(!WOzSO _*:}}Ξy(QPJۋ{\w/ŠBI?I_osG?= \y. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program 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 # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # PKG_PROG_PKG_CONFIG([MIN-VERSION]) # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])# PKG_PROG_PKG_CONFIG # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) # only at the first occurence in configure.ac, so if the first place # it's called might be skipped (such as if it is within an "if", you # have to call PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])# _PKG_CONFIG # _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])# _PKG_SHORT_ERRORS_SUPPORTED # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) # # # Note that if there is a possibility the first call to # PKG_CHECK_MODULES might not happen, you should be sure to include an # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac # # # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT])[]dnl ]) elif test $pkg_failed = untried; then AC_MSG_RESULT([no]) m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])[]dnl ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) $3 fi[]dnl ])# PKG_CHECK_MODULES # PKG_INSTALLDIR(DIRECTORY) # ------------------------- # Substitutes the variable pkgconfigdir as the location where a module # should install pkg-config .pc files. By default the directory is # $libdir/pkgconfig, but the default can be changed by passing # DIRECTORY. The user can override through the --with-pkgconfigdir # parameter. AC_DEFUN([PKG_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([pkgconfigdir], [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, [with_pkgconfigdir=]pkg_default) AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ]) dnl PKG_INSTALLDIR # PKG_NOARCH_INSTALLDIR(DIRECTORY) # ------------------------- # Substitutes the variable noarch_pkgconfigdir as the location where a # module should install arch-independent pkg-config .pc files. By # default the directory is $datadir/pkgconfig, but the default can be # changed by passing DIRECTORY. The user can override through the # --with-noarch-pkgconfigdir parameter. AC_DEFUN([PKG_NOARCH_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([noarch-pkgconfigdir], [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, [with_noarch_pkgconfigdir=]pkg_default) AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ]) dnl PKG_NOARCH_INSTALLDIR # PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, # [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # ------------------------------------------- # Retrieves the value of the pkg-config variable for the given module. AC_DEFUN([PKG_CHECK_VAR], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl _PKG_CONFIG([$1], [variable="][$3]["], [$2]) AS_VAR_COPY([$1], [pkg_cv_][$1]) AS_VAR_IF([$1], [""], [$5], [$4])dnl ])# PKG_CHECK_VAR # Copyright (C) 2002-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.14' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.14.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.14.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to # '$srcdir', '$srcdir/..', or '$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is '.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], [$1], [CXX], [depcc="$CXX" am_compiler_list=], [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], [$1], [UPC], [depcc="$UPC" am_compiler_list=], [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES. AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl AS_HELP_STRING( [--enable-dependency-tracking], [do not reject slow dependency extractors]) AS_HELP_STRING( [--disable-dependency-tracking], [speeds up one-time build])]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each '.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC]) [_AM_PROG_CC_C_O ]) # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if( m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) AM_MISSING_PROG([AUTOCONF], [autoconf]) AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) AM_MISSING_PROG([AUTOHEADER], [autoheader]) AM_MISSING_PROG([MAKEINFO], [makeinfo]) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES([CC])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi ]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST([install_sh])]) # Copyright (C) 2003-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it is modern enough. # If it is, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Copyright (C) 1999-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_CC_C_O # --------------- # Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC # to automatically call this. AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl AC_LANG_PUSH([C])dnl AC_CACHE_CHECK( [whether $CC understands -c and -o together], [am_cv_prog_cc_c_o], [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i]) if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi AC_LANG_POP([C])]) # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_RUN_LOG(COMMAND) # ------------------- # Run COMMAND, save the exit status in ac_status, and log it. # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD (exit $ac_status); }]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT([yes]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) # Copyright (C) 2009-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # ("yes" being less verbose, "no" or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using '$V' instead of '$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor 'install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in "make install-strip", and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of 'v7', 'ustar', or 'pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar # AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR screen-message-0.23/Makefile.in0000644000175000017500000010005412446332770013335 00000000000000# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : execgames_PROGRAMS = sm$(EXEEXT) @WIN32_TRUE@am__append_1 = sm-icon.o @WIN32_TRUE@am__append_2 = setup.iss $(INSTALLER) subdir = . DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/configure $(am__configure_deps) \ $(srcdir)/config.h.in $(srcdir)/setup.iss.in \ $(srcdir)/README.Win32.in depcomp $(dist_man_MANS) \ $(dist_icon_DATA) compile install-sh missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = setup.iss README.Win32 CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(execgamesdir)" "$(DESTDIR)$(man6dir)" \ "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(icondir)" PROGRAMS = $(execgames_PROGRAMS) am_sm_OBJECTS = sm-sm.$(OBJEXT) sm_OBJECTS = $(am_sm_OBJECTS) am__DEPENDENCIES_1 = sm_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__append_1) sm_LINK = $(CCLD) $(sm_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o \ $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles am__mv = mv -f AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(sm_SOURCES) DIST_SOURCES = $(sm_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } man6dir = $(mandir)/man6 NROFF = nroff MANS = $(dist_man_MANS) DATA = $(desktop_DATA) $(dist_icon_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ $(LISP)config.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags CSCOPE = cscope AM_RECURSIVE_TARGETS = cscope DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best DIST_TARGETS = dist-gzip distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DEPS_CFLAGS = @DEPS_CFLAGS@ DEPS_LIBS = @DEPS_LIBS@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ ISCC = @ISCC@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ WIN32_GTK = @WIN32_GTK@ WINDRES = @WINDRES@ WINE = @WINE@ WINEPATH = @WINEPATH@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ sm_SOURCES = sm.c sm_CFLAGS = $(DEPS_CFLAGS) sm_LDADD = $(DEPS_LIBS) $(am__append_1) execgamesdir = $(prefix)/games desktopdir = $(datadir)/applications desktop_DATA = sm.desktop icondir = $(datadir)/icons/hicolor/48x48/apps dist_icon_DATA = sm.png gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor dist_man_MANS = sm.6 # some of these files are just added to make the Debian packaging based on the # same VCS painless... (otherwise dpkg would try to add these files as patches) EXTRA_DIST = sm.py sm.desktop.in sm.html sm.webapp webapp.html README.Win32 sm.ico sm.rc sm-128.png sm.svg gtkzoom.h gtkzoom.c sm-fsmi-ka.jpg CLEANFILES = sm.desktop $(am__append_2) @WIN32_TRUE@AM_LDFLAGS = -Wl,--subsystem,windows @WIN32_TRUE@INSTALLER_BASE = screen-message-setup-@PACKAGE_VERSION@ @WIN32_TRUE@INSTALLER = $(INSTALLER_BASE).exe all: config.h $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .c .o .obj am--refresh: Makefile @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @test -f $@ || rm -f stamp-h1 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 setup.iss: $(top_builddir)/config.status $(srcdir)/setup.iss.in cd $(top_builddir) && $(SHELL) ./config.status $@ README.Win32: $(top_builddir)/config.status $(srcdir)/README.Win32.in cd $(top_builddir) && $(SHELL) ./config.status $@ install-execgamesPROGRAMS: $(execgames_PROGRAMS) @$(NORMAL_INSTALL) @list='$(execgames_PROGRAMS)'; test -n "$(execgamesdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(execgamesdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(execgamesdir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(execgamesdir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(execgamesdir)$$dir" || exit $$?; \ } \ ; done uninstall-execgamesPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(execgames_PROGRAMS)'; test -n "$(execgamesdir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(execgamesdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(execgamesdir)" && rm -f $$files clean-execgamesPROGRAMS: -test -z "$(execgames_PROGRAMS)" || rm -f $(execgames_PROGRAMS) sm$(EXEEXT): $(sm_OBJECTS) $(sm_DEPENDENCIES) $(EXTRA_sm_DEPENDENCIES) @rm -f sm$(EXEEXT) $(AM_V_CCLD)$(sm_LINK) $(sm_OBJECTS) $(sm_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sm-sm.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` sm-sm.o: sm.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sm_CFLAGS) $(CFLAGS) -MT sm-sm.o -MD -MP -MF $(DEPDIR)/sm-sm.Tpo -c -o sm-sm.o `test -f 'sm.c' || echo '$(srcdir)/'`sm.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sm-sm.Tpo $(DEPDIR)/sm-sm.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sm.c' object='sm-sm.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sm_CFLAGS) $(CFLAGS) -c -o sm-sm.o `test -f 'sm.c' || echo '$(srcdir)/'`sm.c sm-sm.obj: sm.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sm_CFLAGS) $(CFLAGS) -MT sm-sm.obj -MD -MP -MF $(DEPDIR)/sm-sm.Tpo -c -o sm-sm.obj `if test -f 'sm.c'; then $(CYGPATH_W) 'sm.c'; else $(CYGPATH_W) '$(srcdir)/sm.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sm-sm.Tpo $(DEPDIR)/sm-sm.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sm.c' object='sm-sm.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(sm_CFLAGS) $(CFLAGS) -c -o sm-sm.obj `if test -f 'sm.c'; then $(CYGPATH_W) 'sm.c'; else $(CYGPATH_W) '$(srcdir)/sm.c'; fi` install-man6: $(dist_man_MANS) @$(NORMAL_INSTALL) @list1=''; \ list2='$(dist_man_MANS)'; \ test -n "$(man6dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man6dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man6dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.6[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^6][0-9a-z]*$$,6,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man6dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man6dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man6dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man6dir)" || exit $$?; }; \ done; } uninstall-man6: @$(NORMAL_UNINSTALL) @list=''; test -n "$(man6dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.6[a-z]*$$/p'; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^6][0-9a-z]*$$,6,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man6dir)'; $(am__uninstall_files_from_dir) install-desktopDATA: $(desktop_DATA) @$(NORMAL_INSTALL) @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(desktopdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(desktopdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(desktopdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(desktopdir)" || exit $$?; \ done uninstall-desktopDATA: @$(NORMAL_UNINSTALL) @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(desktopdir)'; $(am__uninstall_files_from_dir) install-dist_iconDATA: $(dist_icon_DATA) @$(NORMAL_INSTALL) @list='$(dist_icon_DATA)'; test -n "$(icondir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(icondir)'"; \ $(MKDIR_P) "$(DESTDIR)$(icondir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(icondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(icondir)" || exit $$?; \ done uninstall-dist_iconDATA: @$(NORMAL_UNINSTALL) @list='$(dist_icon_DATA)'; test -n "$(icondir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(icondir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build \ && ../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) $(MANS) $(DATA) config.h installdirs: for dir in "$(DESTDIR)$(execgamesdir)" "$(DESTDIR)$(man6dir)" "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(icondir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-execgamesPROGRAMS clean-generic mostlyclean-am distclean: distclean-am -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-hdr distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-desktopDATA install-dist_iconDATA install-man @$(NORMAL_INSTALL) $(MAKE) $(AM_MAKEFLAGS) install-data-hook install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-execgamesPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-man6 install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-desktopDATA uninstall-dist_iconDATA \ uninstall-execgamesPROGRAMS uninstall-man @$(NORMAL_INSTALL) $(MAKE) $(AM_MAKEFLAGS) uninstall-hook uninstall-man: uninstall-man6 .MAKE: all install-am install-data-am install-strip uninstall-am .PHONY: CTAGS GTAGS TAGS all all-am am--refresh check check-am clean \ clean-cscope clean-execgamesPROGRAMS clean-generic cscope \ cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \ dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \ distcheck distclean distclean-compile distclean-generic \ distclean-hdr distclean-tags distcleancheck distdir \ distuninstallcheck dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-data-hook install-desktopDATA install-dist_iconDATA \ install-dvi install-dvi-am install-exec install-exec-am \ install-execgamesPROGRAMS install-html install-html-am \ install-info install-info-am install-man install-man6 \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am uninstall-desktopDATA \ uninstall-dist_iconDATA uninstall-execgamesPROGRAMS \ uninstall-hook uninstall-man uninstall-man6 sm.desktop: sm.desktop.in sed -e s%@BINPATH@%${execgamesdir}% <$< >$@ install-data-hook: update-icon-cache uninstall-hook: update-icon-cache update-icon-cache: @-if test -z "$(DESTDIR)"; then \ echo "Updating Gtk icon cache."; \ $(gtk_update_icon_cache); \ else \ echo "*** Icon cache not updated. After (un)install, run this:"; \ echo "*** $(gtk_update_icon_cache)"; \ fi @WIN32_TRUE@sm-icon.o: sm.rc @WIN32_TRUE@ $(WINDRES) $< $@ @WIN32_TRUE@$(INSTALLER): setup.iss sm.exe README.Win32 @WIN32_TRUE@ "$(WINE)" "$(ISCC)" /O. "/F$(INSTALLER_BASE)" $< @WIN32_TRUE@installer: $(INSTALLER) # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: screen-message-0.23/install-sh0000755000175000017500000003253711374265160013303 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2009-04-28.21; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then trap '(exit $?); exit' 1 2 13 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names starting with `-'. case $src in -*) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # Protect names starting with `-'. case $dst in -*) dst=./$dst;; esac # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writeable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; -*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test -z "$d" && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: screen-message-0.23/webapp.html0000644000175000017500000000770612047536170013443 00000000000000

screen-message-0.23/sm.png0000644000175000017500000000275510770306111012412 00000000000000PNG  IHDR00WsRGBbKGD pHYs  tIME9@6>tEXtCommentCreated with The GIMP (c) 2003 Jakub 'jimmac' Steiner'3X#IDAThkSg?ϓ&KR]8*kGNbc+oFWlĮQ!-:aƋ!b^t Az#6IӤIsg='i^6QC9<^-B -PÀ~c1R~)R*h (^_PB @[D)Fv^hmO@)\{pp.Gí TzOCgh?_YL?э_ gu_|p8LWW\ 3`88n&~:KKK$ ^53h` pK_|hǏs=Rr}(}}}o$@6څ툳;wnVPJ fLNN9}4B!X]]}S>4;;K2ԩStttgyyي~c@8;11Qٳ!Q0$ n-5"D";vlH$ߘ;;k/'Īv RDQ۬iRzX\\DJ4L)mǖb`ffT*0===p R333[ur59sfSn$:Ld 7.0::Z7v Q+'uzϟ?N?5NdLNlh@j/ C?:tb!D*bmg0ULg vBZUaT!o|͗LJFFFbxM/h6|>/^N˲@\@ ˗/T*E:&077G(biiicccl۶ 5^^r\HkjY!:rx{ .D" |[naYX`0H,òhw4M$BgϞ]6M}YmrrRyrex<޴X,߆A24MGĿT(yܼy;KQ(}y{{;mmm.N!1ls6ݻf@0#S׮#BP$(RJ x<ٳl6>b8ѡ;yM#UUxiZ:iT?\E"#!|KdwJ J$B,r-"Զ wg``;;*P'*&K@OTrsPe2g,;1f (ئ$e1]BSFVZ(#\MeUrV2rQuU"IrXRZe6 1: tb.set_text(" ".join(sys.argv[1:])) else: tb.set_text(";-)") quit = gtk.Button(stock=gtk.STOCK_QUIT) quit.modify_bg(gtk.STATE_NORMAL, gtk.gdk.color_parse("white")) quit.connect("clicked",gtk.main_quit) hbox = gtk.HBox() hbox.pack_start(tv, expand=True, fill=True) hbox.pack_start(quit, expand=False,fill=False) vbox = gtk.VBox() vbox.pack_start(draw, expand=True, fill=True) vbox.pack_start(hbox, expand=False, fill=False) window.add(vbox) font = pango.FontDescription() font.set_family("sans-serif") font.set_size(60*pango.SCALE) layout = draw.create_pango_layout(get_text()) layout.set_font_description(font) layout.set_alignment(pango.ALIGN_CENTER) accel = gtk.AccelGroup() key, mod = gtk.accelerator_parse("Q") accel.connect_group(key, mod, 0, gtk.main_quit) key, mod = gtk.accelerator_parse("Escape") #accel.connect_group(key, mod, 0, gtk.main_quit) #key, mod = gtk.accelerator_parse("C") accel.connect_group(key, mod, 0, (lambda x,y,z,v: tb.set_text(""))) window.add_accel_group(accel) window.connect("destroy", gtk.main_quit) window.show_all() need_resize=True need_quick=True def resize(w=None,rect=None): global need_resize draw.window.set_cursor(cursor) (w1,h1) = layout.get_pixel_size() if h1>0 and w1>0: (x,y,w2,h2) = draw.get_allocation() s = font.get_size() s = min ( int (s*w2/w1), int (s*h2/h1) ) font.set_size(s) layout.set_font_description(font) need_resize=False else: need_resize=True def redraw(w=None,e=None): global need_resize, need_quick if layout.get_text(): # Fails for empty lines :-( gc = draw.get_style().fg_gc[gtk.STATE_NORMAL] (w1,h1) = layout.get_pixel_size() if h1>0 and w1>0: (x,y,w2,h2) = draw.get_allocation() draw.window.draw_layout(gc,(w2-w1)/2,(h2-h1)/2,layout) hq(True) quality = False def hq(q,force=False): global quality if q != quality: if q: settings.set_long_property("gtk-xft-antialias",1,"Hier halt") else: settings.set_long_property("gtk-xft-antialias",0,"Hier halt") else: if force: draw.queue_draw() quality = q return False def newtext(w): global timeout_id layout.set_text(get_text()) resize() hq(False, True) draw.connect("configure-event", resize) draw.connect("expose-event", redraw) tb.connect("changed", newtext) gtk.main() screen-message-0.23/sm.desktop.in0000644000175000017500000000023712342037253013702 00000000000000[Desktop Entry] Name=Screen-Message Comment=Displays a short text fullscreen Exec=@BINPATH@/sm Icon=sm Terminal=false Type=Application Categories=GTK;Utility;