File tree 4 files changed +35
-3
lines changed
4 files changed +35
-3
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ dist_bin_SCRIPTS = event_rpcgen.py
93
93
endif
94
94
95
95
pkgconfigdir =$(libdir ) /pkgconfig
96
- LIBEVENT_PKGCONFIG =libevent.pc
96
+ LIBEVENT_PKGCONFIG =libevent.pc libevent_core.pc libevent_extra.pc
97
97
98
98
# These sources are conditionally added by configure.ac or conditionally
99
99
# included from other files.
@@ -299,5 +299,5 @@ doxygen: FORCE
299
299
doxygen $(srcdir ) /Doxyfile
300
300
FORCE :
301
301
302
- DISTCLEANFILES += *~ libevent.pc ./include/event2/event-config.h
302
+ DISTCLEANFILES += *~ libevent.pc libevent_core.pc libevent_extra.pc ./include/event2/event-config.h
303
303
Original file line number Diff line number Diff line change @@ -915,5 +915,5 @@ AC_SUBST([LIBEVENT_GC_SECTIONS])
915
915
916
916
AM_CONDITIONAL([ INSTALL_LIBEVENT] , [ test "$enable_libevent_install" = "yes"] )
917
917
918
- AC_CONFIG_FILES ( [ libevent.pc libevent_openssl.pc libevent_pthreads.pc] )
918
+ AC_CONFIG_FILES ( [ libevent.pc libevent_openssl.pc libevent_pthreads.pc libevent_core.pc libevent_extra.pc ] )
919
919
AC_OUTPUT (Makefile)
Original file line number Diff line number Diff line change
1
+ #libevent pkg-config source file
2
+
3
+ prefix=@prefix@
4
+ exec_prefix=@exec_prefix@
5
+ libdir=@libdir@
6
+ includedir=@includedir@
7
+
8
+ Name: libevent_core
9
+ Description: libevent_core
10
+ Version: @VERSION@
11
+ Requires:
12
+ Conflicts:
13
+ Libs: -L${libdir} -levent_core
14
+ Libs.private: @LIBS@
15
+ Cflags: -I${includedir}
16
+
Original file line number Diff line number Diff line change
1
+ #libevent pkg-config source file
2
+
3
+ prefix=@prefix@
4
+ exec_prefix=@exec_prefix@
5
+ libdir=@libdir@
6
+ includedir=@includedir@
7
+
8
+ Name: libevent_extra
9
+ Description: libevent_extra
10
+ Version: @VERSION@
11
+ Requires:
12
+ Conflicts:
13
+ Libs: -L${libdir} -levent_extra
14
+ Libs.private: @LIBS@
15
+ Cflags: -I${includedir}
16
+
You can’t perform that action at this time.
0 commit comments