From owner-freebsd-hackers Sun Jan 4 15:23:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.7/8.8.7) id PAA05792 for hackers-outgoing; Sun, 4 Jan 1998 15:23:36 -0800 (PST) (envelope-from owner-freebsd-hackers@FreeBSD.ORG) Received: from Octopussy.MI.Uni-Koeln.DE (Octopussy.MI.Uni-Koeln.DE [134.95.166.20]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id PAA05788 for ; Sun, 4 Jan 1998 15:23:25 -0800 (PST) (envelope-from se@dialup124.zpr.uni-koeln.de) Received: from dialup124.zpr.Uni-Koeln.DE (dialup124.zpr.Uni-Koeln.DE [134.95.219.124]) by Octopussy.MI.Uni-Koeln.DE (8.8.7/8.8.7) with ESMTP id AAA20080; Mon, 5 Jan 1998 00:23:12 +0100 (MET) Received: (from se@localhost) by dialup124.zpr.Uni-Koeln.DE (8.8.8/8.6.9) id AAA05933; Mon, 5 Jan 1998 00:23:13 +0100 (CET) X-Face: " Date: Mon, 5 Jan 1998 00:23:13 +0100 From: Stefan Esser To: The Hermit Hacker Cc: freebsd-hackers@FreeBSD.ORG Subject: Re: Wine 980104 assembler error References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88 In-Reply-To: ; from The Hermit Hacker on Sun, Jan 04, 1998 at 05:10:28PM -0400 Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk On 1998-01-04 17:10 -0400, The Hermit Hacker wrote: > > Hi... > > When compiling Wine 980104, I get the following error: > > gcc -c -o commdlg.o commdlg.s > commdlg.s: Assembler messages: > commdlg.s:156: Error: Unknown pseudo-op: `.string' > *** Error code 1 > > > Which I'm is: > > DLLName: .string "COMMDLG\0" > .align 4 > .globl _COMMDLG_Descriptor > > Now, I don't know assembler, which is what this is (right?) ... > what should this be under FreeBSD? Is there an equivalent? You should be able to use .ascii instead of .string. Since the .s files are created from .spec files by "build", you need to replace the two occurances of .string by .ascii in tools/build.c. Regards, STefan