From 101deb32a0e2d6a40fcbc90f382251db5be34895 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Mon, 8 Apr 2013 09:18:26 +0200 Subject: [PATCH] Fix CFLAGS and README --- CMakeLists.txt | 2 +- README | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b1871a6..db7ef65 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ cmake_policy(SET CMP0015 NEW) project(odhcp6c C) set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -std=c99") -add_definitions(-D_GNU_SOURCE -Os -Wall -Werror -Wextra -pedantic) +add_definitions(-D_GNU_SOURCE -Wall -Werror -Wextra -pedantic) add_executable(odhcp6c src/odhcp6c.c src/dhcpv6.c src/ra.c src/script.c src/md5.c) target_link_libraries(odhcp6c resolv) diff --git a/README b/README index 6c23012..f1538f4 100644 --- a/README +++ b/README @@ -13,8 +13,13 @@ odhcp6c is a minimal DHCPv6 and RA-client for use in embedded Linux systems. b) handling of valid and preferred lifetimes c) duplicate address detection -2. Handling of IPv6-Prefixes (Prefix Delegation) - a) requesting of prefixes +2. Support for DHCPv6 extension + a) Reconfigure-Messages + b) Prefix Delegation + c) Prefix Exclusion + d) DNS Configuration Options + e) NTP Options + f) SIP Options 3. Stateless fallback-support -- 2.39.2