forked from libevent/libevent
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pkgconfig files for libevent_{openssl,pthreads}
- Loading branch information
1 parent
ea1ea3d
commit ebcb1f0
Showing
5 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#libevent pkg-config source file | ||
|
||
prefix=@prefix@ | ||
exec_prefix=@exec_prefix@ | ||
libdir=@libdir@ | ||
includedir=@includedir@ | ||
|
||
Name: libevent_openssl | ||
Description: libevent_openssl adds openssl-based TLS support to libevent | ||
Version: @VERSION@ | ||
Requires: libevent | ||
Conflicts: | ||
Libs: -L${libdir} -levent_openssl | ||
Libs.private: @LIBS@ -lcrypto -lssl | ||
Cflags: -I${includedir} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#libevent pkg-config source file | ||
|
||
prefix=@prefix@ | ||
exec_prefix=@exec_prefix@ | ||
libdir=@libdir@ | ||
includedir=@includedir@ | ||
|
||
Name: libevent_pthreads | ||
Description: libevent_pthreads adds pthreads-based threading support to libevent | ||
Version: @VERSION@ | ||
Requires: libevent | ||
Conflicts: | ||
Libs: -L${libdir} -levent_pthreads | ||
Libs.private: @LIBS@ @PTHREAD_LIBS@ | ||
Cflags: -I${includedir} @PTHREAD_CFLAGS@ | ||
|