forked from sustrik/libdill
-
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.
Signed-off-by: Martin Sustrik <[email protected]>
- Loading branch information
0 parents
commit cf521ad
Showing
46 changed files
with
5,341 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Full list of copyright holders: | ||
|
||
Alex Cornejo <[email protected]> | ||
Bent Cardan <[email protected]> | ||
Constantine Tarasenkov <[email protected]> | ||
Jim Jagielski <[email protected]> | ||
Jim Schimpf <[email protected]> | ||
Luca Barbato <[email protected]> | ||
Martin Lucina <[email protected]> | ||
Martin Sustrik <[email protected]> | ||
Michael Gehring <[email protected]> | ||
Nick Desaulniers <[email protected]> | ||
Nir Soffer <[email protected]> | ||
Paul Banks <[email protected]> | ||
Yue Xu <[email protected]> | ||
|
||
* Future patches by this author are submitted under MIT/X11 license |
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,19 @@ | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), | ||
to deal in the Software without restriction, including without limitation | ||
the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
and/or sell copies of the Software, and to permit persons to whom | ||
the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included | ||
in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | ||
IN THE SOFTWARE. | ||
|
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,123 @@ | ||
# | ||
# Copyright (c) 2015 Martin Sustrik All rights reserved. | ||
# Copyright (c) 2013 Luca Barbato | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), | ||
# to deal in the Software without restriction, including without limitation | ||
# the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
# and/or sell copies of the Software, and to permit persons to whom | ||
# the Software is furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included | ||
# in all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | ||
# IN THE SOFTWARE. | ||
|
||
ACLOCAL_AMFLAGS = -I m4 | ||
|
||
################################################################################ | ||
# mill library # | ||
################################################################################ | ||
|
||
millincludedir = $(includedir) | ||
millinclude_HEADERS = libmill.h | ||
|
||
lib_LTLIBRARIES = libmill.la | ||
|
||
libmill_la_SOURCES = \ | ||
chan.h \ | ||
chan.c \ | ||
cr.h \ | ||
cr.c \ | ||
debug.h \ | ||
debug.c \ | ||
ip.h \ | ||
ip.c \ | ||
list.h \ | ||
list.c \ | ||
poller.h \ | ||
poller.c \ | ||
slist.h \ | ||
slist.c \ | ||
stack.h \ | ||
stack.c \ | ||
timer.h \ | ||
timer.c \ | ||
utils.h \ | ||
poll.inc \ | ||
epoll.inc \ | ||
kqueue.inc | ||
|
||
pkgconfigdir = $(libdir)/pkgconfig | ||
pkgconfig_DATA = libmill.pc | ||
|
||
libmill_la_LDFLAGS = -no-undefined -version-info @MILL_LIBTOOL_VERSION@ | ||
|
||
# Turn the source fortification in glibc off - otherwise it would panic | ||
# because of the stack pointer black magic in 'go' macro. | ||
libmill_la_CFLAGS = \ | ||
-fvisibility=hidden\ | ||
-DMILL_EXPORTS \ | ||
-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0 | ||
|
||
################################################################################ | ||
# automated tests # | ||
################################################################################ | ||
|
||
check_PROGRAMS = \ | ||
tests/example\ | ||
tests/go\ | ||
tests/cls\ | ||
tests/chan\ | ||
tests/choose\ | ||
tests/sleep\ | ||
tests/fdwait\ | ||
tests/tcp\ | ||
tests/udp\ | ||
tests/unix\ | ||
tests/signals\ | ||
tests/overload\ | ||
tests/ip | ||
|
||
LDADD = libmill.la | ||
|
||
TESTS = $(check_PROGRAMS) | ||
|
||
################################################################################ | ||
# additional packaging-related stuff # | ||
################################################################################ | ||
|
||
# Generate ChangeLog file from git. | ||
# Also, there's no git availabe when building from the source package and | ||
# thus no way to obtain package version. Therefore, package version is | ||
# saved into a file when building a source package. | ||
dist-hook: | ||
@if test -d "$(srcdir)/.git"; \ | ||
then \ | ||
echo Creating ChangeLog; \ | ||
cd "$(top_srcdir)"; \ | ||
(echo '# Generated by Makefile. Do not edit.'; echo; \ | ||
./missing --run git log --decorate ) > ChangeLog.tmp; \ | ||
mv -f ChangeLog.tmp $(top_distdir)/ChangeLog; \ | ||
rm -f ChangeLog.tmp; \ | ||
else \ | ||
cp -f ChangeLog $(top_distdir)/ChangeLog || \ | ||
echo Failed to generate ChangeLog >&2; \ | ||
fi; \ | ||
$(srcdir)/package_version.sh > $(distdir)/.version | ||
|
||
EXTRA_DIST = \ | ||
./abi_version.sh \ | ||
./package_version.sh \ | ||
./CMakeLists.txt | ||
|
||
distclean-local: | ||
-rm -f config.h | ||
|
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 @@ | ||
Under construction. Do not use. |
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,49 @@ | ||
#!/bin/sh | ||
|
||
# Copyright (c) 2013 Luca Barbato | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), | ||
# to deal in the Software without restriction, including without limitation | ||
# the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
# and/or sell copies of the Software, and to permit persons to whom | ||
# the Software is furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included | ||
# in all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | ||
# IN THE SOFTWARE. | ||
|
||
if [ ! -f libmill.h ]; then | ||
echo "abi_version.sh: error: libmill.h does not exist" 1>&2 | ||
exit 1 | ||
fi | ||
|
||
CURRENT=`egrep '^#define +MILL_VERSION_CURRENT +[0-9]+$' libmill.h` | ||
REVISION=`egrep '^#define +MILL_VERSION_REVISION +[0-9]+$' libmill.h` | ||
AGE=`egrep '^#define +MILL_VERSION_AGE +[0-9]+$' libmill.h` | ||
|
||
if [ -z "$CURRENT" -o -z "$REVISION" -o -z "$AGE" ]; then | ||
echo "abi_version.sh: error: could not extract version from libmill.h" 1>&2 | ||
exit 1 | ||
fi | ||
|
||
CURRENT=`echo $CURRENT | awk '{ print $3 }'` | ||
REVISION=`echo $REVISION | awk '{ print $3 }'` | ||
AGE=`echo $AGE | awk '{ print $3 }'` | ||
|
||
case $1 in | ||
-libtool) | ||
printf '%s' "$CURRENT:$REVISION:$AGE" | ||
;; | ||
*) | ||
printf '%s' "$CURRENT.$REVISION.$AGE" | ||
;; | ||
esac | ||
|
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,3 @@ | ||
#!/bin/sh | ||
|
||
autoreconf -ifv |
Oops, something went wrong.