Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
pullmoll committed Sep 4, 2015
0 parents commit a8c5843
Show file tree
Hide file tree
Showing 13 changed files with 1,034 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.deps
INSTALL
Makefile.in
Makefile
aclocal.m4
autom4te.cache/
compile
config.log
config.status
configure
depcomp
install-sh
missing
5 changes: 5 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Original code:
The Free Software Foundation, Inc.

Packaging:
Jürgen Buchmüller <[email protected]>
18 changes: 18 additions & 0 deletions COPYING
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Copyright (C) 1988-1994,1996-1999,2003,2004,2005,2009,2011
Free Software Foundation, Inc.
This file is part of the GNU C Library.

The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, write to the Free
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.0 Initial release.
5 changes: 5 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Makefile.am - procress this file with automake to produce Makefile.in
lib_LIBRARIES = libobstack.a
libobstack_a_SOURCES = obstack.c
libobstack_a_HEADERS = obstack.h
libobstack_adir = $(includedir)
1 change: 1 addition & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
First implementation of a libobstack.a for musl.
5 changes: 5 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
musl-obstack

The musl-obstack package is a copy + paste of the `obstack`
functions and macros found in GNU libc for use with musl libc.

5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
### musl-obstack

The musl-obstack package is a copy + paste of the `obstack`
functions and macros found in GNU libc for use with musl libc.

4 changes: 4 additions & 0 deletions bootstrap.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
aclocal
autoconf
automake --add-missing
15 changes: 15 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
dnl Process this file with autoconf to produce a configure script

AC_PREREQ(2.69)

AC_INIT([obstack], [1.0], [Jürgen Buchmüller <[email protected]>])

AM_INIT_AUTOMAKE([1.15])

AC_PROG_CC
AC_PROG_RANLIB

AC_CHECK_HEADERS(stddef.h stdio.h stdint.h inttypes.h)

AC_CONFIG_FILES([Makefile musl-obstack.pc])
AC_OUTPUT
10 changes: 10 additions & 0 deletions musl-obstack.pc.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
prefix=/usr
exec_prefix=${prefix}
libdir=${prefix}/lib
includedir=${prefix}/include

Name: musl-obstack
Description: Implementation of obstack functions for musl libc
Version: @VERSION@
Libs: -L${libdir} -lobstack
Cflags: -I${includedir}
Loading

0 comments on commit a8c5843

Please sign in to comment.