Changes between Version 20 and Version 21 of dev-util/git
- Timestamp:
- 04/19/08 05:41:41 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev-util/git
v20 v21 3 3 = [wiki:dev-util]/git = 4 4 5 == version 1.5.5 ==5 == version 1.5.5 / git master == 6 6 7 7 ||R5||untested|| … … 14 14 * [wiki:dev-libs/openssl] (optional) 15 15 * [wiki:dev-lang/tk] (optional) 16 * [wiki:sys-devel/sparse] (for testing) 16 17 17 18 === work-in-progress (andreasf) - [Haiku] === … … 35 36 (*loose_size) += ceil(st.st_size / 512.0); 36 37 }}} 37 In a [http://ussg.iu.edu/hypermail/linux/kernel/0310.1/1125.html Linux kernel ML post] I read the unit of {{{st_blocks}}} were 512 byte. 38 (In a [http://ussg.iu.edu/hypermail/linux/kernel/0310.1/1125.html Linux kernel ML post] I read the unit of {{{st_blocks}}} were 512 byte.) 38 39 39 40 Next, for {{{git-fetch-pack}}} a hardlink is being created, which fails on Haiku. Changing the {{{$(BUILT_INS)}}} target to use {{{ln -s}}} resolves this. … … 41 42 Next, {{{git-imap-send}}} fails to link due to an undefined reference to {{{getpass}}}. {{{getpass}}} is only defined in the BSD compatibility headers. Adding a prototype to {{{imap-send.c}}} resolves an assignment warning. Compiling with {{{make LDFLAGS=-lbsd}}} resolves the linker error. 42 43 43 Next, build fails due to {{{/usr/bin/perl}}}. Use {{{make PERL_PATH=/boot/home/config/bin/perl}}} to continue. 44 Next, build fails due to {{{/usr/bin/perl}}}. Use {{{make PERL_PATH=/boot/home/config/bin/perl}}} to continue. (Or configure with {{{--with-perl=/boot/home/config/bin/perl}}}.) 44 45 45 46 To get git to prepare the templates, in {{{templates/Makefile}}} change {{{ls}}} to {{{ls -1}}}. … … 47 48 In {{{Makefile}}} for the {{{install}}} target change another instance of {{{ln}}} to {{{ln -s}}}. 48 49 49 {{{make check}}} fails due to lack of [wiki:sys-devel/sparse sparse]. 50 51 Checking out cairo works! 50 Checking out multiple repositories works. {{{make check}}} fails due to lack of [wiki:sys-devel/sparse sparse].
