blob: 6553b28a4761da8dcd110340ce7e8948c9781a13 (
plain) (
blame)
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
|
*** test/Makefile.arch.orig Fri Jun 10 20:12:55 2005
--- test/Makefile.arch Sat Jul 9 19:49:07 2005
***************
*** 9,15 ****
ARCH := $(shell root-config --arch)
PLATFORM := $(shell root-config --platform)
- CXX =
ObjSuf = o
SrcSuf = cxx
ExeSuf =
--- 9,14 ----
***************
*** 406,415 ****
ifeq ($(ARCH),freebsd4)
# FreeBSD with glibc
! CXX = g++
! CXXFLAGS = -O -pipe -W -Wall -fPIC
! LD = g++
! LDFLAGS = -O
SOFLAGS = -shared -Wl,-x
endif
--- 405,419 ----
ifeq ($(ARCH),freebsd4)
# FreeBSD with glibc
! CXXFLAGS += -W -Wall -fPIC
! LD = $(CXX)
! SOFLAGS = -shared -Wl,-x
! endif
!
! ifeq ($(ARCH),freebsd5)
! # FreeBSD with glibc
! CXXFLAGS += -W -Wall -fPIC
! LD = $(CXX)
SOFLAGS = -shared -Wl,-x
endif
|