Commit 546694ec1f292ca3b9c5b88be5b6cc27f6ab3a81

Authored by Georg Hopp
1 parent 38f0428c

Remove -DREENTRANT because it's not needed right now

1 1 ACLOCAL_AMFLAGS = -I m4
2 2 AUTOMAKE_OPTIONS = subdir-objects
3 3
4   -AM_CFLAGS += -I../include/ -std=c99 -DREENTRANT -lpthread
5   -AM_LDFLAGS += -lpthread
  4 +AM_CFLAGS += -I../include/ -std=c99
  5 +AM_LDFLAGS +=
6 6
7 7 TRDATALIBS = cbuf/libcbuf.la \
8 8 hash/libhash.la \
... ...
1 1 ACLOCAL_AMFLAGS = -I m4
2 2 AUTOMAKE_OPTIONS = subdir-objects
3 3
4   -AM_CFLAGS += -I../../include/ -std=c99 -DREENTRANT -lpthread
5   -AM_LDFLAGS += -lpthread
  4 +AM_CFLAGS += -I../../include/ -std=c99
  5 +AM_LDFLAGS +=
6 6
7 7 CB = cbuf.c read.c \
8 8 get_line.c set_data.c get_data.c \
... ...
1 1 ACLOCAL_AMFLAGS = -I m4
2 2 AUTOMAKE_OPTIONS = subdir-objects
3 3
4   -AM_CFLAGS += -I../../include/ -std=c99 -DREENTRANT -lpthread
5   -AM_LDFLAGS += -lpthread
  4 +AM_CFLAGS += -I../../include/ -std=c99
  5 +AM_LDFLAGS +=
6 6
7 7 DYNARRAY = dynarray.c put.c find_first_free.c
8 8
... ...
1 1 ACLOCAL_AMFLAGS = -I m4
2 2 AUTOMAKE_OPTIONS = subdir-objects
3 3
4   -AM_CFLAGS += -I../../include/ -std=c99 -DREENTRANT -lpthread
5   -AM_LDFLAGS += -lpthread
  4 +AM_CFLAGS += -I../../include/ -std=c99
  5 +AM_LDFLAGS +=
6 6
7 7 HASH = hash.c add.c get.c get_first.c delete.c each.c value.c \
8 8 cleanup.c interface/hashable.c
... ...
1 1 ACLOCAL_AMFLAGS = -I m4
2 2 AUTOMAKE_OPTIONS = subdir-objects
3 3
4   -AM_CFLAGS += -I../../include/ -std=c99 -DREENTRANT -lpthread
5   -AM_LDFLAGS += -lpthread
  4 +AM_CFLAGS += -I../../include/ -std=c99
  5 +AM_LDFLAGS +=
6 6
7 7 HEAP = heap.c put.c get.c
8 8
... ...
1 1 ACLOCAL_AMFLAGS = -I m4
2 2 AUTOMAKE_OPTIONS = subdir-objects
3 3
4   -AM_CFLAGS += -I../../include/ -std=c99 -DREENTRANT -lpthread
5   -AM_LDFLAGS += -lpthread
  4 +AM_CFLAGS += -I../../include/ -std=c99
  5 +AM_LDFLAGS +=
6 6
7   -QUEUE = queue.c get.c put.c put_first.c find.c find_parent.c delete.c destroy.c
  7 +QUEUE = queue.c \
  8 + get.c \
  9 + put.c \
  10 + put_first.c \
  11 + find.c \
  12 + find_parent.c \
  13 + delete.c \
  14 + destroy.c
8 15
9 16 noinst_LTLIBRARIES = libqueue.la
10 17
... ...
1 1 ACLOCAL_AMFLAGS = -I m4
2 2 AUTOMAKE_OPTIONS = subdir-objects
3 3
4   -AM_CFLAGS += -I../../include/ -std=c99 -DREENTRANT -lpthread
5   -AM_LDFLAGS += -lpthread
  4 +AM_CFLAGS += -I../../include/ -std=c99
  5 +AM_LDFLAGS +=
6 6
7 7 TREE = tree.c \
8 8 tree_node.c \
... ...
Please register or login to post a comment