diff options
author | obraun <obraun@FreeBSD.org> | 2004-08-26 02:43:59 +0800 |
---|---|---|
committer | obraun <obraun@FreeBSD.org> | 2004-08-26 02:43:59 +0800 |
commit | ab0508be4c787efa1c534cba57a9020ead9b7c24 (patch) | |
tree | e0e2cd2d6bc55c67b5b36df8578f80c250aedc1f /lang/hugs/files | |
parent | 878be031020de81b058020391917b16a8dc9a4b8 (diff) | |
download | freebsd-ports-gnome-ab0508be4c787efa1c534cba57a9020ead9b7c24.tar.gz freebsd-ports-gnome-ab0508be4c787efa1c534cba57a9020ead9b7c24.tar.zst freebsd-ports-gnome-ab0508be4c787efa1c534cba57a9020ead9b7c24.zip |
Work around stricter CPP in GCC >= 3.4.1.
Obtained from: cvs.haskell.org
Diffstat (limited to 'lang/hugs/files')
-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 000000000000..5a2f8632a00c --- /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 |