All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] Add libapr-package
@ 2012-04-17 14:35 Rico Bachmann
  2012-04-17 14:35 ` [Buildroot] [PATCH] Add apr-package Rico Bachmann
  2012-04-21 12:58 ` [Buildroot] [PATCH] Add libapr-package Arnout Vandecappelle
  0 siblings, 2 replies; 6+ messages in thread
From: Rico Bachmann @ 2012-04-17 14:35 UTC (permalink / raw)
  To: buildroot


Add libapr-package
rename from libapr to apr
rename all values and arguments from libapr into apr
change package/Config.in from libapr to apr
add the other small changes from mailinglist

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH] Add apr-package
  2012-04-17 14:35 [Buildroot] [PATCH] Add libapr-package Rico Bachmann
@ 2012-04-17 14:35 ` Rico Bachmann
  2012-04-17 14:54   ` Peter Korsgaard
  2012-04-21 12:58 ` [Buildroot] [PATCH] Add libapr-package Arnout Vandecappelle
  1 sibling, 1 reply; 6+ messages in thread
From: Rico Bachmann @ 2012-04-17 14:35 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Rico Bachmann <bachmann@tofwerk.com>
---
 package/Config.in     |    1 +
 package/apr/Config.in |    8 ++++++++
 package/apr/apr.mk    |   18 ++++++++++++++++++
 3 files changed, 27 insertions(+), 0 deletions(-)
 create mode 100644 package/apr/Config.in
 create mode 100644 package/apr/apr.mk

diff --git a/package/Config.in b/package/Config.in
index 4c6d4d8..bf1bdcf 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -372,6 +372,7 @@ source "package/zeromq/Config.in"
 endmenu
 
 menu "Other"
+source "package/apr/Config.in"
 source "package/fftw/Config.in"
 source "package/libargtable2/Config.in"
 source "package/argp-standalone/Config.in"
diff --git a/package/apr/Config.in b/package/apr/Config.in
new file mode 100644
index 0000000..292cadb
--- /dev/null
+++ b/package/apr/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_APR
+	bool "apr"
+	help
+	  The mission of the Apache Portable Runtime (APR) project is to create
+	  and maintain software libraries that provide a predictable and
+	  consistent interface to underlying platform-specific implementations
+
+	  http://apr.apache.org/
diff --git a/package/apr/apr.mk b/package/apr/apr.mk
new file mode 100644
index 0000000..3158913
--- /dev/null
+++ b/package/apr/apr.mk
@@ -0,0 +1,18 @@
+#############################################################
+#
+# apr
+#
+#############################################################
+APR_VERSION = 1.4.6
+APR_SITE = http://archive.apache.org/dist/apr
+APR_INSTALL_STAGING = YES
+APR_CONF_ENV = \
+	ac_cv_file__dev_zero=yes \
+	ac_cv_func_setpgrp_void=yes \
+	apr_cv_process_shared_works=yes \
+	apr_cv_mutex_robust_shared=no \
+	apr_cv_tcp_nodelay_with_cork=yes \
+	ac_cv_sizeof_struct_iovec=8 \
+	apr_cv_mutex_recursive=yes
+
+$(eval $(call AUTOTARGETS))
-- 
1.7.2.5

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH] Add apr-package
  2012-04-17 14:35 ` [Buildroot] [PATCH] Add apr-package Rico Bachmann
@ 2012-04-17 14:54   ` Peter Korsgaard
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2012-04-17 14:54 UTC (permalink / raw)
  To: buildroot

>>>>> "Rico" == Rico Bachmann <bachmann@tofwerk.com> writes:

 Rico> Signed-off-by: Rico Bachmann <bachmann@tofwerk.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH] Add libapr-package
  2012-04-17 14:35 [Buildroot] [PATCH] Add libapr-package Rico Bachmann
  2012-04-17 14:35 ` [Buildroot] [PATCH] Add apr-package Rico Bachmann
@ 2012-04-21 12:58 ` Arnout Vandecappelle
  2012-04-24  9:32   ` Rico Bachmann
  1 sibling, 1 reply; 6+ messages in thread
From: Arnout Vandecappelle @ 2012-04-21 12:58 UTC (permalink / raw)
  To: buildroot

On Tuesday 17 April 2012 16:35:15 Rico Bachmann wrote:
> 
> Add libapr-package
> rename from libapr to apr
> rename all values and arguments from libapr into apr
> change package/Config.in from libapr to apr
> add the other small changes from mailinglist

 Hoi Rico,

 Thanks for your persistence in correcting your patch until it was perfect!

 One last suggestion for next time you make a patch: you can add the log
of the history of your patch directly in the commit message, below a line
with three dashes, like this:

Signed-off-by: Rico Bachmann <bachmann@tofwerk.com>
---
v3: Rename from libapr to apr
v2: ...


 When the patch is applied to git, the part below the --- will be
removed, so you can also add other random comments in there.

 And also, you can add the version number when sending the patch
like this:

git send-email --subject-prefix='PATCH v2' ...


 Regards,
 Arnout


-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH] Add libapr-package
  2012-04-21 12:58 ` [Buildroot] [PATCH] Add libapr-package Arnout Vandecappelle
@ 2012-04-24  9:32   ` Rico Bachmann
  2012-04-27 19:21     ` Arnout Vandecappelle
  0 siblings, 1 reply; 6+ messages in thread
From: Rico Bachmann @ 2012-04-24  9:32 UTC (permalink / raw)
  To: buildroot

> -----Urspr?ngliche Nachricht-----
> Von: Arnout Vandecappelle [mailto:arnout at mind.be]
> Gesendet: Samstag, 21. April 2012 14:58
> An: buildroot at busybox.net
> Cc: Rico Bachmann
> Betreff: Re: [Buildroot] [PATCH] Add libapr-package
> 
> On Tuesday 17 April 2012 16:35:15 Rico Bachmann wrote:
> >
> > Add libapr-package
> > rename from libapr to apr
> > rename all values and arguments from libapr into apr change
> > package/Config.in from libapr to apr add the other small changes from
> > mailinglist
> 
>  Hoi Rico,
> 
>  Thanks for your persistence in correcting your patch until it was
> perfect!
> 
>  One last suggestion for next time you make a patch: you can add the
> log of the history of your patch directly in the commit message, below
> a line with three dashes, like this:
> 
> Signed-off-by: Rico Bachmann <bachmann@tofwerk.com>
> ---
> v3: Rename from libapr to apr
> v2: ...

I'll try that with my new patch for apr-util.
How can I add my history when I have to do a git rebase -I master?

Because I can't see my history in the patch after a fixup with git rebase.

Do I have to add them manually?

> 
> 
>  When the patch is applied to git, the part below the --- will be
> removed, so you can also add other random comments in there.
> 
>  And also, you can add the version number when sending the patch like
> this:
> 
> git send-email --subject-prefix='PATCH v2' ...

I'll try that if I need a v2 from my next patch.

> 
> 
>  Regards,
>  Arnout
> 
> 
> --
> Arnout Vandecappelle                               arnout at mind be
> Senior Embedded Software Architect                 +32-16-286540
> Essensium/Mind                                     http://www.mind.be
> G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR
> Leuven
> LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
> GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

Thanks for the hints!

Regards
Rico

Tofwerk AG, Rico Bachmann
+41 33 511 11 69
bachmann at tofwerk.com
http://www.tofwerk.com
Uttigenstrasse 22
CH - 3600 Thun

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH] Add libapr-package
  2012-04-24  9:32   ` Rico Bachmann
@ 2012-04-27 19:21     ` Arnout Vandecappelle
  0 siblings, 0 replies; 6+ messages in thread
From: Arnout Vandecappelle @ 2012-04-27 19:21 UTC (permalink / raw)
  To: buildroot

On Tuesday 24 April 2012 11:32:52 Rico Bachmann wrote:
> >  One last suggestion for next time you make a patch: you can add the
> > log of the history of your patch directly in the commit message, below
> > a line with three dashes, like this:
> > 
> > Signed-off-by: Rico Bachmann <bachmann@tofwerk.com>
> > ---
> > v3: Rename from libapr to apr
> > v2: ...
> 
> I'll try that with my new patch for apr-util.
> How can I add my history when I have to do a git rebase -I master?
> 
> Because I can't see my history in the patch after a fixup with git rebase.
> 
> Do I have to add them manually?

 Indeed, git rebase is the same as applying the patch from a mail...  You
can either fix up the commit message manually, or use something like 
topgit to manage your patch queues.

 Regards,
 Arnout

-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-04-27 19:21 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-17 14:35 [Buildroot] [PATCH] Add libapr-package Rico Bachmann
2012-04-17 14:35 ` [Buildroot] [PATCH] Add apr-package Rico Bachmann
2012-04-17 14:54   ` Peter Korsgaard
2012-04-21 12:58 ` [Buildroot] [PATCH] Add libapr-package Arnout Vandecappelle
2012-04-24  9:32   ` Rico Bachmann
2012-04-27 19:21     ` Arnout Vandecappelle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.