Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 494924 | Differences between
and this patch

Collapse All | Expand All

(-)libev-4.15.org/configure.ac (-3 / +4 lines)
Lines 1-10 Link Here
1
AC_INIT
1
AC_INIT([libev],[4.15])
2
2
3
orig_CFLAGS="$CFLAGS"
3
orig_CFLAGS="$CFLAGS"
4
4
5
AC_CONFIG_SRCDIR([ev_epoll.c])
5
AC_CONFIG_SRCDIR([ev_epoll.c])
6
AC_CONFIG_MACRO_DIR([m4])
6
7
7
AM_INIT_AUTOMAKE(libev,4.15) dnl also update ev.h!
8
AM_INIT_AUTOMAKE
8
AC_CONFIG_HEADERS([config.h])
9
AC_CONFIG_HEADERS([config.h])
9
AM_MAINTAINER_MODE
10
AM_MAINTAINER_MODE
10
11
Lines 22-26 Link Here
22
23
23
m4_include([libev.m4])
24
m4_include([libev.m4])
24
25
25
AC_CONFIG_FILES([Makefile])
26
AC_CONFIG_FILES([Makefile libev.pc])
26
AC_OUTPUT
27
AC_OUTPUT
(-)libev-4.15.org/libev.pc.in (+11 lines)
Line 0 Link Here
1
prefix=@prefix@
2
exec_prefix=@prefix@
3
libdir=@libdir@
4
includedir=@includedir@
5
6
Name: libev
7
Description: A high-performance event loop/event model with lots of features
8
Version: @VERSION@
9
Libs: -L${libdir} -lev
10
Libs.private:
11
Cflags: -I${includedir}
(-)libev-4.15.org/Makefile.am (+3 lines)
Lines 16-20 Link Here
16
libev_la_SOURCES = ev.c event.c
16
libev_la_SOURCES = ev.c event.c
17
libev_la_LDFLAGS = -version-info $(VERSION_INFO)
17
libev_la_LDFLAGS = -version-info $(VERSION_INFO)
18
18
19
pkgconfigdir = $(libdir)/pkgconfig
20
pkgconfig_DATA = libev.pc
21
19
ev.3: ev.pod
22
ev.3: ev.pod
20
	pod2man -n LIBEV -r "libev-$(VERSION)" -c "libev - high performance full featured event loop" -s3 <$< >$@
23
	pod2man -n LIBEV -r "libev-$(VERSION)" -c "libev - high performance full featured event loop" -s3 <$< >$@

Return to bug 494924