Fix radius_example build
radius_example needs the -lrt option to build with some glibc versions. Signed-off-by: Amit Khatri <amit.khatri@samsung.com>
This commit is contained in:
parent
75aea3e704
commit
6a6afc02c0
1 changed files with 2 additions and 1 deletions
|
@ -21,6 +21,7 @@ CFLAGS += -I../src/utils
|
|||
LIBS = ../src/radius/libradius.a
|
||||
LIBS += ../src/crypto/libcrypto.a
|
||||
LIBS += ../src/utils/libutils.a
|
||||
LLIBS = -lrt
|
||||
|
||||
../src/utils/libutils.a:
|
||||
$(MAKE) -C ../src/utils
|
||||
|
@ -36,7 +37,7 @@ LIBS += ../src/utils/libutils.a
|
|||
OBJS_ex = radius_example.o
|
||||
|
||||
radius_example: $(OBJS_ex) $(LIBS)
|
||||
$(LDO) $(LDFLAGS) -o radius_example $(OBJS_ex) $(LIBS)
|
||||
$(LDO) $(LDFLAGS) -o radius_example $(OBJS_ex) $(LIBS) $(LLIBS)
|
||||
|
||||
clean:
|
||||
$(MAKE) -C ../src clean
|
||||
|
|
Loading…
Reference in a new issue