~ chicken-core (chicken-5) afadd6221f12a71a6477595f96790e43b5679550


commit afadd6221f12a71a6477595f96790e43b5679550
Author:     felix <felix@call-with-current-continuation.org>
AuthorDate: Fri Oct 21 15:57:01 2022 +0200
Commit:     Peter Bex <peter@more-magic.net>
CommitDate: Mon Oct 24 15:54:50 2022 +0200

    get rid of mac resource files and icons
    
    This is obscure and unneeded. See #1774.
    
    Signed-off-by: felix <felix@call-with-current-continuation.org>
    Signed-off-by: Peter Bex <peter@more-magic.net>

diff --git a/CHICKEN.icns b/CHICKEN.icns
deleted file mode 100644
index 8203c7da..00000000
Binary files a/CHICKEN.icns and /dev/null differ
diff --git a/README b/README
index 2f307a0f..3e17d4e6 100644
--- a/README
+++ b/README
@@ -348,8 +348,6 @@ _/        _/    _/    _/    _/        _/  _/    _/        _/    _/_/
 	    |   |   |-- manual-html
 	    |   |   |-- chicken.png
 	    |   |   `-- *.html
-	    |   |-- CHICKEN.icns                      (Macintosh)
-	    |   |-- mac.r                             (Macintosh)
 	    |   |-- chicken.rc.o                      (Windows)
 	    |   |-- feathers.tcl
 	    |   `-- setup.defaults
diff --git a/csc.scm b/csc.scm
index 11e17941..1fe896b7 100644
--- a/csc.scm
+++ b/csc.scm
@@ -999,9 +999,7 @@ EOF
                                   TARGET_RUN_LIB_HOME)
                        lib))))
 	" " 
-	target) )
-      (when gui
-	(rez target)))
+	target) ))
     (unless keep-files 
       (for-each $delete-file
         (append generated-object-files
@@ -1095,13 +1093,6 @@ EOF
     (print "rm " str) )
   (unless dry-run (delete-file str) ))
 
-(define (rez file)
-  ;; see also: http://www.cocan.org/getting_started_with_ocaml_on_mac_os_x
-  (command 
-   (sprintf "/Developer/Tools/Rez -t APPL -o ~a ~a"
-     (quotewrap file)
-     (quotewrap (make-pathname home "mac.r")))))
-
 (define (create-win-manifest prg rcfname)
   (when verbose (print "generating " rcfname))
   (with-output-to-file rcfname
diff --git a/distribution/manifest b/distribution/manifest
index 00a8c515..5f20b3e7 100644
--- a/distribution/manifest
+++ b/distribution/manifest
@@ -387,9 +387,7 @@ egg-information.scm
 chicken-do.c
 chicken-do.mdoc
 types.db
-mac.r
 chicken.png
-CHICKEN.icns
 scripts/chicken-flymake
 scripts/chicken-flymake.bat
 scripts/csc-trans
diff --git a/mac.r b/mac.r
deleted file mode 100644
index 3d71f2eb..00000000
--- a/mac.r
+++ /dev/null
@@ -1,13 +0,0 @@
-data 'MBAR' (128) {
-	$"0001 0080"                                          /* ...€ */
-};
-
-data 'MENU' (128, "Apple") {
-	$"0080 0000 0000 0000 0000 FFFF FFFB 0114"            /* .€........ÿÿÿû.. */
-	$"0A41 626F 7574 2046 4C54 4B00 0000 0001"            /* ÂAbout FLTK..... */
-	$"2D00 0000 0000"                                     /* -..... */
-};
-
-data 'carb' (0) {
-};
-
diff --git a/rules.make b/rules.make
index cbcf391e..9c0c4fa8 100644
--- a/rules.make
+++ b/rules.make
@@ -306,10 +306,6 @@ ifneq ($(POSTINSTALL_STATIC_LIBRARY),true)
 endif
 	$(INSTALL_PROGRAM) $(INSTALL_PROGRAM_FILE_OPTIONS) $(SRCDIR)chicken.h "$(DESTDIR)$(ICHICKENINCDIR)"
 	$(INSTALL_PROGRAM) $(INSTALL_PROGRAM_FILE_OPTIONS) $(CHICKEN_CONFIG_H) "$(DESTDIR)$(ICHICKENINCDIR)"
-ifeq ($(PLATFORM),macosx)
-	$(INSTALL_PROGRAM) $(INSTALL_PROGRAM_FILE_OPTIONS) $(SRCDIR)mac.r "$(DESTDIR)$(IDATADIR)"
-	$(INSTALL_PROGRAM) $(INSTALL_PROGRAM_FILE_OPTIONS) $(SRCDIR)CHICKEN.icns "$(DESTDIR)$(IDATADIR)"
-endif
 ifdef WINDOWS
 	$(INSTALL_PROGRAM) $(INSTALL_PROGRAM_FILE_OPTIONS) $(SRCDIR)chicken.ico "$(DESTDIR)$(IDATADIR)"
 	$(INSTALL_PROGRAM) $(INSTALL_PROGRAM_FILE_OPTIONS) $(SRCDIR)chicken.rc$(O) "$(DESTDIR)$(IDATADIR)"
Trap