widget/tests/scribble/Makefile.in:

- Link with -lpwcac -ldbm on all platforms, not just Linux, FreeBSD, and
SunOS.
- Correct linking order: $(PNG_LIBS) needs to be after -limg.

widget/tests/scribble/main.cpp
- Declare extern "C" for the XP_ReBuffer stub.
- Declare main to return int because it does return a value.

Thanks to wtc@netscape.com (Wan-Teh Chang) for the fix.


git-svn-id: svn://10.0.0.236/trunk@15910 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ramiro%netscape.com
1998-12-07 06:51:26 +00:00
parent 9c079a8bd4
commit f097a21a0c
2 changed files with 4 additions and 9 deletions

View File

@@ -75,7 +75,6 @@ OBJS = $(CPPSRCS:.cpp=.o)
EX_LIBS = \
-L$(DIST)/bin \
-lraptorbase \
$(PNG_LIBS) \
-lpref \
-lraptorbase \
$(TOOLKIT_WIDGET_LIB) \
@@ -93,6 +92,7 @@ EX_LIBS = \
-lgophurl \
-lhttpurl \
-limg \
$(PNG_LIBS) \
$(JPEG_LIBS) \
-ljs \
-ljsdom \
@@ -104,6 +104,7 @@ EX_LIBS = \
-lnetlib \
-lnetutil \
-lnetwork \
-lpwcac \
-lraptorwebwidget \
-lreg \
-lremoturl \
@@ -119,14 +120,8 @@ EX_LIBS = \
-lxpcom \
$(ZLIB_LIBS) \
-lraptorplugin \
$(NULL)
ifneq (,$(filter FreeBSD Linux SunOS,$(OS_ARCH)))
EX_LIBS += \
-lpwcac \
-ldbm \
$(NULL)
endif
PROGS = main

View File

@@ -59,7 +59,7 @@ extern "C" char *fe_GetConfigDir(void)
}
/* dist/public/xp/xp_linebuf.h */
int XP_ReBuffer (const char *net_buffer, int32 net_buffer_size,
extern "C" int XP_ReBuffer (const char *net_buffer, int32 net_buffer_size,
uint32 desired_buffer_size,
char **bufferP, uint32 *buffer_sizeP,
uint32 *buffer_fpP,
@@ -72,7 +72,7 @@ int XP_ReBuffer (const char *net_buffer, int32 net_buffer_size,
return(0);
}
void main(int argc, char **argv)
int main(int argc, char **argv)
{
int argC = argc;
return(CreateApplication(&argC, argv));