blob: 2d2b24855b9e66f599f184cf2382575ad33114fb (
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
|
$NetBSD: patch-mintlib-CVS-20130415_configvars,v 1.2 2014/01/19 07:43:14 ryoon Exp $
--- mintlib-CVS-20131219/configvars.orig 2013-04-15 21:27:28.000000000 +0000
+++ mintlib-CVS-20131219/configvars
@@ -12,7 +12,7 @@ VERSION=0.59.2
# get installed. You have to take car yourself that the libraries
# and include files and so on will get installed in the right place
# The easiest way to do this is to change "prefix", see below.
-#CROSS=yes
+CROSS=yes
# Silent build or verbose
AM_DEFAULT_VERBOSITY = 1
@@ -47,7 +47,7 @@ WITH_V4E_LIB=yes
# need be. When cross-compiling you will usually want to set this
# to "/usr/m68k-atari-mint".
ifeq ($(CROSS),yes)
- prefix=/usr/m68k-atari-mint
+ prefix=${DESTDIR}${FREEMINT_PREFIX}/m68k-atari-mint
else
prefix=/usr
endif
@@ -83,7 +83,7 @@ endif
# Define this to the name of your C compiler. You need at least
# gcc 2.7.2. Older versions will not work. If you use an older
# gcc than 2.95.2 you will run into severe problems.
-CC=$(toolprefix)gcc
+CC=${WRKSRC}/${CONFIGURE_DIRS}/gcc/xgcc -B${WRKSRC}/${CONFIGURE_DIRS}/gcc -B${FREEMINT_PREFIX}/bin -B${FREEMINT_PREFIX}/lib -isystem ${FREEMINT_PREFIX}/include -isystem ${FREEMINT_PREFIX}/sys-include
# Only used when cross-compiling:
# Define this to the size (in bytes) of a long double for your
|