Changes in / [be1dcc26:d948095] in mainline


Ignore:
Location:
uspace
Files:
50 added
48 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile.common

    rbe1dcc26 rd948095  
    227227
    228228ifeq ($(POSIX_COMPAT),y)
    229         CFLAGS = -I$(LIBPOSIX_PREFIX)
     229        CFLAGS = -I$(LIBPOSIX_PREFIX)/include/posix  -I$(LIBPOSIX_PREFIX)/include/
    230230        LIBS += $(LIBPOSIX_PREFIX)/libposix.a
    231231endif
  • uspace/app/msim/arch_helenos/input.c

    rbe1dcc26 rd948095  
    3232/** @file HelenOS specific functions for MSIM simulator.
    3333 */
     34
     35/* Because of asprintf. */
     36#define _GNU_SOURCE
    3437#include "../../io/input.h"
    3538#include "../../io/output.h"
     
    3841#include <tinput.h>
    3942#include <errno.h>
     43#include <stdlib.h>
    4044
    4145static tinput_t *input_prompt;
  • uspace/app/msim/arch_helenos/misc.c

    rbe1dcc26 rd948095  
    4444#include <ctype.h>
    4545#include <stdio.h>
     46#include <stdlib.h>
    4647
    4748/* Define when the dprinter device shall try to filter
  • uspace/lib/posix/Makefile

    rbe1dcc26 rd948095  
    3333LSONAME = libposix.so0
    3434
    35 INCLUDE_LIBC = ./libc
     35EXTRA_CFLAGS = -Iinclude/
     36
     37INCLUDE_LIBC = ./include/libc
    3638
    3739PRE_DEPEND = $(INCLUDE_LIBC)
     
    3941
    4042SOURCES = \
    41         ctype.c \
    42         errno.c \
    43         fcntl.c \
    44         fnmatch.c \
    45         getopt.c \
    46         locale.c \
    47         math.c \
    48         pwd.c \
    49         signal.c \
    50         stdio.c \
    51         stdio/scanf.c \
    52         stdlib.c \
    53         stdlib/strtol.c \
    54         stdlib/strtold.c \
    55         string.c \
    56         strings.c \
    57         sys/stat.c \
    58         sys/wait.c \
    59         time.c \
    60         unistd.c
     43        source/ctype.c \
     44        source/errno.c \
     45        source/fcntl.c \
     46        source/fnmatch.c \
     47        source/getopt.c \
     48        source/locale.c \
     49        source/math.c \
     50        source/pwd.c \
     51        source/signal.c \
     52        source/stdio.c \
     53        source/stdio/scanf.c \
     54        source/stdlib.c \
     55        source/stdlib/strtol.c \
     56        source/stdlib/strtold.c \
     57        source/string.c \
     58        source/strings.c \
     59        source/sys/stat.c \
     60        source/sys/wait.c \
     61        source/time.c \
     62        source/unistd.c
    6163
    6264include $(USPACE_PREFIX)/Makefile.common
    6365
    6466$(INCLUDE_LIBC): ../c/include
    65         ln -s -f -n $^ $@
     67        ln -s -f -n ../$^ $@
Note: See TracChangeset for help on using the changeset viewer.