diff options
author | Ricard Wanderlof <ricard.wanderlof@axis.com> | 2008-08-28 07:33:17 +0000 |
---|---|---|
committer | Ricard Wanderlof <ricard.wanderlof@axis.com> | 2008-08-28 07:33:17 +0000 |
commit | 7253e71055129d7dac7b56608c745dab036260ca (patch) | |
tree | 9b058f2724437bf3b8fbb4c6c5d11752023b8df6 /Makefile.in | |
parent | 1372e95c24d3ec786f43e7281663d93e981db67a (diff) | |
download | uClibc-alpine-7253e71055129d7dac7b56608c745dab036260ca.tar.bz2 uClibc-alpine-7253e71055129d7dac7b56608c745dab036260ca.tar.xz |
Move ifaddrs.h from uClibc-internal location libc/inet/ to include/, and make
it conditionally included among the installed header files depending on
UCLIBC_HAS_AI_ADDRCONFIG.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 5a8df8c55..7981324a0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -331,6 +331,10 @@ ifneq ($(UCLIBC_HAS_CRYPT),y) # Remove crypt.h since libcrypt was disabled upon request $(RM) $(PREFIX)$(DEVEL_PREFIX)include/crypt.h endif +ifneq ($(UCLIBC_SUPPORT_AI_ADDRCONFIG),y) + # Remove ifaddrs.h since the corresponding functionality is disabled + $(RM) $(PREFIX)$(DEVEL_PREFIX)include/ifaddrs.h +endif # Installs development library links. install_dev: install_headers |