diff options
author | obraun <obraun@FreeBSD.org> | 2004-08-25 18:43:59 +0000 |
---|---|---|
committer | obraun <obraun@FreeBSD.org> | 2004-08-25 18:43:59 +0000 |
commit | ab0508be4c787efa1c534cba57a9020ead9b7c24 (patch) | |
tree | e0e2cd2d6bc55c67b5b36df8578f80c250aedc1f /lang | |
parent | 878be031020de81b058020391917b16a8dc9a4b8 (diff) | |
download | FreeBSD-ports-ab0508be4c787efa1c534cba57a9020ead9b7c24.zip FreeBSD-ports-ab0508be4c787efa1c534cba57a9020ead9b7c24.tar.gz |
Work around stricter CPP in GCC >= 3.4.1.
Obtained from: cvs.haskell.org
Diffstat (limited to 'lang')
-rw-r--r-- | lang/hugs/files/patch-libraries_base_Data_List.hs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/hugs/files/patch-libraries_base_Data_List.hs b/lang/hugs/files/patch-libraries_base_Data_List.hs new file mode 100644 index 0000000..5a2f863 --- /dev/null +++ b/lang/hugs/files/patch-libraries_base_Data_List.hs @@ -0,0 +1,11 @@ +--- ../fptools/libraries/base/Data/List.hs.orig Wed Nov 26 10:55:24 2003 ++++ ../fptools/libraries/base/Data/List.hs Wed Aug 25 20:22:13 2004 +@@ -209,7 +209,7 @@ + import GHC.Base + #endif + +-infix 5 \\ ++infix 5 \\ -- comment to fool cpp + + -- ----------------------------------------------------------------------------- + -- List functions |