-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop socket-based communication if favor of the POSIX message queue. The main advantage of using this approach is code simplification and reduction of the communication overhead - the network stack. Note, that we are using a non-portable implementation which allows multiplexing, which means that this code will not work in the Cygwin environment...
- Loading branch information
Showing
5 changed files
with
50 additions
and
65 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# cmusfm - configure.ac | ||
# Copyright (c) 2014 Arkadiusz Bokowy | ||
# Copyright (c) 2014-2015 Arkadiusz Bokowy | ||
|
||
AC_INIT([cmusfm], [0.2.0], [[email protected]]) | ||
AC_INIT([cmusfm], [0.2.5], [[email protected]]) | ||
AC_CONFIG_HEADERS([config.h]) | ||
AM_INIT_AUTOMAKE([foreign subdir-objects -Wall -Werror]) | ||
|
||
|
@@ -24,6 +24,14 @@ AC_CHECK_LIB( | |
[crypto], [MD5], | ||
[], [AC_MSG_ERROR([crypto library not found])] | ||
) | ||
AC_CHECK_HEADERS( | ||
[mqueue.h], | ||
[], [AC_MSG_ERROR([mqueue.h header not found])] | ||
) | ||
AC_CHECK_LIB( | ||
[rt], [mq_open], | ||
[], [AC_MSG_ERROR([rt library not found])] | ||
) | ||
AC_CHECK_HEADERS( | ||
[poll.h], | ||
[], [AC_MSG_ERROR([poll.h header not found])] | ||
|
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