I was following the Objective-C tutorial using GNUstep
http://gnustep.made-it.com/GSPT/xml/Tutorial_en.html
I had to install the following packages to make everything compile properly (from my history):
And in the GNUmakefile I added this path:
Hope this helps someone else get around any errors they initially encounter.
Sunday, 16 March 2008
Subscribe to:
Post Comments (Atom)
Blog Archive
-
►
2011
(35)
-
►
June
(6)
- MarkLogic/XCC: Copying a Module with User Content ...
- MarkLogic: clearing a forest in a database program...
- MarkLogic: Enabling debug options when using the S...
- Linux: SCP syntax and structure note
- MarkLogic/XCC: Installing Modules Programatically
- Eclipse: Installing XQDT (and DLTK) on Eclipse Ind...
-
►
June
(6)
-
►
2010
(43)
-
►
September
(7)
- MarkLogic: Creating Multiple Range Element Indexes...
- MarkLogic: Listing all Collections in a Database
- MarkLogic: Basic Database Cloning Script
- MarkLogic: Estimating the number of documents cont...
- MarkLogic: Search: Compound OR Queries
- MarkLogic: XQuery: Check for the presence of an el...
- MarkLogic: XQuery: Type Validation using xsi:type
-
►
September
(7)
7 comments:
This is how I install GNUstep on Ubuntu. Once dependencies are installed, I follow this guide.
A simplified version is following:
1. Download gnustep-make
2. ./configure --prefix=/usr/local/GNUstep
3. sudo make install
4. source /usr/local/GNUstep/System/Library/Makefiles/GNUstep.sh
4. Download gnustep-base
5. make
6. sudo make install
Great - thanks for that!
I followed your recommended intallation steps and did not get a Makefiles subdirectory anywhere in my GNUstep directory. When I run [find /usr/lib/GNUstep -name "*.make"] all I get are makefiles in the Bundles, Applications, and Preferences directories. Any idea what I need to do to get the Makefiles contents?
(I've changed my blogspot profile since my last post). I ran the GNUstep startup package from http://ftp.gnustep.org/pub/gnustep/core, and after adding support for TIFF and JPEG, it seems to be working. I suppose nothing worth doing should be easy. :)
Glad you solved it, Daryl
Hi. I think you are making it over-complicated. The Makefiles directory gets put under /usr/share/GNUstep, so I think you were just looking in the wrong place for it. Hope this helps.
Use gnustep-config --variable=GNUSTEP_MAKEFILES as demonstrated here:
GNUstep.org "Makefile Structure".
Cheers, al.
Post a Comment