summaryrefslogtreecommitdiff
path: root/emulators/hercules/patches/patch-aa
blob: affb00a9ebc1511f4f1eb59be1c64d7cbd41436d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
$NetBSD: patch-aa,v 1.7 2005/12/09 10:46:43 joerg Exp $

--- makefile.orig	2001-02-11 03:21:58.000000000 +0000
+++ makefile
@@ -8,11 +8,11 @@ VERSION  = 2.11
 #   besides /usr/bin. The $PREFIX (which defaults to nothing) can be
 #   overridden in the make command line, as in "PREFIX=/foo make install"
 #   (the directory is only used when installing).
-DESTDIR  = $(PREFIX)/usr/bin
+DESTDIR  = $(PREFIX)/bin
 
 # Standard flags for all architectures
 CFLAGS	 = -Wall -fomit-frame-pointer -DVERSION=$(VERSION) -DNO_BYTESWAP_H
-LFLAGS	 = -lpthread
+LFLAGS	 = ${PTHREAD_LDFLAGS} ${PTHREAD_LIBS}
 
 # Add default flags for Pentium compilations
 ifndef HOST_ARCH
@@ -21,26 +21,28 @@ endif
 
 # Handle host architecture if specified
 ifeq ($(HOST_ARCH),i386)
-CFLAGS	 += -O3 -malign-double -DNO_ASM_BYTESWAP
-endif
+CFLAGS	 += -O3 -DNO_ASM_BYTESWAP
+else
 ifeq ($(HOST_ARCH),i586)
-CFLAGS	 += -O3 -malign-double -march=pentium
-endif
+CFLAGS	 += -O3
+else
 ifeq ($(HOST_ARCH),i686)
-CFLAGS	 += -O3 -malign-double -march=pentiumpro
-endif
+CFLAGS	 += -O3
+else
 ifeq ($(HOST_ARCH),alpha)
 CFLAGS	 += -O2 -DNO_ASM_BYTESWAP
-endif
-ifeq ($(HOST_ARCH),other)
+else
 CFLAGS	 += -O3 -DNO_ASM_BYTESWAP
-endif
+endif  # alpha
+endif  # i686
+endif  # i586
+endif  # i386
 
 # Uncomment these lines for NetBSD, with either the unproven-pthreads
 #   or pth packages
-#CFLAGS  += -I/usr/pkg/pthreads/include -I/usr/pkg/include
-#LFLAGS	 += -L/usr/pkg/pthreads/lib -R/usr/pkg/pthreads
-#LFLAGS	 += -L/usr/pkg/lib -R/usr/pkg/pthreads/lib
+CFLAGS  += -I${PREFIX}/include
+LFLAGS	 += -L${PREFIX}/lib -R${PREFIX}/lib
+LFLAGS	 += -L${PREFIX}/lib
 
 # Reverse the comments below to disable Compressed CKD Dasd support
 #CFLAGS  += -DNO_CCKD