summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmando Di Cianno <fafhrd@gentoo.org>2004-12-13 23:09:06 +0000
committerArmando Di Cianno <fafhrd@gentoo.org>2004-12-13 23:09:06 +0000
commitf396b1b47a5c20b4b3b3833b05db029197143fb7 (patch)
tree4f656a0cb3e42ee7978ac366b42876b3b6433bb8 /gnustep-base/gnustep-make/files
parentRemoved an extra line. (Manifest recommit) (diff)
downloadgentoo-2-f396b1b47a5c20b4b3b3833b05db029197143fb7.tar.gz
gentoo-2-f396b1b47a5c20b4b3b3833b05db029197143fb7.tar.bz2
gentoo-2-f396b1b47a5c20b4b3b3833b05db029197143fb7.zip
Cleanup relating to choice of dev-lib/libffi or gcc with gcj or obcj use flag turned on; very information dense error messages now given when objc or libffi is not available; old ebuilds pruned out (one "stable" release, one "cvs fetching" release); "stable" release base libs marked stable on ppc
Diffstat (limited to 'gnustep-base/gnustep-make/files')
-rw-r--r--gnustep-base/gnustep-make/files/digest-gnustep-make-1.10.01
-rw-r--r--gnustep-base/gnustep-make/files/digest-gnustep-make-1.10.1_pre200410300
-rw-r--r--gnustep-base/gnustep-make/files/digest-gnustep-make-1.10.1_pre20041030-r10
-rw-r--r--gnustep-base/gnustep-make/files/digest-gnustep-make-1.10.1_pre200411160
-rw-r--r--gnustep-base/gnustep-make/files/helloworld.m54
5 files changed, 0 insertions, 55 deletions
diff --git a/gnustep-base/gnustep-make/files/digest-gnustep-make-1.10.0 b/gnustep-base/gnustep-make/files/digest-gnustep-make-1.10.0
deleted file mode 100644
index a6f51a10dfba..000000000000
--- a/gnustep-base/gnustep-make/files/digest-gnustep-make-1.10.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 bfd0f6530b938e7ee1d5a300219a0ab3 gnustep-make-1.10.0.tar.gz 372852
diff --git a/gnustep-base/gnustep-make/files/digest-gnustep-make-1.10.1_pre20041030 b/gnustep-base/gnustep-make/files/digest-gnustep-make-1.10.1_pre20041030
deleted file mode 100644
index e69de29bb2d1..000000000000
--- a/gnustep-base/gnustep-make/files/digest-gnustep-make-1.10.1_pre20041030
+++ /dev/null
diff --git a/gnustep-base/gnustep-make/files/digest-gnustep-make-1.10.1_pre20041030-r1 b/gnustep-base/gnustep-make/files/digest-gnustep-make-1.10.1_pre20041030-r1
deleted file mode 100644
index e69de29bb2d1..000000000000
--- a/gnustep-base/gnustep-make/files/digest-gnustep-make-1.10.1_pre20041030-r1
+++ /dev/null
diff --git a/gnustep-base/gnustep-make/files/digest-gnustep-make-1.10.1_pre20041116 b/gnustep-base/gnustep-make/files/digest-gnustep-make-1.10.1_pre20041116
deleted file mode 100644
index e69de29bb2d1..000000000000
--- a/gnustep-base/gnustep-make/files/digest-gnustep-make-1.10.1_pre20041116
+++ /dev/null
diff --git a/gnustep-base/gnustep-make/files/helloworld.m b/gnustep-base/gnustep-make/files/helloworld.m
deleted file mode 100644
index af2414df1c03..000000000000
--- a/gnustep-base/gnustep-make/files/helloworld.m
+++ /dev/null
@@ -1,54 +0,0 @@
-/**
- * This example taken from the tutorial at:
- * http://gnustep.made-it.com/GSPT/xml/Tutorial_en.html
- *
- <quote>
- A GNUstep Programming Tutorial
- Time is on our side...
- Yen-Ju Chen
- Dennis Leeuw
-
- Copyright © 2003 Yen-Ju Chen, Dennis Leeuw
-
- Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
- </quote>
- */
-
-#include <objc/Object.h>
-
-@interface Greeter:Object
-{
- /* This is left empty on purpose:
- ** Normally instance variables would be declared here,
- ** but these are not used in our example.
- */
-}
-
-- (void)greet;
-
-@end
-
-#include <stdio.h>
-
-@implementation Greeter
-
-- (void)greet
-{
- printf("Hello, World!\n");
-}
-
-@end
-
-#include <stdlib.h>
-
-int main(void)
-{
- id myGreeter;
- myGreeter=[Greeter new];
-
- [myGreeter greet];
-
- [myGreeter free];
- return EXIT_SUCCESS;
-}
-