Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2008-02-04 15:02:26 +0300
committerCorinna Vinschen <corinna@vinschen.de>2008-02-04 15:02:26 +0300
commit5556c6209fbbc743eae3bf99b19cc8b899684d5f (patch)
treeb801287c8dcb18e004d8fc0049f5bc1c1597bd76
parent340e2fa50432585316b7828b4a696162a1920733 (diff)
* Makefile.in: Don't link strfuncs.o from the Cygwin build dir.
Build it again with __OUTSIDE_CYGWIN__ defined.
-rw-r--r--winsup/cygserver/ChangeLog5
-rw-r--r--winsup/cygserver/Makefile.in7
2 files changed, 10 insertions, 2 deletions
diff --git a/winsup/cygserver/ChangeLog b/winsup/cygserver/ChangeLog
index 1aea84407..fddfa4b8f 100644
--- a/winsup/cygserver/ChangeLog
+++ b/winsup/cygserver/ChangeLog
@@ -1,3 +1,8 @@
+2008-02-03 Brian Dessent <brian@dessent.net>
+
+ * Makefile.in: Don't link strfuncs.o from the Cygwin build dir.
+ Build it again with __OUTSIDE_CYGWIN__ defined.
+
2007-11-05 Corinna Vinschen <corinna@vinschen.de>
* bsd_helper.cc (tunable_params): Add kern.ipc.shm_allow_removed as
diff --git a/winsup/cygserver/Makefile.in b/winsup/cygserver/Makefile.in
index 0671432ec..cea7bcd52 100644
--- a/winsup/cygserver/Makefile.in
+++ b/winsup/cygserver/Makefile.in
@@ -43,7 +43,7 @@ OBJS:= cygserver.o client.o process.o msg.o sem.o shm.o threaded_queue.o \
sysv_msg.o sysv_sem.o sysv_shm.o
LIBOBJS:=${patsubst %.o,lib%.o,$(OBJS)}
-CYGWIN_OBJS:=$(cygwin_build)/smallprint.o $(cygwin_build)/strfuncs.o $(cygwin_build)/version.o
+CYGWIN_OBJS:=$(cygwin_build)/smallprint.o $(cygwin_build)/version.o
CYGWIN_LIB:=$(cygwin_build)/libcygwin.a
@@ -67,7 +67,7 @@ libclean:
fullclean: clean libclean
-cygserver.exe: $(CYGWIN_LIB) $(OBJS) $(CYGWIN_OBJS)
+cygserver.exe: $(CYGWIN_LIB) $(OBJS) $(CYGWIN_OBJS) strfuncs.o
$(CXX) -o $@ ${wordlist 2,999,$^} -L$(cygwin_build) -lntdll
$(cygwin_build)/%.o: $(cygwin_source)/%.cc
@@ -81,6 +81,9 @@ Makefile: Makefile.in configure
lib%.o: %.cc
${filter-out -D__OUTSIDE_CYGWIN__, $(COMPILE_CXX)} -I$(updir)/cygwin -o $(@D)/${basename $(@F)}$o $<
+strfuncs.o: $(cygwin_source)/strfuncs.cc
+ $(COMPILE_CXX) -I$(updir)/cygwin -o $(@D)/$(*F)$o $<
+
libcygserver.a: $(LIBOBJS)
$(AR) crus $@ $?