unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* gnustep build broken
@ 2008-07-18  5:26 Miles Bader
  2008-07-18  6:02 ` Karl Eichwalder
                   ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: Miles Bader @ 2008-07-18  5:26 UTC (permalink / raw)
  To: emacs-devel

I tried again today to build NS emacs using gnustep, and it broke pretty
early, after succeeding only to build lib-src.  Apparently it is
expecting to be build on mac-os using apple's make?

   $ make distclean
   ...
   $ ./configure --with-ns
   ...
   $ make
   boot=bootstrap-emacs;                         \
           if [ -x "src/$boot" ]; then boot=""; fi;                   \
           cd lib-src; make all                            \
             CC='gcc' CFLAGS='-g -O2 -Wno-pointer-sign  -I/usr/include/GNUstep' CPPFLAGS='-D_BSD_SOURCE  ' \
             LDFLAGS='-Wl,-znocombreloc -L/usr/lib' MAKE='make' BOOTSTRAPEMACS="$boot"
   make[1]: Entering directory `/usr/local/src/emacs/gnustep/lib-src'
   ...
   make[1]: Leaving directory `/usr/local/src/emacs/gnustep/lib-src'
   boot=bootstrap-emacs;                         \
           if [ -x "src/$boot" ]; then boot=""; fi;                   \
           cd src; make all                            \
             CC='gcc' CFLAGS='-g -O2 -Wno-pointer-sign  -I/usr/include/GNUstep' CPPFLAGS='-D_BSD_SOURCE  ' \
             LDFLAGS='-Wl,-znocombreloc -L/usr/lib' MAKE='make' BOOTSTRAPEMACS="$boot"
   make[1]: Entering directory `/usr/local/src/emacs/gnustep/src'
   Makefile:72: /Additional/base.make: No such file or directory
   Makefile:73: /Additional/gui.make: No such file or directory
   make[1]: *** No rule to make target `/Additional/gui.make'.  Stop.
   make[1]: Leaving directory `/usr/local/src/emacs/gnustep/src'
   make: *** [src] Error 2

Thanks,

-Miles

-- 
Justice, n. A commodity which in a more or less adulterated condition the
State sells to the citizen as a reward for his allegiance, taxes and personal
service.




^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: gnustep build broken
  2008-07-18  5:26 gnustep build broken Miles Bader
@ 2008-07-18  6:02 ` Karl Eichwalder
  2008-07-22  3:30   ` Karl Eichwalder
  2008-07-18  6:51 ` gnustep build broken Yavor Doganov
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 13+ messages in thread
From: Karl Eichwalder @ 2008-07-18  6:02 UTC (permalink / raw)
  To: Miles Bader; +Cc: emacs-devel

Am Fri 18 Jul 2008 07:26:37 AM CEST schrieb Miles Bader  
<miles.bader@necel.com>:

> I tried again today to build NS emacs using gnustep, and it broke pretty
> early, after succeeding only to build lib-src.  Apparently it is
> expecting to be build on mac-os using apple's make?

It fails the same way on MacOS 10.4.11 (PPC) using /usr/bin/make which
is GNU make.





^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: gnustep build broken
  2008-07-18  5:26 gnustep build broken Miles Bader
  2008-07-18  6:02 ` Karl Eichwalder
@ 2008-07-18  6:51 ` Yavor Doganov
       [not found] ` <87hcanu1li.GNU\\\'s_Not_Unix!%yavor@gnu.org>
  2008-07-24  0:19 ` Adrian Robert
  3 siblings, 0 replies; 13+ messages in thread
From: Yavor Doganov @ 2008-07-18  6:51 UTC (permalink / raw)
  To: emacs-devel

Miles Bader wrote:
> 
>    Makefile:72: /Additional/base.make: No such file or directory
>    Makefile:73: /Additional/gui.make: No such file or directory
>    make[1]: *** No rule to make target `/Additional/gui.make'.  Stop.

GNUSTEP_MAKEFILES is set to the empty string, since there is no such
variable GNUSTEP_SYSTEM_MAKEFILES in GNUstep.conf.  The trivial patch
below fixes at least this problem.


--- configure.in	18 юли 2008 09:21:53 +0300	1.546
+++ configure.in	18 юли 2008 09:43:40 +0300	
@@ -1240,7 +1240,7 @@
      ns_appbindir=`pwd`/nextstep/Emacs.app
      ns_appresdir=`pwd`/nextstep/Emacs.app/Resources
      ns_appsrc=${srcdir}/nextstep/GNUstep/Emacs.base
-     GNUSTEP_MAKEFILES="$(source /etc/GNUstep/GNUstep.conf; echo $GNUSTEP_SYSTEM_MAKEFILES)"
+     GNUSTEP_MAKEFILES="$(source /etc/GNUstep/GNUstep.conf; echo $GNUSTEP_MAKEFILES)"
      GNUSTEP_SYSTEM_HEADERS="$(source /etc/GNUstep/GNUstep.conf; echo $GNUSTEP_SYSTEM_HEADERS)"
      GNUSTEP_SYSTEM_LIBRARIES="$(source /etc/GNUstep/GNUstep.conf; echo $GNUSTEP_SYSTEM_LIBRARIES)"
      CPPFLAGS="$CPPFLAGS -I${GNUSTEP_SYSTEM_HEADERS}"






^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: gnustep build broken
       [not found] ` <87hcanu1li.GNU\\\'s_Not_Unix!%yavor@gnu.org>
@ 2008-07-19 16:43   ` Adrian Robert
  0 siblings, 0 replies; 13+ messages in thread
From: Adrian Robert @ 2008-07-19 16:43 UTC (permalink / raw)
  To: emacs-devel

Yavor Doganov <yavor <at> gnu.org> writes:


> GNUSTEP_MAKEFILES is set to the empty string, since there is no such
> variable GNUSTEP_SYSTEM_MAKEFILES in GNUstep.conf.  The trivial patch
> below fixes at least this problem.

Thanks, applied.







^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: gnustep build broken
  2008-07-18  6:02 ` Karl Eichwalder
@ 2008-07-22  3:30   ` Karl Eichwalder
  2008-07-24  0:15     ` Adrian Robert
  0 siblings, 1 reply; 13+ messages in thread
From: Karl Eichwalder @ 2008-07-22  3:30 UTC (permalink / raw)
  To: emacs-devel

--with-ns still fails on MacOSX 10.4.11 (PPC):

./configure --with-ns
/usr/bin/make bootstrap

With the error message:

make[2]: *** No rule to make target  
`/Users/ke/emacs/nextstep/Cocoa/Emacs.base', needed by  
`/Users/ke/emacs/nextstep/Emacs.app'.  Stop.
make[1]: *** [src] Error 2
make: *** [bootstrap] Error 2

Karl




^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: gnustep build broken
  2008-07-22  3:30   ` Karl Eichwalder
@ 2008-07-24  0:15     ` Adrian Robert
  2008-07-24 18:14       ` Karl Eichwalder
  0 siblings, 1 reply; 13+ messages in thread
From: Adrian Robert @ 2008-07-24  0:15 UTC (permalink / raw)
  To: emacs-devel

Karl Eichwalder <ke <at> suse.de> writes:

> --with-ns still fails on MacOSX 10.4.11 (PPC):
> 
> ./configure --with-ns
> /usr/bin/make bootstrap
> 
> With the error message:
> 
> make[2]: *** No rule to make target  
> `/Users/ke/emacs/nextstep/Cocoa/Emacs.base', needed by  
> `/Users/ke/emacs/nextstep/Emacs.app'.  Stop.

"nextstep/Cocoa/Emacs.base" should be a directory in the source tree.
Can you check if it is there, and if it is, why make is thinking
it needs to be created?










^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: gnustep build broken
  2008-07-18  5:26 gnustep build broken Miles Bader
                   ` (2 preceding siblings ...)
       [not found] ` <87hcanu1li.GNU\\\'s_Not_Unix!%yavor@gnu.org>
@ 2008-07-24  0:19 ` Adrian Robert
  3 siblings, 0 replies; 13+ messages in thread
From: Adrian Robert @ 2008-07-24  0:19 UTC (permalink / raw)
  To: emacs-devel

Miles Bader <miles.bader <at> necel.com> writes:

> 
> I tried again today to build NS emacs using gnustep, and it broke pretty
> early, after succeeding only to build lib-src.  Apparently it is
> expecting to be build on mac-os using apple's make?
> ...
>    make[1]: Entering directory `/usr/local/src/emacs/gnustep/src'
>    Makefile:72: /Additional/base.make: No such file or directory
>    Makefile:73: /Additional/gui.make: No such file or directory
>    make[1]: *** No rule to make target `/Additional/gui.make'.  Stop.
>    make[1]: Leaving directory `/usr/local/src/emacs/gnustep/src'
>    make: *** [src] Error 2

It appears that @GNUSTEP_MAKEFILES@ is not being set/substituted by configure.
Configure tries to find this by the line:

 GNUSTEP_MAKEFILES="$(source /etc/GNUstep/GNUstep.conf; echo $GNUSTEP_MAKEFILES)"

Does /etc/GNUSTEP/GNUSTEP.conf exist on your GNUstep installation?
If it is a different path, is there any way this could be discovered
through an environment variable or an executable on the path?








^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: gnustep build broken
  2008-07-24  0:15     ` Adrian Robert
@ 2008-07-24 18:14       ` Karl Eichwalder
  2008-07-25  6:08         ` Crash on MacOSX 10.4 (Re: gnustep build broken) Karl Eichwalder
  0 siblings, 1 reply; 13+ messages in thread
From: Karl Eichwalder @ 2008-07-24 18:14 UTC (permalink / raw)
  To: Adrian Robert; +Cc: emacs-devel

Am Thu 24 Jul 2008 02:15:24 AM CEST schrieb Adrian Robert  
<Adrian.B.Robert@gmail.com>:

> "nextstep/Cocoa/Emacs.base" should be a directory in the source tree.
> Can you check if it is there, and if it is, why make is thinking
> it needs to be created?

Thanks for your help, my bad!  I missed to check out that
directory.  Now it compliles flawlessly.

Karl





^ permalink raw reply	[flat|nested] 13+ messages in thread

* Crash on MacOSX 10.4 (Re: gnustep build broken)
  2008-07-24 18:14       ` Karl Eichwalder
@ 2008-07-25  6:08         ` Karl Eichwalder
  2008-07-26  2:34           ` Adrian Robert
  2008-07-26  4:05           ` YAMAMOTO Mitsuharu
  0 siblings, 2 replies; 13+ messages in thread
From: Karl Eichwalder @ 2008-07-25  6:08 UTC (permalink / raw)
  To: emacs-devel; +Cc: Adrian Robert, emacs-devel

Am Thu 24 Jul 2008 08:14:13 PM CEST schrieb Karl Eichwalder <ke@suse.de>:

> Thanks for your help, my bad!  I missed to check out that
> directory.  Now it compliles flawlessly.

Using Gnus, Emacs compiled this morning crashes very often (it also
cashes if you build without NS support--I observe this behavior since
several weeks now once I started to use Emacs 23 on this platform).

More info (I can try to provide more details on request):

./configure --with-ns --enable-carbon-app --without-dbus

This is what appears in Apple's "Problem Report":

Date/Time:      2008-07-25 07:56:32.080 +0200
OS Version:     10.4.11 (Build 8S165)
Report Version: 4

Command: Emacs
Path:    /Users/ke/emacs/nextstep/Emacs.app/Contents/MacOS/Emacs
Parent:  bash [10169]

Version: Version 23.0.60 (NS 9.0)

PID:    10170
Thread: 0

Exception:  EXC_BAD_ACCESS (0x0001)
Codes:      KERN_INVALID_ADDRESS (0x0001) at 0x76b7d52a

Thread 0 Crashed:
0   org.gnu.Emacs 	0x00160314 ns_free_indexed_color + 36 (nsterm.m:1309)
1   org.gnu.Emacs 	0x001871b0 x_clear_image_1 + 80 (image.c:1709)
2   org.gnu.Emacs 	0x00186b80 free_image + 192 (image.c:1396)
3   org.gnu.Emacs 	0x001876e0 clear_image_cache + 288 (image.c:1926)
4   org.gnu.Emacs 	0x001877e0 clear_image_caches + 64 (image.c:1961)
5   org.gnu.Emacs 	0x0003593c redisplay_internal + 5372 (xdisp.c:12045)
6   org.gnu.Emacs 	0x000997cc read_char + 1308 (keyboard.c:2689)
7   org.gnu.Emacs 	0x0009d30c read_key_sequence + 2300 (keyboard.c:9435)
8   org.gnu.Emacs 	0x0009f4b8 command_loop_1 + 1096 (keyboard.c:1657)
9   org.gnu.Emacs 	0x001023f8 internal_condition_case + 328 (eval.c:1512)
10  org.gnu.Emacs 	0x0008fd70 command_loop_2 + 64 (keyboard.c:1370)
11  org.gnu.Emacs 	0x00102280 internal_catch + 256 (eval.c:1247)
12  org.gnu.Emacs 	0x0008fa20 command_loop + 144 (keyboard.c:1352)
13  org.gnu.Emacs 	0x0008fb48 recursive_edit_1 + 184 (keyboard.c:958)
14  org.gnu.Emacs 	0x0008fcd4 Frecursive_edit + 292 (keyboard.c:1020)
15  org.gnu.Emacs 	0x0008f320 main + 4496 (emacs.c:1800)
16  org.gnu.Emacs 	0x00002d4c _start + 760
17  org.gnu.Emacs 	0x00002a50 start + 48

Thread 0 crashed with PPC Thread State 64:
   srr0: 0x0000000000160314 srr1: 0x100000000200f930                    
      vrsave: 0x0000000000000000
     cr: 0x24000422          xer: 0x0000000000000000   lr:  
0x0000000000160300  ctr: 0x0000000000000003
     r0: 0x00000000001871b0   r1: 0x00000000bfffdd80   r2:  
0x000000000076b75d   r3: 0x0000000000000000
     r4: 0x0000000001144aa0   r5: 0x00000000000003e8   r6:  
0xffffffffffffffff   r7: 0x0000000005ca4400
     r8: 0x0000000000000001   r9: 0x0000000076b7d502  r10:  
0x0000000000000003  r11: 0x0000000044000422
    r12: 0x000000009000688c  r13: 0x000000000031444c  r14:  
0x0000000000000000  r15: 0x000000000031444c
    r16: 0x000000000000026f  r17: 0x000000000031444c  r18:  
0x000000000031444c  r19: 0x000000000031444c
    r20: 0x000000000031444c  r21: 0x000000000031444c  r22:  
0x0000000048896407  r23: 0x0000000000a86b30
    r24: 0x0000000000348728  r25: 0x0000000000348714  r26:  
0x0000000000000000  r27: 0x0000000002800409
    r28: 0x0000000000000001  r29: 0x0000000000000001  r30:  
0x0000000000000000  r31: 0x0000000000160300

Binary Images Description:
     0x1000 -   0x1a6fff org.gnu.Emacs Version 23.0.60 (NS  
9.0)	/Users/ke/emacs/nextstep/Emacs.app/Contents/MacOS/Emacs
   0x6d1000 -   0x6fcfff libncurses.5.dylib 	/sw/lib/ncurses/libncurses.5.dylib
0x8fe00000 - 0x8fe52fff dyld 46.16	/usr/lib/dyld
0x90000000 - 0x901bcfff libSystem.B.dylib 	/usr/lib/libSystem.B.dylib
0x90214000 - 0x90219fff libmathCommon.A.dylib  
	/usr/lib/system/libmathCommon.A.dylib
0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4  
(???)	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x90293000 - 0x90344fff ATS  
	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.78  
(???)	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11  
(368.35)	/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x908de000 - 0x908defff com.apple.CoreServices 10.4  
(???)	/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x908e0000 - 0x909e2fff libicucore.A.dylib 	/usr/lib/libicucore.A.dylib
0x90a3c000 - 0x90ac0fff libobjc.A.dylib 	/usr/lib/libobjc.A.dylib
0x90aea000 - 0x90b5afff com.apple.framework.IOKit 1.4  
(???)	/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x90b70000 - 0x90b82fff libauto.dylib 	/usr/lib/libauto.dylib
0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore  
681.17	/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices  
4.1	/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x90f90000 - 0x90fd2fff com.apple.CFNetwork 129.22  
(129.23)	/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2  
(1.1.0)	/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServicesCore.framework/Versions/A/WebServicesCore
0x9100f000 - 0x91090fff com.apple.SearchKit  
1.0.7	/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x910d6000 - 0x91100fff com.apple.Metadata 10.4.4  
(121.36)	/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x91111000 - 0x9111ffff libz.1.dylib 	/usr/lib/libz.1.dylib
0x91122000 - 0x912ddfff com.apple.security 4.6  
(29770)	/System/Library/Frameworks/Security.framework/Versions/A/Security
0x913dc000 - 0x913e5fff com.apple.DiskArbitration  
2.1.2	/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x913ec000 - 0x913f4fff libbsm.dylib 	/usr/lib/libbsm.dylib
0x913f8000 - 0x91420fff com.apple.SystemConfiguration  
1.8.3	/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x91433000 - 0x9143efff libgcc_s.1.dylib 	/usr/lib/libgcc_s.1.dylib
0x91443000 - 0x914befff com.apple.audio.CoreAudio  
3.0.5	/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4  
(???)	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x914fd000 - 0x91535fff com.apple.AE 1.5  
(297)	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x91550000 - 0x91622fff com.apple.ColorSync  
4.4.10	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6  
(177.13)	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x9174d000 - 0x91804fff com.apple.QD 3.10.25  
(???)	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3  
(???)	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x918ce000 - 0x918f2fff com.apple.LangAnalysis  
1.6.1	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x91906000 - 0x9192bfff com.apple.FindByContent  
1.5	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/FindByContent.framework/Versions/A/FindByContent
0x9193e000 - 0x91980fff com.apple.LaunchServices  
183	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x9199c000 - 0x919b0fff com.apple.speech.synthesis.framework  
3.3	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x919be000 - 0x91a04fff com.apple.ImageIO.framework  
1.5.7	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x91a1b000 - 0x91ae2fff libcrypto.0.9.7.dylib 	/usr/lib/libcrypto.0.9.7.dylib
0x91b30000 - 0x91b45fff libcups.2.dylib 	/usr/lib/libcups.2.dylib
0x91b4a000 - 0x91b68fff libJPEG.dylib  
	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x91b6e000 - 0x91c25fff libJP2.dylib  
	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x91c74000 - 0x91c78fff libGIF.dylib  
	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x91c7a000 - 0x91ce4fff libRaw.dylib  
	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRaw.dylib
0x91ce9000 - 0x91d26fff libTIFF.dylib  
	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x91d2d000 - 0x91d47fff libPng.dylib  
	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x91d4c000 - 0x91d4ffff libRadiance.dylib  
	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x91d51000 - 0x91e3ffff libxml2.2.dylib 	/usr/lib/libxml2.2.dylib
0x91e5e000 - 0x91e5efff com.apple.Accelerate 1.2.2 (Accelerate  
1.2.2)	/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x91e60000 - 0x91f45fff com.apple.vImage  
2.4	/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x91f4d000 - 0x91f6cfff com.apple.Accelerate.vecLib 3.2.2 (vecLib  
3.2.2)	/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x91fd8000 - 0x92046fff libvMisc.dylib  
	/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x92051000 - 0x920e6fff libvDSP.dylib  
	/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x92100000 - 0x92688fff libBLAS.dylib  
	/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x926bb000 - 0x929e6fff libLAPACK.dylib  
	/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x92a16000 - 0x92b04fff libiconv.2.dylib 	/usr/lib/libiconv.2.dylib
0x92b07000 - 0x92b8ffff com.apple.DesktopServices  
1.3.7	/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x92bd0000 - 0x92dfbfff com.apple.Foundation 6.4.10  
(567.37)	/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x92f28000 - 0x92f46fff libGL.dylib  
	/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x92f51000 - 0x92fabfff libGLU.dylib  
	/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x92ff7000 - 0x93007fff com.apple.speech.recognition.framework  
3.4	/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x93261000 - 0x9327efff com.apple.audio.SoundManager  
3.9	/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x932a6000 - 0x935b4fff com.apple.HIToolbox 1.4.10  
(???)	/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x93704000 - 0x93710fff com.apple.opengl  
1.4.7	/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x937ac000 - 0x93ddffff com.apple.AppKit 6.4.10  
(824.48)	/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x9416c000 - 0x941defff com.apple.CoreData 91  
(92.1)	/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x94217000 - 0x942dcfff com.apple.audio.toolbox.AudioToolbox  
1.4.7	/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x9432f000 - 0x9432ffff com.apple.audio.units.AudioUnit  
1.4	/System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x94331000 - 0x944f1fff com.apple.QuartzCore  
1.4.12	/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x9453b000 - 0x94578fff libsqlite3.0.dylib 	/usr/lib/libsqlite3.0.dylib
0x94580000 - 0x945d0fff libGLImage.dylib  
	/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x945d9000 - 0x945edfff com.apple.CoreVideo  
1.4	/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x947a3000 - 0x947b2fff libCGATS.A.dylib  
	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
0x947ba000 - 0x947c7fff libCSync.A.dylib  
	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x9480d000 - 0x94826fff libRIP.A.dylib  
	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x94f50000 - 0x94f6dfff libresolv.9.dylib 	/usr/lib/libresolv.9.dylib

Model: PowerMac7,3, BootROM 5.2.4f1, 2 processors, PowerPC G5  (3.0),  
2 GHz, 1.5 GB
Graphics: ATI Radeon 9600, ATY,RV351, AGP, 128 MB
Memory Module: DIMM0/J11, 256 MB, DDR SDRAM, PC3200U-30330
Memory Module: DIMM1/J12, 256 MB, DDR SDRAM, PC3200U-30330
Memory Module: DIMM2/J13, 512 MB, DDR SDRAM, PC3200U-30330
Memory Module: DIMM3/J14, 512 MB, DDR SDRAM, PC3200U-30330
AirPort: AirPort Extreme, 405.1 (3.90.34.0.p18)
Network Service: Built-in Ethernet, Ethernet, en0
Serial ATA Device: Maxtor 6B160M0, 152.67 GB
Serial ATA Device: WDC WD5000KS-00MNB0, 465.76 GB
Parallel ATA Device: SONY    DVD RW DW-Q28A
USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12  
Mb/sec, 500 mA
USB Device: Macally USB Optical Net Mouse, Macally, Up to 1.5 Mb/sec, 100 mA
USB Device: Apple Optical USB Mouse, Logitech, Up to 1.5 Mb/sec, 100 mA
USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
USB Device: USB 7-in-1 Card Reader, OTi, Up to 480 Mb/sec, 500 mA
USB Device: Hub, Up to 480 Mb/sec, 500 mA
USB Device: Apple Cinema Display, Up to 1.5 Mb/sec, 500 mA
FireWire Device: unknown_device, unknown_value, Up to 400 Mb/sec





^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: Crash on MacOSX 10.4 (Re: gnustep build broken)
  2008-07-25  6:08         ` Crash on MacOSX 10.4 (Re: gnustep build broken) Karl Eichwalder
@ 2008-07-26  2:34           ` Adrian Robert
  2008-07-26  4:05           ` YAMAMOTO Mitsuharu
  1 sibling, 0 replies; 13+ messages in thread
From: Adrian Robert @ 2008-07-26  2:34 UTC (permalink / raw)
  To: Karl Eichwalder; +Cc: emacs-devel


On Jul 25, 2008, at 2:08 AM, Karl Eichwalder wrote:

> Am Thu 24 Jul 2008 08:14:13 PM CEST schrieb Karl Eichwalder <ke@suse.de 
> >:
>
>> Thanks for your help, my bad!  I missed to check out that
>> directory.  Now it compliles flawlessly.
>
> Using Gnus, Emacs compiled this morning crashes very often (it also
> cashes if you build without NS support--I observe this behavior since
> several weeks now once I started to use Emacs 23 on this platform).

Thanks for the report.  Could you possibly also post a stack trace  
from the crash when running under X?  It might provide more  
information to be able to compare the two.

thanks,
Adrian





^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: Crash on MacOSX 10.4 (Re: gnustep build broken)
  2008-07-25  6:08         ` Crash on MacOSX 10.4 (Re: gnustep build broken) Karl Eichwalder
  2008-07-26  2:34           ` Adrian Robert
@ 2008-07-26  4:05           ` YAMAMOTO Mitsuharu
  2008-07-29  4:23             ` Karl Eichwalder
  1 sibling, 1 reply; 13+ messages in thread
From: YAMAMOTO Mitsuharu @ 2008-07-26  4:05 UTC (permalink / raw)
  To: Karl Eichwalder; +Cc: Adrian Robert, emacs-devel

>>>>> On Fri, 25 Jul 2008 08:08:47 +0200, Karl Eichwalder <ke@suse.de> said:

> Using Gnus, Emacs compiled this morning crashes very often (it also
> cashes if you build without NS support--I observe this behavior
> since several weeks now once I started to use Emacs 23 on this
> platform).

I suspect the crash *without NS support* is due to this issue:

  http://lists.gnu.org/archive/html/bug-gnu-emacs/2008-07/msg00132.html

This happens with Emacs 23 on Mac OS X 10.4 as far as I tested.  Can
you try removing the `res_init' call in process.c?

				     YAMAMOTO Mitsuharu
				mituharu@math.s.chiba-u.ac.jp




^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: Crash on MacOSX 10.4 (Re: gnustep build broken)
  2008-07-26  4:05           ` YAMAMOTO Mitsuharu
@ 2008-07-29  4:23             ` Karl Eichwalder
  2008-07-29  9:04               ` YAMAMOTO Mitsuharu
  0 siblings, 1 reply; 13+ messages in thread
From: Karl Eichwalder @ 2008-07-29  4:23 UTC (permalink / raw)
  To: YAMAMOTO Mitsuharu; +Cc: Adrian Robert, emacs-devel

Am Sat 26 Jul 2008 06:05:44 AM CEST schrieb YAMAMOTO Mitsuharu  
<mituharu@math.s.chiba-u.ac.jp>:

>>>>>> On Fri, 25 Jul 2008 08:08:47 +0200, Karl Eichwalder <ke@suse.de> said:
>
>> Using Gnus, Emacs compiled this morning crashes very often (it also
>> cashes if you build without NS support--I observe this behavior
>> since several weeks now once I started to use Emacs 23 on this
>> platform).
>
> I suspect the crash *without NS support* is due to this issue:

ATM, it does not build without NS support; 'configure --with-x11'
results in:

image.c: In function 'svg_load_image':
image.c:8007: error: 'RsvgDimensionData' undeclared (first use in this  
function)
image.c:8007: error: (Each undeclared identifier is reported only once
image.c:8007: error: for each function it appears in.)
image.c:8007: error: parse error before 'dimension_data'
image.c:8035: error: 'dimension_data' undeclared (first use in this function)
make[1]: *** [image.o] Error 1
make: *** [src] Error 2

Trying --without-rsvg resulsts in:

ftfont.c: In function 'ftfont_pattern_entity':
ftfont.c:163: error: 'FC_WEIGHT_REGULAR' undeclared (first use in this  
function)
ftfont.c:163: error: (Each undeclared identifier is reported only once
ftfont.c:163: error: for each function it appears in.)
ftfont.c:172: error: 'FC_WIDTH' undeclared (first use in this function)
ftfont.c: In function 'ftfont_list':
ftfont.c:768: error: 'FC_WIDTH' undeclared (first use in this function)
make[1]: *** [ftfont.o] Error 1
make: *** [src] Error 2


>   http://lists.gnu.org/archive/html/bug-gnu-emacs/2008-07/msg00132.html
>
> This happens with Emacs 23 on Mac OS X 10.4 as far as I tested.  Can
> you try removing the `res_init' call in process.c?

Compiling with NS support and removing the two res_init calls in does
not help.





^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: Crash on MacOSX 10.4 (Re: gnustep build broken)
  2008-07-29  4:23             ` Karl Eichwalder
@ 2008-07-29  9:04               ` YAMAMOTO Mitsuharu
  0 siblings, 0 replies; 13+ messages in thread
From: YAMAMOTO Mitsuharu @ 2008-07-29  9:04 UTC (permalink / raw)
  To: Karl Eichwalder; +Cc: Adrian Robert, emacs-devel

>>>>> On Tue, 29 Jul 2008 06:23:27 +0200, Karl Eichwalder <ke@suse.de> said:

>>> Using Gnus, Emacs compiled this morning crashes very often (it
>>> also cashes if you build without NS support--I observe this
>>> behavior since several weeks now once I started to use Emacs 23 on
>>> this platform).
>> 
>> I suspect the crash *without NS support* is due to this issue:

> ATM, it does not build without NS support

For the moment, maybe you can try checking out with the tag
`before-remove-carbon' if you succeeded in compiling without NS
support fairly recently.

>> http://lists.gnu.org/archive/html/bug-gnu-emacs/2008-07/msg00132.html
>> 
>> This happens with Emacs 23 on Mac OS X 10.4 as far as I tested.
>> Can you try removing the `res_init' call in process.c?

> Compiling with NS support and removing the two res_init calls in
> does not help.

The crash *with NS support* at ns_free_indexed_color would be another
issue.

				     YAMAMOTO Mitsuharu
				mituharu@math.s.chiba-u.ac.jp




^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2008-07-29  9:04 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-18  5:26 gnustep build broken Miles Bader
2008-07-18  6:02 ` Karl Eichwalder
2008-07-22  3:30   ` Karl Eichwalder
2008-07-24  0:15     ` Adrian Robert
2008-07-24 18:14       ` Karl Eichwalder
2008-07-25  6:08         ` Crash on MacOSX 10.4 (Re: gnustep build broken) Karl Eichwalder
2008-07-26  2:34           ` Adrian Robert
2008-07-26  4:05           ` YAMAMOTO Mitsuharu
2008-07-29  4:23             ` Karl Eichwalder
2008-07-29  9:04               ` YAMAMOTO Mitsuharu
2008-07-18  6:51 ` gnustep build broken Yavor Doganov
     [not found] ` <87hcanu1li.GNU\\\'s_Not_Unix!%yavor@gnu.org>
2008-07-19 16:43   ` Adrian Robert
2008-07-24  0:19 ` Adrian Robert

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).