Skip to content
Snippets Groups Projects
Commit c6d9b102 authored by Niels Möller's avatar Niels Möller
Browse files

Merge branch 'holmgren/liboop-master'

parents 9a175952 3ada365c
Branches master
No related tags found
No related merge requests found
Pipeline #341 failed
*~ *~
*.o
*.lo
*.la
test-oop test-oop
*.pc *.pc
/.libs
/.deps
# autoconf related # autoconf related
configure configure
aclocal.m4 aclocal.m4
autom4te.cache autom4te.cache
config.log
config.status
Makefile
# automake related # automake related
Makefile.in Makefile.in
compile compile
...@@ -12,4 +20,5 @@ config.guess ...@@ -12,4 +20,5 @@ config.guess
config.sub config.sub
depcomp depcomp
ltmain.sh ltmain.sh
libtool
missing missing
...@@ -14,7 +14,7 @@ pkgconfigdir = $(libdir)/pkgconfig ...@@ -14,7 +14,7 @@ pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = liboop.pc liboop-glib2.pc pkgconfig_DATA = liboop.pc liboop-glib2.pc
# versions updated as of 1.0 # versions updated as of 1.0
liboop_la_LDFLAGS = -version-info 4:1:0 # version:revision:age liboop_la_LDFLAGS = -version-info 5:0:1 # version:revision:age
liboop_la_SOURCES = sys.c select.c signal.c alloc.c read.c read-fd.c read-mem.c liboop_la_SOURCES = sys.c select.c signal.c alloc.c read.c read-fd.c read-mem.c
liboop_adns_la_LDFLAGS = -version-info 3:0:0 -rpath '$(libdir)' liboop_adns_la_LDFLAGS = -version-info 3:0:0 -rpath '$(libdir)'
......
dnl Process this file with autoconf to produce a configure script. dnl Process this file with autoconf to produce a configure script.
AC_INIT(INSTALL) AC_INIT(INSTALL)
AM_INIT_AUTOMAKE(liboop,1.0) AM_INIT_AUTOMAKE(liboop,1.0.1)
AC_CANONICAL_HOST AC_CANONICAL_HOST
AM_PROG_LIBTOOL AM_PROG_LIBTOOL
AC_PROG_CC AC_PROG_CC
......
...@@ -18,6 +18,14 @@ ...@@ -18,6 +18,14 @@
#include <poll.h> #include <poll.h>
#endif #endif
#ifdef HAVE_STRING_H
# include <string.h> /* Needed on NetBSD1.1/SPARC due to bzero/FD_ZERO. */
#endif
#ifdef HAVE_STRINGS_H
# include <strings.h> /* Needed on AIX 4.2 due to bzero/FD_ZERO. */
#endif
static int use_count = 0; static int use_count = 0;
static oop_source_sys *sys; static oop_source_sys *sys;
static oop_adapter_select *sel; static oop_adapter_select *sel;
......
...@@ -8,6 +8,14 @@ ...@@ -8,6 +8,14 @@
#include <assert.h> #include <assert.h>
#ifdef HAVE_STRING_H
# include <string.h> /* Needed on NetBSD1.1/SPARC due to bzero/FD_ZERO. */
#endif
#ifdef HAVE_STRINGS_H
# include <strings.h> /* Needed on AIX 4.2 due to bzero/FD_ZERO. */
#endif
struct select_set { struct select_set {
fd_set rfd,wfd,xfd; fd_set rfd,wfd,xfd;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment