Commit 2cc5b1ca46aa80ed97b1a605d0b4c42f11185b4e

Authored by Georg Hopp
1 parent ae6b4bcb

Remove -DREENTRANT because it's not needed right now

Showing 1 changed file with 4 additions and 4 deletions
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 TR_HASH = hexdecode.c \
8 8 hexencode.c \
... ... @@ -23,8 +23,8 @@ lib_LTLIBRARIES = libtrhashing.la
23 23 bin_PROGRAMS = trsha1speed trencodespeed
24 24
25 25 libtrhashing_la_SOURCES = $(TR_HASH)
26   -libtrhashing_la_CFLAGS = $(AM_CFLAGS) -std=c99 $(OPENSSL)
27   -libtrhashing_la_LIBADD =
  26 +libtrhashing_la_CFLAGS = $(AM_CFLAGS) $(OPENSSL)
  27 +libtrhashing_la_LIBADD =
28 28 libtrhashing_la_LDFLAGS = -version-info 0:0:0 $(AM_LDFLAGS)
29 29
30 30 trsha1speed_SOURCES = sha1speed.c
... ...
Please register or login to post a comment