~ubuntu-branches/ubuntu/saucy/nspr/saucy-updates

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/src/md/windows/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2009-08-10 11:34:26 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090810113426-3uv4diflrkcbdimm
Tags: 4.8-0ubuntu1
* New upstream release: 4.8 (LP: #387812)
* adjust patches to changed upstreanm codebase
  - update debian/patches/99_configure.patch
* update shlibs symbols to include new API elements
  - update debian/libnspr4-0d.symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 
47
47
include $(topsrcdir)/config/config.mk
48
48
 
49
 
ifeq ($(OS_TARGET), WIN16)
50
 
CSRCS = \
51
 
        w16null.c \
52
 
        w16thred.c \
53
 
        w16proc.c \
54
 
    w16fmem.c \
55
 
    w16sock.c \
56
 
    w16mem.c \
57
 
    w16io.c  \
58
 
    w16gc.c  \
59
 
    w16error.c  \
60
 
    w16stdio.c  \
61
 
    w16callb.c \
62
 
    ntinrval.c \
63
 
    $(NULL)
64
 
else
65
 
ifeq ($(OS_TARGET), WIN95)
 
49
ifeq (,$(filter-out WIN95 WINCE, $(OS_TARGET)))
66
50
CSRCS =          \
67
51
    ntmisc.c \
68
52
    ntsec.c   \
97
81
    w32shm.c \
98
82
    $(NULL)
99
83
endif
100
 
endif
101
84
 
102
85
TARGETS = $(OBJS)
103
86