Closed
Bug 27626
Opened 26 years ago
Closed 26 years ago
/mozilla/xpfe/bootstrap Makefile.in
Categories
(SeaMonkey :: Build Config, defect, P3)
Tracking
(Not tracked)
VERIFIED
WONTFIX
People
(Reporter: pete, Assigned: pavlov)
Details
Attachments
(2 files)
|
97 bytes,
patch
|
Details | Diff | Splinter Review | |
|
95 bytes,
patch
|
Details | Diff | Splinter Review |
/mozilla/xpfe/bootstrap $ gmake
updating xpfe/bootstrap/Makefile
eg++ -o mozilla-bin -fno-rtti -fno-exceptions -Wall -Wconversion
-Wpointer-arith -Wbad-function-cast -Wcast-align -Woverloaded-virtual
-Wsynth -Wshadow -pedantic -Wno-long-long -pthread -O
-DWIDGET_DLL=\"libwidget_gtk.so\" -DGFXWIN_DLL=\"libgfx_gtk.so\"
-I/usr/X11R6/include/gtk12 -I/usr/local/include -I/usr/X11R6/include
-I/usr/local/include/glib12 nsAppRunner.o nsSetupRegistry.o
nsSigHandlers.o nsNativeAppSupportGtk.o -Wall -W -Wno-unused -Wshadow
-Wpointer-arith -Wcast-align -pedantic -Wno-long-long -pthread -O
-L../../dist/bin -L../../dist/lib ../../dist/lib/libtimer_s.a
-lraptorgfx -lmozjs -lxpcom -ljsj -lplds3 -lplc3 -lnspr3
-L/usr/X11R6/lib -L/usr/X11R6/lib -lgtk12 -lgdk12 -L/usr/local/lib
-Wl,-E -lgmodule12 -lglib12 -lintl -lxpg4 -lXext -lX11 -lm -lgdk -lglib
-lX11 -lintl -lutil -lm
/usr/libexec/elf/ld: cannot open -lglib: No such file or directory
collect2: ld returned 1 exit status
gmake: *** [mozilla-bin] Error 1
If i change line #97 Makefile.in
LIBS += $(MOZ_GTK_LDFLAGS) -lgdk -lglib -lX11
to
LIBS += $(MOZ_GTK_LDFLAGS) -lgdk -lglib12 -lX11
then i get this:
/mozilla/xpfe/bootstrap $ gmake
updating xpfe/bootstrap/Makefile
eg++ -o mozilla-bin -fno-rtti -fno-exceptions -Wall -Wconversion
-Wpointer-arith -Wbad-function-cast -Wcast-align -Woverloaded-virtual
-Wsynth -Wshadow -pedantic -Wno-long-long -pthread -O
-DWIDGET_DLL=\"libwidget_gtk.so\" -DGFXWIN_DLL=\"libgfx_gtk.so\"
-I/usr/X11R6/include/gtk12 -I/usr/local/include -I/usr/X11R6/include
-I/usr/local/include/glib12 nsAppRunner.o nsSetupRegistry.o
nsSigHandlers.o nsNativeAppSupportGtk.o -Wall -W -Wno-unused -Wshadow
-Wpointer-arith -Wcast-align -pedantic -Wno-long-long -pthread -O
-L../../dist/bin -L../../dist/lib ../../dist/lib/libtimer_s.a
-lraptorgfx -lmozjs -lxpcom -ljsj -lplds3 -lplc3 -lnspr3
-L/usr/X11R6/lib -L/usr/X11R6/lib -lgtk12 -lgdk12 -L/usr/local/lib
-Wl,-E -lgmodule12 -lglib12 -lintl -lxpg4 -lXext -lX11 -lm -lgdk
-lglib12 -lX11 -lintl -lutil -lm
/usr/libexec/elf/ld: warning: libgmodule-1.2.so.0, needed by
/usr/local/lib/libgdk.so, not found (try using --rpath)
/usr/libexec/elf/ld: warning: libglib-1.2.so.0, needed by
/usr/local/lib/libgdk.so, not found (try using --rpath)
/usr/lib/libc.so.3: warning: this program uses gets(), which is unsafe.
/usr/lib/libc.so.3: WARNING! setkey(3) not present in the system!
/usr/lib/libc.so.3: WARNING! des_setkey(3) not present in the system!
/usr/lib/libc.so.3: WARNING! encrypt(3) not present in the system!
/usr/lib/libc.so.3: WARNING! des_cipher(3) not present in the system!
/usr/lib/libc.so.3: warning: this program uses f_prealloc(), which is
stupid.
true mozilla-bin
../../config/nsinstall -R -m 555 mozilla-bin ../../dist/bin
../../config/nsinstall -R mozilla ../../dist/bin
../../config/nsinstall -R splash.xpm ../../dist/bin
where the lib file on my system is: /usr/local/lib/libgmodule12.so.2
not
libgmodule-1.2.so.0
Any ideas??
pete
| Reporter | ||
Comment 1•26 years ago
|
||
| Reporter | ||
Comment 2•26 years ago
|
||
I can confirm that this fix works on my optimized build.
I just applied the patch to my tinderbox build and am waiting for it to finish.
pete
Comment 3•26 years ago
|
||
It appears as though Pavlov commented out that entire gtk block.
Pavlov, why aren't we using $(MOZ_GTK_LDFLAGS) there instead of hardcoding the libs?
Assignee: cls → pavlov
Comment 5•26 years ago
|
||
I guess this is when this change was checked in . . .
http://bonsai.mozilla.org/cvsquery.cgi?module=SeaMonkeyAll&branch=HEAD&cvsroot=/cvsroot&date=explicit&mindate=950480634&maxdate=950480926&who=pavlov%25netscape.com
pete
| Assignee | ||
Comment 6•26 years ago
|
||
chris: it should be that... but that code is going away and moving so i'm
marking this bug wontfix
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → WONTFIX
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•