Mercurial > pidgin
view console/libgnt/Makefile.am @ 15681:14d85ee22d78
Added a new GaimEventLoopUiOps item, input_get_error(). This function allows the UI to return the current error status on a socket/input. If the UI does not implement it (as Pidgin and gntgaim do not, since glib's handling of sockets is sane), it is just a wrapper around getsockopt(). Implemented or not, its return values should match those of getsockopt() with a level of SOL_SOCKET and an option of SO_ERROR. For curious souls, Adium will be using this to provide a working version of getsockopt(); the CoreFoundation CFSocket class which is used for socket read/write calls getsockopt() with SO_ERROR itself, thereby clearing the error flag [as documented in getsockopt()'s behavior], so depending upon it for determining if an error occurred leads to significant misbehavior.
author | Evan Schoenberg <evan.s@dreskin.net> |
---|---|
date | Fri, 23 Feb 2007 05:17:20 +0000 |
parents | 7359bea1a839 |
children | 0eb7846f9e7e |
line wrap: on
line source
EXTRA_DIST=genmarshal SUBDIRS = . wms pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = gnt.pc lib_LTLIBRARIES = libgnt.la libgnt_la_SOURCES = \ gntmarshal.c \ gntwidget.c \ gntbindable.c \ gntbox.c \ gntbutton.c \ gntcheckbox.c \ gntcolors.c \ gntcombobox.c \ gntentry.c \ gntkeys.c \ gntlabel.c \ gntline.c \ gntmenu.c \ gntmenuitem.c \ gntmenuitemcheck.c \ gntstyle.c \ gnttextview.c \ gnttree.c \ gntutils.c \ gntwindow.c \ gntwm.c \ gntmain.c libgnt_la_headers = \ gntwidget.h \ gntbindable.h \ gntbox.h \ gntbutton.h \ gntcheckbox.h \ gntcolors.h \ gntcombobox.h \ gntentry.h \ gntkeys.h \ gntlabel.h \ gntline.h \ gntmarshal.h \ gntmenu.h \ gntmenuitem.h \ gntmenuitemcheck.h \ gntstyle.h \ gnttextview.h \ gnttree.h \ gntutils.h \ gntwindow.h \ gntwm.h \ gnt.h CLEANFILES = \ gntmarshal.h \ gntmarshal.c gntmarshal.c: genmarshal gntmarshal.h cat genmarshal | glib-genmarshal --prefix=gnt_closure_marshal --body > $@ gntmarshal.h: genmarshal cat genmarshal | glib-genmarshal --prefix=gnt_closure_marshal --header > $@ libgnt_laincludedir=$(includedir)/gnt libgnt_lainclude_HEADERS = \ $(libgnt_la_headers) libgnt_la_DEPENDENCIES = libgnt_la_LDFLAGS = -export-dynamic libgnt_la_LIBADD = \ $(GLIB_LIBS) \ $(GNT_LIBS) AM_CPPFLAGS = \ $(GLIB_CFLAGS) \ $(GNT_CFLAGS)