Skip to content
This repository has been archived by the owner on Jan 11, 2020. It is now read-only.

Commit

Permalink
Created the project.
Browse files Browse the repository at this point in the history
  • Loading branch information
artob committed May 18, 2013
0 parents commit 3a42cc4
Show file tree
Hide file tree
Showing 21 changed files with 187 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .gitignore
@@ -0,0 +1,17 @@
.DS_Store
.tmp/
pkg/
tmp/
*~

# GNU Autotools
etc/aclocal/
Makefile
Makefile.in
aclocal.m4
autom4te.cache/
config.log
config.status
configure
libtool
stamp-h1
1 change: 1 addition & 0 deletions AUTHORS
@@ -0,0 +1 @@
* Arto Bendiken <arto@bendiken.net>
Empty file added CREDITS
Empty file.
3 changes: 3 additions & 0 deletions Makefile.am
@@ -0,0 +1,3 @@
SUBDIRS = lib src test
EXTRA_DIST = AUTHORS CREDITS README UNLICENSE VERSION
ACLOCAL_AMFLAGS = -I etc/aclocal
1 change: 1 addition & 0 deletions README
2 changes: 2 additions & 0 deletions README.rst
@@ -0,0 +1,2 @@
ablibc
======
Empty file added TODO
Empty file.
24 changes: 24 additions & 0 deletions UNLICENSE
@@ -0,0 +1,24 @@
This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.

In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.

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 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.

For more information, please refer to <http://unlicense.org/>
1 change: 1 addition & 0 deletions VERSION
@@ -0,0 +1 @@
0.0.0
2 changes: 2 additions & 0 deletions autogen.sh
@@ -0,0 +1,2 @@
#!/bin/sh
autoreconf --force --install
77 changes: 77 additions & 0 deletions configure.ac
@@ -0,0 +1,77 @@
dnl configure.ac -*- Autoconf -*-
dnl
dnl Process this file with `autoconf` to produce a configure script.
dnl
dnl This is free and unencumbered software released into the public domain.
AC_PREREQ([2.68])

dnl Define version information:
m4_define([VERSION_MAJOR],
m4_esyscmd([cut -d'.' -f1 VERSION | tr -d '\n']))
m4_define([VERSION_MINOR],
m4_esyscmd([cut -d'.' -f2 VERSION | tr -d '\n']))
m4_define([VERSION_PATCH],
m4_esyscmd([cut -d'.' -f3 VERSION | tr -d '\n']))
m4_define([VERSION_STRING],
m4_esyscmd([git describe --dirty --always | tr -d '\n']))

dnl Define package information:
AC_INIT([ablibc], [VERSION_STRING],
[arto@bendiken.net], [ablibc],
[http://ablibc.org/])

dnl Configure Autoconf:
AC_CONFIG_HEADERS([src/config.h])
AC_CONFIG_SRCDIR([src/Makefile.am])
AC_CONFIG_AUX_DIR([etc/aclocal])
AC_CONFIG_MACRO_DIR([etc/aclocal])
AC_CONFIG_LIBOBJ_DIR([lib])

dnl Configure Automake:
AM_INIT_AUTOMAKE([foreign -Wall -Werror dist-bzip2 subdir-objects nostdinc])
AM_SILENT_RULES([yes])

dnl Check for programs:
AC_PROG_CC(clang gcc cc)
AC_PROG_CC_C99
AM_PROG_CC_C_O
AC_PROG_CPP
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
LT_INIT

dnl Check for configuration options:
# --enable-debug/--disable-debug
AC_ARG_ENABLE([debug],
[AS_HELP_STRING([--enable-debug], [build with debugging support [default=no]])],
[], [enable_debug=no])
AS_IF([test "x$enable_debug" != "xno"],
[AC_DEFINE([DEBUG], [1], [Enable debugging support.])],
[AC_DEFINE([NDEBUG], [1], [Disable assertions.])])
AM_CONDITIONAL([ENABLE_DEBUG], [test "x$enable_debug" != "xno"])
# --enable-unicode/--disable-unicode
AC_ARG_ENABLE([unicode],
[AS_HELP_STRING([--disable-unicode], [omit support for Unicode strings])])
AS_IF([test "x$enable_unicode" == "xno"],
[AC_DEFINE([DISABLE_UNICODE], 1, [Define to disable Unicode string support.])])

dnl Check for libraries:

dnl Check for header files:

dnl Check for types:

dnl Check for structures:

dnl Check for compiler characteristics:
AC_CANONICAL_HOST

dnl Check for library functions:

dnl Check for system services:

dnl Generate output:
AC_CONFIG_FILES([Makefile lib/Makefile man/Makefile src/Makefile test/Makefile])
AC_SUBST([PACKAGE_VERSION_MAJOR], ["VERSION_MAJOR"])
AC_SUBST([PACKAGE_VERSION_MINOR], ["VERSION_MINOR"])
AC_SUBST([PACKAGE_VERSION_PATCH], ["VERSION_PATCH"])
AC_OUTPUT
Empty file added doc/manual/.gitkeep
Empty file.
7 changes: 7 additions & 0 deletions etc/.gitignore
@@ -0,0 +1,7 @@
doap.html
doap.json
doap.jsonld
doap.nq
doap.nt
doap.ttl
doap.xml
Empty file added etc/aclocal/.gitkeep
Empty file.
33 changes: 33 additions & 0 deletions etc/doap.rdf
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:dc="http://purl.org/dc/terms/"
xmlns:doap="http://usefulinc.com/ns/doap#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<doap:Project rdf:about="http://ablibc.org/">
<dc:creator rdf:resource="http://ar.to/#self"/>
<doap:blog rdf:resource="http://ar.to/"/>
<doap:bug-database rdf:resource="https://github.com/abunix/ablibc/issues"/>
<doap:created>2013-05-18</doap:created>
<doap:description xml:lang="en">
...
</doap:description>
<doap:developer rdf:resource="http://ar.to/#self"/>
<doap:documenter rdf:resource="http://ar.to/#self"/>
<doap:download-page rdf:resource="http://sourceforge.net/projects/ablibc/files/"/>
<doap:homepage rdf:resource="http://ablibc.org/"/>
<doap:license rdf:resource="http://creativecommons.org/licenses/publicdomain/"/>
<doap:maintainer rdf:resource="http://ar.to/#self"/>
<doap:name>ablibc</doap:name>
<doap:platform>C</doap:platform>
<doap:shortdesc xml:lang="en">...</doap:shortdesc>
<foaf:maker rdf:resource="http://ar.to/#self"/>
</doap:Project>
<foaf:Person rdf:about="http://ar.to/#self">
<foaf:made rdf:resource="http://ablibc.org/"/>
<foaf:mbox rdf:resource="mailto:arto@bendiken.net"/>
<foaf:mbox_sha1sum>a033f652c84a4d73b8c26d318c2395699dd2bdfb</foaf:mbox_sha1sum>
<foaf:name>Arto Bendiken</foaf:name>
<rdfs:isDefinedBy rdf:resource="http://ar.to/foaf.rdf"/>
</foaf:Person>
</rdf:RDF>
Empty file added lib/Makefile.am
Empty file.
Empty file added man/Makefile.am
Empty file.
10 changes: 10 additions & 0 deletions src/.gitignore
@@ -0,0 +1,10 @@
.deps/
.libs/
.dirstamp
*.a
*.o
*.la
*.lo
config.h
config.h.in
config.h.in~
Empty file added src/Makefile.am
Empty file.
9 changes: 9 additions & 0 deletions test/.gitignore
@@ -0,0 +1,9 @@
.deps/
.libs/
.dirstamp
*.a
*.o
*.la
*.lo
*.log
*.trs
Empty file added test/Makefile.am
Empty file.

0 comments on commit 3a42cc4

Please sign in to comment.