From 2cc5b1ca46aa80ed97b1a605d0b4c42f11185b4e Mon Sep 17 00:00:00 2001 From: Georg Hopp Date: Wed, 21 Oct 2015 21:31:03 +0200 Subject: [PATCH] Remove -DREENTRANT because it's not needed right now --- src/Makefile.am | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 725f647..1ac38ed 100644 --- a/src/Makefile.am +++ b/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 += TR_HASH = hexdecode.c \ hexencode.c \ @@ -23,8 +23,8 @@ lib_LTLIBRARIES = libtrhashing.la bin_PROGRAMS = trsha1speed trencodespeed libtrhashing_la_SOURCES = $(TR_HASH) -libtrhashing_la_CFLAGS = $(AM_CFLAGS) -std=c99 $(OPENSSL) -libtrhashing_la_LIBADD = +libtrhashing_la_CFLAGS = $(AM_CFLAGS) $(OPENSSL) +libtrhashing_la_LIBADD = libtrhashing_la_LDFLAGS = -version-info 0:0:0 $(AM_LDFLAGS) trsha1speed_SOURCES = sha1speed.c