Browse Source

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>
Amit Khatri 11 years ago
parent
commit
6a6afc02c0
1 changed files with 2 additions and 1 deletions
  1. 2 1
      radius_example/Makefile

+ 2 - 1
radius_example/Makefile

@@ -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