From 4af2842fc43143d76020b8cc3f4ece4a9922aa55 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 16 Sep 2011 13:04:03 -0400 Subject: Instead of detecting the host type, you may use --enable-compat instead. Enabling compat will build and link against a static library containing string functions not found in older version of glibc. --- src/Makefile.am | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index db132b6..7605342 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,8 +1,12 @@ sbin_PROGRAMS= duser +duser_POSIX=-D__USE_POSIX +AM_CFLAGS=${duser_POSIX} --std=c99 -O2 -pedantic -Wall -Wextra +if HAVE_COMPAT +duser_LDFLAGS=-L$(top_srcdir)/compat -ldusercompat +else +duser_LDFLAGS= +endif -AM_CPPFLAGS= -I$(top_srcdir)/include - -duser_LDFLAGS= -L$(top_srcdir)/compat duser_SOURCES= duser.c \ user.c \ util.c \ -- cgit