Closed
Bug 11028
Opened 26 years ago
Closed 26 years ago
pwcac is still getting built
Categories
(Core :: Networking, defect, P3)
Tracking
()
VERIFIED
FIXED
M10
People
(Reporter: colin, Assigned: gagan)
Details
lib/libpwcac (password caching I thing) is still getting built (from
the main Makefile). I believe this is part of the old networking code
and should therefore be ifdef'd out of the standard build now.
Comment 1•26 years ago
|
||
It is, and under linux/unix it´s save to be removed or #ifdefed from the main
makefile.
Updated•26 years ago
|
Target Milestone: M10
Comment 2•26 years ago
|
||
Andreas, can you send us a diff?
Comment 3•26 years ago
|
||
sure:
Index: mozilla/Makefile.in
===================================================================
RCS file: /cvsroot/mozilla/Makefile.in,v
retrieving revision 1.39
diff -c -r1.39 Makefile.in
*** Makefile.in 1999/07/29 00:43:33 1.39
--- Makefile.in 1999/08/02 21:39:59
***************
*** 63,73 ****
modules/oji \
modules/plugin \
modules/libjar \
- caps \
lib/xp \
lib/libpwcac \
htmlparser \
! expat \
gfx \
dom \
view \
--- 63,81 ----
modules/oji \
modules/plugin \
modules/libjar \
lib/xp \
+ caps \
+ $(NSNULL)
+
+ #ifndef NECKO
+ DIRS += \
lib/libpwcac \
+ $(NSNULL)
+ #endif
+
+ DIRS += \
htmlparser \
! expat \
gfx \
dom \
view \
have fun
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Updated•26 years ago
|
Status: RESOLVED → REOPENED
Updated•26 years ago
|
Status: REOPENED → RESOLVED
Closed: 26 years ago → 26 years ago
Resolution: FIXED → WONTFIX
Updated•26 years ago
|
Status: RESOLVED → REOPENED
Comment 5•26 years ago
|
||
I feel soooo dumb. Don't us #ifndef in Makefiles unless you really want
something to happen. Use ifndef instead. Reopened the bug. As soon as I return
from work I will check again if its really save to remove libpwcac from the
makefile.
Updated•26 years ago
|
Status: REOPENED → RESOLVED
Closed: 26 years ago → 26 years ago
Resolution: --- → FIXED
Comment 7•26 years ago
|
||
I better had looked if gagan really used my non working patch before reopening,
this is fixed.
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Bulk move of all Necko (to be deleted component) bugs to new Networking
component.
You need to log in
before you can comment on or make changes to this bug.
Description
•