Browse Source

Remove -DREENTRANT because it's not needed right now

1.0.0
Georg Hopp 10 years ago
parent
commit
546694ec1f
  1. 4
      src/Makefile.am
  2. 4
      src/cbuf/Makefile.am
  3. 4
      src/dynarray/Makefile.am
  4. 4
      src/hash/Makefile.am
  5. 4
      src/heap/Makefile.am
  6. 13
      src/queue/Makefile.am
  7. 4
      src/tree/Makefile.am

4
src/Makefile.am

@ -1,8 +1,8 @@
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = subdir-objects
AM_CFLAGS += -I../include/ -std=c99 -DREENTRANT -lpthread
AM_LDFLAGS += -lpthread
AM_CFLAGS += -I../include/ -std=c99
AM_LDFLAGS +=
TRDATALIBS = cbuf/libcbuf.la \
hash/libhash.la \

4
src/cbuf/Makefile.am

@ -1,8 +1,8 @@
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = subdir-objects
AM_CFLAGS += -I../../include/ -std=c99 -DREENTRANT -lpthread
AM_LDFLAGS += -lpthread
AM_CFLAGS += -I../../include/ -std=c99
AM_LDFLAGS +=
CB = cbuf.c read.c \
get_line.c set_data.c get_data.c \

4
src/dynarray/Makefile.am

@ -1,8 +1,8 @@
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = subdir-objects
AM_CFLAGS += -I../../include/ -std=c99 -DREENTRANT -lpthread
AM_LDFLAGS += -lpthread
AM_CFLAGS += -I../../include/ -std=c99
AM_LDFLAGS +=
DYNARRAY = dynarray.c put.c find_first_free.c

4
src/hash/Makefile.am

@ -1,8 +1,8 @@
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = subdir-objects
AM_CFLAGS += -I../../include/ -std=c99 -DREENTRANT -lpthread
AM_LDFLAGS += -lpthread
AM_CFLAGS += -I../../include/ -std=c99
AM_LDFLAGS +=
HASH = hash.c add.c get.c get_first.c delete.c each.c value.c \
cleanup.c interface/hashable.c

4
src/heap/Makefile.am

@ -1,8 +1,8 @@
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = subdir-objects
AM_CFLAGS += -I../../include/ -std=c99 -DREENTRANT -lpthread
AM_LDFLAGS += -lpthread
AM_CFLAGS += -I../../include/ -std=c99
AM_LDFLAGS +=
HEAP = heap.c put.c get.c

13
src/queue/Makefile.am

@ -1,10 +1,17 @@
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = subdir-objects
AM_CFLAGS += -I../../include/ -std=c99 -DREENTRANT -lpthread
AM_LDFLAGS += -lpthread
AM_CFLAGS += -I../../include/ -std=c99
AM_LDFLAGS +=
QUEUE = queue.c get.c put.c put_first.c find.c find_parent.c delete.c destroy.c
QUEUE = queue.c \
get.c \
put.c \
put_first.c \
find.c \
find_parent.c \
delete.c \
destroy.c
noinst_LTLIBRARIES = libqueue.la

4
src/tree/Makefile.am

@ -1,8 +1,8 @@
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = subdir-objects
AM_CFLAGS += -I../../include/ -std=c99 -DREENTRANT -lpthread
AM_LDFLAGS += -lpthread
AM_CFLAGS += -I../../include/ -std=c99
AM_LDFLAGS +=
TREE = tree.c \
tree_node.c \

Loading…
Cancel
Save