diff options
author | grozin <grozin@32389bae-6d03-0410-99cf-db05cde120eb> | 2006-09-20 19:09:52 +0000 |
---|---|---|
committer | grozin <grozin@32389bae-6d03-0410-99cf-db05cde120eb> | 2006-09-20 19:09:52 +0000 |
commit | 012fffd84a283bd7e3a48938f31c22a65373dd82 (patch) | |
tree | 68767838bd4c7908bcce25e54e4326ade0c26fee /sci-physics/qcl/files/qcl-0.6.2.patch | |
parent | added a working celestia-1.4.1-r1 (diff) | |
download | sci-012fffd84a283bd7e3a48938f31c22a65373dd82.tar.gz sci-012fffd84a283bd7e3a48938f31c22a65373dd82.tar.bz2 sci-012fffd84a283bd7e3a48938f31c22a65373dd82.zip |
qcl ebuild now honours the user's $CXXFLAGS
git-svn-id: http://overlays.gentoo.org/svn/proj/science/overlay@316 32389bae-6d03-0410-99cf-db05cde120eb
Diffstat (limited to 'sci-physics/qcl/files/qcl-0.6.2.patch')
-rw-r--r-- | sci-physics/qcl/files/qcl-0.6.2.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/sci-physics/qcl/files/qcl-0.6.2.patch b/sci-physics/qcl/files/qcl-0.6.2.patch new file mode 100644 index 000000000..706a20016 --- /dev/null +++ b/sci-physics/qcl/files/qcl-0.6.2.patch @@ -0,0 +1,32 @@ +diff -r -U4 qcl-0.6.2/Makefile qcl-0.6.2.new/Makefile +--- qcl-0.6.2/Makefile 2006-05-18 15:20:15.000000000 +0200 ++++ qcl-0.6.2.new/Makefile 2006-09-21 02:42:51.000000000 +0200 +@@ -29,11 +29,12 @@ + #ARCHOPT = -m32 -march=i686 + + # Debugging and optimization options + ++OPT = -g -O2 + #DEBUG = -g -pg -DQCL_DEBUG -DQC_DEBUG + #DEBUG = -g -DQCL_DEBUG -DQC_DEBUG +-DEBUG = -O2 -g -DQCL_DEBUG -DQC_DEBUG ++DEBUG = $(OPT) -DQCL_DEBUG -DQC_DEBUG + #DEBUG = -O2 + + # Plotting support + # +diff -r -U4 qcl-0.6.2/qc/Makefile qcl-0.6.2.new/qc/Makefile +--- qcl-0.6.2/qc/Makefile 2006-05-18 15:20:15.000000000 +0200 ++++ qcl-0.6.2.new/qc/Makefile 2006-09-21 02:41:51.000000000 +0200 +@@ -15,9 +15,10 @@ + #ARCHOPT = -m32 -march=i686 + + # Debugging options + +-DEBUG = -g -O2 -DQC_DEBUG ++OPT = -g -O2 ++DEBUG = $(OPT) -DQC_DEBUG + #DEBUG = -g -pg -DQC_DEBUG + #DEBUG = -O2 + + # Comment out if you if you want to use SysV Xrand48() linear congruential |